CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2019/04/13 09:05:42

Modified files:
	.              : 65.html 

Log message:
Looks like libressl will be 2.9.1 for release


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/13 11:35:07

Modified files:
	sys/conf       : newvers.sh 

Log message:
unlock tree, we are now working on 6.5-current


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/13 11:35:10

Modified files:
	sys/conf       : GENERIC 

Log message:
renable POOL_DEBUG


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/13 12:04:05

Modified files:
	lib/libssl     : ssl_cert.c 

Log message:
Avoid leak in SSL_dup_CA_list()

In the case that X509_NAME_dup() succeeds, but sk_X509_NAME_push()
fails, name is leaked.  The entire function is trying to be clever
and therefore hard to follow.  Let's do it the stupid but safe way.

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/13 12:12:01

Modified files:
	sys/dev/fdt    : mvpinctrl.c 

Log message:
Add missing compatibles for newer Linux kernel bindings.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/13 12:42:23

Modified files:
	lib/libcrypto/x509v3: v3_utl.c 

Log message:
Avoid quadratic behavior of decimal BIGNUM conversion

The complexity of BN_bn2dec(bn) is quadratic in the length of bn.  This
function is used for printing numbers in CRLs which are typically small.
If a BN is larger than 127 bits, dump it as hex because that's cheap and
for numbers this size not significantly harder for humans to parse.

OpenSSL commit 10a3195fcf7d04ba519651cf12e945a8fe470a3c by David Benjamin
(still under the old licence), but significantly simplified.

Ideally, we would catch excessively large numbers on deserialization, but
that is made trickier by the templated ASN1.  Erroring out is also not an
option since the relevant part of the x509v3/ directory doesn't like to
do proper error checking (looking at you v2i and i2v).

Timeout found by oss-fuzz, should fix issues #13823 and #14130.

input & ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/13 12:47:58

Modified files:
	lib/libtls     : tls_util.c 

Log message:
Null out pointers on asprintf() failure.

These pointers will be passed to free. According to asprintf(3), "on
OpenBSD, ret will be set to the null pointer, but this behavior should
not be relied upon."

ok jsing


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2019/04/13 12:59:24

Modified files:
	.              : 65.html 

Log message:
add LibreSSL portability improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/13 13:19:36

Modified files:
	sys/dev/acpi   : tpm.c 

Log message:
MSFT0101 must require some special handling, since this breaks
suspend on some machines.  Back out until more known.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/04/13 15:15:30

Modified files:
	.              : plus65.html 

Log message:
MSFT0101, uhm no


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/13 16:06:31

Modified files:
	regress/lib/libcrypto/bn/general: Makefile 
Added files:
	regress/lib/libcrypto/bn/general: bn_to_string.c 

Log message:
Add a test for the bn_to_string() function introduced in v3_utl.c r1.32.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/13 18:37:31

Modified files:
	usr.sbin/tcpdump: ospf.h print-ospf.c 

Log message:
md5 auth has useful information on the wire that helps when fixing issues

print at least the key-id, and seq when -v is set, and the offset
and len when -vv is set.

ok sthen@ bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 00:57:00

Modified files:
	sys/net        : if.c 

Log message:
don't take splnet when running the network stack

the stack uses the NET_LOCK for most protection now, so it doesnt
need to block actual hardware interrupts. blocking hw interrupts
can cause huge latency spikes, which in turn works against the rx
ring moderation.

im putting this in early in the release cycle so it can get the
most testing possible.

ok mpi@ (a while back)


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/14 01:35:18

Modified files:
	lib/libcrypto/x509v3: v3_utl.c 

Log message:
Fix previous: I forgot to rename the bn_to_string() prototype.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/14 02:51:31

Modified files:
	share/man/man9 : timeout.9 
	sys/kern       : kern_timeout.c 
	sys/sys        : timeout.h 

Log message:
Add lock order checking for timeouts

The caller of timeout_barrier() must not hold locks that could prevent
timeout handlers from making progress. The system could deadlock
otherwise.

This patch makes witness(4) able to detect barrier locking errors.
This is done by introducing a pseudo-lock that couples the lock chains
of barrier callers to the lock chains of timeout handlers.

In order to find these errors faster, this diff adds a synchronous
version of cancelling timeouts, timeout_del_barrier(9). As the
synchronous intent is explicit, this interface can check lock order
immediately instead of waiting for the potentially rare occurrence of
timeout_barrier(9).

OK dlg@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:27:27

src/sys/dev/pci/drm/include

Update of /cvs/src/sys/dev/pci/drm/include
In directory cvs.openbsd.org:/tmp/cvs-serv94647/include

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:28:23

src/sys/dev/pci/drm/include/acpi

Update of /cvs/src/sys/dev/pci/drm/include/acpi
In directory cvs.openbsd.org:/tmp/cvs-serv51141/acpi

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/acpi added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:28:23

src/sys/dev/pci/drm/include/asm

Update of /cvs/src/sys/dev/pci/drm/include/asm
In directory cvs.openbsd.org:/tmp/cvs-serv51141/asm

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/asm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:28:23

src/sys/dev/pci/drm/include/drm

Update of /cvs/src/sys/dev/pci/drm/include/drm
In directory cvs.openbsd.org:/tmp/cvs-serv51141/drm

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/drm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:28:23

src/sys/dev/pci/drm/include/generated

Update of /cvs/src/sys/dev/pci/drm/include/generated
In directory cvs.openbsd.org:/tmp/cvs-serv51141/generated

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/generated added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:28:23

src/sys/dev/pci/drm/include/linux

Update of /cvs/src/sys/dev/pci/drm/include/linux
In directory cvs.openbsd.org:/tmp/cvs-serv51141/linux

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/linux added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:28:23

src/sys/dev/pci/drm/include/media

Update of /cvs/src/sys/dev/pci/drm/include/media
In directory cvs.openbsd.org:/tmp/cvs-serv51141/media

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/media added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:28:23

src/sys/dev/pci/drm/include/uapi

Update of /cvs/src/sys/dev/pci/drm/include/uapi
In directory cvs.openbsd.org:/tmp/cvs-serv51141/uapi

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/uapi added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:28:23

src/sys/dev/pci/drm/include/video

Update of /cvs/src/sys/dev/pci/drm/include/video
In directory cvs.openbsd.org:/tmp/cvs-serv51141/video

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/video added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:29:34

src/sys/dev/pci/drm/include/asm/fpu

Update of /cvs/src/sys/dev/pci/drm/include/asm/fpu
In directory cvs.openbsd.org:/tmp/cvs-serv33656/asm/fpu

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/asm/fpu added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:29:34

src/sys/dev/pci/drm/include/drm/ttm

Update of /cvs/src/sys/dev/pci/drm/include/drm/ttm
In directory cvs.openbsd.org:/tmp/cvs-serv33656/drm/ttm

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/drm/ttm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:29:34

src/sys/dev/pci/drm/include/linux/gpio

Update of /cvs/src/sys/dev/pci/drm/include/linux/gpio
In directory cvs.openbsd.org:/tmp/cvs-serv33656/linux/gpio

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/linux/gpio added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:29:34

src/sys/dev/pci/drm/include/linux/mfd

Update of /cvs/src/sys/dev/pci/drm/include/linux/mfd
In directory cvs.openbsd.org:/tmp/cvs-serv33656/linux/mfd

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/linux/mfd added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:29:34

src/sys/dev/pci/drm/include/linux/sched

Update of /cvs/src/sys/dev/pci/drm/include/linux/sched
In directory cvs.openbsd.org:/tmp/cvs-serv33656/linux/sched

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/linux/sched added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 03:29:34

src/sys/dev/pci/drm/include/uapi/drm

Update of /cvs/src/sys/dev/pci/drm/include/uapi/drm
In directory cvs.openbsd.org:/tmp/cvs-serv33656/uapi/drm

Log Message:
Directory /cvs/src/sys/dev/pci/drm/include/uapi/drm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 04:14:54

Modified files:
	sys/arch/amd64/conf: Makefile.amd64 
	sys/arch/arm64/conf: Makefile.arm64 
	sys/arch/i386/conf: Makefile.i386 
	sys/arch/loongson/conf: Makefile.loongson 
	sys/arch/macppc/conf: Makefile.macppc 
	sys/arch/sparc64/conf: Makefile.sparc64 
	sys/dev/pci    : agp_i810.c 
	sys/dev/pci/drm: drm_agpsupport.c drm_atomic.c 
	                 drm_atomic_helper.c drm_bridge.c drm_cache.c 
	                 drm_crtc.c drm_crtc_helper.c 
	                 drm_crtc_internal.h drm_dp_helper.c 
	                 drm_dp_mst_topology.c drm_drv.c drm_edid.c 
	                 drm_fb_helper.c drm_gem.c drm_global.c 
	                 drm_hashtab.c drm_internal.h drm_irq.c 
	                 drm_linux.c drm_linux.h drm_memory.c 
	                 drm_mipi_dsi.c drm_mm.c drm_modes.c 
	                 drm_modeset_lock.c drm_panel.c 
	                 drm_plane_helper.c drm_prime.c 
	                 drm_probe_helper.c drm_rect.c drm_vma_manager.c 
	                 files.drm linux_hdmi.c linux_list_sort.c 
	                 linux_reservation.c 
	sys/dev/pci/drm/i915: dvo.h dvo_ch7017.c dvo_ch7xxx.c dvo_ivch.c 
	                      dvo_ns2501.c dvo_sil164.c dvo_tfp410.c 
	                      i915_cmd_parser.c i915_devlist.h 
	                      i915_drv.c i915_drv.h i915_gem.c 
	                      i915_gem_batch_pool.c 
	                      i915_gem_batch_pool.h i915_gem_context.c 
	                      i915_gem_dmabuf.c i915_gem_evict.c 
	                      i915_gem_execbuffer.c i915_gem_gtt.c 
	                      i915_gem_gtt.h i915_gem_render_state.c 
	                      i915_gem_render_state.h i915_gem_stolen.c 
	                      i915_gem_tiling.c i915_gem_userptr.c 
	                      i915_gpu_error.c i915_irq.c i915_params.c 
	                      i915_reg.h i915_suspend.c i915_trace.h 
	                      i915_vgpu.c i915_vgpu.h intel_atomic.c 
	                      intel_atomic_plane.c intel_audio.c 
	                      intel_bios.c intel_bios.h intel_crt.c 
	                      intel_csr.c intel_ddi.c intel_display.c 
	                      intel_dp.c intel_dp_mst.c intel_drv.h 
	                      intel_dsi.h intel_dvo.c intel_fbc.c 
	                      intel_fbdev.c intel_fifo_underrun.c 
	                      intel_frontbuffer.c intel_gtt.c 
	                      intel_guc.h intel_guc_fwif.h intel_hdmi.c 
	                      intel_hotplug.c intel_i2c.c intel_lrc.c 
	                      intel_lrc.h intel_lvds.c intel_mocs.c 
	                      intel_mocs.h intel_modes.c 
	                      intel_opregion.c intel_overlay.c 
	                      intel_panel.c intel_pm.c intel_psr.c 
	                      intel_renderstate.h 
	                      intel_renderstate_gen9.c 
	                      intel_ringbuffer.c intel_ringbuffer.h 
	                      intel_runtime_pm.c intel_sdvo.c 
	                      intel_sdvo_regs.h intel_sideband.c 
	                      intel_sprite.c intel_tv.c intel_uncore.c 
	sys/dev/pci/drm/radeon: atom.c atom.h atombios.h atombios_crtc.c 
	                        atombios_dp.c atombios_encoders.c 
	                        atombios_i2c.c btc_dpm.c 
	                        cayman_blit_shaders.c ci_dpm.c ci_dpm.h 
	                        ci_smc.c cik.c cik_blit_shaders.c 
	                        cik_reg.h cik_sdma.c cikd.h 
	                        cypress_dpm.c dce3_1_afmt.c dce6_afmt.c 
	                        evergreen.c evergreen_blit_shaders.c 
	                        evergreen_cs.c evergreen_dma.c 
	                        evergreen_hdmi.c evergreend.h kv_dpm.c 
	                        kv_smc.c mkregtable.c ni.c ni_dma.c 
	                        ni_dpm.c ni_reg.h nid.h r100.c r200.c 
	                        r300.c r420.c r520.c r600.c 
	                        r600_blit_shaders.c r600_cs.c r600_dma.c 
	                        r600_dpm.c r600_hdmi.c r600d.h radeon.h 
	                        radeon_acpi.c radeon_acpi.h radeon_agp.c 
	                        radeon_asic.c radeon_asic.h 
	                        radeon_atombios.c radeon_audio.c 
	                        radeon_audio.h radeon_benchmark.c 
	                        radeon_bios.c radeon_clocks.c 
	                        radeon_combios.c radeon_connectors.c 
	                        radeon_cs.c radeon_cursor.c 
	                        radeon_device.c radeon_display.c 
	                        radeon_dp_auxch.c radeon_dp_mst.c 
	                        radeon_drv.c radeon_drv.h 
	                        radeon_encoders.c radeon_fb.c 
	                        radeon_fence.c radeon_gart.c 
	                        radeon_gem.c radeon_i2c.c radeon_ib.c 
	                        radeon_ioc32.c radeon_irq_kms.c 
	                        radeon_kfd.c radeon_kms.c 
	                        radeon_legacy_crtc.c 
	                        radeon_legacy_encoders.c 
	                        radeon_legacy_tv.c radeon_mn.c 
	                        radeon_mode.h radeon_object.c 
	                        radeon_object.h radeon_pm.c 
	                        radeon_prime.c radeon_ring.c radeon_sa.c 
	                        radeon_semaphore.c radeon_sync.c 
	                        radeon_test.c radeon_trace.h 
	                        radeon_trace_points.c radeon_ttm.c 
	                        radeon_ucode.c radeon_uvd.c radeon_vce.c 
	                        radeon_vm.c rs400.c rs600.c rs690.c 
	                        rs780_dpm.c rv515.c rv6xx_dpm.c 
	                        rv730_dpm.c rv740_dpm.c rv770.c 
	                        rv770_dma.c rv770_dpm.c rv770_smc.c 
	                        rv770d.h si.c si_blit_shaders.c si_dma.c 
	                        si_dpm.c si_smc.c sid.h sumo_dpm.c 
	                        sumo_smc.c trinity_dpm.c trinity_smc.c 
	                        uvd_v1_0.c uvd_v2_2.c uvd_v3_1.c 
	                        uvd_v4_2.c vce_v1_0.c vce_v2_0.c 
	sys/dev/pci/drm/ttm: ttm_agp_backend.c ttm_bo.c ttm_bo_manager.c 
	                     ttm_bo_util.c ttm_bo_vm.c 
	                     ttm_execbuf_util.c ttm_memory.c 
	                     ttm_page_alloc.c ttm_page_alloc_dma.c 
	                     ttm_tt.c 
Added files:
	sys/dev/pci/drm: drm_blend.c drm_color_mgmt.c drm_connector.c 
	                 drm_crtc_helper_internal.h 
	                 drm_dp_dual_mode_helper.c drm_dumb_buffers.c 
	                 drm_encoder.c drm_file.c drm_fourcc.c 
	                 drm_framebuffer.c drm_gem_framebuffer_helper.c 
	                 drm_ioctl.c drm_mode_config.c drm_mode_object.c 
	                 drm_modeset_helper.c 
	                 drm_panel_orientation_quirks.c drm_plane.c 
	                 drm_print.c drm_property.c drm_scdc_helper.c 
	                 drm_syncobj.c drm_vblank.c linux_radix.c 
	sys/dev/pci/drm/i915: i915_gem.h i915_gem_clflush.c 
	                      i915_gem_clflush.h i915_gem_context.h 
	                      i915_gem_fence_reg.c i915_gem_fence_reg.h 
	                      i915_gem_internal.c i915_gem_object.c 
	                      i915_gem_object.h i915_gem_shrinker.c 
	                      i915_gemfs.c i915_gemfs.h i915_gpu_error.h 
	                      i915_memcpy.c i915_mm.c i915_params.h 
	                      i915_pci.c i915_perf.c i915_pmu.h 
	                      i915_pvinfo.h i915_query.c i915_query.h 
	                      i915_request.c i915_request.h 
	                      i915_scheduler.h i915_selftest.h 
	                      i915_sw_fence.c i915_sw_fence.h 
	                      i915_syncmap.c i915_syncmap.h 
	                      i915_timeline.c i915_timeline.h 
	                      i915_utils.h i915_vma.c i915_vma.h 
	                      icl_dsi.c intel_breadcrumbs.c 
	                      intel_cdclk.c intel_color.c 
	                      intel_device_info.c intel_device_info.h 
	                      intel_display.h intel_dp_aux_backlight.c 
	                      intel_dp_link_training.c intel_dpio_phy.c 
	                      intel_dpll_mgr.c intel_dpll_mgr.h 
	                      intel_dsi_dcs_backlight.c intel_dsi_vbt.c 
	                      intel_engine_cs.c intel_frontbuffer.h 
	                      intel_gpu_commands.h intel_guc.c 
	                      intel_guc_ads.c intel_guc_ads.h 
	                      intel_guc_ct.c intel_guc_ct.h 
	                      intel_guc_fw.c intel_guc_fw.h 
	                      intel_guc_log.c intel_guc_log.h 
	                      intel_guc_reg.h intel_guc_submission.c 
	                      intel_guc_submission.h intel_gvt.h 
	                      intel_hangcheck.c intel_hdcp.c intel_huc.c 
	                      intel_huc.h intel_huc_fw.c intel_huc_fw.h 
	                      intel_lpe_audio.c intel_lrc_reg.h 
	                      intel_lspcon.c intel_opregion.h 
	                      intel_stolen.c intel_uc.c intel_uc.h 
	                      intel_uc_fw.c intel_uc_fw.h intel_uncore.h 
	                      intel_vbt_defs.h intel_wopcm.c 
	                      intel_wopcm.h intel_workarounds.c 
	                      intel_workarounds.h vlv_dsi.c 
	                      vlv_dsi_pll.c 
	sys/dev/pci/drm/include/acpi: button.h video.h 
	sys/dev/pci/drm/include/asm: agp.h bitsperlong.h byteorder.h 
	                             div64.h intel-mid.h iosf_mbi.h 
	                             pgtable.h set_memory.h unaligned.h 
	sys/dev/pci/drm/include/asm/fpu: api.h 
	sys/dev/pci/drm/include/drm: amd_asic_type.h drmP.h drm_atomic.h 
	                             drm_atomic_helper.h 
	                             drm_audio_component.h drm_blend.h 
	                             drm_bridge.h drm_cache.h 
	                             drm_color_mgmt.h drm_connector.h 
	                             drm_crtc.h drm_crtc_helper.h 
	                             drm_debugfs_crc.h drm_device.h 
	                             drm_displayid.h 
	                             drm_dp_dual_mode_helper.h 
	                             drm_dp_helper.h drm_dp_mst_helper.h 
	                             drm_drv.h drm_edid.h drm_encoder.h 
	                             drm_fb_helper.h drm_file.h 
	                             drm_fixed.h drm_fourcc.h 
	                             drm_framebuffer.h drm_gem.h 
	                             drm_gem_framebuffer_helper.h 
	                             drm_global.h drm_hashtab.h 
	                             drm_hdcp.h drm_ioctl.h drm_irq.h 
	                             drm_lease.h drm_mipi_dsi.h drm_mm.h 
	                             drm_mode_config.h drm_mode_object.h 
	                             drm_modes.h drm_modeset_helper.h 
	                             drm_modeset_helper_vtables.h 
	                             drm_modeset_lock.h drm_panel.h 
	                             drm_pciids.h drm_plane.h 
	                             drm_plane_helper.h drm_prime.h 
	                             drm_print.h drm_property.h 
	                             drm_rect.h drm_scdc_helper.h 
	                             drm_syncobj.h drm_utils.h 
	                             drm_vblank.h drm_vma_manager.h 
	                             drm_writeback.h gpu_scheduler.h 
	                             i915_component.h i915_drm.h 
	                             i915_pciids.h intel_lpe_audio.h 
	                             spsc_queue.h 
	sys/dev/pci/drm/include/drm/ttm: ttm_bo_api.h ttm_bo_driver.h 
	                                 ttm_debug.h ttm_execbuf_util.h 
	                                 ttm_memory.h ttm_module.h 
	                                 ttm_page_alloc.h 
	                                 ttm_placement.h 
	                                 ttm_set_memory.h ttm_tt.h 
	sys/dev/pci/drm/include/generated: utsrelease.h 
	sys/dev/pci/drm/include/linux: acpi.h agp_backend.h 
	                               anon_inodes.h async.h atomic.h 
	                               backlight.h bitmap.h bitops.h 
	                               bottom_half.h bug.h cache.h 
	                               capability.h cdev.h circ_buf.h 
	                               compat.h compiler.h completion.h 
	                               component.h console.h cpufreq.h 
	                               cpumask.h ctype.h debugfs.h 
	                               delay.h device.h dma-buf.h 
	                               dma-fence-array.h dma-fence.h 
	                               dma-mapping.h dma_remapping.h 
	                               dmi.h efi.h err.h errno.h 
	                               export.h fault-inject.h fb.h 
	                               fdtable.h file.h firmware.h fs.h 
	                               gcd.h gfp.h hardirq.h hash.h 
	                               hashtable.h hdmi.h highmem.h 
	                               hrtimer.h hwmon-sysfs.h hwmon.h 
	                               i2c-algo-bit.h i2c.h idr.h init.h 
	                               input.h intel-iommu.h interrupt.h 
	                               interval_tree.h 
	                               interval_tree_generic.h 
	                               io-mapping.h io.h iommu.h 
	                               ioport.h irq.h irq_work.h 
	                               irqdomain.h irqflags.h 
	                               irqreturn.h jiffies.h kconfig.h 
	                               kernel.h kfifo.h kgdb.h kobject.h 
	                               kref.h kthread.h ktime.h 
	                               linkage.h list.h list_sort.h 
	                               llist.h lockdep.h log2.h math64.h 
	                               media-bus-format.h mem_encrypt.h 
	                               mempolicy.h miscdevice.h mm.h 
	                               mm_types.h mman.h mmu_context.h 
	                               mmu_notifier.h mod_devicetable.h 
	                               module.h moduleparam.h mount.h 
	                               mutex.h nospec.h notifier.h 
	                               of_device.h oom.h overflow.h 
	                               pagemap.h pagevec.h pci.h 
	                               perf_event.h pfn_t.h pid.h 
	                               platform_device.h pm.h pm_qos.h 
	                               pm_runtime.h pnp.h poll.h 
	                               power_supply.h preempt.h 
	                               prefetch.h printk.h processor.h 
	                               pwm.h radix-tree.h random.h 
	                               ratelimit.h rbtree.h rcupdate.h 
	                               reboot.h refcount.h relay.h 
	                               reservation.h rwlock_types.h 
	                               scatterlist.h sched.h seq_file.h 
	                               seqlock.h shmem_fs.h sizes.h 
	                               slab.h smp.h sort.h spinlock.h 
	                               spinlock_types.h stop_machine.h 
	                               string.h stringify.h swap.h 
	                               swiotlb.h sync_file.h sysfs.h 
	                               sysrq.h time.h timekeeping.h 
	                               timer.h tracepoint.h tty.h 
	                               typecheck.h types.h uaccess.h 
	                               uuid.h version.h vga_switcheroo.h 
	                               vgaarb.h vmalloc.h vt.h wait.h 
	                               wait_bit.h workqueue.h ww_mutex.h 
	                               zlib.h 
	sys/dev/pci/drm/include/linux/gpio: consumer.h 
	sys/dev/pci/drm/include/linux/mfd: core.h 
	sys/dev/pci/drm/include/linux/sched: clock.h mm.h signal.h 
	sys/dev/pci/drm/include/media: cec-notifier.h 
	sys/dev/pci/drm/include/uapi/drm: amdgpu_drm.h drm.h 
	                                  drm_fourcc.h drm_mode.h 
	                                  i915_drm.h radeon_drm.h 
	sys/dev/pci/drm/include/video: mipi_display.h of_videomode.h 
	                               videomode.h 
Removed files:
	sys/dev/pci/drm: drm.h drmP.h drm_atomic.h drm_atomic_helper.h 
	                 drm_cache.h drm_crtc.h drm_crtc_helper.h 
	                 drm_displayid.h drm_dp_helper.h 
	                 drm_dp_mst_helper.h drm_edid.h drm_edid_modes.h 
	                 drm_fb_helper.h drm_fixed.h drm_fourcc.h 
	                 drm_global.h drm_hashtab.h drm_linux_atomic.h 
	                 drm_linux_list.h drm_linux_rbtree.h 
	                 drm_mem_util.h drm_mipi_dsi.h drm_mm.h 
	                 drm_mode.h drm_modes.h drm_modeset_lock.h 
	                 drm_panel.h drm_pciids.h drm_plane_helper.h 
	                 drm_rect.h drm_sarea.h drm_vma_manager.h 
	                 i915_drm.h i915_pciids.h i915_powerwell.h 
	                 linux_hdmi.h linux_rcupdate.h 
	                 linux_reservation.h linux_types.h 
	                 linux_ww_mutex.h nouveau_drm.h radeon_drm.h 
	sys/dev/pci/drm/i915: i915_dma.c i915_gem_fence.c i915_guc_reg.h 
	                      i915_guc_submission.c intel_dsi.c 
	                      intel_dsi_panel_vbt.c intel_dsi_pll.c 
	                      intel_guc_loader.c 
	sys/dev/pci/drm/radeon: drm_buffer.h 
	sys/dev/pci/drm/ttm: ttm_bo_api.h ttm_bo_driver.h 
	                     ttm_execbuf_util.h ttm_memory.h 
	                     ttm_module.h ttm_page_alloc.h 
	                     ttm_placement.h 

Log message:
Update shared drm code, inteldrm(4) and radeondrm(4) from linux 4.4 to
linux 4.19.34.

Adds support for more Intel hardware:
Broxton/Apollo Lake (was is_preliminary in 4.4)
Amber Lake (another Kaby Lake refresh)
Gemini Lake
Coffee Lake
Whiskey Lake
Cannon Lake (though no hardware with Intel graphics ever shipped)
Ice Lake (alpha support, hardware not released)

This does not add support for new radeon hardware on the AMD side as
newer radeons have a different kernel driver (amdgpu).

Thanks to the OpenBSD Foundation for sponsoring this work, kettenis@ for
helping and a bunch of other developers for testing.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 04:16:00

Modified files:
	usr.bin/kdump  : Makefile mkioctls 

Log message:
path to i915_drm.h has changed


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 04:23:36

Modified files:
	etc            : MAKEDEV.common 

Log message:
create drm render node devices


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/14 04:25:52

Modified files:
	etc/etc.amd64  : MAKEDEV 
	etc/etc.arm64  : MAKEDEV 
	etc/etc.i386   : MAKEDEV 
	etc/etc.loongson: MAKEDEV 
	etc/etc.macppc : MAKEDEV 
	etc/etc.sparc64: MAKEDEV 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/14 08:07:08

Modified files:
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/conf: Makefile.amd64 
	sys/arch/arm64/conf: Makefile.arm64 
	sys/arch/armv7/conf: Makefile.armv7 
	sys/arch/hppa/conf: Makefile.hppa 
	sys/arch/i386/conf: Makefile.i386 
	sys/arch/landisk/conf: Makefile.landisk 
	sys/arch/loongson/conf: Makefile.loongson 
	sys/arch/luna88k/conf: Makefile.luna88k 
	sys/arch/macppc/conf: Makefile.macppc 
	sys/arch/octeon/conf: Makefile.octeon 
	sys/arch/sgi/conf: Makefile.sgi 
	sys/arch/socppc/conf: Makefile.socppc 
	sys/arch/sparc64/conf: Makefile.sparc64 
	distrib/alpha/bsd.rd: Makefile 
	distrib/alpha/common: Makefile.inc 
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
	distrib/i386/common: Makefile.inc 
	distrib/ramdisk: Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64/bsd.rd: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
Instead of using COPTS=-Oz (and similar) in make environment to force
tightly-built ramdisk kernels, set the option in per-arch Makefile.inc
based upon SMALL_KERNEL


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/14 08:57:34

Removed files:
	etc/signify    : openbsd-63-base.pub openbsd-63-fw.pub 
	                 openbsd-63-pkg.pub openbsd-63-syspatch.pub 

Log message:
63 keys no longer useful


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/14 10:43:49

Modified files:
	lib/libcrypto/evp: evp_enc.c 

Log message:
Avoid potential double-frees following EVP_CIPHER_CTX_copy().

In the case of a cipher with a custom copy control, if that control fails
we may still have pointers that we do not own in the previously copied
cipher data. Avoid potential double-frees by zeroing and freeing the
copied cipher data in this case.

Issue reported by Guido Vranken.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/14 10:46:26

Modified files:
	lib/libcrypto/evp: evp_enc.c 

Log message:
Annotate a future improvement.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/14 11:16:57

Modified files:
	lib/libcrypto/evp: evp_enc.c 

Log message:
Use calloc() when allocating cipher_data.

Avoids use of uninitialised memory.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/14 11:26:27

Modified files:
	lib/libcrypto/evp: e_aes.c 

Log message:
Remove two pointless chunks of code.

This reverts part of OpenSSL c2fd5d79, which added the same code to AES
CCM, GCM and XTS. In the case of CCM and GCM nothing assigns {ccm,gcm}.key
so there is never going to be anything to update (unlike XTS).

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/14 11:27:42

Modified files:
	lib/libcrypto/evp: e_aes.c 

Log message:
Some more malloc() to calloc() conversions.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/14 11:39:04

Modified files:
	lib/libcrypto/bio: bio_lib.c 

Log message:
Add input validation to BIO_read()/BIO_write().

Some bread/bwrite functions implement this themselves, while others do not.
This makes it consistent across all BIO implementations.

Addresses an issue that Guido Vranken found with his fuzzer.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/14 12:16:19

Modified files:
	usr.sbin/usbdevs: usbdevs.c 

Log message:
use strvis on strings from the device; ok sthen mortimer


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/04/14 12:23:42

Modified files:
	openssh        : users.html 

Log message:
ipcop discontinued


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/14 18:18:40

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 18:20:29

Modified files:
	sys/dev/pci    : if_myx.c 

Log message:
trim some debug code that printed out the name of a command

the list of commands is going to grow, but the thought of keeping
the list in debug code up to date with it just makes me feel tired.

this prints the command id number instead in the same format we
represent it in the header.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 18:28:29

Modified files:
	sys/dev/pci    : if_myxreg.h 

Log message:
there's a bunch of new commands in newer firmwares


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 18:37:52

Modified files:
	sys/dev/pci    : if_myxreg.h 

Log message:
there's some new errors that commands can complete with too


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 18:51:45

Modified files:
	sys/dev/pci    : if_myxreg.h 

Log message:
enum thing needs commas between items.

unbreaks the build...


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 20:59:41

Modified files:
	sys/dev/pci    : if_myxreg.h 

Log message:
the myx_cmd struct has to be 4 byte aligned for use with bus_space

i don't know how this didn't blow up before.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 21:06:12

Modified files:
	sys/dev/pci    : if_myx.c 

Log message:
implement SIOCGIFSFFPAGE so ifconfig can get transceiver info.

myx doesn't allow i2c writes, so you can only read whatever page
the firmware is already pointing at on device 0xa0. if you try to
read another page it will return ENXIO.

tested on a 10G-PCIE-8A-R with an xfp module.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 21:12:50

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
basic support for dumping xfp info

xfp uses a different page layout compared to sfp. xfp uses info in
INF-8077, not SFF-8472, and by default provides the info at page
1, not 0.

myx(4) supports xfp modules, but doesn't support i2c writes so it
cannot change the page the chip is looking at. it appears that myx
defaults to page 1 for xfp, so if the first read of page 0 fails
with ENXIO, try to read page 1 instead.

a 10G-PCIE-8A-R myx with the only xfp module i could find lying
around looks like this:

transceiver: XFP
model: Intel Corp TXN181070850X1J rev B3
serial: USC2048M95 date: 2005-04-13

im not sure if it's worth spending much more time on these though..


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/14 21:26:56

Modified files:
	sys/dev/pci    : if_ixl.c 
	sys/net        : if_bridge.c if_gre.c 

Log message:
Use timeout_del_barrier(9) instead of timeout_del(9) followed by
conditional timeout_barrier(9).

OK kn@ dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/14 21:37:11

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: ecoff.c 

Log message:
Add a type cast to silence clang error about an implicit conversion
from unsigned long to int.

OK deraadt@ millert@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/14 21:37:59

Modified files:
	gnu/usr.bin/binutils-2.17/gas/config: tc-mips.c 

Log message:
Use literals as format strings. This fixes an error reported by clang.

OK deraadt@ millert@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 21:39:28

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
follow the basic xfp support with basic qsfp+ support

qsfp was originally defined in SFF-8436, but the management interface
now seems to be managed in SFF-8636, so this uses sff8636 as a
prefix for qsfp things. the same spec applies to qsfp+ and probably
qsfp28.

XFP and QSFP share a bunch of offsets for where strings are located,
so this factors out the printing of those strings from the xfp code
and uses it from both the xfp and qsfp handling.

i have a qsfp+ to 4x sfp+ cable that looks like this with the new
code:

transceiver: QSFP+
model: Amphenol 601110005 rev A
serial: CN0HVVVFxxxxxxx date: 2013-04-18

if i ever get a pair of optics i can work on the diags


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/14 21:41:58

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
ethtool indicates that QSFP, QSFP+ and QSFP28 are all SFF-8636 compat.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/04/15 06:04:37

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
Remove old vlan and [-]vlandev code

These were deprecated with 6.3, but instead of removing them all together,
keep [-]vlan and [-]vlandev as aliases for [-]vnetid and [-]parent.

Alias idea from sthen
OK dlg sthen benno


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/04/15 10:10:22

Modified files:
	devel/jd-gui   : Makefile distinfo 

Log message:
update jd-gui to 1.4.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/04/15 10:17:16

Modified files:
	converters/p5-Sereal-Encoder: Makefile distinfo 

Log message:
Update p5-Sereal-Encoder to 4.007.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/04/15 10:18:54

Modified files:
	converters/p5-Sereal-Decoder: Makefile distinfo 

Log message:
Update p5-Sereal-Decoder to 4.007.


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/04/15 10:28:09

Modified files:
	.              : 65.html 

Log message:
Mention Spleen 8x16, 12x24, 16x32 and 32x64 variants, along with font
selection logic changes in rasops(9).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 10:30:52

Modified files:
	graphics/drawpile: Makefile distinfo 
	graphics/drawpile/pkg: PLIST 

Log message:
Update to drawpile-2.1.7
Changelog: https://drawpile.net/news/release-2.1.6/
Changelog: https://drawpile.net/news/release-2.1.7/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 10:34:21

Modified files:
	devel/sdl2     : Makefile 

Log message:
Add CONFIGURE_ARGS+=--disable-atomic just for hppa to unbreak there.
ok thfr@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/15 10:38:37

Modified files:
	audio/tracker  : Makefile 
	audio/tracker/patches: patch-Modules_Pro_effects_c 

Log message:
while playing with my code, I found an obvious thinko.
Modules that use arpeggio should sound much better


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 10:40:59

Modified files:
	devel/libowfat : Makefile 

Log message:
Remove BROKEN-hppa; it builds fine there
ok gsoares@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 10:43:54

Modified files:
	lang/seed7     : Makefile 

Log message:
Remove BROKEN-hppa; it builds fine


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 10:58:32

Modified files:
	devel/iso-codes: Makefile distinfo 
	devel/iso-codes/pkg: PLIST 

Log message:
update to iso-codes-4.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 10:58:55

Modified files:
	devel/apache-ant: Makefile distinfo 
	devel/apache-ant/pkg: PLIST 

Log message:
update to apache-ant-1.10.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 10:59:19

Modified files:
	net/xmlrpc-c   : Makefile distinfo 

Log message:
update to xmlrpc-c-1.39.13


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 10:59:51

Modified files:
	net/py-paho-mqtt: Makefile distinfo 
	net/py-paho-mqtt/pkg: PLIST 

Log message:
update to paho-mqtt-1.4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 11:00:09

Modified files:
	x11/lxrandr    : Makefile distinfo 
	x11/lxrandr/pkg: PLIST 

Log message:
update to lxrandr-0.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 11:02:05

Modified files:
	graphics/ttfautohint: Makefile distinfo 

Log message:
update to ttfautohint-1.8.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 11:02:12

Modified files:
	productivity/projectlibre: Makefile distinfo 

Log message:
update to projectlibre-1.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 11:04:36

Modified files:
	security/wesng : Makefile 
	security/wesng/patches: patch-wes_py 

Log message:
fix output when a single vulnerability is found


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/15 11:06:25

Modified files:
	sysutils/rclone: Makefile distinfo 
	sysutils/rclone/files: rclone.bash rclone.zsh 

Log message:
update to rclone-1.47.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 11:07:43

Modified files:
	lang/gpc       : Makefile 
Added files:
	lang/gpc/patches: patch-gcc_config_gcc 
	                  patch-gcc_config_pa_openbsd_h 

Log message:
Add hppa support to gpc
ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/15 11:09:18

Modified files:
	x11/kde-applications/kollision: Makefile 
	x11/kde-applications/kollision/pkg: DESCR 
	x11/kde-applications/okular: Makefile 
	x11/kde-applications/okular/pkg: DESCR 

Log message:
s/KDE 4/KDE/

OK sthen@ Hint by kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/04/15 11:14:14

Modified files:
	lang/go        : Makefile distinfo 
	lang/go/pkg    : PLIST 

Log message:
Update lang/go to 1.12.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/15 11:14:46

Modified files:
	databases/strigi: Makefile 

Log message:
strigi: build with -std=c++03 for all compilers

This unbreaks the build with gcc-8.

OK sthen@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/15 11:24:49

Modified files:
	games/spacehulk: Makefile 
Added files:
	games/spacehulk/patches: patch-src_smtp_cpp 

Log message:
spacehulk: fix narrowing conversion error on archs where char is
unsigned by default (ppc, arm).
While here fix spacing in the Makefile.

OK jca@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/04/15 11:25:26

Modified files:
	.              : 65.html 

Log message:
pkg counts


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/15 11:26:22

Modified files:
	devel/catch2   : Makefile distinfo 

Log message:
Update catch2 2.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/15 11:32:47

Modified files:
	net/synergy    : Makefile 

Log message:
synergy: build with -std=c++03 for all compilers
This unbreaks the build with gcc-8. Also move HOMEPAGE to https.

OK sthen@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/15 11:39:43

Modified files:
	net/psi        : Makefile 
Added files:
	net/psi/patches: patch-iris_src_xmpp_base64_base64_cpp 

Log message:
psi: fix narrowing conversion error on archs where char is
unsigned by default (ppc, arm). Tested on macppc. Also move
HOMEPAGE to https.

OK sthen@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/15 11:46:02

Modified files:
	lib/libcrypto/asn1: x_long.c 

Log message:
Avoid signed integer overflow.

Fixes oss-fuzz issue #13843.

ok tb@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/15 11:56:55

Modified files:
	.              : 65.html 

Log message:
spelling/grammar fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/15 12:11:07

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Bugfix update to firefox 66.0.3.

See https://www.mozilla.org/en-US/firefox/66.0.3/releasenotes/
Might get to 6.5-stable once i get some vm updated..


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/15 12:22:51

Modified files:
	geo/qgis       : Makefile distinfo 
Removed files:
	geo/qgis/patches: patch-src_app_qgisapp_cpp 
	                  patch-src_server_qgsserverplugins_cpp 

Log message:
Update to QGIS 3.6.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/15 12:43:35

Modified files:
	meta/kde4      : Makefile 
	x11/kde-applications: Makefile 
	x11/kde4       : Makefile 

Log message:
Disable missing KDE4 and enable more KDE5 ports


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/15 13:17:59

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 73.0.3683.103


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 13:42:05

Added files:
	security/rhash/patches: patch-librhash_byte_order_h 

Log message:
Add hppa to the list of big endian archs to allow it to build.
ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 14:40:55

Modified files:
	lang/kona      : Makefile distinfo 

Log message:
Update to kona-3.2.0.20190407


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/15 14:44:16

Modified files:
	net/wireshark  : Makefile distinfo 
	net/wireshark/patches: patch-CMakeLists_txt 

Log message:
update to wireshark-3.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/15 14:44:28

Modified files:
	mail/rspamd    : Makefile distinfo 
	mail/rspamd/pkg: PLIST 

Log message:
update to rspamd-1.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 15:04:14

Modified files:
	sysutils/bfs   : Makefile 

Log message:
Build with -DBFS_HAS_SYS_ACL=0 to ensure that bfs builds on all archs.
Noticed on hppa, also fixes macppc.
ok cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 15:09:05

Modified files:
	lang/gravity   : Makefile distinfo 

Log message:
Update to gravity-0.6.5
Changelog: https://github.com/marcobambini/gravity/compare/0.6.3...0.6.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/15 15:10:01

Modified files:
	mail/postfix/snapshot: Makefile distinfo 
	mail/postfix/snapshot/patches: patch-conf_main_cf 
	                               patch-conf_master_cf 
	                               patch-src_tls_tls_server_c 
	mail/postfix/snapshot/pkg: PLIST 
Added files:
	mail/postfix/snapshot/patches: patch-src_tls_tls_certkey_c 

Log message:
update to postfix-3.5-20190330, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/15 15:10:09

Modified files:
	mail/postfix/stable: Makefile distinfo 
	mail/postfix/stable/patches: patch-conf_main_cf 
	                             patch-conf_master_cf 
	                             patch-src_tls_tls_server_c 
	                             patch-src_util_sys_defs_h 
	mail/postfix/stable/pkg: PLIST 
Added files:
	mail/postfix/stable/patches: patch-src_tls_tls_certkey_c 

Log message:
update to postfix-3.4.5, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/15 15:20:06

Modified files:
	devel/ti-msp430gcc: Makefile 
Added files:
	devel/ti-msp430gcc/patches: patch-sources_tools_gcc_bitmap_c 
	                            patch-sources_tools_gcc_cgraph_c 
	                            patch-sources_tools_gcc_config_elfos_h 
	                            patch-sources_tools_gcc_config_msp430_msp430_c 
	                            patch-sources_tools_gcc_cppbuiltin_c 
	                            patch-sources_tools_gcc_dwarf2cfi_c 
	                            patch-sources_tools_gcc_dwarf2out_c 
	                            patch-sources_tools_gcc_ipa-devirt_c 
	                            patch-sources_tools_gcc_ipa-inline_c 
	                            patch-sources_tools_gcc_ipa-profile_c 
	                            patch-sources_tools_gcc_ipa-prop_c 
	                            patch-sources_tools_gcc_loop-iv_c 
	                            patch-sources_tools_gcc_profile_c 
	                            patch-sources_tools_gcc_stor-layout_c 
	                            patch-sources_tools_gcc_system_h 
	                            patch-sources_tools_gcc_toplev_c 
	                            patch-sources_tools_gcc_tree-ssa-reassoc_c 
	                            patch-sources_tools_gcc_value-prof_c 

Log message:
unbreak clang builds of ti-msp430gcc:
- add spaces around BAR in "foo"BAR"foo"
- #include <new> in a higher-up header, avoiding namespace issue with
fancy_abort (sort-of borrowed from FreeBSD gcc ports)


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/04/15 15:36:44

Modified files:
	sbin/pfctl     : pfctl.c pfctl.8 

Log message:
introduce 'pfctl -FR' to reset settings to defaults
(discussed with many at tech@)

OK deraadt@, kn@, sthen@, tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/04/15 15:55:08

Modified files:
	sys/net        : bpf.c bpfdesc.h 

Log message:
moving BPF to RCU

OK visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/04/15 18:29:26

Modified files:
	lang/janet     : Makefile distinfo 
	lang/janet/pkg : PLIST 

Log message:
Update janet to 0.4.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/15 19:49:44

Log message:
    import xf86-video-amdgpu 19.0.1
    ok matthieu@
    
    Status:
    
    Vendor Tag:	xorg
    Release Tags:	xf86-video-amdgpu-19_0_1
    
    N xenocara/driver/xf86-video-amdgpu/ChangeLog
    N xenocara/driver/xf86-video-amdgpu/missing
    N xenocara/driver/xf86-video-amdgpu/COPYING
    N xenocara/driver/xf86-video-amdgpu/README.md
    N xenocara/driver/xf86-video-amdgpu/ltmain.sh
    N xenocara/driver/xf86-video-amdgpu/Makefile.in
    N xenocara/driver/xf86-video-amdgpu/install-sh
    N xenocara/driver/xf86-video-amdgpu/configure.ac
    N xenocara/driver/xf86-video-amdgpu/config.h.in
    N xenocara/driver/xf86-video-amdgpu/config.sub
    N xenocara/driver/xf86-video-amdgpu/compile
    N xenocara/driver/xf86-video-amdgpu/configure
    N xenocara/driver/xf86-video-amdgpu/config.guess
    N xenocara/driver/xf86-video-amdgpu/aclocal.m4
    N xenocara/driver/xf86-video-amdgpu/depcomp
    N xenocara/driver/xf86-video-amdgpu/INSTALL
    N xenocara/driver/xf86-video-amdgpu/Makefile.am
    N xenocara/driver/xf86-video-amdgpu/conf/Makefile.in
    N xenocara/driver/xf86-video-amdgpu/conf/10-amdgpu.conf
    N xenocara/driver/xf86-video-amdgpu/conf/Makefile.am
    N xenocara/driver/xf86-video-amdgpu/m4/libtool.m4
    N xenocara/driver/xf86-video-amdgpu/m4/ltversion.m4
    N xenocara/driver/xf86-video-amdgpu/m4/ltsugar.m4
    N xenocara/driver/xf86-video-amdgpu/m4/ltoptions.m4
    N xenocara/driver/xf86-video-amdgpu/m4/lt~obsolete.m4
    N xenocara/driver/xf86-video-amdgpu/man/amdgpu.man
    N xenocara/driver/xf86-video-amdgpu/man/Makefile.in
    N xenocara/driver/xf86-video-amdgpu/man/Makefile.am
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_glamor.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_version.h
    N xenocara/driver/xf86-video-amdgpu/src/compat-api.h
    N xenocara/driver/xf86-video-amdgpu/src/drmmode_display.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_video.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_kms.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_bo_helper.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_probe.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_glamor_wrappers.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_dri2.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_misc.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_video.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_probe.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_present.c
    N xenocara/driver/xf86-video-amdgpu/src/Makefile.in
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_bo_helper.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_dri3.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_drm_queue.h
    N xenocara/driver/xf86-video-amdgpu/src/simple_list.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_drv.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_pixmap.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_dri2.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_glamor.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_pixmap.h
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_sync.c
    N xenocara/driver/xf86-video-amdgpu/src/drmmode_display.c
    N xenocara/driver/xf86-video-amdgpu/src/amdgpu_drm_queue.c
    N xenocara/driver/xf86-video-amdgpu/src/Makefile.am
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/15 19:54:21

Added files:
	driver/xf86-video-amdgpu: Makefile.bsd-wrapper 

Log message:
initial Makefile.bsd-wrapper


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 19:56:16

Modified files:
	lang/janet     : Makefile 

Log message:
Janet requires TLS, so set
COMPILER = base-clang ports-gcc
COMPILER_LANGS = c
Noticed when building janet on hppa.
ok jturner@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/15 19:59:34

Modified files:
	driver/xf86-video-amdgpu: Makefile.in aclocal.m4 compile 
	                          config.guess config.h.in config.sub 
	                          configure depcomp install-sh ltmain.sh 
	                          missing 
	driver/xf86-video-amdgpu/conf: Makefile.in 
	driver/xf86-video-amdgpu/m4: libtool.m4 ltoptions.m4 ltsugar.m4 
	                             ltversion.m4 lt~obsolete.m4 
	driver/xf86-video-amdgpu/man: Makefile.in 
	driver/xf86-video-amdgpu/src: Makefile.in 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/15 20:06:30

Modified files:
	driver         : Makefile 

Log message:
build xf86-video-amdgpu on amd64 and i386


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/15 20:08:16

Modified files:
	distrib/sets/lists/xserv: md.amd64 md.i386 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/15 20:11:27

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/15 21:52:47

Modified files:
	archivers/zstd : Makefile 

Log message:
Link with -latomic on hppa. Doesn't affect any other archs.
ok bket@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/15 22:04:19

Modified files:
	sys/net        : if.c if_var.h ifq.c ifq.h 

Log message:
have another go at tx mitigation

the idea is to call the hardware transmit routine less since in a
lot of cases posting a producer ring update to the chip is (very)
expensive. it's better to do it for several packets instead of each
packet, hence calling this tx mitigation.

this diff defers the call to the transmit routine to a network
taskq, or until a backlog of packets has built up. dragonflybsd
uses 16 as the size of it's backlog, so i'm copying them for now.

i've tried this before, but previous versions caused deadlocks. i
discovered that the deadlocks in the previous version was from
ifq_barrier calling taskq_barrier against the nettq. interfaces
generally hold NET_LOCK while calling ifq_barrier, but the tq might
already be waiting for the lock we hold.

this version just doesnt have ifq_barrier call taskq_barrier. it
instead relies on the IFF_RUNNING flag and normal ifq serialiser
barrier to guarantee the start routine wont be called when an
interface is going down. the taskq_barrier is only used during
interface destruction to make sure the task struct wont get used
in the future, which is already done without the NET_LOCK being
held.

tx mitigation provides a nice performanace bump in some setups. up
to 25% in some cases.

tested by tb@ and hrvoje popovski (who's running this in production).
ok visa@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/04/15 23:51:04

Modified files:
	app/xenodm/config: Xresources.in 
	app/xenodm/man : xenodm.man 

Log message:
Disable keyboard binding for abort-display() and update manual page.

while there remove a remaining reference to non-existent xdmshell(1).
Reported by Hiltjo Posthuma, ok solene@, bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	sunil@cvs.openbsd.org	2019/04/16 00:09:52

Modified files:
	usr.sbin/rdsetroot: Makefile rdsetroot.c 
Removed files:
	usr.sbin/rdsetroot: elf32.c elf64.c elfrd_size.c rdsetroot.h 

Log message:
Rewrite using libelf(3).

Lots of help with build/tests on sparc64 from jsg@, thank you.
ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 01:56:26

Modified files:
	devel/meson    : meson.port.mk 
	multimedia/dav1d: Makefile 

Log message:
Re-enable the assembly code on aarch64 now that it builds Ok.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:05:12

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.22.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:06:07

Modified files:
	sysutils/amazon-ecs-cli: Makefile distinfo 

Log message:
Update to ecs-cli-1.14.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:06:42

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 
	sysutils/amazon-ssm-agent/patches: 
	                                   patch-agent_appconfig_constants_unix_go 

Log message:
Update to amazon-ssm-agent-2.3.539.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:07:32

Modified files:
	www/libcroco   : Makefile distinfo 

Log message:
Update to libcroco-0.6.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:08:37

Modified files:
	textproc/libical: Makefile 
	textproc/libical/pkg: PLIST-glib PLIST-main 

Log message:
Move the share/gir-1.0/ directory to the proper subpackage.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:09:53

Modified files:
	devel/libnotify: Makefile distinfo 
	devel/libnotify/pkg: PLIST 

Log message:
Update to libnotify-0.7.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:11:11

Modified files:
	x11/gtk+3      : Makefile distinfo 
Removed files:
	x11/gtk+3/patches: patch-configure 

Log message:
Update to gtk+3-3.24.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:11:32

Modified files:
	multimedia/gstreamer1/plugins-base: Makefile 

Log message:
Sync WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:12:00

Modified files:
	graphics/graphene: Makefile distinfo 

Log message:
Update to graphene-1.8.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:13:53

Modified files:
	devel/meson    : Makefile 
Added files:
	devel/meson/patches: 
	                     patch-test_cases_common_190_openmp_meson_build 

Log message:
Fix up a few more regress tests.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:14:44

Modified files:
	sysutils/serf  : Makefile distinfo 

Log message:
Update to (hashicorp-)serf-0.8.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:15:29

Modified files:
	www/py-bokeh   : Makefile distinfo 
	www/py-bokeh/pkg: PLIST 

Log message:
Update to py-bokeh-1.1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:16:14

Modified files:
	print/py-cups  : Makefile distinfo 
	print/py-cups/patches: patch-setup_py 

Log message:
Update to py-cups-1.9.74.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:17:11

Modified files:
	net/py-smbc    : Makefile distinfo 
	net/py-smbc/pkg: PLIST 

Log message:
Update to py-smbc-1.0.16.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/16 02:55:22

Modified files:
	www/webkitgtk4 : Makefile distinfo 
Added files:
	www/webkitgtk4/patches: patch-Source_cmake_FindSSE2_cmake 

Log message:
SECURITY update to webkitgtk4-2.24.1.
https://webkitgtk.org/security/WSA-2019-0002.html


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/16 03:32:07

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
restore some missing error handling


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/16 03:40:21

Modified files:
	sys/dev/pci    : if_myx.c 

Log message:
make sff page reads work on little endian archs too. like amd64.

some modules seem to need more time when waiting for bytes while here.

hrvoje popovski hit the endian issue


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/16 05:40:18

Modified files:
	lang/erlang    : Makefile.inc 
	lang/erlang/16 : Makefile 
	lang/erlang/16/pkg: PLIST-main PLIST-wx 
	lang/erlang/17 : Makefile 
	lang/erlang/17/pkg: PLIST-main PLIST-wx 
	lang/erlang/18 : Makefile 
	lang/erlang/18/pkg: PLIST-main PLIST-wx 
	lang/erlang/19 : Makefile 
	lang/erlang/19/pkg: PLIST-main PLIST-wx 
	lang/erlang/21 : Makefile 
	lang/erlang/21/pkg: PLIST-main PLIST-wx 

Log message:
Rename lang/erlang ports makefile variables used by "gen-versions" and
in PLISTs to avoid a conflict with "COMPILER" used in bsd.port.mk,
remove a hackish workaround, and allow COMPILER to be used as intended.

Use COMPILER to build with ports-gcc on !base-clang arches, needed with
-wx on these arches.

ok cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/16 05:42:56

Modified files:
	sys/dev/pci    : if_myx.c 

Log message:
i2c reads are more reliable a byte at a time.

reading all 256 at a time was a nice idea, but meant page 0xa2 wasnt
appearing like it should. this follows what freebsd does more
closely too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/16 07:12:26

Modified files:
	net/py-aiodns  : Makefile 

Log message:
devel/py-typing does nothing for Python >= 3.5.x. Remove it as a
dependency for the python3 flavor. While here, notate that we cannot
update to aiodns >=2.0.0 if we want a python 3 flavor and update
MAINTAINER.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/16 07:15:31

Modified files:
	sys/arch/arm64/dev: simplebus.c simplebusvar.h 

Log message:
Prevent attaching drivers to devices for which we attached a driver early.

ok patrick@, dlg@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/04/16 07:15:32

Modified files:
	sys/kern       : uipc_socket2.c 

Log message:
Use the actual cluster size instead of fixed MCLBYTES for the
condition in sb_compress().  Currently the actual cluster size might
be 9KB even if the mtu is 1500, in this case a lot of memory space had
been wasted, since sbcompress() doesn't compress because of previous
condition.

ok dlg claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/16 07:16:06

Modified files:
	sys/arch/arm/simplebus: simplebus.c simplebusvar.h 

Log message:
Prevent attaching drivers to devices for which we attached a driver early.

ok patrick@, dlg@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	sunil@cvs.openbsd.org	2019/04/16 07:58:45

Modified files:
	share/man/man4 : rd.4 

Log message:
elfrdsetroot is now rdsetroot(8).

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/16 08:32:44

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
When entering kernel pages uncached we need to make sure to flush the
caches.  If the physical page was previously used by userland it is
likely that this page is still in the cache and writing to the newly
mapped page could result in unexpected behaviour.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/16 09:26:11

Modified files:
	net/dnscrypt-proxy: Makefile distinfo 
	net/dnscrypt-proxy/patches: 
	                            patch-dnscrypt-proxy_example-dnscrypt-proxy_toml 

Log message:
Update to dnscrypt-proxy-2.0.22.

Diff from Nam Nguyen <namn ! berkeley () edu>. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/16 09:30:31

Modified files:
	geo/openbsd-developers: Makefile 
	geo/openbsd-developers/files: OpenBSD 

Log message:
Adding myself to the list.

OK phessler


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/16 09:35:30

Added files:
	devel/arm-none-eabi/gdb/patches: patch-etc_texi2pod_pl 
	devel/avr/gcc/patches: patch-contrib_texi2pod_pl 
	devel/avr32/binutils/patches: patch-etc_texi2pod_pl 
	devel/avr32/gcc/patches: patch-contrib_texi2pod_pl 
	devel/avr32/gcc-bootstrap/patches: patch-contrib_texi2pod_pl 
	devel/msp430/binutils/patches: patch-etc_texi2pod_pl 
	devel/msp430/gcc/patches: patch-contrib_texi2pod_pl 
	lang/classpath/patches: patch-doc_texi2pod_pl 
	lang/gcc/4.9/patches: patch-contrib_texi2pod_pl 
	                      patch-libjava_classpath_doc_texi2pod_pl 
	lang/gpc/patches: patch-contrib_texi2pod_pl 

Log message:
fix warning and future error about unescaped left brace in perl regex


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/16 10:09:45

Modified files:
	games/dungeon-crawl: Makefile 
Added files:
	games/dungeon-crawl/patches: patch-source_direct_cc 
	                             patch-source_mon-util_h 

Log message:
dungeon-crawl: fix narrowing conversion error on archs where char is
unsigned by default (ppc, arm). Tested on macppc where it fixes the
build with gcc-8.

OK phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/16 12:03:07

Modified files:
	sys/dev/pci    : ppb.c 

Log message:
When we encounter ppb(4)s that are not configured we allocate a range
of bus numbers from the parent's bus extent.  On detach, which can
happen with hotplug-able devices, we should free those busses.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/16 12:45:41

Modified files:
	security/nss   : Makefile 
	security/nss/patches: patch-nss_coreconf_OpenBSD_mk 
Removed files:
	security/nss/patches: patch-nss_lib_freebl_alghmac_h 
	                      patch-nss_lib_freebl_blapi_h 

Log message:
Use ld(1) version scripts to fix symbol conflicts (hopefully) for good

Remove the symbol renaming workaround.  Use version scripts as done on
Linux and FreeBSD to hide internal symbols (eg HMAC_Update) that
conflict with libcrypto.

Tested in a bul by ajacoutot@, ok sthen@ naddy@, no objection landry@
(maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/16 12:48:47

Modified files:
	net/samba      : Tag: OPENBSD_6_4 Makefile distinfo 
	net/samba/patches: Tag: OPENBSD_6_4 patch-source3_wscript 
	net/samba/pkg  : Tag: OPENBSD_6_4 PLIST-ldb PLIST-main 
	                 samba_ad_dc.rc 
Added files:
	net/samba/patches: Tag: OPENBSD_6_4 patch-source3_wscript_build 

Log message:
SECURITY update to samba-4.8.11

Fixes:
- CVE-2019-3880 (Save registry file outside share as unprivileged user)

Release notes:
https://www.samba.org/samba/history/samba-4.8.11.html

6.4 tests by Ian McWilliam


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/16 13:25:36

Modified files:
	lib/libcrypto/x509v3: v3_utl.c 

Log message:
Move function types to their own lines; rewrap.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/16 13:31:07

Modified files:
	lib/libcrypto/x509v3: v3_utl.c 

Log message:
wrap an overlong line and kill a space before a tab


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/16 13:34:15

Modified files:
	lib/libcrypto/x509v3: v3_utl.c 

Log message:
indent err: labels


CVSROOT:	/cvs
Module name:	www
Changes by:	landry@cvs.openbsd.org	2019/04/16 13:35:36

Modified files:
	faq            : faq17.html 

Log message:
Fix thinko in full site-to-site sample config.

I need to get back to this someday, hopefully.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/16 13:42:20

Modified files:
	lib/libcrypto/x509v3: v3_utl.c 

Log message:
Rewrite & fix X509V3_add_value()

X509V3_add_value() helpfully allocates a STACK_OF(CONF_VALUE) if it
receives a pointer to a NULL pointer.  If anything fails along the way,
it is however the caller's responsibility to free it.  This can easily
be fixed by freeing *extlist in the error path and zeroing it to avoid
a double free if there happens to be a caller out there that avoids
the leak.

Polish a few things so the function conforms a bit better to our usual
style.

tweak & ok jsing


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/04/16 14:02:26

Added files:
	faq            : upgrade65.html 

Log message:
add upgrade notes for 6.4 -> 6.5


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/04/16 14:03:08

Modified files:
	faq            : upgrade64.html 

Log message:
add link to upgrade65.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/16 14:13:09

Modified files:
	geo/osm2pgsql  : Makefile 
	geo/qlandkartegt: Makefile 
	geo/spatialite : Makefile.inc 
	geo/spatialite/gis: Makefile 
	geo/spatialite/gui: Makefile 
	geo/mapserver  : Makefile 
	geo/libosmium  : Makefile 
	geo/merkaartor : Makefile 
	comms/xastir   : Makefile 

Log message:
Add -DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1 to CFLAGS/CXXFLAGS where
appropriate in various devel/proj consumers to fix build with upcoming
proj 6 update, which will be commited in a month or so.

Thx to https://github.com/OSGeo/proj.4/wiki/proj.h-adoption-status for
linking the various upstream issues about it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/16 14:19:02

Modified files:
	archivers/innoextract: Makefile 
	audio/cmus     : Makefile 
	audio/flac123  : Makefile 
	audio/libdiscid: Makefile 
	editors/elvis  : Makefile 
	games/golly    : Makefile 
	games/teeworlds: Makefile 
	misc/reprepro  : Makefile 
	sysutils/dosfstools: Makefile 

Log message:
drop Donovan Watteau as maintainer as requested
(plus a little COMPILER tidying while there)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/16 14:38:52

Log message:
    import pixiewps:
    
    Pixiewps is a tool written in C used to bruteforce offline the WPS PIN
    exploiting the low or non-existing entropy of some software
    implementations, the so-called "pixie-dust attack" discovered by
    Dominique Bongard in summer 2014. It is meant for educational purposes
    only.
    
    As opposed to the traditional online brute-force attack, implemented in
    tools like Reaver or Bully which aim to recover the pin in a few hours,
    this method can get the PIN in only a matter of seconds or minutes,
    depending on the target, if vulnerable.
    
    feedback and OK already a while ago sthen@, gonzalo@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190416
    
    N ports/security/pixiewps/Makefile
    N ports/security/pixiewps/distinfo
    N ports/security/pixiewps/pkg/DESCR
    N ports/security/pixiewps/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/16 14:45:43

Log message:
    import reaver
    
    Reaver implements a brute force attack against Wifi Protected Setup
    (WPS) registrar PINs in order to recover WPA/WPA2 passphrases, as
    described in Brute forcing Wi-Fi Protected Setup When poor design meets
    poor implementation. by Stefan Viehboeck.  Reaver has been designed to
    be a robust and practical attack against Wi-Fi Protected Setup (WPS)
    registrar PINs in order to recover WPA/WPA2 passphrases and has been
    tested against a wide variety of access points and WPS implementations.
    Depending on the target's Access Point (AP), to recover the plain text
    WPA/WPA2 passphrase the average amount of time for the transitional
    online brute force method is between 4-10 hours. In practice, it will
    generally take half this time to guess the correct WPS pin and recover
    the passphrase. When using the offline attack, if the AP is vulnerable,
    it may take only a matter of seconds to minutes.
    
    feedback and OK already some time ago sthen@, gonzalo@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190416
    
    N ports/security/reaver/Makefile
    N ports/security/reaver/distinfo
    N ports/security/reaver/patches/patch-src_80211_c
    N ports/security/reaver/patches/patch-src_builder_c
    N ports/security/reaver/patches/patch-src_iface_c
    N ports/security/reaver/patches/patch-src_lwe_iwlib_h
    N ports/security/reaver/patches/patch-src_config_mak_in
    N ports/security/reaver/pkg/DESCR
    N ports/security/reaver/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/16 14:48:28

Modified files:
	security       : Makefile 

Log message:
hook up pixiewps and reaver


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/16 14:52:47

Modified files:
	usr.sbin/httpd : httpd.conf.5 

Log message:
document where multiline {} is applicable;
lack of documentation and original diff provided by alfred morgan;
benno helped me track down the applicable options;

ok benno


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/16 15:29:11

Modified files:
	faq            : upgrade65.html 

Log message:
fix a broken link


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/16 18:45:03

Modified files:
	sys/net        : if_mpw.c if_mpip.c if_mpe.c 

Log message:
use txprio to control the use of exp as a priority field

by default txprio is set to 0, so the exp field will be 0. howerver,
txprio on mpe/mpw/mpip can be configured with other values or
settings like our other tunnel or encapsulation interfaces.
intermediate LSPs can use the exp field to manage their prioritisation
of encapsulated traffic.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/16 19:57:21

Modified files:
	sys/net        : if_mpw.c 

Log message:
don't lose the TTL on FAT labels


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/04/16 20:24:57

Modified files:
	sysutils/raspberrypi-firmware: Makefile distinfo 

Log message:
update to 1.20190401


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/16 20:45:02

Modified files:
	share/man/man4 : myx.4 

Log message:
myx can't reconfigure xfp/sfp/sfp+ modules


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/04/16 23:13:29

Modified files:
	faq            : upgrade65.html 

Log message:
Add a list of obsolete perl files to remove supplied by afresh1

Make the remove files section match the style used in previous
upgrade*.html.

OK tb@ with a formatting tweak


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/04/16 23:56:58

Modified files:
	devel/py-xlsxwriter: Makefile distinfo 

Log message:
update XlsxWriter to 1.1.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/17 00:39:55

Modified files:
	security/lastpass-cli: Makefile distinfo 

Log message:
Update to lastpass-cli-1.3.3.

Changelog: https://github.com/lastpass/lastpass-cli/blob/master/CHANGELOG.md

Upstream provides distfile via githubs release infrastructure.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/04/17 00:48:23

Modified files:
	faq            : upgrade65.html 

Log message:
fix some validator nits


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/04/17 00:51:25

Modified files:
	faq            : current.html 

Log message:
roll current.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/17 00:56:00

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-src_bootstrap_bin_rustc_rs 
	                   patch-src_bootstrap_lib_rs 
	                   patch-src_librustc_target_spec_i686_unknown_openbsd_rs 
	                   patch-src_librustdoc_test_rs 
	                   patch-src_libstd_sys_unix_ext_net_rs 
	                   patch-src_tools_cargo_src_cargo_core_compiler_context_compilation_files_rs 
	lang/rust/pkg  : PFRAG.aarch64-doc PFRAG.aarch64-main 
	                 PFRAG.amd64-doc PFRAG.amd64-main PFRAG.i386-doc 
	                 PFRAG.i386-main PLIST-doc PLIST-gdb 
Removed files:
	lang/rust/patches: patch-src_stdsimd_coresimd_x86_mod_rs 
	                   patch-src_tools_linkchecker_main_rs 
	                   patch-src_tools_tidy_src_features_rs 

Log message:
update to 1.34.0

announce: https://blog.rust-lang.org/2019/04/11/Rust-1.34.0.html
changelog: https://github.com/rust-lang/rust/blob/stable/RELEASES.md#version-1340-2019-04-11


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/17 00:59:18

Modified files:
	productivity/tryton/5.0/proteus: Makefile distinfo 

Log message:
tryton 5.0: maintenance update

it seems I missed proteus in latest commits


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/04/17 01:32:02

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgAdd.pm 

Log message:
fix spelling in pkg_add output: tieing -> tying
ok espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/17 02:01:01

Modified files:
	archivers/zstd : Makefile distinfo 
	archivers/zstd/patches: patch-lib_Makefile 

Log message:
Update to zstd-1.4.0.

Changelog: https://github.com/facebook/zstd/blob/master/CHANGELOG

Bump major of SHARED_LIBS as symbols have been removed.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/17 03:40:27

Modified files:
	devel/github-backup: Makefile distinfo 

Log message:
update to github-backup-0.22.2, from maintainer Laurie Tratt


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/17 05:48:55

Modified files:
	www/iridium    : Makefile distinfo 
	www/iridium/patches: patch-BUILD_gn 
	                     patch-apps_ui_views_app_window_frame_view_cc 
	                     patch-ash_display_mirror_window_controller_cc 
	                     patch-base_BUILD_gn 
	                     patch-base_allocator_allocator_shim_cc 
	                     patch-base_atomicops_h 
	                     patch-base_base_paths_posix_cc 
	                     patch-base_debug_debugger_posix_cc 
	                     patch-base_debug_elf_reader_linux_cc 
	                     patch-base_debug_proc_maps_linux_cc 
	                     patch-base_debug_stack_trace_h 
	                     patch-base_debug_stack_trace_posix_cc 
	                     patch-base_files_file_path_watcher_kqueue_h 
	                     patch-base_files_file_path_watcher_stub_cc 
	                     patch-base_files_file_util_posix_cc 
	                     patch-base_files_memory_mapped_file_posix_cc 
	                     patch-base_i18n_icu_util_cc 
	                     patch-base_linux_util_cc 
	                     patch-base_native_library_posix_cc 
	                     patch-base_posix_can_lower_nice_to_cc 
	                     patch-base_posix_unix_domain_socket_cc 
	                     patch-base_process_kill_h 
	                     patch-base_process_kill_posix_cc 
	                     patch-base_process_launch_h 
	                     patch-base_process_memory_cc 
	                     patch-base_process_process_handle_cc 
	                     patch-base_process_process_handle_h 
	                     patch-base_process_process_handle_openbsd_cc 
	                     patch-base_process_process_iterator_openbsd_cc 
	                     patch-base_process_process_metrics_h 
	                     patch-base_process_process_metrics_openbsd_cc 
	                     patch-base_process_process_metrics_posix_cc 
	                     patch-base_process_process_posix_cc 
	                     patch-base_rand_util_h 
	                     patch-base_rand_util_posix_cc 
	                     patch-base_test_launcher_test_launcher_cc 
	                     patch-base_test_test_file_util_linux_cc 
	                     patch-base_third_party_libevent_event-config_h 
	                     patch-base_third_party_libevent_openbsd_config_h 
	                     patch-base_third_party_libevent_openbsd_event-config_h 
	                     patch-base_third_party_symbolize_symbolize_cc 
	                     patch-base_threading_platform_thread_h 
	                     patch-base_threading_platform_thread_linux_cc 
	                     patch-base_threading_platform_thread_posix_cc 
	                     patch-base_threading_thread_task_runner_handle_cc 
	                     patch-base_trace_event_malloc_dump_provider_cc 
	                     patch-base_trace_event_process_memory_dump_cc 
	                     patch-base_trace_event_process_memory_dump_h 
	                     patch-build_config_BUILDCONFIG_gn 
	                     patch-build_config_BUILD_gn 
	                     patch-build_config_allocator_gni 
	                     patch-build_config_c++_c++_gni 
	                     patch-build_config_compiler_BUILD_gn 
	                     patch-build_config_compiler_compiler_gni 
	                     patch-build_config_features_gni 
	                     patch-build_config_linux_BUILD_gn 
	                     patch-build_config_linux_pkg-config_py 
	                     patch-build_detect_host_arch_py 
	                     patch-build_gn_run_binary_py 
	                     patch-build_toolchain_gcc_solink_wrapper_py 
	                     patch-build_toolchain_gcc_toolchain_gni 
	                     patch-build_toolchain_openbsd_BUILD_gn 
	                     patch-cc_BUILD_gn 
	                     patch-chrome_app_chrome_command_ids_h 
	                     patch-chrome_app_chrome_main_cc 
	                     patch-chrome_app_chrome_main_delegate_cc 
	                     patch-chrome_app_chromium_strings_grd 
	                     patch-chrome_app_generated_resources_grd 
	                     patch-chrome_app_google_chrome_strings_grd 
	                     patch-chrome_app_settings_strings_grdp 
	                     patch-chrome_app_shutdown_signal_handlers_posix_cc 
	                     patch-chrome_app_theme_chrome_unscaled_resources_grd 
	                     patch-chrome_browser_about_flags_cc 
	                     patch-chrome_browser_after_startup_task_utils_cc 
	                     patch-chrome_browser_apps_platform_apps_api_music_manager_private_device_id_linux_cc 
	                     patch-chrome_browser_autocomplete_chrome_autocomplete_scheme_classifier_cc 
	                     patch-chrome_browser_background_background_mode_optimizer_cc 
	                     patch-chrome_browser_browser_process_impl_cc 
	                     patch-chrome_browser_browser_process_impl_h 
	                     patch-chrome_browser_browser_resources_grd 
	                     patch-chrome_browser_chrome_browser_main_cc 
	                     patch-chrome_browser_chrome_browser_main_linux_cc 
	                     patch-chrome_browser_chrome_content_browser_client_cc 
	                     patch-chrome_browser_chrome_content_browser_client_h 
	                     patch-chrome_browser_custom_handlers_protocol_handler_registry_cc 
	                     patch-chrome_browser_defaults_cc 
	                     patch-chrome_browser_devtools_devtools_eye_dropper_cc 
	                     patch-chrome_browser_diagnostics_diagnostics_writer_h 
	                     patch-chrome_browser_download_chrome_download_manager_delegate_cc 
	                     patch-chrome_browser_download_download_commands_cc 
	                     patch-chrome_browser_download_download_commands_h 
	                     patch-chrome_browser_download_download_prefs_cc 
	                     patch-chrome_browser_download_download_prefs_h 
	                     patch-chrome_browser_download_download_shelf_context_menu_cc 
	                     patch-chrome_browser_download_download_status_updater_cc 
	                     patch-chrome_browser_extensions_BUILD_gn 
	                     patch-chrome_browser_extensions_api_image_writer_private_removable_storage_provider_cc 
	                     patch-chrome_browser_extensions_api_input_ime_input_ime_api_h 
	                     patch-chrome_browser_extensions_api_settings_private_prefs_util_cc 
	                     patch-chrome_browser_extensions_bookmark_app_helper_cc 
	                     patch-chrome_browser_extensions_browser_context_keyed_service_factories_cc 
	                     patch-chrome_browser_extensions_external_provider_impl_cc 
	                     patch-chrome_browser_first_run_first_run_internal_posix_cc 
	                     patch-chrome_browser_flag_descriptions_cc 
	                     patch-chrome_browser_flag_descriptions_h 
	                     patch-chrome_browser_media_galleries_fileapi_mtp_device_map_service_cc 
	                     patch-chrome_browser_media_galleries_media_file_system_registry_cc 
	                     patch-chrome_browser_media_router_discovery_discovery_network_list_posix_cc 
	                     patch-chrome_browser_media_router_discovery_discovery_network_list_wifi_linux_cc 
	                     patch-chrome_browser_media_webrtc_webrtc_event_log_uploader_cc 
	                     patch-chrome_browser_media_webrtc_webrtc_log_uploader_cc 
	                     patch-chrome_browser_memory_details_cc 
	                     patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc 
	                     patch-chrome_browser_metrics_chrome_metrics_service_client_cc 
	                     patch-chrome_browser_net_system_network_context_manager_cc 
	                     patch-chrome_browser_password_manager_password_store_factory_cc 
	                     patch-chrome_browser_platform_util_h 
	                     patch-chrome_browser_platform_util_linux_cc 
	                     patch-chrome_browser_plugins_plugins_resource_service_cc 
	                     patch-chrome_browser_prefs_browser_prefs_cc 
	                     patch-chrome_browser_prefs_pref_service_incognito_whitelist_cc 
	                     patch-chrome_browser_process_singleton_posix_cc 
	                     patch-chrome_browser_profiles_chrome_browser_main_extra_parts_profiles_cc 
	                     patch-chrome_browser_profiles_profile_impl_cc 
	                     patch-chrome_browser_profiles_profile_io_data_cc 
	                     patch-chrome_browser_renderer_preferences_util_cc 
	                     patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                     patch-chrome_browser_resources_safe_browsing_gen_file_type_proto_py 
	                     patch-chrome_browser_resources_settings_appearance_page_appearance_browser_proxy_js 
	                     patch-chrome_browser_resources_settings_appearance_page_appearance_page_html 
	                     patch-chrome_browser_resources_settings_appearance_page_appearance_page_js 
	                     patch-chrome_browser_safe_browsing_incident_reporting_incident_reporting_service_cc 
	                     patch-chrome_browser_ssl_ssl_error_controller_client_cc 
	                     patch-chrome_browser_sync_chrome_sync_client_cc 
	                     patch-chrome_browser_task_manager_sampling_task_group_cc 
	                     patch-chrome_browser_task_manager_sampling_task_group_h 
	                     patch-chrome_browser_task_manager_sampling_task_group_sampler_cc 
	                     patch-chrome_browser_task_manager_sampling_task_group_sampler_h 
	                     patch-chrome_browser_task_manager_sampling_task_manager_impl_cc 
	                     patch-chrome_browser_task_manager_task_manager_observer_h 
	                     patch-chrome_browser_tracing_crash_service_uploader_cc 
	                     patch-chrome_browser_ui_browser_command_controller_cc 
	                     patch-chrome_browser_ui_browser_view_prefs_cc 
	                     patch-chrome_browser_ui_browser_window_h 
	                     patch-chrome_browser_ui_exclusive_access_exclusive_access_bubble_cc 
	                     patch-chrome_browser_ui_input_method_input_method_engine_base_cc 
	                     patch-chrome_browser_ui_input_method_input_method_engine_h 
	                     patch-chrome_browser_ui_libgtkui_print_dialog_gtk_cc 
	                     patch-chrome_browser_ui_sad_tab_cc 
	                     patch-chrome_browser_ui_startup_bad_flags_prompt_cc 
	                     patch-chrome_browser_ui_startup_startup_browser_creator_cc 
	                     patch-chrome_browser_ui_tab_helpers_cc 
	                     patch-chrome_browser_ui_task_manager_task_manager_columns_cc 
	                     patch-chrome_browser_ui_task_manager_task_manager_table_model_cc 
	                     patch-chrome_browser_ui_toolbar_app_menu_model_cc 
	                     patch-chrome_browser_ui_views_accelerator_table_cc 
	                     patch-chrome_browser_ui_views_chrome_browser_main_extra_parts_views_cc 
	                     patch-chrome_browser_ui_views_chrome_views_delegate_h 
	                     patch-chrome_browser_ui_views_first_run_dialog_cc 
	                     patch-chrome_browser_ui_views_frame_browser_frame_cc 
	                     patch-chrome_browser_ui_views_frame_browser_non_client_frame_view_factory_views_cc 
	                     patch-chrome_browser_ui_views_frame_browser_view_cc 
	                     patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc 
	                     patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_platform_specific_cc 
	                     patch-chrome_browser_ui_views_frame_system_menu_model_builder_cc 
	                     patch-chrome_browser_ui_views_frame_system_menu_model_delegate_cc 
	                     patch-chrome_browser_ui_views_tabs_new_tab_button_cc 
	                     patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                     patch-chrome_browser_ui_webui_about_ui_cc 
	                     patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc 
	                     patch-chrome_browser_ui_webui_settings_appearance_handler_cc 
	                     patch-chrome_browser_ui_webui_settings_appearance_handler_h 
	                     patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                     patch-chrome_browser_web_applications_extensions_web_app_extension_shortcut_cc 
	                     patch-chrome_common_BUILD_gn 
	                     patch-chrome_common_chrome_features_cc 
	                     patch-chrome_common_chrome_features_h 
	                     patch-chrome_common_chrome_paths_cc 
	                     patch-chrome_common_chrome_paths_h 
	                     patch-chrome_common_chrome_paths_internal_h 
	                     patch-chrome_common_chrome_switches_cc 
	                     patch-chrome_common_chrome_switches_h 
	                     patch-chrome_common_extensions_command_cc 
	                     patch-chrome_common_pref_names_cc 
	                     patch-chrome_common_pref_names_h 
	                     patch-chrome_common_webui_url_constants_cc 
	                     patch-chrome_common_webui_url_constants_h 
	                     patch-chrome_renderer_chrome_content_renderer_client_cc 
	                     patch-chrome_renderer_pepper_pepper_flash_font_file_host_cc 
	                     patch-chrome_renderer_pepper_pepper_flash_font_file_host_h 
	                     patch-chrome_service_cloud_print_print_system_cc 
	                     patch-chrome_test_chromedriver_chrome_chrome_finder_cc 
	                     patch-chromecast_browser_cast_browser_main_parts_cc 
	                     patch-chromecast_browser_cast_content_browser_client_cc 
	                     patch-components_autofill_core_browser_autofill_experiments_cc 
	                     patch-components_autofill_core_browser_autofill_experiments_h 
	                     patch-components_autofill_core_common_autofill_util_cc 
	                     patch-components_autofill_strings_grdp 
	                     patch-components_content_settings_core_browser_website_settings_registry_cc 
	                     patch-components_cookie_config_cookie_store_util_cc 
	                     patch-components_crash_content_app_BUILD_gn 
	                     patch-components_crash_content_app_crashpad_cc 
	                     patch-components_crash_content_browser_BUILD_gn 
	                     patch-components_crash_core_common_BUILD_gn 
	                     patch-components_download_internal_common_base_file_cc 
	                     patch-components_download_quarantine_quarantine_cc 
	                     patch-components_download_quarantine_quarantine_linux_cc 
	                     patch-components_feature_engagement_public_event_constants_cc 
	                     patch-components_feature_engagement_public_event_constants_h 
	                     patch-components_metrics_BUILD_gn 
	                     patch-components_metrics_drive_metrics_provider_linux_cc 
	                     patch-components_neterror_resources_neterror_js 
	                     patch-components_network_session_configurator_browser_network_session_configurator_cc 
	                     patch-components_new_or_sad_tab_strings_grdp 
	                     patch-components_os_crypt_keyring_util_linux_cc 
	                     patch-components_os_crypt_libsecret_util_linux_cc 
	                     patch-components_os_crypt_os_crypt_h 
	                     patch-components_policy_resources_policy_templates_json 
	                     patch-components_policy_tools_generate_policy_source_py 
	                     patch-components_previews_core_previews_features_cc 
	                     patch-components_services_filesystem_file_system_app_cc 
	                     patch-components_services_font_font_service_app_cc 
	                     patch-components_storage_monitor_BUILD_gn 
	                     patch-components_storage_monitor_removable_device_constants_cc 
	                     patch-components_storage_monitor_removable_device_constants_h 
	                     patch-components_storage_monitor_storage_monitor_openbsd_cc 
	                     patch-components_storage_monitor_storage_monitor_openbsd_h 
	                     patch-components_sync_base_get_session_name_cc 
	                     patch-components_sync_base_get_session_name_linux_cc 
	                     patch-components_sync_device_info_local_device_info_provider_impl_cc 
	                     patch-content_app_content_main_runner_impl_cc 
	                     patch-content_browser_BUILD_gn 
	                     patch-content_browser_browser_child_process_host_impl_cc 
	                     patch-content_browser_browser_main_loop_cc 
	                     patch-content_browser_child_process_launcher_helper_linux_cc 
	                     patch-content_browser_gpu_gpu_process_host_cc 
	                     patch-content_browser_media_media_internals_cc 
	                     patch-content_browser_memory_memory_monitor_cc 
	                     patch-content_browser_memory_swap_metrics_driver_impl_linux_cc 
	                     patch-content_browser_renderer_host_input_input_device_change_observer_cc 
	                     patch-content_browser_renderer_host_pepper_pepper_file_io_host_cc 
	                     patch-content_browser_renderer_host_render_message_filter_cc 
	                     patch-content_browser_renderer_host_render_message_filter_h 
	                     patch-content_browser_renderer_host_render_process_host_impl_cc 
	                     patch-content_browser_renderer_host_render_process_host_impl_h 
	                     patch-content_browser_renderer_host_render_view_host_impl_cc 
	                     patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                     patch-content_browser_renderer_host_render_widget_host_view_event_handler_cc 
	                     patch-content_browser_scheduler_responsiveness_native_event_observer_cc 
	                     patch-content_browser_scheduler_responsiveness_native_event_observer_h 
	                     patch-content_browser_service_manager_service_manager_context_cc 
	                     patch-content_common_common_sandbox_support_linux_cc 
	                     patch-content_common_sandbox_init_linux_cc 
	                     patch-content_common_user_agent_cc 
	                     patch-content_gpu_gpu_main_cc 
	                     patch-content_gpu_gpu_sandbox_hook_linux_cc 
	                     patch-content_ppapi_plugin_ppapi_blink_platform_impl_cc 
	                     patch-content_ppapi_plugin_ppapi_blink_platform_impl_h 
	                     patch-content_ppapi_plugin_ppapi_plugin_main_cc 
	                     patch-content_public_common_common_param_traits_macros_h 
	                     patch-content_public_common_content_switches_cc 
	                     patch-content_public_common_content_switches_h 
	                     patch-content_public_common_renderer_preferences_h 
	                     patch-content_public_common_use_zoom_for_dsf_policy_cc 
	                     patch-content_renderer_media_stream_processed_local_audio_source_cc 
	                     patch-content_renderer_render_process_impl_cc 
	                     patch-content_renderer_render_thread_impl_cc 
	                     patch-content_renderer_renderer_blink_platform_impl_cc 
	                     patch-content_renderer_renderer_blink_platform_impl_h 
	                     patch-content_renderer_renderer_main_platform_delegate_linux_cc 
	                     patch-content_shell_browser_shell_browser_context_cc 
	                     patch-content_shell_browser_shell_browser_main_parts_cc 
	                     patch-content_utility_utility_blink_platform_with_sandbox_support_impl_cc 
	                     patch-content_utility_utility_blink_platform_with_sandbox_support_impl_h 
	                     patch-content_utility_utility_main_cc 
	                     patch-device_bluetooth_BUILD_gn 
	                     patch-device_gamepad_gamepad_provider_cc 
	                     patch-device_usb_BUILD_gn 
	                     patch-extensions_browser_api_messaging_message_service_cc 
	                     patch-extensions_browser_api_networking_private_networking_private_delegate_factory_cc 
	                     patch-extensions_browser_browser_context_keyed_service_factories_cc 
	                     patch-extensions_common_api__permission_features_json 
	                     patch-extensions_common_feature_switch_cc 
	                     patch-extensions_common_features_feature_cc 
	                     patch-extensions_shell_app_shell_main_delegate_cc 
	                     patch-gpu_command_buffer_common_gpu_memory_buffer_support_cc 
	                     patch-gpu_ipc_common_gpu_memory_buffer_support_cc 
	                     patch-gpu_ipc_common_gpu_memory_buffer_support_h 
	                     patch-gpu_ipc_service_gpu_init_cc 
	                     patch-gpu_ipc_service_gpu_memory_buffer_factory_cc 
	                     patch-gpu_ipc_service_gpu_watchdog_thread_cc 
	                     patch-gpu_ipc_service_gpu_watchdog_thread_h 
	                     patch-headless_lib_browser_headless_content_browser_client_cc 
	                     patch-headless_lib_browser_headless_content_browser_client_h 
	                     patch-headless_lib_browser_headless_request_context_manager_cc 
	                     patch-headless_lib_headless_macros_h 
	                     patch-ipc_ipc_channel_common_cc 
	                     patch-ipc_ipc_channel_h 
	                     patch-ipc_ipc_channel_mojo_cc 
	                     patch-ipc_ipc_message_utils_cc 
	                     patch-ipc_ipc_message_utils_h 
	                     patch-media_BUILD_gn 
	                     patch-media_audio_BUILD_gn 
	                     patch-media_audio_audio_input_device_cc 
	                     patch-media_audio_audio_manager_cc 
	                     patch-media_audio_audio_manager_h 
	                     patch-media_base_audio_latency_cc 
	                     patch-media_base_scopedfd_helper_h 
	                     patch-media_base_vector_math_cc 
	                     patch-media_base_video_frame_cc 
	                     patch-media_base_video_frame_h 
	                     patch-media_capture_video_create_video_capture_device_factory_cc 
	                     patch-media_capture_video_fake_video_capture_device_factory_cc 
	                     patch-media_capture_video_file_video_capture_device_factory_cc 
	                     patch-media_capture_video_linux_v4l2_capture_delegate_cc 
	                     patch-media_capture_video_mock_gpu_memory_buffer_manager_cc 
	                     patch-media_capture_video_shared_memory_handle_provider_cc 
	                     patch-media_capture_video_shared_memory_handle_provider_h 
	                     patch-media_capture_video_video_capture_buffer_pool_impl_cc 
	                     patch-media_capture_video_video_capture_device_client_cc 
	                     patch-media_media_options_gni 
	                     patch-media_video_gpu_memory_buffer_video_frame_pool_cc 
	                     patch-mojo_public_c_system_thunks_cc 
	                     patch-net_BUILD_gn 
	                     patch-net_base_address_tracker_linux_cc 
	                     patch-net_base_address_tracker_linux_h 
	                     patch-net_base_network_change_notifier_cc 
	                     patch-net_base_network_interfaces_posix_h 
	                     patch-net_disk_cache_blockfile_disk_format_h 
	                     patch-net_dns_address_sorter_posix_cc 
	                     patch-net_dns_dns_util_cc 
	                     patch-net_dns_host_resolver_proc_cc 
	                     patch-net_http_http_network_session_cc 
	                     patch-net_proxy_resolution_proxy_config_service_linux_cc 
	                     patch-net_proxy_resolution_proxy_resolution_service_cc 
	                     patch-net_socket_socks5_client_socket_cc 
	                     patch-net_socket_udp_socket_posix_cc 
	                     patch-net_third_party_quic_platform_impl_quic_ip_address_impl_cc 
	                     patch-net_tools_cert_verify_tool_cert_verify_tool_cc 
	                     patch-net_url_request_url_request_context_builder_cc 
	                     patch-pdf_pdfium_pdfium_engine_cc 
	                     patch-printing_backend_print_backend_cups_h 
	                     patch-remoting_base_chromoting_event_cc 
	                     patch-remoting_client_display_sys_opengl_h 
	                     patch-remoting_host_evaluate_capability_cc 
	                     patch-remoting_host_host_attributes_cc 
	                     patch-remoting_host_host_details_cc 
	                     patch-remoting_host_it2me_it2me_native_messaging_host_main_cc 
	                     patch-remoting_host_me2me_desktop_environment_cc 
	                     patch-remoting_host_remoting_me2me_host_cc 
	                     patch-remoting_webapp_base_js_platform_js 
	                     patch-sandbox_BUILD_gn 
	                     patch-sandbox_features_gni 
	                     patch-sandbox_linux_BUILD_gn 
	                     patch-sandbox_linux_services_init_process_reaper_cc 
	                     patch-sandbox_linux_services_libc_interceptor_cc 
	                     patch-services_audio_audio_sandbox_hook_linux_cc 
	                     patch-services_catalog_store_cc 
	                     patch-services_catalog_store_h 
	                     patch-services_content_simple_browser_simple_browser_service_cc 
	                     patch-services_content_simple_browser_simple_browser_service_h 
	                     patch-services_device_geolocation_location_arbitrator_cc 
	                     patch-services_device_hid_BUILD_gn 
	                     patch-services_device_time_zone_monitor_time_zone_monitor_cc 
	                     patch-services_device_time_zone_monitor_time_zone_monitor_linux_cc 
	                     patch-services_network_BUILD_gn 
	                     patch-services_network_network_context_cc 
	                     patch-services_network_network_sandbox_hook_linux_cc 
	                     patch-services_network_network_service_cc 
	                     patch-services_network_network_service_h 
	                     patch-services_resource_coordinator_public_cpp_memory_instrumentation_os_metrics_h 
	                     patch-services_resource_coordinator_public_cpp_memory_instrumentation_os_metrics_linux_cc 
	                     patch-services_service_manager_embedder_main_cc 
	                     patch-services_service_manager_embedder_switches_cc 
	                     patch-services_service_manager_embedder_switches_h 
	                     patch-services_service_manager_runner_host_BUILD_gn 
	                     patch-services_service_manager_sandbox_BUILD_gn 
	                     patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_cc 
	                     patch-services_service_manager_sandbox_sandbox_cc 
	                     patch-services_service_manager_sandbox_sandbox_h 
	                     patch-services_service_manager_zygote_common_zygote_features_gni 
	                     patch-services_service_manager_zygote_host_zygote_host_impl_linux_cc 
	                     patch-services_service_manager_zygote_host_zygote_host_impl_linux_h 
	                     patch-services_service_manager_zygote_zygote_host_linux_h 
	                     patch-services_service_manager_zygote_zygote_linux_cc 
	                     patch-services_service_manager_zygote_zygote_main_linux_cc 
	                     patch-skia_ext_SkMemory_new_handler_cpp 
	                     patch-third_party_angle_BUILD_gn 
	                     patch-third_party_angle_src_gpu_info_util_SystemInfo_internal_h 
	                     patch-third_party_angle_src_gpu_info_util_SystemInfo_linux_cpp 
	                     patch-third_party_angle_src_gpu_info_util_SystemInfo_x11_cpp 
	                     patch-third_party_angle_src_libANGLE_Display_cpp 
	                     patch-third_party_angle_third_party_vulkan-loader_BUILD_gn 
	                     patch-third_party_angle_third_party_vulkan-loader_src_loader_loader_c 
	                     patch-third_party_angle_third_party_vulkan-loader_src_loader_vk_loader_platform_h 
	                     patch-third_party_angle_third_party_vulkan-validation-layers_src_layers_vk_loader_platform_h 
	                     patch-third_party_blink_public_platform_web_vector_h 
	                     patch-third_party_blink_renderer_core_editing_editing_behavior_cc 
	                     patch-third_party_blink_renderer_core_html_canvas_canvas_async_blob_creator_cc 
	                     patch-third_party_blink_renderer_core_html_forms_internal_popup_menu_cc 
	                     patch-third_party_blink_renderer_core_inspector_inspector_memory_agent_cc 
	                     patch-third_party_blink_renderer_core_layout_layout_view_cc 
	                     patch-third_party_blink_renderer_core_scroll_scrollbar_theme_aura_cc 
	                     patch-third_party_blink_renderer_platform_BUILD_gn 
	                     patch-third_party_blink_renderer_platform_fonts_font_cache_cc 
	                     patch-third_party_blink_renderer_platform_fonts_font_cache_h 
	                     patch-third_party_blink_renderer_platform_fonts_font_description_cc 
	                     patch-third_party_blink_renderer_platform_fonts_font_metrics_cc 
	                     patch-third_party_blink_renderer_platform_fonts_skia_font_cache_skia_cc 
	                     patch-third_party_blink_renderer_platform_heap_stack_frame_depth_cc 
	                     patch-third_party_blink_renderer_platform_heap_thread_state_cc 
	                     patch-third_party_blink_renderer_platform_wtf_BUILD_gn 
	                     patch-third_party_blink_renderer_platform_wtf_stack_util_cc 
	                     patch-third_party_boringssl_BUILD_generated_gni 
	                     patch-third_party_boringssl_src_crypto_fipsmodule_rand_urandom_c 
	                     patch-third_party_boringssl_src_crypto_rand_extra_arc4random_c 
	                     patch-third_party_boringssl_src_include_openssl_base_h 
	                     patch-third_party_boringssl_src_include_openssl_cpu_h 
	                     patch-third_party_breakpad_breakpad_src_common_simple_string_dictionary_h 
	                     patch-third_party_crashpad_crashpad_build_crashpad_buildconfig_gni 
	                     patch-third_party_crashpad_crashpad_client_BUILD_gn 
	                     patch-third_party_crashpad_crashpad_client_crashpad_client_posix_cc 
	                     patch-third_party_crashpad_crashpad_util_misc_address_types_h 
	                     patch-third_party_crashpad_crashpad_util_misc_capture_context_h 
	                     patch-third_party_crashpad_crashpad_util_misc_metrics_cc 
	                     patch-third_party_crashpad_crashpad_util_misc_uuid_cc 
	                     patch-third_party_crashpad_crashpad_util_posix_close_multiple_cc 
	                     patch-third_party_crashpad_crashpad_util_posix_drop_privileges_cc 
	                     patch-third_party_crashpad_crashpad_util_posix_signals_cc 
	                     patch-third_party_crashpad_crashpad_util_posix_symbolic_constants_posix_cc 
	                     patch-third_party_crc32c_BUILD_gn 
	                     patch-third_party_ffmpeg_BUILD_gn 
	                     patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_arm64_config_h 
	                     patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_asm 
	                     patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_ia32_config_h 
	                     patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_asm 
	                     patch-third_party_ffmpeg_chromium_config_Chrome_openbsd_x64_config_h 
	                     patch-third_party_ffmpeg_libavcodec_x86_cabac_h 
	                     patch-third_party_ffmpeg_libavutil_cpu_c 
	                     patch-third_party_ffmpeg_libavutil_mem_c 
	                     patch-third_party_ffmpeg_libavutil_random_seed_c 
	                     patch-third_party_fontconfig_include_config_h 
	                     patch-third_party_fontconfig_src_src_fccompat_c 
	                     patch-third_party_libXNVCtrl_NVCtrl_c 
	                     patch-third_party_libjingle_xmpp_task_runner_taskrunner_cc 
	                     patch-third_party_libphonenumber_dist_cpp_src_phonenumbers_base_memory_singleton_h 
	                     patch-third_party_libphonenumber_dist_cpp_src_phonenumbers_base_synchronization_lock_h 
	                     patch-third_party_libphonenumber_dist_cpp_src_phonenumbers_base_thread_checker_h 
	                     patch-third_party_libusb_BUILD_gn 
	                     patch-third_party_libusb_src_libusb_core_c 
	                     patch-third_party_libxml_linux_config_h 
	                     patch-third_party_libxml_src_dict_c 
	                     patch-third_party_node_node_py 
	                     patch-third_party_pdfium_core_fxcrt_fx_system_h 
	                     patch-third_party_pdfium_core_fxge_fx_ge_linux_cpp 
	                     patch-third_party_pdfium_third_party_libopenjpeg20_opj_malloc_h 
	                     patch-third_party_pdfium_xfa_fgas_font_cfx_fontsourceenum_file_cpp 
	                     patch-third_party_perfetto_include_perfetto_base_build_config_h 
	                     patch-third_party_perfetto_include_perfetto_base_event_h 
	                     patch-third_party_perfetto_include_perfetto_base_watchdog_posix_h 
	                     patch-third_party_perfetto_src_tracing_core_tracing_service_impl_cc 
	                     patch-third_party_protobuf_src_google_protobuf_stubs_platform_macros_h 
	                     patch-third_party_protobuf_src_google_protobuf_stubs_strutil_h 
	                     patch-third_party_sfntly_src_cpp_src_sfntly_table_core_cmap_table_cc 
	                     patch-third_party_skia_src_gpu_GrAutoLocaleSetter_h 
	                     patch-third_party_skia_src_ports_SkOSFile_stdio_cpp 
	                     patch-third_party_skia_src_sksl_SkSLString_h 
	                     patch-third_party_skia_third_party_vulkanmemoryallocator_include_vk_mem_alloc_h 
	                     patch-third_party_sqlite_BUILD_gn 
	                     patch-third_party_sqlite_amalgamation_sqlite3_c 
	                     patch-third_party_swiftshader_BUILD_gn 
	                     patch-third_party_swiftshader_src_Common_Configurator_cpp 
	                     patch-third_party_swiftshader_src_Common_MutexLock_hpp 
	                     patch-third_party_swiftshader_src_Common_SharedLibrary_hpp 
	                     patch-third_party_swiftshader_src_Main_SwiftConfig_cpp 
	                     patch-third_party_swiftshader_src_OpenGL_libEGL_Display_cpp 
	                     patch-third_party_swiftshader_src_OpenGL_libEGL_Surface_cpp 
	                     patch-third_party_swiftshader_src_OpenGL_libEGL_libEGL_cpp 
	                     patch-third_party_swiftshader_src_OpenGL_libEGL_libEGL_hpp 
	                     patch-third_party_swiftshader_src_OpenGL_libGLES_CM_libGLES_CM_hpp 
	                     patch-third_party_swiftshader_src_OpenGL_libGLESv2_libGLESv2_hpp 
	                     patch-third_party_swiftshader_third_party_llvm-subzero_build_Linux_include_llvm_Config_config_h 
	                     patch-third_party_unrar_src_crypt_cpp 
	                     patch-third_party_usrsctp_BUILD_gn 
	                     patch-third_party_webrtc_BUILD_gn 
	                     patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                     patch-third_party_webrtc_rtc_base_BUILD_gn 
	                     patch-third_party_webrtc_rtc_base_network_cc 
	                     patch-third_party_webrtc_rtc_base_platform_thread_types_cc 
	                     patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                     patch-third_party_webrtc_webrtc_gni 
	                     patch-third_party_yasm_source_config_openbsd_config_h 
	                     patch-third_party_yasm_source_config_openbsd_libyasm-stdint_h 
	                     patch-third_party_zlib_BUILD_gn 
	                     patch-tools_gn_base_files_file_posix_cc 
	                     patch-tools_gn_base_files_file_util_h 
	                     patch-tools_gn_base_files_file_util_posix_cc 
	                     patch-tools_gn_base_files_scoped_file_cc 
	                     patch-tools_gn_build_build_linux_ninja_template 
	                     patch-tools_gn_build_gen_py 
	                     patch-tools_gn_tools_gn_args_cc 
	                     patch-tools_json_schema_compiler_feature_compiler_py 
	                     patch-tools_json_schema_compiler_model_py 
	                     patch-tools_variations_fieldtrial_to_struct_py 
	                     patch-ui_base_dragdrop_os_exchange_data_provider_factory_cc 
	                     patch-ui_base_ime_ime_engine_handler_interface_h 
	                     patch-ui_base_ime_input_method_initializer_cc 
	                     patch-ui_base_resource_resource_bundle_cc 
	                     patch-ui_base_ui_base_features_cc 
	                     patch-ui_base_ui_base_features_h 
	                     patch-ui_base_webui_web_ui_util_cc 
	                     patch-ui_events_devices_x11_device_data_manager_x11_cc 
	                     patch-ui_events_event_switches_cc 
	                     patch-ui_events_event_switches_h 
	                     patch-ui_events_keycodes_dom_keycode_converter_cc 
	                     patch-ui_gfx_BUILD_gn 
	                     patch-ui_gfx_canvas_skia_cc 
	                     patch-ui_gfx_codec_png_codec_cc 
	                     patch-ui_gfx_font_fallback_linux_cc 
	                     patch-ui_gfx_font_list_cc 
	                     patch-ui_gfx_font_render_params_h 
	                     patch-ui_gfx_gpu_memory_buffer_h 
	                     patch-ui_gfx_ipc_gfx_param_traits_macros_h 
	                     patch-ui_gfx_linux_client_native_pixmap_dmabuf_cc 
	                     patch-ui_gfx_mojo_buffer_types_struct_traits_cc 
	                     patch-ui_gfx_mojo_buffer_types_struct_traits_h 
	                     patch-ui_gfx_native_pixmap_handle_cc 
	                     patch-ui_gfx_native_pixmap_handle_h 
	                     patch-ui_gl_BUILD_gn 
	                     patch-ui_gl_generate_bindings_py 
	                     patch-ui_gl_gl_bindings_api_autogen_glx_h 
	                     patch-ui_gl_gl_bindings_autogen_glx_cc 
	                     patch-ui_gl_gl_bindings_autogen_glx_h 
	                     patch-ui_gl_gl_fence_cc 
	                     patch-ui_gl_sync_control_vsync_provider_cc 
	                     patch-ui_gl_sync_control_vsync_provider_h 
	                     patch-ui_message_center_public_cpp_message_center_constants_h 
	                     patch-ui_message_center_views_message_popup_view_cc 
	                     patch-ui_native_theme_native_theme_base_cc 
	                     patch-ui_native_theme_native_theme_h 
	                     patch-ui_strings_app_locale_settings_grd 
	                     patch-ui_views_bubble_bubble_dialog_delegate_view_cc 
	                     patch-ui_views_controls_label_cc 
	                     patch-ui_views_controls_textfield_textfield_cc 
	                     patch-ui_views_corewm_tooltip_aura_cc 
	                     patch-ui_views_examples_widget_example_cc 
	                     patch-ui_views_selection_controller_cc 
	                     patch-ui_views_style_platform_style_cc 
	                     patch-ui_views_views_delegate_cc 
	                     patch-ui_views_views_delegate_h 
	                     patch-ui_views_window_custom_frame_view_cc 
	                     patch-ui_views_window_dialog_delegate_cc 
	                     patch-ui_views_window_frame_background_cc 
	                     patch-ui_webui_resources_js_cr_js 
	                     patch-ui_webui_resources_js_icon_js 
	                     patch-v8_BUILD_gn 
	                     patch-v8_src_base_platform_platform-openbsd_cc 
	                     patch-v8_src_base_utils_random-number-generator_cc 
	                     patch-v8_src_globals_h 
	                     patch-v8_src_log-utils_h 
	                     patch-v8_tools_run_py 
	www/iridium/pkg: PLIST 
Added files:
	www/iridium/patches: patch-base_process_process_metrics_cc 
	                     patch-base_system_sys_info_openbsd_cc 
	                     patch-base_system_sys_info_posix_cc 
	                     patch-chrome_browser_download_download_item_model_cc 
	                     patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc 
	                     patch-chrome_browser_policy_machine_level_user_cloud_policy_controller_cc 
	                     patch-chrome_browser_profiles_profile_attributes_entry_cc 
	                     patch-chrome_browser_signin_signin_util_cc 
	                     patch-chrome_browser_speech_tts_message_filter_cc 
	                     patch-chrome_browser_ui_views_frame_browser_view_h 
	                     patch-chrome_test_BUILD_gn 
	                     patch-components_policy_core_common_cloud_cloud_policy_util_cc 
	                     patch-content_browser_webui_shared_resources_data_source_cc 
	                     patch-content_public_app_content_packaged_services_manifest_cc 
	                     patch-content_public_app_v8_snapshot_overlay_manifest_cc 
	                     patch-content_public_common_content_features_cc 
	                     patch-content_renderer_media_audio_audio_device_factory_cc 
	                     patch-content_shell_BUILD_gn 
	                     patch-headless_lib_browser_headless_request_context_manager_h 
	                     patch-media_audio_audio_thread_impl_cc 
	                     patch-mojo_public_js_mojo_bindings_resources_grd 
	                     patch-services_device_serial_BUILD_gn 
	                     patch-services_device_serial_serial_io_handler_posix_cc 
	                     patch-services_service_manager_public_cpp_service_executable_BUILD_gn 
	                     patch-third_party_angle_src_common_platform_h 
	                     patch-third_party_angle_src_libANGLE_renderer_driver_utils_h 
	                     patch-third_party_blink_renderer_core_paint_paint_layer_cc 
	                     patch-third_party_blink_renderer_platform_fonts_font_unique_name_lookup_cc 
	                     patch-third_party_blink_renderer_platform_wtf_container_annotations_h 
	                     patch-third_party_brotli_common_platform_h 
	                     patch-third_party_closure_compiler_js_binary_py 
	                     patch-third_party_nasm_config_config-linux_h 
	                     patch-third_party_opus_BUILD_gn 
	                     patch-third_party_swiftshader_src_Reactor_BUILD_gn 
	                     patch-third_party_swiftshader_third_party_llvm-7_0_BUILD_gn 
	                     patch-third_party_swiftshader_third_party_llvm-7_0_configs_linux_include_llvm_Config_config_h 
	                     patch-third_party_webrtc_rtc_base_physical_socket_server_cc 
	                     patch-third_party_webrtc_rtc_base_physical_socket_server_h 
	                     patch-third_party_webrtc_rtc_base_string_utils_h 
	                     patch-v8_src_api_cc 
	                     patch-v8_src_base_platform_platform-posix_cc 
	                     patch-v8_src_heap_spaces_h 
	                     patch-v8_src_objects_hash-table_h 
	                     patch-v8_src_trap-handler_handler-inside-posix_cc 
	                     patch-v8_src_trap-handler_handler-inside-posix_h 
	                     patch-v8_src_trap-handler_trap-handler_h 
Removed files:
	www/iridium/patches: 
	                     patch-base_debug_thread_heap_usage_tracker_cc 
	                     patch-base_sys_info_openbsd_cc 
	                     patch-base_sys_info_posix_cc 
	                     patch-chrome_browser_speech_tts_controller_impl_cc 
	                     patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_layout_cc 
	                     patch-components_autofill_core_common_autofill_features_cc 
	                     patch-content_browser_webui_web_ui_data_source_impl_cc 
	                     patch-content_browser_webui_web_ui_data_source_impl_h 
	                     patch-content_public_browser_web_ui_data_source_h 
	                     patch-device_serial_BUILD_gn 
	                     patch-device_serial_serial_io_handler_posix_cc 
	                     patch-net_base_network_interfaces_openbsd_cc 
	                     patch-net_base_network_interfaces_openbsd_h 
	                     patch-services_catalog_public_cpp_manifest_parsing_util_cc 
	                     patch-services_service_manager_public_cpp_standalone_service_BUILD_gn 
	                     patch-services_service_manager_public_cpp_standalone_service_standalone_service_cc 
	                     patch-services_tracing_public_cpp_trace_event_agent_cc 
	                     patch-services_tracing_tracing_service_h 
	                     patch-third_party_angle_src_libANGLE_renderer_gl_renderergl_utils_cpp 
	                     patch-third_party_brotli_enc_port_h 
	                     patch-third_party_pdfium_third_party_base_logging_h 
	                     patch-third_party_webrtc_rtc_base_physicalsocketserver_cc 
	                     patch-third_party_webrtc_rtc_base_physicalsocketserver_h 
	                     patch-third_party_webrtc_rtc_base_platform_thread_cc 
	                     patch-third_party_webrtc_rtc_base_stringutils_h 
	                     patch-tools_gn_util_semaphore_cc 
	                     patch-tools_gn_util_semaphore_h 
	                     patch-tools_gn_util_ticks_cc 
	                     patch-ui_base_material_design_material_design_controller_cc 

Log message:
update to 2019.04.73


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/17 07:01:02

Modified files:
	mail/kopano    : Makefile.inc 
	mail/kopano/core: Makefile distinfo 
	mail/kopano/core/patches: patch-ECtools_mapitime_cpp 
	                          patch-ECtools_monitor_monitor_cpp 
	                          patch-ECtools_search_kopano_search___init___py 
	                          patch-ECtools_spamd_kopano_spamd___init___py 
	                          patch-ECtools_utils_kopano_utils_autorespond_py 
	                          patch-Makefile_in 
	                          patch-caldav_CalDAV_cpp 
	                          patch-common_libkcutil_sym_in 
	                          patch-configure_ac 
	                          patch-gateway_Gateway_cpp 
	                          patch-installer_linux_server_cfg 
	                          patch-php7-ext_typeconversion_cpp 
	                          patch-provider_server_ECServer_cpp 
	                          patch-spooler_DAgent_cpp 
	                          patch-spooler_Spooler_cpp 
	                          patch-swig_python_kopano_kopano_config_py 
	mail/kopano/core/pkg: PLIST-main 
Added files:
	mail/kopano/core/patches: patch-common_ECChannel_cpp 
	                          patch-common_ECThreadPool_cpp 
	                          patch-common_UnixUtil_cpp 
	                          patch-provider_libserver_ECCacheManager_cpp 
	                          patch-provider_libserver_ECCacheManager_h 
	                          patch-provider_libserver_ECUserManagement_cpp 
	                          patch-provider_libserver_ECUserManagement_h 
	                          patch-provider_server_ECSoapServerConnection_cpp 

Log message:
update to 8.7.80.856


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/17 07:01:21

Modified files:
	mail/kopano/webapp: Makefile distinfo 
	mail/kopano/webapp/pkg: PLIST 

Log message:
update to 3.5.5.2236


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/04/17 07:19:50

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	www/gitea      : Makefile distinfo 

Log message:
Update to gitea-1.7.6
Fix CVE-2019-11228 and CVE-2019-11229

ok kn@ robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/17 08:25:44

Modified files:
	gnu/llvm/lib/Target/AArch64: AArch64FrameLowering.cpp 
	                             AArch64ReturnProtectorLowering.cpp 

Log message:
retguard-cookie-in-register is slightly unstable on arm64, so surgically
disable it in upcoming 6.5 release.
(phessler and mortimer have the details)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/17 08:37:48

Modified files:
	usr.bin/tmux   : Makefile cmd-attach-session.c cmd-join-pane.c 
	                 cmd-kill-session.c cmd-new-session.c 
	                 cmd-new-window.c cmd-queue.c cmd-respawn-pane.c 
	                 cmd-respawn-window.c cmd-rotate-window.c 
	                 cmd-select-pane.c cmd-split-window.c 
	                 cmd-swap-pane.c cmd-switch-client.c layout.c 
	                 server-fn.c server.c session.c tmux.h 
	                 window-tree.c window.c 
Added files:
	usr.bin/tmux   : spawn.c 

Log message:
Break new window and pane creation common code from various commands and
window.c into a separate file spawn.c.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/17 08:39:38

Modified files:
	usr.bin/tmux   : cmd-switch-client.c tmux.1 

Log message:
Document that switch-client can change all of session,window,pane and
check for % in the target as well as ":.".


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/17 08:41:08

Modified files:
	usr.bin/tmux   : screen-redraw.c 

Log message:
Do not let the size of the pane status screen go negative.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/17 08:43:49

Modified files:
	usr.bin/tmux   : cmd-select-layout.c layout-set.c layout.c 
	                 resize.c tty.c 

Log message:
Set the window size as well as the layout size when using the preset
layouts.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/17 08:44:14

Modified files:
	usr.bin/tmux   : layout-set.c 

Log message:
Rewrite main-vertical and horizontal to use the common spread out code
and to handle the case where the panes won't fit into the existing
window size.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/17 08:44:33

Modified files:
	usr.bin/tmux   : layout.c 

Log message:
Fix minimum size check on split and size of first cell on spread out
with a pane status line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/17 09:20:21

Modified files:
	misc/rocrail/patches: patch-analyser_makefile 
	                      patch-roclcdr_makefile 

Log message:
don't hardcode "gcc" for linking


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/17 09:24:15

Modified files:
	telephony/py-phonenumbers: Makefile distinfo 
	telephony/py-phonenumbers/pkg: PLIST 

Log message:
update to 8.10.10

OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/17 09:25:09

Modified files:
	devel/py-stdnum: Makefile distinfo 
	devel/py-stdnum/pkg: PLIST 

Log message:
update to 1.11

OK kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/17 10:34:35

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
mark up punctuation-as-macro-args properly;


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/17 10:36:23

Modified files:
	share/mk       : bsd.own.mk 

Log message:
Switch powerpc to big PIC. This is necessary to build libc++abi and libc++
since clang doesn't seem to support secure-plt for small pic.

ok deraadt@, millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/17 11:11:26

Modified files:
	sysutils/bfs   : Makefile distinfo 
	sysutils/bfs/patches: patch-Makefile 

Log message:
Update to bfs-1.4
Changelog: https://github.com/tavianator/bfs/releases/tag/1.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/17 12:29:54

Modified files:
	www/iridium/patches: patch-v8_tools_run_py 

Log message:
unbreak build by adding missing curly bracket


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/17 12:35:36

Modified files:
	www/chromium   : Makefile 
	www/chromium/files: chrome 
	www/iridium    : Makefile 
	www/iridium/files: iridium 

Log message:
disable wasm (WebAssembly) by default because it is a disaster


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/17 12:49:59

Modified files:
	math/fftw3     : Makefile distinfo 
	math/fftw3/pkg : PLIST-main 

Log message:
Update fftw to 3.3.8

OK steven@


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2019/04/17 12:53:29

Modified files:
	math/blas      : Makefile distinfo 

Log message:
bump to 3.8.0, only cosmetic changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/04/17 13:43:32

Modified files:
	mail/s-nail    : distinfo Makefile 

Log message:
Update to s-nail-14.9.13

ok sthen@
thanks to new maintainer Steffen Nurpmeso for the diff


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/17 14:17:00

Modified files:
	usr.bin/netstat: netstat.1 

Log message:
remove some unneccessary baggage: Nm does not require an argument,
and the Bk/Ek invocation here is no longer neccessary;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/17 14:34:21

Modified files:
	sbin/route     : route.8 
	usr.bin/netstat: netstat.1 

Log message:
signpost the location of the text explaining routing table output a little better...


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/04/17 15:43:46

Modified files:
	sys/dev/pv     : virtio.c 

Log message:
Initialize virtqueue before passing it to device

Reported by Gary Zibrat


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/04/17 15:44:32

Modified files:
	sys/dev/pv     : virtio.c 

Log message:
Remove unused parameter from virtio_init_vq()


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/17 16:29:10

Modified files:
	devel/py-setuptools: Makefile distinfo 
	devel/py-setuptools/patches: patch-setup_py 
	devel/py-setuptools/pkg: PLIST 

Log message:
Updating py-setuptools to 41.0.0. While here cleaned up the S/c/./ in
PKGNAME that hasn't been necessary since long ago.

Got rid of NO_TEST and added MODPY_PYTEST

This update was able to build every user of MODPY_SETUPTOOLS in
/usr/ports/devel without issue.

OK phessler


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/04/17 16:44:07

Modified files:
	lang/cython    : Makefile distinfo 

Log message:
Update to cython 0.29.7.


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2019/04/17 17:03:39

Added files:
	openssh/txt    : release-8.0 

Log message:
Release notes for OpenSSH 8.0


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2019/04/17 18:14:18

Modified files:
	build/mirrors  : openssh-ftp.html.head 
	openssh        : ftp.html index.html openbsd.html 
	                 releasenotes.html 
	openssh/txt    : release-8.0 

Log message:
OpenSSH 8.0 released


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2019/04/17 20:06:48

Modified files:
	textproc/docbook2mdoc: Makefile distinfo 

Log message:
update to docbook2mdoc-1.0.0;
OK bentley@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/17 23:50:55

Modified files:
	cad/qrouter    : Makefile distinfo 

Log message:
Update to qrouter-1.4.50

From Alessandro De Laurenzis (maintainer); thanks!


CVSROOT:	/cvs
Module name:	www
Changes by:	solene@cvs.openbsd.org	2019/04/18 01:10:27

Modified files:
	build/mirrors  : cvsync.html.head 

Log message:
Use cmdbox css class

ok tb@
Thanks to Raf Czlonka for the diff


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/04/18 01:32:57

Modified files:
	usr.bin/ssh    : Makefile.inc packet.c 
Removed files:
	usr.bin/ssh    : crc32.c crc32.h 

Log message:
Remove crc32.{c,h} which were only used by the now-gone SSH1 protocol.
Patch from yumkam at gmail.com, ok deraadt.


CVSROOT:	/cvs
Module name:	www
Changes by:	solene@cvs.openbsd.org	2019/04/18 02:51:19

Modified files:
	.              : cvsync.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/18 03:55:15

Modified files:
	devel/meson    : Makefile distinfo meson.port.mk 
	devel/meson/patches: patch-mesonbuild_compilers_c_py 
	                     patch-mesonbuild_compilers_compilers_py 
	                     patch-run_unittests_py 
	devel/meson/pkg: PLIST 
Removed files:
	devel/meson/patches: patch-mesonbuild_environment_py 
	                     patch-test_cases_common_137_get_define_meson_build 

Log message:
Update to meson-0.50.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/18 04:11:52

Modified files:
	usr.bin/tmux   : server-client.c 

Log message:
Update session activity on focus event, from tafryn at gmail dot com.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/18 05:07:28

Modified files:
	usr.bin/tmux   : cfg.c screen-write.c 

Log message:
Pass target client and session to load_cfg from source-file so formats
work. Reported by Thomas Sattler.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/18 06:22:07

Modified files:
	usr.bin/tmux   : cmd-show-options.c tmux.1 

Log message:
Copy the code to infer the option type to show-options and document it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/18 07:38:05

Modified files:
	x11/gnome/at-spi2-atk: Makefile distinfo 

Log message:
Tarball has been rerolled.
Only change was the project version in meson.build.

mismatch reported by Daniel Dickman


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/18 08:35:39

Modified files:
	devel/jenkins  : Makefile.inc 
	devel/jenkins/devel: Makefile distinfo 
	devel/jenkins/stable: Makefile distinfo 

Log message:
Update jenkins, devel to 2.173 and stable to 2.164.2

Take maintainer

OK ian@ (Old maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/18 09:11:55

Modified files:
	math/fftw3/pkg : PLIST-common PLIST-main 

Log message:
Unbreak package

Move cmake bits into PLIST-common.

Spotted by ajacoutot@ Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 10:12:15

Modified files:
	mail/rspamd    : Makefile distinfo 
	mail/rspamd/patches: patch-CMakeLists_txt 
	                     patch-src_CMakeLists_txt 
	mail/rspamd/pkg: PLIST 

Log message:
update to rspamd-1.9.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 10:26:29

Modified files:
	lang/php/7.1   : Makefile 
	lang/php/7.2   : Makefile 
	lang/php/7.3   : Makefile 

Log message:
set PORTROACH limit


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 10:29:15

Modified files:
	www/urlwatch   : Makefile distinfo 

Log message:
update to urlwatch-2.17


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 10:56:03

Modified files:
	lang/php       : Makefile.inc 

Log message:
add BUILD_DEPENDS on re2c. shouldn't normally be needed, but sometimes
file timestamps in the .tar.gz have the generated file older than the
source file for re2c, resulting in a build failure if re2c was installed
during autoconf but later junked. found by kili@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 11:04:47

Modified files:
	mail/dovecot   : Makefile distinfo 

Log message:
security update to Dovecot 2.3.5.2, from Brad

CVE-2019-10691: Trying to login with 8bit username containing invalid
UTF8 input causes auth process to crash if auth policy is enabled. This
could be used rather easily to cause a DoS. Similar crash also happens
during mail delivery when using invalid UTF8 in From or Subject header
when OX push notification driver is used.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 11:20:51

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-includes_common_php 
	net/librenms/pkg: PLIST 
Added files:
	net/librenms/patches: patch-includes_html_output_capture_inc_php 
	                      patch-includes_html_pages_about_inc_php 
Removed files:
	net/librenms/patches: patch-html_includes_output_capture_inc_php 
	                      patch-html_pages_about_inc_php 

Log message:
update to librenms-1.50.1

- Affects users of webservers not using .htaccess:

Moved php files outside of public html directory (Apache was protected
by .htaccess)

Some files could be accessed directly, leaking some information, like
the version in about.inc.php but not statistics because it doesn't have
DB access.

- Affects all users:

Some files did not check for authentication and could disclose some info.
Better checks before including files from user input

Fix unescaped variables in ajax_search.php


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 11:27:19

Modified files:
	net/freeradius3: Makefile distinfo 
	net/freeradius3/patches: patch-configure 
	                         patch-src_modules_rlm_realm_trustrouter_c 
	net/freeradius3/pkg: PLIST-main PLIST-pgsql 
Removed files:
	net/freeradius3/patches: patch-autogen_sh 

Log message:
update to freeradius-3.0.19


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 11:30:45

Modified files:
	net/xl2tpd     : Makefile distinfo 
	net/xl2tpd/patches: patch-Makefile patch-control_c 

Log message:
update to xl2tpd-1.3.14


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/18 11:32:33

Modified files:
	devel/avr/gcc  : Makefile 
	devel/avr/gcc/pkg: PLIST 

Log message:
Don't install libcc1 since it conflicts with other gcc compilers, notably
lang/gcc/8.  This may incur some loss of functionality in avr-gdb.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/04/18 12:06:17

Modified files:
	devel/jdk/11   : Makefile distinfo 
Added files:
	devel/jdk/11/patches: 
	                      patch-src_jdk_net_bsd_native_libextnet_BsdSocketOptions_c 
Removed files:
	devel/jdk/11/patches: 
	                      patch-src_jdk_management_unix_native_libmanagement_ext_OperatingSystemImpl_c 

Log message:
Update to 11.0.3+7:

https://www.oracle.com/technetwork/java/javase/11-0-3-oracle-relnotes-5290048.html

okay sthen@, pvk@ solene@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/04/18 12:51:34

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm(4): whitespace fix


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/04/18 12:56:16

Modified files:
	usr.bin/ssh    : servconf.c servconf.h sshd.c 

Log message:
When running sshd -T, assume any attibute not provided by -C does not match,
which allows it to work when sshd_config contains a Match directive with or
without -C.  bz#2858, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/04/18 12:57:16

Modified files:
	regress/usr.bin/ssh: cfgmatch.sh 

Log message:
Add tests for sshd -T -C with Match.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/18 13:10:06

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/patches: patch-build_tools_cflags_xml 
	                            patch-res_res_odbc_c 
	                            patch-res_res_pjsip_registrar_c 
	                            patch-third-party_pjproject_Makefile 
Added files:
	telephony/asterisk/patches: patch-Makefile_rules 

Log message:
update to asterisk-16.3.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/04/18 15:58:59

Modified files:
	sbin/pfctl     : parse.y 

Log message:
Fix table definition parsing as unprivileged user

revision 1.689 introduced warn_duplicate_tables() unconditionally, breaking
the parser on tables withs insufficient permissions to open pf(4):

$ echo 'table <t>' | pfctl -nf-
pfctl: pfr_get_tables: Bad file descriptor

So simply check whether pfctl is able to get the table list first.  If not,
instead of silently avoiding namespace collision checks, print a brief
notice iff `-v' is given to help finding duplicate definitions by hand:

$ echo 'table <t>' | ./obj/pfctl -vnf-
table <t>
stdin:1: skipping duplicate table checks for <t>

Reported by Rivo Nurges, thanks!
OK benno sashan


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/04/18 16:29:41

Modified files:
	sbin/pfctl     : pfctl_table.c 

Log message:
Always check for namespace collisions on table commands

`-t table -T add|replace ...' would only check for duplicate tables in case
addresses where actually to the table.

Instead of using a positive number of added addresses as prove for
successful table operations, rely on the fact that CREATE_TABLE() is
guaranteed to be called only if pf(4) can be accessed, that is
warn_duplicate_tables() will return.

This improves duplicate detection rate as warnings are now also emitted
even when table commands eventually leave tables unchanged.

OK benno sashan


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/04/18 17:44:21

Modified files:
	lib/libevent   : min_heap.h 

Log message:
unfold some compound operations to make this easier to follow


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/04/18 17:51:13

Modified files:
	lib/libc/sys   : fsync.2 

Log message:
describe EIO failure state. noted by Maximilian Lorlacks


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/18 22:15:32

Modified files:
	sys/net        : if.h 

Log message:
add IF_HDRPRIO_OUTER for rxprio

IF_HDRPRIO_OUTER says you want the priority from the outer encap header.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/18 22:21:33

Modified files:
	sys/sys        : sockio.h 

Log message:
add SIOCSRXHPRIO and SIOCGRXHPRIO for configuring rx prio handling

this is the complement of txprio handling, and helps support RFC 2983.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/18 22:22:09

Modified files:
	sys/net        : if.c 

Log message:
only root can change rxprio


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/18 22:24:26

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
add support for getting and setting rxprio

this complements txprio and should finish support for RFC 2983

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/18 22:30:57

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
rxprio.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/18 22:36:12

Modified files:
	sys/net        : if_vlan.c if_vlan_var.h 

Log message:
add support for configuring rxprio.

vlan already used the 802.1p prio in packets to set the mbuf prio.
this maintains that as the default.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/18 22:54:54

Modified files:
	sys/net        : if_gif.c 

Log message:
allow configuration of rxprio

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/04/18 23:47:44

Modified files:
	usr.bin/ssh    : ssh-keygen.1 

Log message:
Document new default RSA key size.  From sebastiaanlokhorst at gmail.com
via bz#2997.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/18 23:58:22

Log message:
    Import taiwan-cns11643-fonts-103.1.
    
    The taiwan-cns11643-fonts package contains TrueType fonts designed by the
    Taiwanese Ministry of Education, created to be compliant with the CNS11643
    encoding standard.
    
    TW-Kai is a regular-script-style font. It consists of three files: TW-Kai,
    containing characters from Unicode's Basic Multilingual Plane; TW-Kai-Ext-B,
    containing characters from Unicode's Supplementary Ideographic Plane; and
    TW-Kai-Plus, containing characters in the Private Use Plane.
    
    TW-Sung is a Ming-style font. It consists of three files: TW-Sung, containing
    characters from Unicode's Basic Multilingual Plane; TW-Sung-Ext-B, containing
    characters from Unicode's Supplementary Ideographic Plane; and TW-Sung-Plus,
    containing characters in the Private Use Plane.
    
    ok sthen@ rsadowski@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190418
    
    N ports/fonts/taiwan-cns11643-fonts/Makefile
    N ports/fonts/taiwan-cns11643-fonts/distinfo
    N ports/fonts/taiwan-cns11643-fonts/pkg/DESCR
    N ports/fonts/taiwan-cns11643-fonts/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/18 23:59:55

Modified files:
	fonts          : Makefile 

Log message:
+taiwan-cns11643-fonts


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/19 00:36:54

Modified files:
	sys/net        : if_mpw.c if_mpe.c if_mpip.c 

Log message:
implement rxprio


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/19 00:38:32

Modified files:
	sys/net        : if_etherip.c 

Log message:
add rxprio support


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/19 00:40:00

Modified files:
	sys/net        : if_bpe.c 

Log message:
add rxprio support

this is modelled on vlan(4) where the packet prio is put in the bpe
header in tx, and the bpe header prio is put on the packet in rx.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/04/19 01:15:36

Modified files:
	lang/go        : Makefile distinfo 

Log message:
Build lang/go for openbsd/arm using a binary bootstrap.

With input from and ok sthen@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/04/19 01:17:27

Modified files:
	infrastructure/mk: arch-defines.mk 

Log message:
Add arm to GO_ARCHS since it works there now.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/19 01:38:02

Modified files:
	sys/net        : if.c if_var.h 

Log message:
provide factored out txhprio and rxhprio checks

l2 and l3 drivers do the same thing all the time, so reduce the
chance of error by doing the checks once and making it available
for drivers to call instead of rolling on their own again.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/19 01:39:38

Modified files:
	sys/net        : if_bpe.c if_etherip.c if_gif.c if_mpe.c 
	                 if_mpip.c if_mpw.c if_vlan.c 

Log message:
use the factored out txhprio and rxhprio checks

reduces code duplication and chance for error.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/19 01:50:09

Modified files:
	sys/net        : if_gre.c 

Log message:
use the common code in if.c to check if txhprio is good.

no functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/19 02:18:22

Modified files:
	devel/gsoap    : Makefile distinfo 
	devel/gsoap/patches: patch-configure_ac patch-gsoap_Makefile_am 
	                     patch-gsoap_stdsoap2_h 
	devel/gsoap/pkg: PLIST 
Added files:
	devel/gsoap/patches: patch-gsoap_stdsoap2_cpp 

Log message:
update to 2.8.82


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/19 02:26:49

Modified files:
	devel/dlib     : Makefile distinfo 

Log message:
Update dlib to 19.17

Building the test is broken, so I set NO_TEST to yes. Reported upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/19 02:59:40

Modified files:
	lib/csu        : Makefile 
	libexec/ld.so/mips64: Makefile.inc 

Log message:
Prevent clang from using builtins and jump tables in _dl_boot_bind()
on mips64. They need relocation and consequently cannot be used
in that function.

OK kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/19 03:19:22

Modified files:
	lib/csu/mips64 : md_init.h 
	sys/arch/mips64/include: profile.h 

Log message:
Work around a limitation of clang integrated assembler on mips64.
The assembler does not handle undeclared local symbols properly
and generates R_MIPS_CALL16 relocations where it should generate
local GOT references. For now, get along with the problem by
declaring local symbols where necessary.

OK kettenis@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/19 03:41:07

Modified files:
	sys/kern       : vfs_lockf.c vfs_subr.c 
	sys/sys        : lockf.h 

Log message:
Add a subsystem lock for vfs_lockf.c. This enables calling lf_advlock()
and lf_purgelocks() without the kernel lock.

OK anton@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 04:18:17

Modified files:
	security/py-cryptography: Makefile distinfo 
	security/py-cryptography/patches: 
	                                  patch-src__cffi_src_openssl_ssl_py 
	security/py-cryptography/pkg: PLIST 
	security/py-cryptography_vectors: Makefile distinfo 
	security/py-cryptography_vectors/pkg: PLIST 

Log message:
update to pyca cryptography 2.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 04:30:58

Modified files:
	devel/github-backup: Makefile 
	devel/github-backup/pkg: PLIST 

Log message:
switch to py3; ok Laurie Tratt (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/19 05:38:16

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-postgresql: Makefile distinfo 
	sysutils/terraform/provider-vault: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/19 06:22:27

Modified files:
	security/suricata: Makefile 
	security/suricata/patches: patch-src_suricata_c 
	                           patch-src_util-logopenfile_c 
	                           patch-src_util-privs_c 
	                           patch-src_util-privs_h 
Added files:
	security/suricata/patches: patch-src_util-error_c 
	                           patch-src_util-error_h 

Log message:
Implement pledge support for suricata.
from Emmanuel Roullit; OK gonzalo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/19 07:05:18

Modified files:
	devel/p5-File-Find-Object-Rule: Makefile distinfo 

Log message:
update p5-File-Find-Object-Rule to 0.0310


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/19 07:12:58

Modified files:
	devel/p5-Test-Needs: Makefile distinfo 

Log message:
update p5-Test-Needs to 0.002006


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 07:24:23

Log message:
    import ports/textproc/p5-Text-CharWidth, comment/ok bluhm@
    
    This module allows determining the display width of strings, mostly
    useful with multibyte character encodings. It provides functionality
    equivalent to C's wcwidth(3), wcswidth(3) and mblen(3).
    
    While most characters have a width of 1, there are exceptions - many
    east Asian characters have a width of 2, and some languages use Unicode
    "combining characters" which have a zero width.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190419
    
    N ports/textproc/p5-Text-CharWidth/Makefile
    N ports/textproc/p5-Text-CharWidth/distinfo
    N ports/textproc/p5-Text-CharWidth/pkg/DESCR
    N ports/textproc/p5-Text-CharWidth/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 07:25:11

Modified files:
	textproc       : Makefile 

Log message:
+p5-Text-CharWidth


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 07:26:28

Modified files:
	www/nghttp2    : Makefile distinfo 

Log message:
update to nghttp2-1.38.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 07:26:51

Modified files:
	databases/freetds: Makefile distinfo 

Log message:
update to freetds-1.1.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 07:29:52

Modified files:
	graphics/openjp2: Makefile distinfo 
	graphics/openjp2/patches: patch-CMakeLists_txt 

Log message:
update to openjp2-2.3.1
"Many bug fixes (including security fixes)"


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/19 07:56:03

Removed files:
	misc/m17n/lib/patches: patch-configure 

Log message:
Drop useless patch

ok Eric Brown (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/19 07:58:47

Modified files:
	misc/m17n/lib  : Makefile 
	misc/m17n/lib/patches: patch-example_Makefile_in 
Added files:
	misc/m17n/lib/patches: patch-src_Makefile_in 

Log message:
Properly link against libintl, unbreak Xaw detection

Reported by kevlo@ (who came up with a different diff), ok Eric Brown (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/19 08:08:48

Modified files:
	sysutils/exoscale-cli: Makefile distinfo 

Log message:
Update to exoscale-cli-1.2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/19 08:24:42

Modified files:
	mail/p5-Mail-DKIM-Iterator: Makefile distinfo 

Log message:
update p5-Mail-DKIM-Iterator to 1.008


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/19 08:42:01

Log message:
    import p5-Test2-Suite 0.000111
    OK kn@
    
    Comment:
    set of tools built upon the Test2 framework
    
    Description:
    Rich set of tools, plugins, bundles, etc built upon the Test2 testing
    library. If you are interested in writing tests, this is the
    distribution for you.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190419
    
    N ports/devel/p5-Test2-Suite/Makefile
    N ports/devel/p5-Test2-Suite/distinfo
    N ports/devel/p5-Test2-Suite/pkg/DESCR
    N ports/devel/p5-Test2-Suite/pkg/PLIST
    N ports/devel/p5-Test2-Suite/patches/patch-t_modules_Util_Table_t
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/19 08:43:55

Modified files:
	devel          : Makefile 

Log message:
+p5-Test2-Suite


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/19 08:52:00

Modified files:
	lib/libcrypto/objects: obj_mac.num 

Log message:
Allocate fixed NIDs for SM3/SM4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/19 09:03:42

Modified files:
	devel/p5-Test-Script: Makefile distinfo 

Log message:
update p5-Test-Script to 1.25


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/19 09:28:51

Modified files:
	cad/magic      : Makefile 

Log message:
magic picks up GNU m4 if present.

Package failure noticed by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/19 10:52:31

Modified files:
	textproc/mupdf : Makefile 
	textproc/mupdf/patches: patch-Makerules 
Added files:
	textproc/mupdf/patches: 
	                        patch-source_helpers_pkcs7_pkcs7-openssl_c 

Log message:
enable crypto for pdf signatures.

use compatible code for libressl (mupdf expects openssl 1.1.0), and use
certs from /etc/ssl/cert.pem instead of relying only on Adobe embedded
certificate.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/19 11:04:45

Modified files:
	lib/libcrypto/evp: digest.c 

Log message:
Allocate md_data with calloc to avoid use of uninitialised memory.

Found by Guido Vranken when fuzzing and trying to use GOST with HMAC.

Fix confirmed by Guido; ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/04/19 12:15:23

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	games/xonotic  : Makefile 
	games/xonotic/pkg: PLIST-data PLIST-main PLIST-server 

Log message:
Lowercase package and program name

As was requested by many.

Help from and OK bentley


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/19 12:39:52

Modified files:
	.              : ftp.html httpslist 
	build          : mirrors.dat 
	openbgpd       : ftp.html 
	openntpd       : portable.html 
	openssh        : ftp.html portable.html 

Log message:
ftp.riken.jp has working https now


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/04/19 13:48:36

src/regress/sys/kern/realpath

Update of /cvs/src/regress/sys/kern/realpath
In directory cvs.openbsd.org:/tmp/cvs-serv2919/realpath

Log Message:
Directory /cvs/src/regress/sys/kern/realpath added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/04/19 13:50:48

Added files:
	regress/sys/kern/realpath: Makefile realpath3.c realpathtest.c 

Log message:
Start a realpath(2) regress test, currently not enabled.

This will extend as I add more cases to it. It will come
into use once an in-kernel version of realpath(2) becomes
a real thing


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/04/19 13:50:53

Modified files:
	usr.sbin/pkg_add: pkg_add.1 

Log message:
strongly hint at pkg_info -z   to clone installations from machine to machine


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/19 15:09:48

Modified files:
	gnu/usr.bin/clang: Makefile.inc 

Log message:
On powerpc, link with -Wl,-relax as clang is a monster and code exceeds the
maximum reachability of the PowerPC branch instructions.

Also override NOPIE_FLAGS to avoid building code with -fno-pie as doing so
is incompatible with secure-plt when using clang as the compiler.

ok visa@, guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 15:17:04

ports/lang/python/3.7

Update of /cvs/ports/lang/python/3.7
In directory cvs.openbsd.org:/tmp/cvs-serv72823/3.7

Log Message:
Directory /cvs/ports/lang/python/3.7 added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 15:17:05

ports/lang/python/3.7/files

Update of /cvs/ports/lang/python/3.7/files
In directory cvs.openbsd.org:/tmp/cvs-serv72823/3.7/files

Log Message:
Directory /cvs/ports/lang/python/3.7/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 15:17:05

ports/lang/python/3.7/patches

Update of /cvs/ports/lang/python/3.7/patches
In directory cvs.openbsd.org:/tmp/cvs-serv72823/3.7/patches

Log Message:
Directory /cvs/ports/lang/python/3.7/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/19 15:17:05

ports/lang/python/3.7/pkg

Update of /cvs/ports/lang/python/3.7/pkg
In directory cvs.openbsd.org:/tmp/cvs-serv72823/3.7/pkg

Log Message:
Directory /cvs/ports/lang/python/3.7/pkg added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/19 18:17:50

Modified files:
	net/scapy      : Makefile 
	net/scapy/pkg  : PLIST 
Added files:
	net/scapy/patches: patch-scapy_layers_inet6_py 
	                   patch-scapy_layers_inet_py 
	                   patch-scapy_layers_l2_py 
Removed files:
	net/scapy/patches: patch-scapy_config_py 
	                   patch-scapy_layers_loop_py 

Log message:
To sniff on OpenBSD loopback interface there was a patch from 2012.
In the meantime upstream has implemented it differently.  Adapt
their version for OpenBSD and use it instead.
OK sthen@ danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/19 18:33:32

Modified files:
	games/openttd  : Makefile distinfo 
	games/openttd/patches: patch-config_lib 
	games/openttd/pkg: PLIST 

Log message:
Update to openttd-1.9.1.

Release notes:
https://proxy.binaries.openttd.org/openttd-releases/1.9.1/changelog.txt
https://proxy.binaries.openttd.org/openttd-releases/1.9.0/changelog.txt


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/19 18:34:04

Modified files:
	games/openttd-data/opengfx: Makefile distinfo 

Log message:
Update to openttd-opengfx-0.5.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/19 18:59:40

Modified files:
	fonts/ibm-plex : Makefile distinfo 
	fonts/ibm-plex/pkg: PLIST 

Log message:
Update to ibm-plex-1.4.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/19 21:10:53

Modified files:
	sys/dev/pci/drm/radeon: radeon_kms.c 

Log message:
Adapt radeondrm_detach_kms() to struct drm_device being split from
drm softc.

Avoids uvm_fault() when firmware is missing and radeondrm is forcibly
detached.  Reported by Mihai Popescu on misc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tim@cvs.openbsd.org	2019/04/20 00:24:12

Modified files:
	graphics/feh   : Makefile distinfo 
	graphics/feh/patches: patch-Makefile patch-config_mk 
	                      patch-examples_themes patch-man_feh_pre 
	graphics/feh/pkg: PLIST 

Log message:
Update to 3.1.3; OK rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/20 01:20:07

Modified files:
	math/fftw3     : Makefile 

Log message:
Missed bump.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/04/20 02:28:59

Modified files:
	sys/kern       : vfs_lockf.c 
	sys/sys        : lockf.h 

Log message:
Move lockf structures from header to implementation since external users
only need a lockf_state pointer by now.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/20 02:44:08

Modified files:
	sys/dev/pci/drm/ttm: ttm_bo.c ttm_memory.c 

Log message:
drm/ttm: Fix bo_global and mem_global kfree error

From Trigger Huang
b10cc08374728ea79555a1cd98f962b0f942e942 in linux 4.19.y/4.19.36
30f33126feca0fe16df9e9302ffc28a953e2eb37 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/20 05:13:15

Modified files:
	lib/libcrypto/asn1: x_long.c 

Log message:
Avoid undefined behaviour that results from negating a signed long with
minimum value.

Fixes oss-fuzz #14354.

ok beck@ bcook@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/20 05:22:47

Modified files:
	gnu/llvm/lib/Target/Mips: MipsAsmPrinter.cpp 

Log message:
Restore previous section after setting the MIPS ABI marker. This keeps
the .text section in use after the file header, improving compatibility
with gcc. Without this change, module-level inline assembly blocks could
end up into wrong section.

OK kettenis@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/04/20 05:30:11

Modified files:
	sys/netinet6   : raw_ip6.c 

Log message:
Statistics of "netstat -s -f inet6 -p rip6" did not work.  In
rip6_sysctl_rip6stat() copy out rip6counters, not ip6counters.
OK deraadt@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/04/20 05:36:19

Modified files:
	usr.bin/netstat: inet6.c 

Log message:
The rip6 checksum errors are accounted per socket.  So the no socket
errors include these, do not subtract both from delivered.  Avoids
an underflow in the rip6 delivered counter.
OK deraadt@ claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/20 07:52:18

Modified files:
	editors/dte    : Makefile distinfo 

Log message:
Update to dte-1.8
Changelog: https://craigbarnes.gitlab.io/dte/releases.html


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/04/20 08:13:11

Modified files:
	sys/kern       : vfs_lockf.c 

Log message:
print locked range in decimal in debug routines


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/20 09:14:19

Modified files:
	devel/liburcu  : Makefile distinfo 

Log message:
Update to liburcu-0.10.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/20 09:40:23

Modified files:
	textproc/py-colored: Makefile distinfo 

Log message:
Updated py-colored to latest release. Change notation of license to
the proper MIT rather than the incorrect GPLv3. Drop kn@ from
maintainer per his request.

OK kn sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/20 09:41:33

Modified files:
	net/knot       : Makefile distinfo 

Log message:
Update to knot-2.7.7

Release notes:
https://www.knot-dns.cz/2019-01-07-version-275.html
https://www.knot-dns.cz/2019-01-23-version-276.html
https://www.knot-dns.cz/2019-04-08-version-277.html


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 09:47:23

Modified files:
	sys/conf       : param.c 

Log message:
as discussed with beck, crank dma-range bufcache to a high number
(he suggested 90 but I prefer 80).  This is so we learn the downside
from user reports.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 09:54:27

Modified files:
	faq            : current.html 

Log message:
I despise the word "support" particularly sentence fragments like "not
supported".  Instruct people more careful: experts are encouraged to
attempt building of -current since that is the road to becoming a
developer!  On the other hand, non-experts should not, explain why simply,
and describe the obvious solution in case of screwup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/20 10:16:40

Modified files:
	net/knot       : Makefile 

Log message:
Remove duplicate symbol workaround


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/20 10:48:32

Modified files:
	net/knot       : Makefile distinfo 
	net/knot/pkg   : PLIST 

Log message:
Update to knot-2.8.1

Release notes:
https://www.knot-dns.cz/2019-03-05-version-280.html
https://www.knot-dns.cz/2019-04-09-version-281.html

Reorder SHARED_LIBS while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/04/20 12:22:28

Modified files:
	devel/sdl2-mixer: Makefile distinfo 
	devel/sdl2-mixer/patches: patch-configure 

Log message:
update to sdl2-mixer 2.04 which adds opusfile, take maintainer. Tested with various consumers. ok jca@


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2019/04/20 14:19:16

Modified files:
	faq            : upgrade65.html 

Log message:
Add samba to "Special packages", the samba AD DC support is broken in 6.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/04/20 15:35:02

Modified files:
	math/py-scipy  : Makefile distinfo 
	math/py-scipy/patches: patch-scipy_special_tests_test_basic_py 
	math/py-scipy/pkg: PLIST 

Log message:
Update py-scipy to 1.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/04/20 16:12:41

Modified files:
	lang/compcert  : Makefile 
	lang/compcert/patches: patch-Makefile 

Log message:
Drop dependency on base gcc and switch to ports gcc instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 16:40:13

Modified files:
	sys/dev/fdt    : acrtc.c 

Log message:
armv7 RAMDISK is now compiled with -Oz (just to be like other ramdisks),
so clang's rule about "static inline" comes into play.
ok patrick


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 16:59:04

Modified files:
	sys/arch/amd64/stand/boot: Makefile 
	sys/arch/amd64/stand/cdboot: Makefile 
	sys/arch/amd64/stand/efiboot: Makefile.common 
	sys/arch/amd64/stand/pxeboot: Makefile 
	sys/arch/hppa/stand/boot: Makefile 
	sys/arch/i386/stand/boot: Makefile 
	sys/arch/i386/stand/cdboot: Makefile 
	sys/arch/i386/stand/pxeboot: Makefile 
	sys/arch/loongson/stand/libsa: Makefile 
	sys/arch/luna88k/stand/boot: Makefile 
	sys/arch/macppc/stand/boot.mac: Makefile 
	sys/arch/macppc/stand/ofwboot: Makefile 
	sys/arch/octeon/stand/libsa: Makefile 
	sys/arch/sgi/stand/boot: Makefile 
	sys/arch/sgi/stand/libsa: Makefile 
	sys/arch/sparc64/stand/libsa: Makefile 
	sys/lib/libsa  : Makefile memcpy.c stand.h 
Added files:
	sys/lib/libsa  : memmove.c 

Log message:
libsa's memcpy() is actually memmove().  make a proper memmove(), and give
memcpy() correct behaviour.  This also brings the bcopy() macro into line.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 17:00:07

Modified files:
	sys/arch/amd64/stand/libsa: exec_i386.c 

Log message:
When copying the EFI-stored kernel to the correct operating location,
use memmove.  We don't know whether EFI allocated overlapping memory.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 17:10:00

Modified files:
	sys/sys        : exec_elf.h 

Log message:
The conversion of rdsetroot to -lelf failed on alpha: -lelf thought ELF SHDR
was 80 bytes in size, rather than 64 as listed in the ELF header.  In Sep 2001
when ELF was being integrated into the tree, two of the ELF object types (and two
more via #define) were given different (incorrect) sizes, and hid behind an
#ifdef __alpha__ all this time.  -lelf constructs the SHDR object by accumulating
sizes of types, so this was finally exposed.
A review of the tree shows no other consequences, so we can fix this now.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 17:11:20

Modified files:
	sys/kern       : exec_elf.c 

Log message:
#define        ELFROUNDSIZE    4       /* XXX Should it be sizeof(Elf_Word)? */
Now that alpha is fixed, we can use sizeof().


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/04/20 17:22:28

Modified files:
	lib/libevent   : min_heap.h 

Log message:
knf, ok bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/04/20 17:44:36

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Revert enabling VMM_DEBUG which slipped through the previous commit.

Fixes panic on `vmctl start foo'.

OK tedu deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/04/20 17:55:22

Modified files:
	math/py-scipy  : Makefile 
	math/py-scipy/pkg: PLIST 

Log message:
Repair PLIST.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 19:08:46

Modified files:
	usr.bin/nl     : nl.c 

Log message:
pledge "stdio" after opening file and before doing operations
from Rafael Neves


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/20 21:41:14

Modified files:
	libexec/ld.so  : resolve.c resolve.h 

Log message:
On alpha, the buckets of DT_HASH are 8 bytes instead of 4 bytes.  This was
previously 'implemented' by having the Elf_Word typedef in <sys/exec_elf.h>
vary, but that doesn't match the spec and breaks libelf so it's gone away.
Implement the variation here by defining our own type locally for this.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/04/20 21:47:40

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm Ruby.pm 

Log message:
Fix portgen(1) for python modules with DISTNAME that starts with py-

OK kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/20 22:11:42

Modified files:
	libexec/ld.so  : resolve.c resolve.h 

Log message:
Now that all Elf_foo types are correct, we don't need to use Elf32_Word
anywhere and can use Elf_Word instead.
ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/20 22:21:44

Modified files:
	lib            : check_sym 

Log message:
Improve comment grammar


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/21 02:07:48

Modified files:
	lib/libcrypto/x509v3: v3_akey.c 

Log message:
fix some style nits to reduce noise in an upcoming diff


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/04/21 02:28:53

Modified files:
	sys/net        : if_media.c 

Log message:
Interpret ENETRESET from ifm_change() as success in ifmedia_ioctl().

Drivers will return ENETREST if the hardware needs to be reinitialized
after successfully switching to the new media mode; it's not an error.

This change fixes unreliable 'ifconfig mode' with some wireless drivers.

ok phessler@ jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:49:11

Modified files:
	multimedia/gstreamer1: Makefile.inc 

Log message:
Bump the gstreamer1 stack to 1.16.0 and refactor to use meson(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:49:25

Modified files:
	multimedia/gstreamer1/core: Makefile distinfo 
	multimedia/gstreamer1/core/pkg: PLIST 

Log message:
Update to gstreamer1-1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:49:42

Modified files:
	multimedia/gstreamer1/plugins-base: Makefile distinfo 
	multimedia/gstreamer1/plugins-base/files: gstsndio.c gstsndio.h 
	                                          sndiosrc.c 
	multimedia/gstreamer1/plugins-base/pkg: PLIST 
Added files:
	multimedia/gstreamer1/plugins-base/files: meson.build 
	multimedia/gstreamer1/plugins-base/patches: 
	                                            patch-ext_meson_build 
	                                            patch-meson_options_txt 
Removed files:
	multimedia/gstreamer1/plugins-base/files: Makefile.am 
	multimedia/gstreamer1/plugins-base/patches: patch-configure_ac 
	                                            patch-ext_Makefile_am 
	                                            patch-ext_gl_Makefile_am 

Log message:
Update to gstreamer1-plugins-base-1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:49:57

Modified files:
	multimedia/gstreamer1/plugins-good: Makefile distinfo 
	multimedia/gstreamer1/plugins-good/pkg: PLIST-main 
Removed files:
	multimedia/gstreamer1/plugins-good/patches: 
	                                            patch-common_m4_gst-dowhile_m4 
	                                            patch-ext_vpx_gstvpxdec_c 
	                                            patch-sys_oss_Makefile_in 

Log message:
Update to gstreamer1-plugins-good-1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:50:10

Modified files:
	multimedia/gstreamer1/plugins-ugly: Makefile distinfo 
	multimedia/gstreamer1/plugins-ugly/pkg: PLIST 

Log message:
Update to gstreamer1-plugins-ugly-1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:50:30

Modified files:
	multimedia/gstreamer1/plugins-bad: Makefile distinfo 
	multimedia/gstreamer1/plugins-bad/pkg: PLIST 
Removed files:
	multimedia/gstreamer1/plugins-bad/patches: 
	                                           patch-common_m4_gst-dowhile_m4 
	                                           patch-configure_ac 

Log message:
Update to gstreamer1-plugins-bad-1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:50:45

Modified files:
	multimedia/gstreamer1/plugins-libav: Makefile distinfo 
	multimedia/gstreamer1/plugins-libav/pkg: PLIST 
Removed files:
	multimedia/gstreamer1/plugins-libav/patches: 
	                                             patch-ext_libav_Makefile_in 
	                                             patch-gst-libs_ext_libav_configure 

Log message:
Update to gstreamer1-plugins-libav-1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:51:08

Modified files:
	multimedia/gstreamer1/mm: Makefile 

Log message:
Regen WANTLIB and use the x11/gnome MODULE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:51:27

Modified files:
	multimedia/gstreamer1/py-gstreamer: Makefile distinfo 
	multimedia/gstreamer1/py-gstreamer/pkg: PLIST 

Log message:
Update to py3-gstreamer1-1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 02:51:52

Modified files:
	multimedia/qt-gstreamer: Makefile 
Added files:
	multimedia/qt-gstreamer/patches: patch-src_QGst_caps_cpp 

Log message:
Unbreak build with new Gstreamer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 03:03:57

Modified files:
	graphics/py-cairo: Makefile distinfo 

Log message:
Update to py-cairo-1.18.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 03:05:59

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.542.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 03:07:57

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-242.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 03:11:27

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.134.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 03:11:39

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.134.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/21 03:11:55

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.144.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/21 03:32:19

Modified files:
	lang/python    : Makefile.inc 
	lang/python/2.7: Makefile 
	lang/python/2.7/pkg: PLIST-tools 
	lang/python/3.6: Makefile 

Log message:
python tweaks;

- sync WANTLIB
- use do-gen instead of post-patch for the "subst and regen
autoconf files" target
- ALL_TARGET needs setting differently between 2.7 and 3.x;
rather than checking against 3.6 for "all", check against 2.7
for "all ./Lib/plat-openbsd6". needed for newer 3.x.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/21 03:33:33

Modified files:
	lang/python    : Makefile python.port.mk 
Added files:
	lang/python/3.7: Makefile distinfo 
	lang/python/3.7/files: CHANGES.OpenBSD 
	lang/python/3.7/patches: patch-Lib_test_test_locale_py 
	                         patch-Makefile_pre_in 
	                         patch-Modules__hashopenssl_c 
	                         patch-Modules__ssl_c patch-configure_ac 
	                         patch-setup_py 
	lang/python/3.7/pkg: DESCR-gdbm DESCR-idle DESCR-main 
	                     DESCR-tests DESCR-tkinter PLIST-gdbm 
	                     PLIST-idle PLIST-main PLIST-tests 
	                     PLIST-tkinter 

Log message:
import python 3.7.3, ok rpointel@ kmos@

at this point, only python itself will be built for 3.7.x; modules are still
all built against 3.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/21 03:43:47

Modified files:
	devel/dlib     : Makefile 
Added files:
	devel/dlib/patches: patch-dlib_test_stack_cpp 

Log message:
Unbreak and enable tests

Fixed upstream after report.

NO_TEST hint by ajacoutot@ Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/21 04:11:38

Modified files:
	devel/kreport  : Makefile distinfo 
	devel/kreport/pkg: PLIST 

Log message:
Update kreport to 3.2.0

Changelog:
https://community.kde.org/Kexi/Releases/3.2.0_Changes#Changes_in_KReport


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/21 04:11:42

Modified files:
	databases/kdb  : Makefile distinfo 
	databases/kdb/pkg: PLIST 
Added files:
	databases/kdb/patches: patch-autotests_DateTimeTest_cpp 

Log message:
Update kdb to 3.2.0

Changelog:
https://community.kde.org/Kexi/Releases/3.2.0_Changes#Changes_in_KDb


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/21 04:11:48

Modified files:
	devel/kproperty: Makefile distinfo 
	devel/kproperty/pkg: PLIST 

Log message:
Update kproperty to 3.2.0

Changelog:
https://community.kde.org/Kexi/Releases/3.2.0_Changes#Changes_in_KProperty


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/21 04:12:01

Modified files:
	databases/kexi : Makefile distinfo 
	databases/kexi/pkg: PLIST 

Log message:
Update kexi to 3.2.0

Changelog:
https://community.kde.org/Kexi/Releases/3.2.0_Changes#Changes_in_KEXI


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/21 04:17:25

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Start cleaning up tls_decrypt_ticket().

Rather than returning from multiple places and trying to clean up as we go,
move to a single exit point and clean/free in one place. Also invert the
logic that handles NULL sessions - fail early, rather than having an
indented if test for success.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/21 04:54:42

Modified files:
	sys/dev/pci/drm/include/linux: rbtree.h 

Log message:
Fix rbtree_postorder_for_each_entry_safe() implementation.  Fixes crashes
seen with the "intel" X driver with the new inteldrm kernel driver.

ok (and with help from) jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/21 05:29:44

Modified files:
	security/keepassxc: Makefile distinfo 
	security/keepassxc/pkg: PLIST 

Log message:
Update keepassxc to 2.4.1

Upstream removed KeePassHttp support which means there is no legacy browser
support in OpenBSD.

Full chnagelog:
- https://github.com/keepassxreboot/keepassxc/releases/tag/2.4.0
- https://github.com/keepassxreboot/keepassxc/releases/tag/2.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/04/21 05:31:20

Modified files:
	net/bitlbee/pkg: PLIST 
	net/bitlbee    : Makefile distinfo 

Log message:
Update to bitlbee-3.6

ok maintainer
ok kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/21 06:13:58

Modified files:
	sysutils/py-statgrab: Makefile 

Log message:
rebuild distributed statgrab.c with newer cython; unbreaks py37


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/21 06:17:04

Modified files:
	textproc/py-stemmer: Makefile 

Log message:
rebuild distributed src/Stemmer.c with newer cython; unbreaks py37


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/21 06:25:11

Modified files:
	devel/py-gitdb : Makefile distinfo 

Log message:
drop unused py-async dependency
minor update to 2.0.5 while there


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/21 06:29:34

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/py-async : Makefile distinfo 
	devel/py-async/pkg: DESCR PLIST 

Log message:
Remove py-async, it was only needed for gitdb, but that stopped
actually using it in 2.x (and the dep has just been removed from ports).
Upstream says

"DEPRECATION NOTE: Please do not use this library ! It���s not working
correctly in python 3, and besides that might be called a failed
experiment.

Currently gitdb (via git-python) is it���s major user, but it will be
patched to not require it anymore."


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/21 06:40:35

Modified files:
	textproc/py-ruamel.yaml: Makefile distinfo 
	textproc/py-ruamel.yaml/pkg: PLIST 

Log message:
update to py-ruamel.yaml-0.15.92, unbreaks py37
py3x tests are broken, but they were broken before too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/21 07:06:35

Modified files:
	infrastructure/bin: register-plist 

Log message:
no longer ignore @version, but do something smarter about it.
- if it wasn't there, just register it
- if it was there, don't allow it to go backwards
- when @version increases, anything goes. The new plist might have some
new objects, we don't really care.

as requested by sthen@
makes it possible to avoid REVISION bumps for large system changes (such
as gcc 4.9 -> 8.*)

it is advised to do a bulk with the newer register-plist first so that the
lists will have @version markers


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/21 08:38:32

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Cleanup more of tls_decrypt_ticket().

Separate the malloc() check and EVP_DecryptUpdate() - the malloc() failure
is fatal while a EVP_DecryptUpdate() is a decryption failure.

Also ensure that we clear the error stack in all cases where we are
indicating a failure to decrypt or decode the ticket - otherwise
SSL_error() while later return failure when it should not.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/21 08:41:30

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Clean up tls1_process_ticket().

We only have to find one extension, so do that first then proceed with
processing and decryption. This makes the code more readable and drops
two levels of indent.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/21 08:42:19

Modified files:
	sys/dev/pci/drm/i915: i915_timeline.c 

Log message:
Timeline lock is used from interrupt context so use IPL_TTY to prevent
"locking against myself" panics.


CVSROOT:	/cvs
Module name:	www
Changes by:	naddy@cvs.openbsd.org	2019/04/21 09:04:49

Modified files:
	.              : 65.html 

Log message:
update aarch64 package count


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/21 09:20:25

Modified files:
	share/mk       : bsd.own.mk 

Log message:
Build clang on powerpc.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/21 09:20:30

Modified files:
	distrib/sets/lists/base: md.macppc 
Added files:
	distrib/sets/lists/comp: clang.macppc 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/21 09:33:39

Modified files:
	share/man/man4 : options.4 

Log message:
adjust bufcachepercent default


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/21 09:34:02

Modified files:
	security/suricata: Makefile 

Log message:
suricata: Change COMPILER to unbreak on !clang archs
Use ports-gcc on !clang archs, because suricata needs thread local storage.
While here, make spacing consistent in the Makefile.
Tested on macppc with gcc-4.9 and gcc-8.3.

ok jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/21 09:44:05

Modified files:
	comms/hylafax  : Makefile 
	comms/hylafax/patches: patch-faxd_UUCPLock_c++ 
	comms/hylafax/pkg: README 
Added files:
	comms/hylafax/patches: patch-faxd_ModemConfig_c++ 
	                       patch-libhylafax_FaxRecvInfo_c++ 

Log message:
hylafax: fix the build with ports-gcc-8.
Allow building with C++14 (even for clang archs).
Also add various portcheck(1) fixes and move HOMEPAGE to https.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/04/21 10:02:45

Modified files:
	lib/libc/sys   : sysctl.2 

Log message:
adjust another bufcachepercent default


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/21 10:25:40

Modified files:
	lib/libcrypto/x509v3: pcy_node.c v3_cpols.c v3_crld.c 

Log message:
KNF: use proper wrapping of function return type and name


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/21 10:29:57

Modified files:
	lib/libcrypto/x509v3: v3_lib.c 

Log message:
Fix awful whitespace in OBJ_bsearch_ext()


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/21 10:38:01

Modified files:
	lib/libcrypto/x509v3: v3_pku.c 

Log message:
The noop v2i_PKEY_USAGE_PERIOD() has been commented out since beck
imported OpenSSL 0.9.4 in 1999.  It won't ever be used.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/21 10:50:34

Modified files:
	lib/libcrypto/x509v3: v3_akey.c v3_alt.c 

Log message:
Add error checking to i2v_AUTHORITY_KEYID(), i2v_GENERAL_NAME()
and i2v_GENERAL_NAMES().  This fixes a couple of leaks and other
ugliness.

tweaks & ok jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/21 11:54:17

Modified files:
	devel/p5-Package-Stash-XS: Makefile 

Log message:
p5-Package-Stash-XS: use FIX_EXTRACT_PERMISSIONS

OK afresh1@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/21 11:57:47

ports/devel/p5-MooseX-Method-Signatures/patches

Update of /cvs/ports/devel/p5-MooseX-Method-Signatures/patches
In directory cvs.openbsd.org:/tmp/cvs-serv21459/patches

Log Message:
Directory /cvs/ports/devel/p5-MooseX-Method-Signatures/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/21 12:03:44

Modified files:
	devel/p5-MooseX-Method-Signatures: Makefile distinfo 
Added files:
	devel/p5-MooseX-Method-Signatures/patches: 
	                                           patch-t_00-report-prereqs_t 

Log message:
Update p5-MooseX-Method-Signatures to 0.49
Also fix a test that still assumes that '.' is in @INC
Changelog:
https://metacpan.org/changes/release/ETHER/MooseX-Method-Signatures-0.49

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/21 13:38:46

Modified files:
	audio/opus     : Makefile distinfo 

Log message:
maintenance update to 1.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/21 15:31:40

Modified files:
	books/JLS      : Makefile distinfo 

Log message:
Update JLS to 12.0

OK cwen@ ian@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/04/21 15:48:16

Modified files:
	infrastructure/lib/OpenBSD/PortGen: License.pm 

Log message:
Recognize GPL-3.0 as GPLv3 in portgen

OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/04/21 15:52:20

Modified files:
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Improve MODPY_VERSION detection in portgen

OK kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/21 16:43:00

Modified files:
	share/man/man7 : roff.7 
	usr.bin/mandoc : roff.c 
	regress/usr.bin/mandoc/roff/while: Makefile 
Added files:
	regress/usr.bin/mandoc/roff/while: break.in break.out_ascii 

Log message:
Implement the roff .break request (break out of a .while loop).
Jan Stary <hans at stare dot cz> found it in an ancient groffer(1)
manual page (version 1.19) on MacOS X Mojave.
Having .break not implemented wasn't a particularly bright idea
because obviously, it tended to cause infinite loops.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/04/21 17:27:53

Modified files:
	print/poppler  : Makefile distinfo 
	print/poppler/pkg: PLIST-utils 

Log message:
Update to poppler-0.75.0.

Build-tested on sparc64 with gcc-8.3 by jca@,
tested on amd64 by myself.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/21 17:45:50

Modified files:
	usr.bin/mandoc : roff.c 
	regress/usr.bin/mandoc/roff/de: Makefile 
Added files:
	regress/usr.bin/mandoc/roff/de: empty.in empty.out_ascii 

Log message:
When calling an empty macro, do not clobber existing arguments.
Fixing a bug found with the groffer(1) version 1.19 manual page
following a report from Jan Stary.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/21 18:38:05

Modified files:
	sys/net        : if_gre.c 

Log message:
support rxprio

i need to come back to this and make it flow a bit better, but this
is a good start.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/21 20:04:13

Modified files:
	sys/conf       : GENERIC 

Log message:
disable mobileip(4)

it's not great in several dimensions, so this is a first step to
removing it. if noone has a (reasonable) teary i'll start removing
the code in a few weeks.

"kill it with fire" deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2019/04/21 20:36:25

Modified files:
	libressl       : index.html releases.html 

Log message:
LibreSSL 2.9.1


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/21 20:53:40

Modified files:
	sys/net        : if.c 

Log message:
factor out calling the if input handlers for a packet.

this is a step toward letting interfaces like vlan bypass ifiqs


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/21 21:26:16

Modified files:
	sys/net        : if_var.h if.c 

Log message:
add if_vinput so pseudo (ethernet) interfaces can bypass ifiqs

if_vinput assumes that the interface that its called against uses
per cpu counters so it can count input packets, but basically does
all the things that if_input and ifiq_input do. the main difference
is it assumes the network stack is already running and runs the
interface input handlers directly. this is instead of queuing the
packets for a nettq to run.

ifiqs arent free, especially when they only run per packet like
they do on psuedo interfaces. this allows that overhead to be
bypassed.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/21 21:29:40

Modified files:
	sys/net        : if_vlan.c 

Log message:
use if_vinput instead of if_input, thereby bypassing ifiqs on vlans

ifiqs on vlans are mostly just overhead. this improves vlan input
speeds a lot, depending on your setup. i havent seen any speed
regression with this.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/04/21 21:54:16

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm(4): remove a debug printf that was causing lock issues (it was being
called from an IPI routine).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/21 22:41:53

Modified files:
	lang/flang/driver: Makefile distinfo 

Log message:
Update to flang-driver-7.0.1.20190409


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/21 23:36:42

Modified files:
	distrib/miniroot: install.sub 

Log message:
When upgrading only prompt for disks that contain a root partition.

With this the question "Which disk is the root disk" has the correct
default in case of full disk encryption. Before it would list sd0 sd1
with sd0 being the backing store and sd1 the unlocked disk.

This is a step towards fully unattended upgrades running completely on
defaults (i.e. no need for an autoinstall(8) answer file).

In the past there have been concernes that we should not touch any odd
disk without the operator telling us as there might be bugs lurking.
It is early enough in the cycle to find out for sure.

input halex, kn
"just commit it" deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/22 02:19:14

Modified files:
	devel/orc      : Makefile distinfo 
	devel/orc/patches: patch-configure_ac 
	                   patch-orc-uninstalled_pc_in 
	devel/orc/pkg  : PLIST 

Log message:
Update to orc-0.4.29.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/22 02:19:22

Modified files:
	net/py-ripe.atlas.cousteau: Makefile 

Log message:
Remove py-funcsigs from python3 FLAVOR.
py-funcsigs backports functionality to python 2.x and versions
of python 3.x earlier than what we have.

OK sthen@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/22 02:22:57

Modified files:
	math/py-pandas : Makefile 

Log message:
math/py-pandas has a hidden dependency on lang/cython as mentioned
here:

https://marc.info/?l=openbsd-ports&m=155508121408600&w=2

naddy@ requested it be fixed. This adds it to RUN_DEPENDS.
While here, sorted RUN_DEPENDS.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/22 02:46:17

Modified files:
	comms/hackrf   : Makefile 

Log message:
hackrf: fix build on big-endian archs by using ports-gcc on !clang archs

OK bentley@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/04/22 02:55:50

Log message:
    Import Bonzomatic
    
    Bonzomatic is a live-coding tool, where you can write a 2D fragment/pixel shader
    while it is running in the background.
    
    The tool was originally conceived and implemented after the Revision 2014
    demoscene party's live coding competition where two contestants improv-code an
    effect in 25 minutes head-to-head.
    
    At least OpenGL 4.1 is required, which is supported by
    3rd generation Intel Core i3/i5/i7 "Ivy Bridge" processors and
    ATI/AMD TeraScale 2 "Evergreen" chipsets or later.
    
    Input from jsg sthen
    OK rsadowski
    
    Status:
    
    Vendor Tag:	kn
    Release Tags:	kn_20190422
    
    N ports/graphics/bonzomatic/Makefile
    N ports/graphics/bonzomatic/distinfo
    N ports/graphics/bonzomatic/patches/patch-src_ShaderEditor_cpp
    N ports/graphics/bonzomatic/patches/patch-src_platform_glfw_Renderer_cpp
    N ports/graphics/bonzomatic/patches/patch-src_platform_x11_Misc_cpp
    N ports/graphics/bonzomatic/pkg/PLIST
    N ports/graphics/bonzomatic/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/22 02:58:46

Modified files:
	devel/p5-MooseX-MethodAttributes: Makefile distinfo 

Log message:
p5-MooseX-MethodAttributes: update to 0.31
Changelog:
https://metacpan.org/changes/distribution/MooseX-MethodAttributes

tweaks and OK bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/04/22 02:59:14

Modified files:
	graphics       : Makefile 

Log message:
./msg


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/22 03:24:22

Modified files:
	security/nss   : Makefile distinfo 

Log message:
Update to nss 3.43, required by gecko 67.

See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.43_release_notes
been in my tree for a while...


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/22 04:09:37

Modified files:
	lang/python/2.7: Makefile 

Log message:
Missed bump.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/22 04:18:20

Modified files:
	sys/dev/fdt    : pluart_fdt.c 

Log message:
Configure pins.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/22 05:19:51

Modified files:
	textproc/gtranslator: Makefile distinfo 
	textproc/gtranslator/pkg: PLIST 

Log message:
Update to gtranslator-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/22 05:22:50

Modified files:
	productivity/tryton/5.0/party: Makefile distinfo 
	productivity/tryton/5.0/product_classification_taxonomic: 
	                                                          Makefile 
	                                                          distinfo 
	productivity/tryton/5.0/product_price_list_dates: Makefile 
	                                                  distinfo 
	productivity/tryton/5.0/proteus: Makefile distinfo 
	productivity/tryton/5.0/sale_shipment_cost: Makefile distinfo 
	productivity/tryton/5.0/sao: Makefile distinfo 
	productivity/tryton/5.0/sao/files: sao-dependencies.sh 
	productivity/tryton/5.0/stock: Makefile distinfo 
	productivity/tryton/5.0/tryton: Makefile distinfo 
	productivity/tryton/5.0/trytond: Makefile distinfo 

Log message:
5.0: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/22 05:52:42

Added files:
	devel/ti-msp430gcc/patches: 
	                            patch-sources_tools_contrib_texi2pod_pl 
	                            patch-sources_tools_etc_texi2pod_pl 

Log message:
fix warning and future error about unescaped left brace in perl regex


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/22 06:43:13

Modified files:
	sys/dev/fdt    : hiclock.c 

Log message:
Add support for official Linux device tree bindings and implement support
for the "stub" clocks that handle the CPU clock frequency on the Hi3670.


CVSROOT:	/cvs
Module name:	ports
Changes by:	anton@cvs.openbsd.org	2019/04/22 08:33:07

Modified files:
	mail/mdsort    : Makefile distinfo 

Log message:
Update to mdsort-3.1.0.

ok gsoares@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/22 08:49:42

Modified files:
	lib/libssl     : ssl_locl.h ssl_srvr.c t1_lib.c 

Log message:
Inline and remove the tlsext_tick_md macro.

There is not much point having a tlsext_tick_md macro that replaces
EVP_sha256() in two places, when the cipher is just hardcoded.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/22 09:12:20

Modified files:
	lib/libssl     : ssl_locl.h ssl_sess.c ssl_srvr.c t1_lib.c 

Log message:
Pass the session ID down to the session/ticket handling code as a CBS.

Convert ssl_get_prev_session(), tls1_process_ticket() and
tls1_decrypt_ticket() to handle the session ID from the client hello
as a CBS. While here also swap the order of arguments for
tls1_decrypt_ticket() so that it is consistent with the other functions.

ok tb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/04/22 09:25:50

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/22 10:03:54

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Provide a derr label (decode/decrypt error) in tls1_decrypt_ticket().

This handles the ret = 2 case and makes the code more readable.

ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/22 10:34:46

Modified files:
	editors/emacs  : Makefile distinfo 
	editors/emacs/patches: patch-Makefile_in patch-configure 
	                       patch-lisp_files_el patch-lisp_vc_vc_el 
	editors/emacs/pkg: PLIST 

Log message:
Update to emacs-26.2

Announcement mail:
https://lists.gnu.org/archive/html/info-gnu/2019-04/msg00003.html

Works fine on amd64 and sparc64.  Tests by Timo Myyra, sunil@, Nam
Nguyen, krw@ and me.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/22 11:10:01

Modified files:
	lib/libcrypto/x509v3: v3_akey.c v3_alt.c 

Log message:
Avoid potential double frees in i2v_AUTHORITY_KEYID(), i2v_GENERAL_NAME()
and i2v_GENERAL_NAMES() by taking ownership of the extlist only if we
were passed NULL.  Otherwise it remains the caller's responsibility to
free it.  To do so, we allocate the extlist explicitly instead of using
X509V3_add_value()'s implicit allocation feature.  Preserve behavior in
i2v_AUTHORITY_KEYID() by adding an explicit check that something was
pushed onto the stack.

The other i2v_* functions will receive a similar treatment in upcoming
commits.

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/22 11:18:30

Modified files:
	lib/libcrypto/x509v3: v3_info.c 

Log message:
Add error checking to i2v_AUTHORITY_INFO_ACCESS().  While there, replace
an ugly strlen + malloc + strcat/strcpy dance by a simple asprintf().

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/22 11:21:01

Modified files:
	lib/libcrypto/x509v3: v3_bcons.c 

Log message:
Add error checking to i2v_BASIC_CONSTRAINTS().

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/22 11:23:55

Modified files:
	lib/libcrypto/x509v3: v3_bitst.c 

Log message:
Add error checking to i2v_ASN1_BIT_STRING().

ok jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/22 11:24:26

Added files:
	devel/llvm/patches: patch-unittests_ADT_OptionalTest_cpp 

Log message:
Disable failing static_assert to let other tests run.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/22 11:26:34

Modified files:
	lib/libcrypto/x509v3: v3_extku.c 

Log message:
Add error checking to i2v_EXTENDED_KEY_USAGE().

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/22 11:29:13

Modified files:
	lib/libcrypto/x509v3: v3_pcons.c 

Log message:
Add error checking to i2v_POLICY_CONSTRAINTS().

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/22 11:32:09

Modified files:
	lib/libcrypto/x509v3: v3_pmaps.c 

Log message:
Add error checking to i2v_POLICY_MAPPINGS().

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/04/22 12:32:09

Modified files:
	usr.bin/make   : main.c 

Log message:
fix thinko from tb@'s commit.

okay tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/22 12:41:03

Modified files:
	gnu/llvm/lib/Target/Sparc: SparcAsmPrinter.cpp 

Log message:
Remove cast that truncates immediate operands to 32 bits.  This fixes
genassym.sh on sparc64 when using clang as the compiler.

ok claudio@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/22 12:52:56

Modified files:
	sys/arch/arm64/arm64: cpu.c 

Log message:
Not all systems supporting DVFS expose a regulator to set the voltage.
On such systems we should skip setting the voltage and just change the
clock frequency.  An example of such a system is the HiKey970 where
firmware running on a microcontroller will transparently adjust the voltage.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/22 13:56:51

Modified files:
	comms/hackrf   : Makefile 

Log message:
hackrf: COMPILER should be placed before MODULES, as seen in Makefile.template

ok jca@ (on the previous diff)


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/04/22 14:31:37

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm(4): flush guest TLB entries if guest disables paging. While this
behaviour is not mandatory, the SDM says a CPU "may" do this. Better to
be safe than sorry.

A similar treatment will be needed for SVM, and for the cases where the
host CPU does not have VPIDs/ASIDs. Those will be committed separately.

Original diff from Guillaume Pagnoux, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/22 14:50:34

Modified files:
	lang/gcc/4.9   : Makefile 
	lang/gcc/4.9/pkg: PLIST-java 

Log message:
take ownership of a directory that had accidentally been omitted; ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/22 15:39:52

Modified files:
	devel          : Makefile 
	devel/py-funcsigs: Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
py-funcsigs backports function signatures to Python 2.x and versions of
Python 3.x earlier than what we have. Including a python3 version of
py-funcsigs is a no-op for our purposes.

So I updated any ports to eliminate usage of the python3 FLAVOR and
with this update removing the FLAVOR completely.

Also removing that flavor from devel/Makefile and updating quirks
appropriately.

OK shadchin@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/04/22 16:47:50

Modified files:
	sys/netinet    : in_cksum.c 
	sys/netinet6   : in6.h in6_cksum.c 

Log message:
In in_cksum() and in6_cksum() convert types to C99 style and make
both functions consistent.  In in_cksum() panic if len is longer
than mbuf, but in in6_cksum() do not panic if off and len match
exactly to the end of mbuf.
OK claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/22 19:14:02

Modified files:
	net/scapy      : Makefile distinfo 
	net/scapy/patches: patch-doc_scapy_1 
	                   patch-scapy_arch_bpf_supersocket_py 
	                   patch-scapy_layers_inet6_py 
	                   patch-scapy_layers_inet_py 
	                   patch-scapy_layers_l2_py patch-setup_py 
	net/scapy/pkg  : PLIST 
Added files:
	net/scapy/patches: patch-scapy_config_py 
Removed files:
	net/scapy/patches: patch-scapy_arch_bpf_consts_py 

Log message:
Update scapy to 2.4.2.  Tests were removed from upstream package.
OK sthen@ danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/04/22 19:17:09

Modified files:
	sys/dev/pci    : if_athn_pci.c 

Log message:
- Update the comment describing why pci retry timeout needs to be disabled
- Override the default cache line size if it's set to zero

from Linux ath9k

ok stsp@, jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/04/22 19:31:38

Modified files:
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Correctly name ports that start with python- in portgen

reads good danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/22 20:24:22

src/regress/sys/arch/amd64/dump_tables

Update of /cvs/src/regress/sys/arch/amd64/dump_tables
In directory cvs.openbsd.org:/tmp/cvs-serv45589/dump_tables

Log Message:
Directory /cvs/src/regress/sys/arch/amd64/dump_tables added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/22 20:32:17

Added files:
	regress/sys/arch/amd64/dump_tables: Makefile dump_tables.c 

Log message:
Utility useful for debugging amd64 page tables


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/22 20:59:58

Modified files:
	regress/sys/arch/amd64/dump_tables: dump_tables.c 

Log message:
Add -u for getting pagetables of pid 1
User PAGE_SIZE macro


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/22 21:06:07

Modified files:
	regress/sys/arch/amd64/dump_tables: dump_tables.c 

Log message:
Add a header to explain fields


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/22 21:14:44

Modified files:
	regress/sys/arch/amd64/dump_tables: dump_tables.c 

Log message:
Simplify presentation of attributes to eliminate duplication


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/22 21:24:22

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add more amdgpu device ids.

The marketing names in libdrm's amdgpu.ids are based on device id and
revision id.  A single device id often maps to multiple marketing names
but the same codename so stick to codenames here.  The marketing names
in amdgpu.ids also do not cover all the device ids amdgpu matches on.

Use the same codenames as amdgpu.
Polaris 20 and Polaris 30 as Polaris 10.
Polaris 21 as Polaris 11.
Polaris 22 as Vega M.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/22 21:25:13

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/22 21:28:53

Modified files:
	regress/sys/arch/amd64/dump_tables: dump_tables.c 

Log message:
Improve usage message


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/22 22:46:03

Modified files:
	regress/sys/arch/amd64/dump_tables: dump_tables.c 

Log message:
Report slot types recursively for recursive PTE entries


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/23 00:00:58

Modified files:
	editors/libreoffice: Makefile distinfo 
Removed files:
	editors/libreoffice/patches: patch-libxmlsec_openbsd_patch 

Log message:
update to 6.2.3.2


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/04/23 00:08:57

Modified files:
	usr.sbin/ospfd : ospfe.c 

Log message:
For originating router LSAs for P2P interfaces check for linkstate
instead of IF_STA_POINTTOPOINT. This makes "passive" work on P2P
interfaces. Also add the "depend on" logic.

Bug reported by stsp@
ok stsp@ benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/04/23 00:14:04

Modified files:
	www/nextcloud  : Makefile distinfo 
	www/nextcloud/pkg: PLIST 

Log message:
Update for Nextcloud to 15.0.7:

https://nextcloud.com/changelog/

OK kirby@


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/04/23 00:15:14

Modified files:
	usr.sbin/ospfd : ospfe.c 

Log message:
Use the network address instead of the interface address for the "link id"
of P2P interfaces "stub net" LS.

This is related to revision 1.77 of rde_spf.c.

Problem reported by Mitchll Krome on tech@.

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/04/23 00:18:02

Modified files:
	usr.sbin/ospfd : ospfe.c 

Log message:
whitespace fix


CVSROOT:	/cvs
Module name:	ports
Changes by:	matthieu@cvs.openbsd.org	2019/04/23 00:18:29

Modified files:
	devel/imake    : Makefile distinfo 

Log message:
Update imake to 1.0.8.

ok naddy@ (who also reminded me to remove the REVISION)


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/04/23 00:18:44

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_4 Makefile distinfo 
	www/nextcloud/pkg: Tag: OPENBSD_6_4 PLIST 

Log message:
Update for Nextcloud to 15.0.7:

https://nextcloud.com/changelog/

OK kirby@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/23 00:20:37

Modified files:
	www/nginx      : Makefile 

Log message:
enable http auth request module and remove deprecated configure flags


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/23 00:51:04

Modified files:
	sys/arch/amd64/amd64: lapic.c pmap.c 

Log message:
Copy cache-control bits from U+K to U-K entry in pmap_enter_special()
in a generic way, correcting the handling of the LAPIC page.

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/23 02:08:24

Modified files:
	emulators/mupen64plus/video-glide64: Makefile 
Added files:
	emulators/mupen64plus/video-glide64/patches: 
	                                             patch-src_wrapper_filter_cpp 

Log message:
Declare variables as int to avoid narrowing errors on arm64.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/23 02:44:32

ports/emulators/mupen64plus/rsp-z64/patches

Update of /cvs/ports/emulators/mupen64plus/rsp-z64/patches
In directory cvs.openbsd.org:/tmp/cvs-serv21909/patches

Log Message:
Directory /cvs/ports/emulators/mupen64plus/rsp-z64/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/23 02:47:03

Modified files:
	emulators/mupen64plus/rsp-z64: Makefile 
Added files:
	emulators/mupen64plus/rsp-z64/patches: patch-src_rsp_h 

Log message:
Disable reading RDTSC.

This was only used to save debug timing information, which is not compiled
into the library anyway.

Should fix the build on arm64.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/23 03:15:24

Modified files:
	usr.bin/tmux   : layout.c 

Log message:
Do not try to resize if the parent cell is NULL, problem reported by
Sunil Nimmagadda.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/23 03:39:07

Modified files:
	usr.bin/tmux   : tmux.1 window-copy.c 

Log message:
Add -no-clear variants of copy-selection and copy-pipe which do not
clear the selection after copying. Make copy-pipe clear the selection by
default to be consistent with copy-selection. From Avi Halachmi.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/23 04:16:19

Modified files:
	net/libproxy   : Makefile 
Added files:
	net/libproxy/patches: patch-cmake_FindPython3Interp_cmake 

Log message:
Recognize python 3.7 and 3.8, from upstream via ajacoutot in response to a
slightly different diff from me


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/23 04:52:59

Modified files:
	net/dhcpcd     : Makefile distinfo 
Removed files:
	net/dhcpcd/patches: patch-src_dhcp6_c patch-src_if-options_c 
	                    patch-src_script_c 

Log message:
update to dhcpcd-7.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/23 04:53:45

Modified files:
	sys/net        : if_bpe.c if_etherip.c if_gre.c if_mpw.c 
	                 if_trunk.c if_vxlan.c 
	sys/netinet    : ip_carp.c 

Log message:
a first cut at converting some virtual ethernet interfaces to if_vinput

this let's input processing bypass ifiqs. there's a performance
benefit from this, and it will let me tweak the backpressure detection
mechanism that ifiqs use without impacting on a stack of virtual
interfaces.

ive tested all of these except mpw, which i will end up testing
soon anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/04/23 05:01:54

Modified files:
	sys/netinet6   : ip6_output.c raw_ip6.c 

Log message:
For raw IPv6 sockets userland may specify an offset where the
checksum field is located.  During rip6 input and output make sure
that this field is within the packet.  The offset my be -1 to disable
the feature, otherwise it must be non-negative and aligned.  Do a
stricter check during setsockopt(2).
from FreeBSD; OK claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:14:00

Log message:
    import ruby-xmlrpc:
    
    XMLRPC is a lightweight protocol that enables remote procedure calls
    over HTTP.
    
    a dependency for wpscan
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/www/ruby-xmlrpc/Makefile
    N ports/www/ruby-xmlrpc/distinfo
    N ports/www/ruby-xmlrpc/pkg/DESCR
    N ports/www/ruby-xmlrpc/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:16:07

Log message:
    import ruby-ethon:
    
    Very lightweight libcurl wrapper.
    
    a dependency for wpscan.
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/www/ruby-ethon/Makefile
    N ports/www/ruby-ethon/distinfo
    N ports/www/ruby-ethon/pkg/DESCR
    N ports/www/ruby-ethon/pkg/PLIST
    N ports/www/ruby-ethon/patches/patch-Gemfile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:18:09

Log message:
    import ruby-typhoeus
    
    Like a modern code version of the mythical beast with 100 serpent heads,
    Typhoeus runs HTTP requests in parallel while cleanly encapsulating
    handling logic.
    
    a dependency for wpscan.
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/www/ruby-typhoeus/Makefile
    N ports/www/ruby-typhoeus/distinfo
    N ports/www/ruby-typhoeus/pkg/DESCR
    N ports/www/ruby-typhoeus/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:20:31

Modified files:
	www            : Makefile 

Log message:
hook up ruby-typhoeus, ruby-ethon, ruby-xmlrpc


CVSROOT:	/cvs
Module name:	devel
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:23:25

Log message:
    import ruby-thread_safe:
    
    A collection of data structures and utilities to make thread-safe
    programming in Ruby easier.
    
    a dependency for wpscan
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N devel/ruby-thread_safe/Makefile
    cvs: ERROR: cannot write file /cvs/devel/ruby-thread_safe/Makefile,v: No such file or directory
    N devel/ruby-thread_safe/distinfo
    cvs: ERROR: cannot write file /cvs/devel/ruby-thread_safe/distinfo,v: No such file or directory
    cvs: ERROR: cannot mkdir /cvs/devel/ruby-thread_safe/pkg -- not added: No such file or directory
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:24:28

Log message:
    import ruby-thread_safe
    
    A collection of data structures and utilities to make thread-safe
    programming in Ruby easier.
    
    a dependency for wpscan
    
    OK jasper@, gonzalo@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/devel/ruby-thread_safe/Makefile
    N ports/devel/ruby-thread_safe/distinfo
    N ports/devel/ruby-thread_safe/pkg/DESCR
    N ports/devel/ruby-thread_safe/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:25:12

Modified files:
	devel          : Makefile 

Log message:
hook up ruby-thread_safe


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:26:49

Log message:
    import ruby-tzinfo:
    
    TZInfo provides access to time zone data and allows times to be
    converted using time zone rules.
    
    a dependency for wpscan
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/sysutils/ruby-tzinfo/Makefile
    N ports/sysutils/ruby-tzinfo/distinfo
    N ports/sysutils/ruby-tzinfo/pkg/DESCR
    N ports/sysutils/ruby-tzinfo/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:27:38

Modified files:
	sysutils       : Makefile 

Log message:
hook up ruby-tzinfo


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:29:35

Log message:
    import ruby-opt_parse_validator
    
    Implementation of validators for the Ruby OptionParser lib. Mainly used
    in the CMSScanner gem to define the cli options available.
    
    a dependency for wpscan
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/devel/ruby-opt_parse_validator/Makefile
    N ports/devel/ruby-opt_parse_validator/distinfo
    N ports/devel/ruby-opt_parse_validator/pkg/DESCR
    N ports/devel/ruby-opt_parse_validator/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:32:11

Log message:
    import ruby-ruby-progressbar:
    
    Ruby/ProgressBar is an extremely flexible text progress bar library for
    Ruby. The output can be customized with a flexible formatting system
    including: percentage, bars of various formats, elapsed time and
    estimated time remaining.
    
    a dependency for wpscan
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/devel/ruby-ruby-progressbar/Makefile
    N ports/devel/ruby-ruby-progressbar/distinfo
    N ports/devel/ruby-ruby-progressbar/pkg/DESCR
    N ports/devel/ruby-ruby-progressbar/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:36:57

Added files:
	devel/ruby-activesupport: Makefile distinfo 
	devel/ruby-activesupport/pkg: DESCR PLIST 

Log message:
re-add ruby-activesupport:

A toolkit of support libraries and Ruby core extensions extracted from
the Rails framework. Rich support for multibyte strings,
internationalization, time zones, and testing.

a dependency for wpscan

OK jasper@, gonzalo@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/23 05:38:55

Modified files:
	sys/dev/pci/drm/include/linux: fs.h 
	sys/dev/pci/drm: drm_linux.c 

Log message:
Linux code expects to find struct file in fs.h so include sys/file.h
there.  As sys/file.h does not have an include guard don't include it in
drm_linux.c which indirectly includes fs.h via drmP.h.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:40:18

Modified files:
	devel          : Makefile 

Log message:
hook up ruby-ruby-progressbar, ruby-activesupport, ruby-opt_parse_validator


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:42:12

Log message:
    import ruby-cms_scanner:
    
    Framework to provide an easy way to implement CMS Scanners.
    
    the main dependency of wpscan
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/security/ruby-cms_scanner/Makefile
    N ports/security/ruby-cms_scanner/distinfo
    N ports/security/ruby-cms_scanner/pkg/DESCR
    N ports/security/ruby-cms_scanner/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/04/23 05:44:12

Modified files:
	openbgpd       : index.html 

Log message:
Initial cleanup for upcoming 6.5 portable release of openbgpd.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:44:25

Log message:
    import wpscan:
    
    WPScan is a black box WordPress vulnerability scanner.
    
    hint about GEM_FLAGS and MODRUBY_HANDLE_FLAVORS from jeremy@
    
    OK gonzalo@, jasper@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190423
    
    N ports/security/wpscan/Makefile
    N ports/security/wpscan/distinfo
    N ports/security/wpscan/pkg/DESCR
    N ports/security/wpscan/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/23 05:44:54

Modified files:
	sys/dev/pci/drm/i915: i915_gem.c 

Log message:
enable discard_backing_storage() test
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/23 05:46:06

Modified files:
	security       : Makefile 

Log message:
hook up ruby-cms_scanner and wpscan


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/23 05:48:55

Modified files:
	sys/net        : if_gre.c 

Log message:
give gre and mgre percpu counters too

makes input bytes and packets consistent


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/23 05:50:11

Modified files:
	security/wpa_supplicant: Makefile distinfo 
	security/wpa_supplicant/pkg: PLIST 
Removed files:
	security/wpa_supplicant/patches: patch-src_common_wpa_common_h 
	                                 patch-src_crypto_crypto_openssl_c 
	                                 patch-src_crypto_tls_openssl_c 
	                                 patch-src_rsn_supp_wpa_c 
	                                 patch-src_rsn_supp_wpa_ft_c 
	                                 patch-src_rsn_supp_wpa_i_h 

Log message:
update to wpa_supplicant-2.7, ok kn@, maintainer timeout


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/04/23 05:56:42

Modified files:
	usr.bin/ssh    : clientloop.c ssh.c 

Log message:
Use the LogLevel typdef instead of int where appropriate.  Patch from
Markus Schmidt via openssh-unix-dev, ok markus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/23 06:30:47

Modified files:
	lang/python    : python.port.mk 

Log message:
Landry found a case where putting the subdirectory in question into
MODPY_TEST_ARGS was not enough to get the tests to run using
MODPY_PYTEST, geo/py-proj.

This adds MODPY_TEST_DIR, which defaults to WRKSRC as is normal, to
allow overriding the subdirectory that tests run in. This isn't
specific to MODPY_PYTEST, it will work for PY_SETUPTOOLS tests also.

OK landry@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/04/23 06:31:33

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Documenting the MODPY_TEST_DIR addition to python.port.mk in
the port-modules(5) man page.

OK landry@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/23 07:35:13

Modified files:
	sys/arch/hppa/hppa: lock_machdep.c mutex.c 
	sys/arch/hppa/include: mplock.h 
	sys/arch/m88k/m88k: mutex.S 
	sys/arch/sparc64/sparc64: mutex.S 
	sys/dev/pci/drm/include/linux: completion.h spinlock.h wait.h 
	sys/kern       : kern_lock.c kern_rwlock.c kern_synch.c 
	                 kern_timeout.c subr_pool.c subr_witness.c 
	sys/sys        : _lock.h mplock.h mutex.h rwlock.h systm.h 
	                 witness.h 
	sys/uvm        : uvm_map.c 

Log message:
Remove file name and line number output from witness(4)

Reduce code clutter by removing the file name and line number output
from witness(4). Typically it is easy enough to locate offending locks
using the stack traces that are shown in lock order conflict reports.
Tricky cases can be tracked using sysctl kern.witness.locktrace=1 .

This patch additionally removes the witness(4) wrapper for mutexes.
Now each mutex implementation has to invoke the WITNESS_*() macros
in order to utilize the checker.

Discussed with and OK dlg@, OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/23 07:44:39

Modified files:
	x11/mate/desktop: Makefile distinfo 
	x11/mate/desktop/pkg: PLIST 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/23 07:53:47

Modified files:
	sys/arch/octeon/conf: files.octeon 
Added files:
	sys/arch/octeon/dev: octiic.c 

Log message:
Add a driver for OCTEON two-wire serial interface.

Not enabled yet because of a conflict with octrtc(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/23 07:56:51

Modified files:
	share/man/man4/man4.octeon: Makefile 
Added files:
	share/man/man4/man4.octeon: octiic.4 

Log message:
Add a manual page for octiic(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/23 07:58:26

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/23 08:02:40

Modified files:
	share/man/man4 : iic.4 

Log message:
Xr octiic(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/23 09:37:58

Modified files:
	sys/arch/mips64/mips64: lcore_access.S 

Log message:
Call exit(2) if sigreturn(2) fails on mips64. This is what other
architectures do.

Noticed by deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/04/23 10:03:21

Modified files:
	openbgpd       : index.html 

Log message:
do not wrap left column


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/04/23 10:34:27

Modified files:
	share/man/man4/man4.octeon: Makefile 
Added files:
	share/man/man4/man4.octeon: openprom.4 

Log message:
Add missing manpage.

Input from jmc@

OK jmc@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/23 10:42:14

Modified files:
	devel/py-txaio : Makefile distinfo 

Log message:
Update to py-txaio 18.8.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/23 10:43:01

Modified files:
	www/py-autobahn: Makefile distinfo 
	www/py-autobahn/pkg: PLIST 

Log message:
Update to py-autobahn 19.3.3.

This version should build with python 3.7.
The only consumer (buildbot) seems to work fine with it.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/23 11:02:45

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Convert tls_decrypt_ticket() to CBS.

This removes various pointer arithmetic and manual length checks.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/04/23 11:41:04

Modified files:
	share/man/man4/man4.arm64: Makefile 
Added files:
	share/man/man4/man4.arm64: openprom.4 

Log message:
Add missing manpage.

OK jmc@


CVSROOT:	/cvs
Module name:	www
Changes by:	job@cvs.openbsd.org	2019/04/23 11:43:53

Added files:
	images         : puffy65.gif Puffystock-s.gif Puffystock.gif 

Log message:
Add OpenBSD 6.5 artwork

Contributed by Hans Tseng, Efrain Farias, and Natasha Allegri. Thank you!


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/04/23 11:46:28

Modified files:
	share/man/man4/man4.arm64: openprom.4 

Log message:
Remove HISTORY section

"been there from the start" from kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/23 11:52:12

Modified files:
	share/man/man4/man4.loongson: glxclk.4 
	share/man/man7 : eqn.7 
	usr.bin/chpass : chpass.1 
	usr.bin/passwd : passwd.1 
	usr.sbin/pstat : pstat.8 

Log message:
add some missing "pp." to .%P macros;
Fabio Scotoni <fabio at esse dot ch> reported it was missing in eqn(7)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/23 11:55:31

Modified files:
	graphics/freeimage: Makefile 
	graphics/freeimage/patches: 
	                            patch-Source_LibRawLite_internal_dcraw_common_cpp 
	graphics/freeimage/pkg: DESCR 
Added files:
	graphics/freeimage/patches: patch-TestAPI_Makefile 

Log message:
freeimage: Fix build on archs where char is unsigned by default (ppc, arm)
Also, don't hardcode g++ when building tests (spotted by kmos@, thanks!),
and remove a trailing whitespace in DESCR.

OK phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/23 12:04:20

Modified files:
	x11/gnome/desktop: Makefile distinfo 
	x11/gnome/desktop/pkg: PLIST 

Log message:
SECURITY update to gnome-desktop-3.30.2.2.
- Fix thumbnailer sandbox escape, CVE-2019-11459


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/23 12:04:36

Modified files:
	meta/gnome     : Makefile 

Log message:
Update to gnome-3.30.2.2 (sync with gnome-desktop).


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/23 12:09:00

Modified files:
	security/libnipper: Makefile 
	security/libnipper/patches: 
	                            patch-device_crypto_crypto-base64_cpp 

Log message:
libnipper: Fix build on archs where char is unsigned by default (ppc, arm)
Tested on arm64 by kmos@ and macppc by me.

OK phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/23 12:13:11

Modified files:
	lib/libc/db/man: btree.3 
	lib/libutil    : ohash_init.3 
	sbin/newfs     : newfs.8 
	sbin/tunefs    : tunefs.8 
	usr.bin/tsort  : tsort.1 

Log message:
missing dots after ".%P pp"; the case of btree(3) was
reported by Fabio Scotoni <fabio at esse dot ch>;
also garbage collect one .Tn while here


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/23 12:23:49

Modified files:
	share/man/man4 : kate.4 km.4 

Log message:
replace "--" with "\(en" in numeric ranges in .%P macros;
markup error reported by Fabio Scotoni <fabio at esse dot ch>


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/23 12:32:26

Modified files:
	sys/dev/fdt    : pinctrl.c 

Log message:
Add support for "pinconf-single" devices and add support for bias and
drive-strength properties.  Needed for various HiSilicon SoCs.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/23 12:34:06

Modified files:
	sys/dev/acpi   : files.acpi 
	sys/arch/arm64/conf: GENERIC RAMDISK 
Added files:
	sys/dev/acpi   : ccp_acpi.c 

Log message:
Add support for ccp(4) at acpi(4).

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/23 12:34:40

Modified files:
	share/man/man4 : ccp.4 

Log message:
ccp(4) attaches to acpi(4) now.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/23 12:45:41

Modified files:
	share/man/man7 : mdoc.7 

Log message:
clarify how .%P is conventionally used;
triggered by a question from Fabio Scotoni <fabio at esse dot ch>


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/23 12:50:11

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/23 13:19:33

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
shorten some strings


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/23 13:19:42

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/23 13:37:35

Modified files:
	sys/dev/pci    : ppb.c 

Log message:
Since ppb(4) properly allocates bus ranges for attached devices,
the hotplug code doesn't need to do the same.  Also the hotplug
code only configured a single bus and did that before the proper
allocation ran, so there was no chance for hotplugged ppb(4)s to
have children busses.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/23 14:03:01

Modified files:
	editors/dte    : Makefile distinfo 

Log message:
Update to dte-1.8.2
1.8.1 fixes some bugs from the 1.8 release; 1.8.2 is irrelevant for us but
might as well move to it since we need 1.8.1 anyway.
Changelog: https://craigbarnes.gitlab.io/dte/releases.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/23 14:15:08

Modified files:
	net/wget       : Makefile distinfo 

Log message:
Security update to 1.20.3 for a buffer overflow vulnerability.
From maintainer Nam Nguyen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/23 14:19:38

Modified files:
	devel/py-pexpect: Makefile distinfo 
	devel/py-pexpect/patches: patch-pexpect_replwrap_py 
	                          patch-tests_test_performance_py 
	                          patch-tests_test_replwrap_py 
	devel/py-pexpect/pkg: PLIST 

Log message:
update to py-pexpect 4.7.0, ok shadchin@ {maintainer), kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/23 14:20:41

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register wget vulnerability


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/23 14:23:36

Modified files:
	share/man/man4 : ccp.4 acpi.4 pci.4 

Log message:
add ccp to acpi, and scale back the caps;


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/23 14:36:55

Modified files:
	usr.bin/tmux   : cmd-set-option.c cmd.c environ.c 
	                 options-table.c options.c status.c tmux.h 
	                 tty-term.c 

Log message:
Indicate an array option with a flag rather than a special type so that
in future will not have to be strings.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/23 14:40:03

Modified files:
	usr.bin/tmux   : status.c tty-keys.c 

Log message:
Somehow missed these bits in last commit.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/04/23 14:52:49

Modified files:
	.              : macppc.html 

Log message:
Dont use the words 'current hardware' when talkin about machines that
were discontinued 10+ years ago.
ok kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/23 15:02:39

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/23 15:21:19

Modified files:
	shells/bash    : Makefile distinfo 

Log message:
update to 5.0 patchlevel 7


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/04/23 16:28:29

Modified files:
	.              : plus.html 

Log message:
plus for 4/13 - 4/21
ok florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/23 17:30:34

Modified files:
	lang/seed7     : Makefile distinfo 
	lang/seed7/pkg : PLIST 

Log message:
Update to seed7-20190407


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/23 21:44:50

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
add the product id for VMware NVMe interface


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/23 21:45:35

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/23 21:59:12

Modified files:
	faq            : faq17.html 

Log message:
tidy up table of contents


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/23 22:00:40

Modified files:
	.              : alpha.html amd64.html anoncvs.html arm64.html 
	                 armv7.html errata63.html ftp.html hppa.html 
	                 i386.html landisk.html loongson.html 
	                 luna88k.html macppc.html octeon.html sgi.html 
	                 sparc64.html stable.html 
	build          : Makefile 
	build/mirrors  : anoncvs.html.head ftp.html.end 
	faq            : faq14.html faq4.html faq5.html index.html 
	                 upgrade63.html upgrade64.html 

Log message:
6.5 updates


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/04/23 22:12:36

Modified files:
	sys/arch/amd64/amd64: pmap.c 

Log message:
Style tweaks:
- use NULL for pointer comparisons and assignments.
- in level comparisons, use PTP_LEVELS instead of magic constants
- eliminate some superfluous variables in pmap_free_ptp()

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/24 02:04:06

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
Update to youtube-dl-2019.04.24.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/24 02:14:17

Modified files:
	geo/pdal       : Makefile distinfo 
	geo/pdal/patches: patch-cmake_macros_cmake 
	geo/pdal/pkg   : PLIST 
Added files:
	geo/pdal/patches: patch-vendor_arbiter_arbiter_hpp 
Removed files:
	geo/pdal/patches: patch-cmake_modules_FindGEOS_cmake 
	                  patch-dimbuilder_CMakeLists_txt 
	                  patch-pdal_PluginDirectory_cpp 
	                  patch-pdal_util_CMakeLists_txt 
	                  patch-pdal_util_Utils_cpp 
	                  patch-plugins_sqlite_io_SQLiteCommon_hpp 
	                  patch-test_unit_PluginManagerTest_cpp 

Log message:
Update to pdal 1.9.0.

Should build fine with python 3.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/24 02:41:43

Modified files:
	x11/gnome/desktop: Makefile distinfo 

Log message:
Update to gnome-desktop-3.30.2.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/24 02:42:12

Modified files:
	meta/gnome     : Makefile 

Log message:
Update to gnome-3.30.2.3 (sync with gnome-desktop).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 02:48:23

Modified files:
	multimedia/gstreamer1/plugins-base: Makefile 

Log message:
Add missing ldep on graphics/jpeg to fix "Missing library for jpeg>=0.0",
this was previously pulled in indirectly via gtk+3 BUILD_DEPENDS which was
removed (at least ->gdk-pixbuf->tiff->jpeg)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/24 03:31:51

Modified files:
	x11/mate/pluma : Makefile distinfo 
	x11/mate/pluma/pkg: PLIST 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/24 03:56:33

Modified files:
	x11/mate/screensaver: Makefile distinfo 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/04/24 04:09:49

Modified files:
	sys/dev/pci    : if_bnxtreg.h if_bnxt.c 

Log message:
implement SIOCGIFSFFPAGE so ifconfig can get transceiver info.

the controller has an i2c read operation that's almost exactly what we
want, except it only does 64 bytes at a time, so this is pretty simple.

ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 04:12:55

Modified files:
	archivers/lz4  : Makefile distinfo 
	archivers/lz4/patches: patch-lib_Makefile 

Log message:
update to lz4-1.9.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/24 05:57:54

Modified files:
	usr.bin/rcs    : Makefile 
Added files:
	usr.bin/rcs    : rcsfile.5 

Log message:
new manual page rcsfile(5)
written by Fabio Scotoni <fabio at esse dot ch>
with minimal tweaks by me
OK jmc@ deraadt@ millert@ on an earlier version


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/24 07:10:24

Modified files:
	share/man/man4/man4.octeon: openprom.4 

Log message:
Tell when the openprom(4) interface appeared instead of when the manual
page appeared.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/24 07:12:32

Modified files:
	share/man/man4/man4.octeon: amdcf.4 openprom.4 

Log message:
Fix the capitalization of OCTEON.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/24 07:13:03

Modified files:
	share/man/man7 : mdoc.7 

Log message:
clarify the difference between .Cm and .Ic;
triggered by a question from Fabio Scotoni


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/04/24 07:16:49

Modified files:
	.              : 65.html artwork.html index.html 

Log message:
OpenBSD 6.5 builds finished a week early, so the May 1 dated code can
go out the door 1 week early.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/24 07:26:15

Modified files:
	distrib/notes/octeon: whatis 

Log message:
Tweak the initial sentence to mention OCTEON II and OCTEON III.


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2019/04/24 07:29:31

Modified files:
	.              : octeon.html 

Log message:
Mention OCTEON II and OCTEON III in the opening sentence.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/04/24 09:19:17

Modified files:
	.              : 55.html 56.html 57.html 58.html 59.html 60.html 
	                 61.html 62.html 63.html 64.html 65.html 

Log message:
pretty print keys


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2019/04/24 09:30:31

Modified files:
	math/lapack    : Makefile distinfo 
	math/lapack/files: Makefile 
	math/lapack/pkg: PLIST 

Log message:
update to 3.8.0


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2019/04/24 09:31:33

Modified files:
	.              : octeon.html 

Log message:
Drop remarks about USB reliability. Thanks to the recent work
on xhci(4), the USB port on ER-4 and ER-6P is considerably more
usable than before.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/04/24 09:54:54

Modified files:
	.              : 30.html 31.html 32.html 33.html 34.html 35.html 
	                 36.html 37.html 38.html 39.html 40.html 41.html 
	                 42.html 43.html 44.html 45.html 46.html 47.html 
	                 48.html 49.html 50.html 51.html 52.html 53.html 
	                 54.html 55.html 56.html 57.html 58.html 59.html 
	                 60.html 61.html 62.html 

Log message:
attempt normalization of some top-of-file text


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/04/24 09:58:57

Modified files:
	share/man/man4/man4.arm64: openprom.4 

Log message:
Re-add HISTORY section


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/24 09:59:22

Modified files:
	distrib/miniroot: dot.profile install.sub 

Log message:
Perform unattended upgrade if /bsd.upgrade is present.
Sets are expected to be in /home/upgrade.
Original idea, input & OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 10:26:59

Modified files:
	audio/fdk-aac  : Makefile 
	audio/hs-libmpd: Makefile 
	audio/libmpdclient: Makefile 
	audio/mpc      : Makefile 
	audio/mpd      : Makefile 
	audio/ncmpc    : Makefile 
	audio/ncmpcpp  : Makefile 
	audio/pianobar : Makefile 
	audio/zeya     : Makefile 
	databases/hs-HDBC: Makefile 
	databases/hs-HDBC-sqlite3: Makefile 
	databases/mdbtools: Makefile 
	databases/redis: Makefile 
	devel/cmake    : Makefile 
	devel/cryptopp : Makefile 
	devel/go-check-v1: Makefile 
	devel/go-tools : Makefile 
	devel/hs-ConfigFile: Makefile 
	devel/hs-MissingH: Makefile 
	devel/hs-convertible: Makefile 
	devel/hs-hslogger: Makefile 
	devel/jsoncpp  : Makefile 
	devel/libev    : Makefile 
	devel/lua-penlight: Makefile 
	devel/lualdoc  : Makefile 
	devel/py-certifi: Makefile 
	devel/py-dulwich: Makefile 
	devel/py-fastimport: Makefile 
	devel/py-gevent: Makefile 
	fonts/noto     : Makefile.inc 
	fonts/noto/cjk : Makefile 
	fonts/noto/emoji: Makefile 
	fonts/noto/fonts: Makefile 
	games/gnubg    : Makefile 
	games/pysol    : Makefile 
	games/xlennart : Makefile 
	graphics/feh   : Makefile 
	graphics/gimp/deskew: Makefile 
	graphics/img2pdf: Makefile 
	graphics/imv   : Makefile 
	graphics/quirc : Makefile 
	graphics/scour : Makefile 
	math/libtommath: Makefile 
	net/amule      : Makefile 
	net/go-net     : Makefile 
	net/hpodder    : Makefile 
	net/libtorrent : Makefile 
	net/miniupnp/libnatpmp: Makefile 
	net/mldonkey   : Makefile 
	net/pidgin-window-merge: Makefile 
	net/py-geventhttpclient: Makefile 
	net/rtorrent   : Makefile 
	net/telegram-purple: Makefile 
	net/tkabber    : Makefile.inc 
	net/tkabber/base: Makefile 
	net/tkabber/plugins: Makefile 
	security/ccid  : Makefile 
	security/go-crypto: Makefile 
	security/opensc: Makefile 
	security/pcsc-lite: Makefile 
	security/rhash : Makefile 
	security/tclgpg: Makefile 
	security/wpa_supplicant: Makefile 
	sysutils/gdmap : Makefile 
	telephony/baresip: Makefile.inc 
	telephony/baresip/baresip: Makefile 
	telephony/baresip/re: Makefile 
	telephony/baresip/rem: Makefile 
	telephony/baresip/restund: Makefile 
	telephony/libzrtp: Makefile 
	textproc/clit  : Makefile 
	textproc/go-text: Makefile 
	textproc/go-xlsx: Makefile 
	textproc/hs-HaXml: Makefile 
	textproc/hs-libxml-sax: Makefile 
	textproc/hs-polyparse: Makefile 
	textproc/hs-xml-types: Makefile 
	textproc/p5-Sourcecode-Spellchecker: Makefile 
	textproc/txt2man: Makefile 
	textproc/xlsx2csv: Makefile 
	www/cntlm      : Makefile 
	www/minitube   : Makefile 
	www/php-predis : Makefile 
	www/tomcat     : Makefile.inc 
	www/tomcat/v6  : Makefile 
	www/tomcat/v7  : Makefile 
	www/tomcat/v8  : Makefile 
	x11/awesome    : Makefile 
	x11/faenza-icon-theme: Makefile 
	x11/gmtk       : Makefile 
	x11/gnome-mplayer: Makefile 
	x11/gtk2-murrine-engine: Makefile 
	x11/hs-dbus    : Makefile 
	x11/i3         : Makefile 
	x11/libxdg-basedir: Makefile 
	x11/mlterm     : Makefile 
	x11/p5-AnyEvent-I3: Makefile 
	x11/rxvt-unicode: Makefile 
	x11/xclip      : Makefile 

Log message:
reset unresponsive maintainers, various porters have spent a bunch of
time waiting for timeouts over the last year or more for many of these
ports.  ok danj@ jca@ kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 10:28:59

Modified files:
	www/tomcat     : Makefile.inc 

Log message:
- use FIX_EXTRACT_PERMISSIONS
- use find ... -delete rather than | xargs rm


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 10:31:06

Modified files:
	www/tomcat/v6  : Makefile 
	www/tomcat/v6/pkg: PLIST-main 

Log message:
use PKGSPEC, regen plist


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 10:31:51

Modified files:
	www/tomcat/v7  : Makefile distinfo 
	www/tomcat/v7/pkg: PLIST-examples PLIST-main 

Log message:
update to tomcat-7.0.93
use PKGSPEC, regen plist


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 10:32:19

Modified files:
	www/tomcat/v8  : Makefile distinfo 
	www/tomcat/v8/pkg: PLIST-examples PLIST-main 

Log message:
update to tomcat-8.5.39
use PKGSPEC, regen plist


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 10:33:09

Modified files:
	www/tomcat     : Makefile 
Added files:
	www/tomcat/v9  : Makefile distinfo 
	www/tomcat/v9/patches: patch-conf_server_xml 
	www/tomcat/v9/pkg: DESCR-examples DESCR-main PLIST-examples 
	                   PLIST-main README-main tomcat.rc 

Log message:
add tomcat-9.0.17


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 10:34:42

Modified files:
	devel/py-gevent: Makefile distinfo 
	devel/py-gevent/patches: patch-setup_py 
	devel/py-gevent/pkg: PLIST 

Log message:
update to py-gevent-1.4.0, tweak/ok kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/24 12:11:00

Modified files:
	distrib/miniroot: install.sub 

Log message:
In unattended mode do a reboot even if things go wrong and
additionally install a watchdog to do a reboot after 30 minutes if the
script gets completely stuck.

A half upgraded system that reboots at least gives us a chance that it
will come back and we can fix it. Just having it sit there isn't
helping anyone.

It would be nicer if the watchdog were kernel based...
OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/24 12:39:06

Modified files:
	x11/rxvt-unicode: Makefile 
	x11/rxvt-unicode/pkg: DESCR 
Added files:
	x11/rxvt-unicode/patches: patch-configure 

Log message:
rxvt-unicode: don't use libsupc++ with ports-gcc, like base-clang
already does.
This fixes the build with ports-gcc-8. Thanks to jca@ who pointed out
that we could use libesupc++, and performed a simple test that showed
there is not much incentive to do so.
While here, remove trailing whitespaces in DESCR.

OK bcallah@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 13:00:34

Modified files:
	www/py-aiohttp : Makefile distinfo 
	www/py-aiohttp/pkg: PLIST 

Log message:
update to py-aiohttp-3.5.4, tweaks/ok danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/04/24 13:13:49

Modified files:
	usr.sbin/relayd: relayd.c 

Log message:
restrict filesystem access to read only on main process via unveil(2)

ok benno@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 14:00:03

Modified files:
	devel/py-gevent: Makefile 

Log message:
add bits for tests, currently inactive pending importing py-objgraph


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 14:07:11

Modified files:
	devel          : Makefile 
	devel/py-coveralls: Makefile 
	devel/py-coveralls/pkg: PLIST 

Log message:
build py-coveralls,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 14:09:30

Modified files:
	devel/py-coveralls: Makefile 
	devel/py-coveralls/pkg: PLIST 

Log message:
oops, missing bits for py3


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/04/24 14:13:54

Modified files:
	databases/py-pg_activity: Makefile distinfo 

Log message:
Update to pg_activity 1.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 14:14:08

Modified files:
	www/py-gunicorn: Makefile distinfo 
	www/py-gunicorn/patches: patch-requirements_test_txt 
	www/py-gunicorn/pkg: PLIST 

Log message:
update to py-gunicorn-19.9.0, tweaks/ok danj@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/24 14:21:57

Modified files:
	.              : ftp.html ftplist httpslist 
	build          : mirrors.dat 
	openbgpd       : ftp.html 
	openntpd       : portable.html 
	openssh        : ftp.html portable.html 

Log message:
vdms.io -> vdms.com; from ben lovett


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/24 14:23:21

Modified files:
	security/ruby-cms_scanner: Makefile 

Log message:
xmlrpc gem is already part of ruby, no need to depend on an extra
gem that doesn't install due to conflicts


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/24 14:24:38

Modified files:
	www            : Makefile 

Log message:
unhook ruby-xmlrpc, it's already part of ruby package


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/04/24 14:25:19

Modified files:
	regress/lib/libcrypto/wycheproof: Makefile 

Log message:
Do not check for working go executable during make clean cleandir obj.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/24 14:26:55

Removed files:
	www/ruby-xmlrpc: Makefile distinfo 
	www/ruby-xmlrpc/pkg: DESCR PLIST 

Log message:
no need for ruby-xmlrpc, it's part of ruby package already
didn't install due to conflicting already existing files


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/24 14:27:52

Modified files:
	usr.bin/tmux   : format-draw.c 

Log message:
Do not loop forever if there is a nonprintable character in the format.


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/04/24 14:28:31

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
New product id for the USB serial adapter found in Juniper SRX 300.

ok deraadt@ phessler@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/24 14:29:24

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Use setaf/setab for aixterm colours, from Ailin Nemui.


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/04/24 14:32:23

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/24 14:32:31

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Use bg not fg when adjusting for aixterm, from Ailin Nemui.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/24 14:33:53

Modified files:
	net/scapy      : Makefile 
	net/scapy/patches: patch-scapy_layers_l2_py 
Added files:
	net/scapy/patches: patch-scapy_packet_py 

Log message:
Scapy 2.4.2 sends ARP requests with wrong MAC address.  Apply patch
from upstream.
OK sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2019/04/24 14:36:43

Modified files:
	faq            : faq14.html 

Log message:
Minor improvement for 6.5

Since 6.5 disklabel prompt shows which disk is being edited

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/04/24 14:36:59

Modified files:
	sys/dev/usb    : uslcom.c 

Log message:
Add product id for the USB serial adapter found in Juniper SRX 300.

ok deraadt@ phessler@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/24 15:04:47

Modified files:
	devel/ccache   : Makefile distinfo 
	devel/ccache/patches: patch-Makefile_in patch-configure 

Log message:
update to ccache-3.7, now moved to https://ccache.dev/


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/24 15:14:37

Log message:
    random_run (rr) is a small command that runs something while
    randomizing its arguments, .e.g,
    rr mpv *
    
    Code and port by me.
    
    okay jca@
    
    Status:
    
    Vendor Tag:	espie
    Release Tags:	ports
    
    N ports/sysutils/random_run/distinfo
    N ports/sysutils/random_run/Makefile
    N ports/sysutils/random_run/pkg/PLIST
    N ports/sysutils/random_run/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/24 15:15:23

Modified files:
	sysutils       : Makefile 

Log message:
+random_run


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/04/24 15:27:26

Modified files:
	net/scapy      : Makefile 
Added files:
	net/scapy/patches: patch-scapy_arch_common_py 

Log message:
In Scapy 2.4.2 probing for OpenBSD tcpdump is broken, so filters
for sniff() did not work.  Apply patch from upstream.
OK sthen@ danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/24 15:49:58

Log message:
    objgraph is a module that lets you visually explore Python object graphs.
    It can draw object reference graphs with graphviz, or can make use of
    xdot for interactive use.
    
    Its origin was in a set of functions used while hunting for memory leaks
    in a Python program.
    
    Needed for devel/py-gevent tests
    
    Proposal by sthen@, additonal work by me
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190424
    
    N ports/devel/py-objgraph/Makefile
    N ports/devel/py-objgraph/distinfo
    N ports/devel/py-objgraph/pkg/DESCR
    N ports/devel/py-objgraph/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/04/24 16:45:54

Modified files:
	regress/lib/libtls/gotls: Makefile 

Log message:
Do not check for working go executable during make clean cleandir obj.
reminded by jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/24 17:01:24

Modified files:
	devel          : Makefile 

Log message:
Adding py-objdir


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/24 17:33:49

Modified files:
	audio          : Makefile 
	databases      : Makefile 
	devel          : Makefile 
	graphics       : Makefile 
	net            : Makefile 
	security       : Makefile 
	sysutils       : Makefile 
	textproc       : Makefile 
	www            : Makefile 
	x11            : Makefile 

Log message:
Stop building ports for ruby 2.4 libraries by default

Per our current ruby support policy, as ruby 2.4's normal maintenance phase
has ended.


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/04/24 18:08:56

Modified files:
	gnu/llvm/tools/clang/lib/Driver/ToolChains: Clang.cpp 

Log message:
Also touch --param ssp-buffer-size when using retguard in lieu of the
stack protector. Fixes 'unused arguments' warning when this argument is
given.

Noticed by robert@, ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/04/24 19:52:14

Modified files:
	sys/dev/ic     : bwfm.c rtwn.c 
	sys/dev/pci    : if_iwi.c 
	sys/dev/usb    : if_ral.c if_rsu.c if_rum.c if_run.c if_uath.c 
	                 if_upgt.c if_zyd.c 

Log message:
Follow up on jmatthew's suggestion:
in x_media_change(), return the errno from ieee80211_media_change() and
do the error check from x_init().

ok stsp@, jmatthew@, phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/24 20:18:58

Modified files:
	graphics/feh   : Makefile 

Log message:
Take MAINTAINER of feh.
ok with sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/24 22:48:56

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Rename some variables in tls_decrypt_ticket().

Rename mlen to hlen since it is a hmac (and this matches hctx and hmac).

Rename ctx to cctx since it is a cipher context and ctx is usually used to
mean SSL_CTX in this code.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/24 22:54:35

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Use EVP_CIPHER_CTX_{new,free}() and HMAC_CTX_{new,free}() instead of
allocating on stack.

While here also check the return values from EVP_DecryptInit_ex() and
HMAC_Init_ex().

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/04/24 22:57:36

Modified files:
	lib/libssl     : t1_lib.c 

Log message:
Use calloc/freezero when allocating and freeing the session ticket data.

The decrypted session ticket contains key material.

ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/25 00:04:43

Log message:
    Import xdot-1.0.
    
    xdot.py is an interactive viewer for graphs written in Graphviz's dot
    language.  It uses internally the GraphViz's xdot output format as an
    intermediate format, Python GTK bindings, and Cairo for rendering.
    
    xdot.py can be used either as a standalone application from command
    line, or as a library embedded in your Python application.
    
    ok sthen@
    
    From Alessandro De Laurenzis; thanks!
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190425
    
    N ports/graphics/xdot/Makefile
    N ports/graphics/xdot/distinfo
    N ports/graphics/xdot/pkg/DESCR
    N ports/graphics/xdot/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/25 00:05:43

Modified files:
	graphics       : Makefile 

Log message:
+xdot


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/25 00:34:57

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Automatically scroll if dragging to create a selection with the mouse
and the cursor reaches the top or bottom line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/25 02:15:46

Modified files:
	graphics/shotwell: Makefile distinfo 
Removed files:
	graphics/shotwell/patches: patch-src_photos_PhotoMetadata_vala 
	                           patch-vapi_libexif_vapi 

Log message:
Update to shotwell-0.30.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/04/25 02:37:01

Modified files:
	games/wesnoth  : Makefile distinfo 
	games/wesnoth/pkg: PLIST 

Log message:
update to wesnoth-1.14.7


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/25 03:33:47

Modified files:
	sys/dev/pci/drm/i915: i915_drv.c 

Log message:
Since we now have an attachhook, the actual interrupt handler is installed
late, after we enable interrupts.  If the interrupt pin used for inteldrm(4)
is shared with another device, we may end up being called before the actual
interrup handler is installed resulting in a null-pointer dereference.
Fix this by adding an explicit check that the interrupt handler function
pointer has been set.

ok matthieu@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/04/25 04:05:13

Modified files:
	share/man/man5 : pf.conf.5 

Log message:
sticky-address is working with source-hash.

ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/25 05:26:45

Modified files:
	devel          : Makefile 

Log message:
spell py-objgraph correctly


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/25 05:28:38

Modified files:
	devel/py-gevent: Makefile 

Log message:
enable tests


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/25 06:00:33

Modified files:
	security/pecl-libsodium: Makefile 

Log message:
add a comment explaining why this is php-7.1 only (libsodium functions are
in php core in 7.2+)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/04/25 06:12:16

Modified files:
	usr.sbin/bgpd  : bgpd.h session.c 

Log message:
Extend maximum message size of the shutdown communication to 255 bytes.
See also draft-snijders-idr-rfc8203bis-01.
OK job@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/04/25 06:14:37

Modified files:
	usr.sbin/bgpctl: bgpctl.c 

Log message:
Adjust the MRT notification parser similar to bgpd to support extended
shutdown communication messages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2019/04/25 06:29:28

Modified files:
	textproc/docbook2mdoc: Makefile distinfo 

Log message:
update to docbook2mdoc-1.0.1:
support for file inclusion via "<!ENTITY %", decimal character
entities, and several formatting improvements and bugfixes;
now good enough for /usr/xenocara/doc/xorg-docs/general/fonts/fonts.xml;
OK bentley@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 08:05:43

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/25 08:20:03

Modified files:
	x11/gnome/at-spi2-core: Makefile 
	x11/gnome/at-spi2-core/pkg: PLIST 

Log message:
No need for ${SYSCONFDIR}/at-spi2/.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/04/25 08:26:43

Modified files:
	textproc/py-black/patches: patch-setup_py 

Log message:
Update comment because of py-aiohttp update


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/25 08:56:32

Modified files:
	www/nginx      : Makefile distinfo 
	www/nginx/patches: patch-conf_mime_types 
	www/nginx/pkg  : PLIST-main PLIST-naxsi PLIST-perl 

Log message:
Update to nginx 1.16.0.

See https://nginx.org/en/CHANGES-1.16
ok robert@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/25 09:04:44

Modified files:
	security/keyringer: Makefile distinfo 
	security/keyringer/patches: patch-lib_keyringer_functions 

Log message:
Update to keyringer-0.5.4

From Mikolaj Kucharski, ok Gregoire Jadi (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/25 09:22:22

Modified files:
	share/man/man4/man4.octeon: Makefile 
Added files:
	share/man/man4/man4.octeon: octcf.4 

Log message:
Add a manual page for octcf(4).

Prompted by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/25 09:24:06

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/25 09:25:17

Removed files:
	lang/gcc/6     : Makefile distinfo gcc4.port.mk 
	lang/gcc/6/patches: patch-Makefile_in patch-boehm-gc_configure 
	                    patch-boehm-gc_dyn_load_c 
	                    patch-boehm-gc_include_gc_config_h_in 
	                    patch-boehm-gc_include_gc_config_macros_h 
	                    patch-boehm-gc_include_gc_pthread_redirects_h 
	                    patch-boehm-gc_include_private_gcconfig_h 
	                    patch-boehm-gc_mach_dep_c 
	                    patch-boehm-gc_misc_c 
	                    patch-boehm-gc_os_dep_c 
	                    patch-boehm-gc_pthread_support_c 
	                    patch-boehm-gc_threadlibs_c patch-configure 
	                    patch-fixincludes_fixincl_x 
	                    patch-fixincludes_inclhack_def 
	                    patch-gcc_Makefile_in 
	                    patch-gcc_ada_a-calend_adb 
	                    patch-gcc_ada_adaint_c 
	                    patch-gcc_ada_adaint_h 
	                    patch-gcc_ada_gcc-interface_Make-lang_in 
	                    patch-gcc_ada_gcc-interface_Makefile_in 
	                    patch-gcc_ada_osint_adb 
	                    patch-gcc_ada_s-osinte-openbsd_adb 
	                    patch-gcc_ada_s-osinte-openbsd_ads 
	                    patch-gcc_ada_system-openbsd-arm_ads 
	                    patch-gcc_ada_system-openbsd-hppa_ads 
	                    patch-gcc_ada_system-openbsd-mips64_ads 
	                    patch-gcc_ada_system-openbsd-mips64el_ads 
	                    patch-gcc_ada_system-openbsd-ppc_ads 
	                    patch-gcc_ada_system-openbsd-sparc_ads 
	                    patch-gcc_ada_system-openbsd-sparcv9_ads 
	                    patch-gcc_ada_system-openbsd-x86_64_ads 
	                    patch-gcc_ada_system-openbsd-x86_ads 
	                    patch-gcc_builtins_c 
	                    patch-gcc_c-family_c-format_c 
	                    patch-gcc_c-family_c_opt 
	                    patch-gcc_c_c-decl_c 
	                    patch-gcc_common_config_arm_arm-common_c 
	                    patch-gcc_common_config_rs6000_rs6000-common_c 
	                    patch-gcc_common_opt 
	                    patch-gcc_config_alpha_alpha_c 
	                    patch-gcc_config_alpha_alpha_h 
	                    patch-gcc_config_alpha_alpha_md 
	                    patch-gcc_config_alpha_alpha_opt 
	                    patch-gcc_config_alpha_openbsd_h 
	                    patch-gcc_config_arm_openbsd1_h 
	                    patch-gcc_config_arm_openbsd_h 
	                    patch-gcc_config_exec-stack_h 
	                    patch-gcc_config_gcc 
	                    patch-gcc_config_i386_i386_c 
	                    patch-gcc_config_i386_i386_h 
	                    patch-gcc_config_i386_openbsd_h 
	                    patch-gcc_config_i386_openbsdelf_h 
	                    patch-gcc_config_mips_mips_h 
	                    patch-gcc_config_mips_openbsd_h 
	                    patch-gcc_config_openbsd-libpthread_h 
	                    patch-gcc_config_openbsd_h 
	                    patch-gcc_config_openbsd_opt 
	                    patch-gcc_config_pa_pa-openbsd_h 
	                    patch-gcc_config_pa_pa_c 
	                    patch-gcc_config_pa_pa_h 
	                    patch-gcc_config_rs6000_driver-rs6000_c 
	                    patch-gcc_config_rs6000_openbsd1_h 
	                    patch-gcc_config_rs6000_openbsd_h 
	                    patch-gcc_config_rs6000_rs6000_c 
	                    patch-gcc_config_rs6000_sysv4_h 
	                    patch-gcc_config_rs6000_t-openbsd 
	                    patch-gcc_config_sparc_openbsd64_h 
	                    patch-gcc_config_sparc_openbsd_h 
	                    patch-gcc_config_sparc_sparc_c 
	                    patch-gcc_config_t-openbsd 
	                    patch-gcc_configure patch-gcc_cp_g++spec_c 
	                    patch-gcc_defaults_h patch-gcc_flags_h 
	                    patch-gcc_fortran_f95-lang_c patch-gcc_gcc_c 
	                    patch-gcc_go_go-lang_c patch-gcc_java_lang_c 
	                    patch-gcc_lto_lto_c patch-gcc_opts_c 
	                    patch-gcc_targhooks_c 
	                    patch-gcc_testsuite_gcc_dg_format_format_h 
	                    patch-gnattools_Makefile_in 
	                    patch-gnattools_configure 
	                    patch-gnattools_configure_ac 
	                    patch-libatomic_Makefile_in 
	                    patch-libatomic_configure_tgt 
	                    patch-libbacktrace_configure 
	                    patch-libcc1_Makefile_in 
	                    patch-libcilkrts_Makefile_in 
	                    patch-libcilkrts_runtime_os-unix_c 
	                    patch-libffi_Makefile_in 
	                    patch-libffi_include_Makefile_in 
	                    patch-libffi_src_closures_c 
	                    patch-libgcc_Makefile_in 
	                    patch-libgcc_config_arm_bpabi_S 
	                    patch-libgcc_config_arm_ieee754-df_S 
	                    patch-libgcc_config_arm_t-openbsd 
	                    patch-libgcc_config_arm_unwind-arm_h 
	                    patch-libgcc_config_host 
	                    patch-libgcc_config_t-hardfp 
	                    patch-libgcc_libgcc2_c 
	                    patch-libgfortran_Makefile_in 
	                    patch-libgo_Makefile_in 
	                    patch-libgo_config_libtool_m4 
	                    patch-libgo_configure 
	                    patch-libgomp_configure 
	                    patch-libiberty_cp-demangle_c 
	                    patch-libitm_Makefile_in 
	                    patch-libjava_Makefile_in 
	                    patch-libjava_classpath_configure 
	                    patch-libjava_configure 
	                    patch-libjava_configure_host 
	                    patch-libjava_libltdl_configure 
	                    patch-libjava_prims_cc 
	                    patch-libobjc_Makefile_in 
	                    patch-libobjc_configure 
	                    patch-libquadmath_Makefile_in 
	                    patch-libquadmath_configure 
	                    patch-libssp_Makefile_in 
	                    patch-libssp_configure 
	                    patch-libstdc++-v3_configure 
	                    patch-libstdc++-v3_include_bits_stl_pair_h 
	                    patch-libstdc++-v3_libsupc++_Makefile_in 
	                    patch-libstdc++-v3_src_Makefile_in 
	                    patch-libstdc++-v3_src_c++11_debug_cc 
	                    patch-libtool_m4 patch-ltmain_sh 
	                    patch-lto-plugin_Makefile_in 
	                    patch-lto-plugin_configure 
	                    patch-zlib_configure 
	lang/gcc/6/pkg : PFRAG.CILKRTS-libs PFRAG.CILKRTS-main 
	                 PFRAG.ITM-libs PFRAG.ITM-main 
	                 PFRAG.QUADMATH-libs PFRAG.QUADMATH-main 
	                 PFRAG.X86-ada PFRAG.X86-main PFRAG.alpha-main 
	                 PFRAG.amd64-main PFRAG.arm-main PFRAG.hppa-main 
	                 PFRAG.i386-main PFRAG.mips64-main 
	                 PFRAG.mips64el-main PFRAG.powerpc-main 
	                 PFRAG.sparc-main PFRAG.sparc64-main PLIST-ada 
	                 PLIST-c++ PLIST-f95 PLIST-java PLIST-libs 
	                 PLIST-main PLIST-objc 

Log message:
Remove GCC 6.  Never connected to the build, now obsoleted by GCC 8.
ok pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/25 09:35:07

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Need to escape ].


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/25 09:49:18

Modified files:
	build          : versionup 
	faq            : faq4.html 

Log message:
provide a link to the base public key in the signify section


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/25 10:20:24

Modified files:
	geo/py-planet  : Makefile distinfo 

Log message:
update to py-planet 1.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/04/25 10:47:56

Modified files:
	share/man/man4 : Makefile 
	share/man/man4/man4.arm64: Makefile 
	share/man/man4/man4.macppc: Makefile 
	share/man/man4/man4.octeon: Makefile 
	share/man/man4/man4.sparc64: Makefile 
Added files:
	share/man/man4 : openprom.4 
Removed files:
	share/man/man4/man4.arm64: openprom.4 
	share/man/man4/man4.macppc: openprom.4 
	share/man/man4/man4.octeon: openprom.4 
	share/man/man4/man4.sparc64: openprom.4 

Log message:
Make openprom.4 platform independent.

Suggested by deraadt@

OK ingo@ jmc@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 10:47:56

src/sbin/vnconfig

Update of /cvs/src/sbin/vnconfig
In directory cvs.openbsd.org:/usr/src/sbin/vnconfig

Log Message:
Directory /cvs/src/sbin/vnconfig added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 10:50:36

Added files:
	sbin/vnconfig  : Makefile vnconfig.8 vnconfig.c 

Log message:
Split vnconfig out of mount_vnd, and begin work on a vnd-allocation
option which will ease distribution build.
not connected to the build yet.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/25 11:18:52

Modified files:
	distrib/miniroot: install.sub 

Log message:
Move the expected set location to /home/_sysupgrade.
We found that /home/upgrade is a too common name and this will be in
line with the upcomming sysupgrade(8) utility.
discussed with deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/25 11:35:52

Modified files:
	devel/ruby-rspec/3/expectations: Makefile distinfo 

Log message:
update to rspec-expectations-3.8.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/25 11:37:33

Modified files:
	devel/vte3     : Makefile distinfo 

Log message:
update to vte3-0.54.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/25 11:39:01

Modified files:
	sysutils/py-croniter: Makefile distinfo 
	sysutils/py-croniter/pkg: PLIST 

Log message:
update to py-croniter-0.3.30


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/25 11:44:55

Modified files:
	x11/gnome/terminal: Makefile distinfo 

Log message:
update to gnome-terminal-3.30.3


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/25 11:46:57

Modified files:
	sbin/vnconfig  : vnconfig.8 

Log message:
fix some basic formatting issues;


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/25 11:48:07

Modified files:
	lang/vala      : Makefile distinfo 
	lang/vala/pkg  : PLIST-main 

Log message:
update to vala-0.42.7


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 12:05:03

Modified files:
	sbin/vnconfig  : vnconfig.c 

Log message:
Push verbose information to stderr, to avoid confusion with -A's output.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/25 12:18:55

Modified files:
	usr.bin/tmux   : cmd-show-options.c format.c options.c tmux.h 

Log message:
Make options_tostring allocate its result instead of using a stack
buffer (needed for something in the future).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/25 12:21:30

Modified files:
	security/ruby-pledge: Makefile distinfo 

Log message:
Update to pledge 1.1.0, adding support for execpromises


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/04/25 12:24:39

Modified files:
	sys/net        : bpf.c 

Log message:
Lower the accepted upper bound for bd_rtout to INT_MAX in order to
prevent passing negative values to timeout_add().

While here, protect against unsigned wrap around during addition of
bd_rdStart and bd_rtout since it could also cause passing negative
values to timeout_add().

ok bluhm@

Reported-by: syzbot+6771e3d6d9567b3983aa@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/04/25 12:26:16

Modified files:
	share/man/man4 : bpf.4 

Log message:
reflect recent bpf changes


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/04/25 12:57:59

Modified files:
	faq            : upgrade65.html 

Log message:
While talking about the change to Xorg and xenodm, it is
worthwhile to point out xenodm needs a .xsession file.
Link to the FAQ for more information about that.

suggested improvements and OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/25 13:03:43

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Need a fallback for -2 for aixterm colours.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/25 13:33:07

Modified files:
	devel/pycharm  : Makefile distinfo 
	devel/pycharm/files: pycharm 
	devel/pycharm/pkg: PLIST 

Log message:
Update pycharm to 2019.1.1

One notable change: Use javaPathHelper in the pycharm start script

Feedback and OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/25 13:36:59

Modified files:
	usr.bin/tmux   : cmd.c environ.c status.c tty-keys.c tty-term.c 

Log message:
options_array_item_value cannot return NULL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/25 13:37:23

Modified files:
	textproc/py-lxml: Makefile distinfo 
	textproc/py-lxml/pkg: PLIST 

Log message:
update to py-lxml-4.3.3, no reply from maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/04/25 14:19:30

Modified files:
	sys/arch/amd64/stand/efiboot: efipxe.c 
	sys/arch/amd64/stand/libsa: dev_i386.c 
	sys/arch/arm64/stand/efiboot: efiboot.c efipxe.c 
	sys/arch/armv7/stand/efiboot: efiboot.c efipxe.c 

Log message:
Add a check to tftp_open() that we are actually opening a TFTP device.

When reading a file from a non-TFTP device, clear the bootmac variable
to prevent the kernel from going into netboot mode.

This allows loading a kernel from a disk device after having booted
efiboot from PXE.

style tweak and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/25 14:20:39

src/usr.sbin/sysupgrade

Update of /cvs/src/usr.sbin/sysupgrade
In directory cvs.openbsd.org:/tmp/cvs-serv59662/sysupgrade

Log Message:
Directory /cvs/src/usr.sbin/sysupgrade added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/25 14:22:52

Added files:
	usr.sbin/sysupgrade: Makefile sysupgrade.8 sysupgrade.sh 

Log message:
Add sysupgrade(8) a tool to upgrade OpenBSD to the next release or a
new snapshot.
Cargo culted from bits and pieces of a script originally posted
by naddy@ to misc, install.sub and syspatch(8)
with & OK deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/25 14:25:27

Modified files:
	usr.sbin       : Makefile 

Log message:
hook up sysupgrade(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 15:43:17

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 15:47:53

Modified files:
	sys/arch/sh/conf: files.sh 
Added files:
	sys/lib/libkern/arch/sh: movstrSI12_i4.S 

Log message:
Add movstrSI12_i4 for linking -Os/-Oz kernels.  Sadly however it
fails and locks early in boot.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 15:48:40

Modified files:
	sys/arch/landisk/conf: Makefile.landisk 

Log message:
disable -Oz compile for SMALL_KERNEL w/ comment why


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 16:11:35

Modified files:
	sbin           : Makefile 
	sbin/mount_vnd : Makefile 

Log message:
install new vnconfig


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/04/25 16:12:11

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
don't be overly specific in set selection and don't use an undefined
variable


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/25 16:13:22

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
fix my own stupidity, let it work if you don't use -n


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 16:39:46

Modified files:
	sbin/mount_vnd : mount_vnd.8 mount_vnd.c 

Log message:
Remove vnconfig functionality, and try to adapt the manual page.
I'm considering simply deleting mount_vnd -- are there any users of this
bizzare feature?


CVSROOT:	/cvs
Module name:	ports
Changes by:	mortimer@cvs.openbsd.org	2019/04/25 16:41:38

Modified files:
	lang/guile     : Makefile 

Log message:
guile needs frame pointers, so ensure they are always on.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 18:28:37

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/25 19:29:05

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190422


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/25 20:04:01

Modified files:
	lang/flang     : Makefile.inc 
	lang/flang/flang: Makefile distinfo 
	lang/flang/libpgmath: Makefile distinfo 

Log message:
Update to the flang commits from yesterday.
While here, remove some comments in Makefile.inc about flang being
integrated into LLVM. That's no longer happening; the new f18 compiler is
scheduled to be integrated into LLVM instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/25 22:50:13

Modified files:
	etc/etc.alpha  : Makefile.inc 

Log message:
we stopped making floppies a while ago


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/25 23:54:49

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 

Log message:
Dt is uppercase;


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/04/26 00:02:11

Modified files:
	share/man/man4 : uslcom.4 

Log message:
Additional devices that are supported by uslcom.

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/26 00:13:48

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
check owner and permission of download directory


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/04/26 00:21:40

Modified files:
	x11/wmname     : Makefile 

Log message:
Update HOMEPAGE and move MASTER_SITES to TLS.

ok kirby


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/04/26 00:33:29

Modified files:
	lib/libc/stdio : tmpfile.c tmpnam.3 

Log message:
Undo changes to tmpfile.c r1.5.
Doing the fchown call causes pledge("tmppath") to be insufficient and the
the umask dance may cause race-conditions in multithreaded applications.

Also POSIX states the following nowadays:
implementations may restrict the permissions, either by clearing the file
mode bits or setting them to the value S_IRUSR | S_IWUSR.

Encouraging words from tedu@
Standards verification and OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/04/26 00:44:14

Modified files:
	regress/sys/kern/realpath: realpathtest.c 

Log message:
/usr/include/machine is a good one.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/04/26 00:47:43

Modified files:
	regress/sys/kern/realpath: realpathtest.c 

Log message:
a bit more evil


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/26 01:14:50

Modified files:
	share/man/man7 : hier.7 

Log message:
sysupgrade(8) uses /home/_sysupgrade
suggested by deraadt; OK jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/26 01:29:11

Modified files:
	devel/cbindgen : Makefile distinfo 

Log message:
Update to cbindgen 0.8.3.

required to build mozilla-central since
https://bugzilla.mozilla.org/show_bug.cgi?id=1536582

Also means 6.5-stable wont get firefox 68, unless cbindgen gets
backported there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/26 01:29:21

Modified files:
	devel/py-fasteners: Makefile 
	devel/py-fasteners/pkg: DESCR 
	games/yquake2  : Makefile 
	games/yquake2/pkg: README 
	productivity/tryton/5.0/trytond: Makefile 
	productivity/tryton/5.0/trytond/pkg: README 

Log message:
Remove empty line at EOF.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/26 01:33:03

Log message:
    Import libdrm 2.4.98
    
    Status:
    
    Vendor Tag:	libdrm
    Release Tags:	libdrm_2_4_98
    
    U xenocara/lib/libdrm/libdrm_lists.h
    C xenocara/lib/libdrm/aclocal.m4
    U xenocara/lib/libdrm/Makefile.sources
    C xenocara/lib/libdrm/xf86drm.h
    U xenocara/lib/libdrm/libdrm.pc.in
    C xenocara/lib/libdrm/xf86drmMode.h
    U xenocara/lib/libdrm/config.h.in
    U xenocara/lib/libdrm/meson_options.txt
    C xenocara/lib/libdrm/Makefile.in
    U xenocara/lib/libdrm/xf86drmRandom.c
    U xenocara/lib/libdrm/libsync.h
    C xenocara/lib/libdrm/configure.ac
    U xenocara/lib/libdrm/util_math.h
    C xenocara/lib/libdrm/configure
    U xenocara/lib/libdrm/Makefile.am
    U xenocara/lib/libdrm/xf86drmSL.c
    C xenocara/lib/libdrm/xf86drm.c
    U xenocara/lib/libdrm/libdrm_macros.h
    U xenocara/lib/libdrm/xf86drmRandom.h
    U xenocara/lib/libdrm/util_double_list.h
    U xenocara/lib/libdrm/meson.build
    U xenocara/lib/libdrm/xf86atomic.h
    C xenocara/lib/libdrm/xf86drmHash.c
    U xenocara/lib/libdrm/xf86drmHash.h
    U xenocara/lib/libdrm/xf86drmMode.c
    U xenocara/lib/libdrm/data/amdgpu.ids
    C xenocara/lib/libdrm/data/Makefile.in
    U xenocara/lib/libdrm/data/Makefile.am
    U xenocara/lib/libdrm/data/meson.build
    U xenocara/lib/libdrm/radeon/radeon_cs_space.c
    U xenocara/lib/libdrm/radeon/Makefile.sources
    U xenocara/lib/libdrm/radeon/radeon_cs.c
    U xenocara/lib/libdrm/radeon/radeon_surface.h
    U xenocara/lib/libdrm/radeon/radeon_bo.h
    U xenocara/lib/libdrm/radeon/radeon_surface.c
    U xenocara/lib/libdrm/radeon/radeon_cs_int.h
    U xenocara/lib/libdrm/radeon/bof.h
    U xenocara/lib/libdrm/radeon/radeon_bo.c
    U xenocara/lib/libdrm/radeon/radeon-symbol-check
    C xenocara/lib/libdrm/radeon/Makefile.in
    U xenocara/lib/libdrm/radeon/radeon_cs.h
    U xenocara/lib/libdrm/radeon/Makefile.am
    U xenocara/lib/libdrm/radeon/bof.c
    U xenocara/lib/libdrm/radeon/radeon_cs_gem.h
    U xenocara/lib/libdrm/radeon/radeon_cs_gem.c
    U xenocara/lib/libdrm/radeon/r600_pci_ids.h
    U xenocara/lib/libdrm/radeon/radeon_bo_gem.h
    U xenocara/lib/libdrm/radeon/meson.build
    U xenocara/lib/libdrm/radeon/libdrm_radeon.pc.in
    U xenocara/lib/libdrm/radeon/radeon_bo_int.h
    U xenocara/lib/libdrm/radeon/radeon_bo_gem.c
    U xenocara/lib/libdrm/man/drmModeGetResources.xml
    C xenocara/lib/libdrm/man/Makefile.in
    U xenocara/lib/libdrm/man/drm-memory.xml
    U xenocara/lib/libdrm/man/drm-kms.xml
    U xenocara/lib/libdrm/man/Makefile.am
    U xenocara/lib/libdrm/man/drmHandleEvent.xml
    U xenocara/lib/libdrm/man/drm.xml
    U xenocara/lib/libdrm/man/drmAvailable.xml
    U xenocara/lib/libdrm/man/meson.build
    U xenocara/lib/libdrm/vc4/Makefile.sources
    C xenocara/lib/libdrm/vc4/Makefile.in
    U xenocara/lib/libdrm/vc4/vc4_qpu_defines.h
    U xenocara/lib/libdrm/vc4/Makefile.am
    U xenocara/lib/libdrm/vc4/libdrm_vc4.pc.in
    U xenocara/lib/libdrm/vc4/meson.build
    U xenocara/lib/libdrm/vc4/vc4_packet.h
    U xenocara/lib/libdrm/libkms/libkms.h
    U xenocara/lib/libdrm/libkms/api.c
    U xenocara/lib/libdrm/libkms/Makefile.sources
    U xenocara/lib/libdrm/libkms/dumb.c
    U xenocara/lib/libdrm/libkms/intel.c
    C xenocara/lib/libdrm/libkms/libkms.pc.in
    U xenocara/lib/libdrm/libkms/radeon.c
    C xenocara/lib/libdrm/libkms/Makefile.in
    U xenocara/lib/libdrm/libkms/internal.h
    U xenocara/lib/libdrm/libkms/linux.c
    U xenocara/lib/libdrm/libkms/kms-symbol-check
    U xenocara/lib/libdrm/libkms/Makefile.am
    U xenocara/lib/libdrm/libkms/nouveau.c
    U xenocara/lib/libdrm/libkms/exynos.c
    U xenocara/lib/libdrm/libkms/vmwgfx.c
    U xenocara/lib/libdrm/libkms/meson.build
    U xenocara/lib/libdrm/tests/drmsl.c
    C xenocara/lib/libdrm/tests/Makefile.in
    U xenocara/lib/libdrm/tests/hash.c
    U xenocara/lib/libdrm/tests/Makefile.am
    U xenocara/lib/libdrm/tests/drmdevice.c
    U xenocara/lib/libdrm/tests/random.c
    U xenocara/lib/libdrm/tests/meson.build
    U xenocara/lib/libdrm/tests/radeon/radeon_ttm.c
    C xenocara/lib/libdrm/tests/radeon/Makefile.in
    U xenocara/lib/libdrm/tests/radeon/rbo.c
    U xenocara/lib/libdrm/tests/radeon/Makefile.am
    U xenocara/lib/libdrm/tests/radeon/meson.build
    U xenocara/lib/libdrm/tests/radeon/rbo.h
    U xenocara/lib/libdrm/tests/modeprint/modeprint.c
    C xenocara/lib/libdrm/tests/modeprint/Makefile.in
    U xenocara/lib/libdrm/tests/modeprint/Makefile.am
    U xenocara/lib/libdrm/tests/modeprint/meson.build
    U xenocara/lib/libdrm/tests/vbltest/vbltest.c
    C xenocara/lib/libdrm/tests/vbltest/Makefile.in
    U xenocara/lib/libdrm/tests/vbltest/Makefile.am
    U xenocara/lib/libdrm/tests/vbltest/meson.build
    U xenocara/lib/libdrm/tests/modetest/cursor.c
    U xenocara/lib/libdrm/tests/modetest/Makefile.sources
    U xenocara/lib/libdrm/tests/modetest/buffers.h
    C xenocara/lib/libdrm/tests/modetest/Makefile.in
    U xenocara/lib/libdrm/tests/modetest/Makefile.am
    U xenocara/lib/libdrm/tests/modetest/modetest.c
    U xenocara/lib/libdrm/tests/modetest/cursor.h
    U xenocara/lib/libdrm/tests/modetest/meson.build
    U xenocara/lib/libdrm/tests/modetest/buffers.c
    C xenocara/lib/libdrm/tests/kmstest/Makefile.in
    U xenocara/lib/libdrm/tests/kmstest/Makefile.am
    U xenocara/lib/libdrm/tests/kmstest/main.c
    U xenocara/lib/libdrm/tests/kmstest/meson.build
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_perf.c
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_event.c
    C xenocara/lib/libdrm/tests/exynos/Makefile.in
    U xenocara/lib/libdrm/tests/exynos/Makefile.am
    U xenocara/lib/libdrm/tests/exynos/exynos_fimg2d_test.c
    U xenocara/lib/libdrm/tests/exynos/meson.build
    U xenocara/lib/libdrm/tests/amdgpu/amdgpu_test.c
    U xenocara/lib/libdrm/tests/amdgpu/vm_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/basic_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/cs_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/frame.h
    U xenocara/lib/libdrm/tests/amdgpu/uvd_enc_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/bo_tests.c
    N xenocara/lib/libdrm/tests/amdgpu/ras_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/uve_ib.h
    U xenocara/lib/libdrm/tests/amdgpu/amdgpu_test.h
    C xenocara/lib/libdrm/tests/amdgpu/Makefile.in
    U xenocara/lib/libdrm/tests/amdgpu/vce_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/Makefile.am
    U xenocara/lib/libdrm/tests/amdgpu/meson.build
    U xenocara/lib/libdrm/tests/amdgpu/vcn_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/vce_ib.h
    U xenocara/lib/libdrm/tests/amdgpu/deadlock_tests.c
    U xenocara/lib/libdrm/tests/amdgpu/decode_messages.h
    U xenocara/lib/libdrm/tests/proptest/Makefile.sources
    U xenocara/lib/libdrm/tests/proptest/proptest.c
    C xenocara/lib/libdrm/tests/proptest/Makefile.in
    U xenocara/lib/libdrm/tests/proptest/Makefile.am
    U xenocara/lib/libdrm/tests/proptest/meson.build
    U xenocara/lib/libdrm/tests/util/format.h
    U xenocara/lib/libdrm/tests/util/Makefile.sources
    U xenocara/lib/libdrm/tests/util/pattern.h
    U xenocara/lib/libdrm/tests/util/common.h
    U xenocara/lib/libdrm/tests/util/format.c
    U xenocara/lib/libdrm/tests/util/kms.c
    C xenocara/lib/libdrm/tests/util/Makefile.in
    U xenocara/lib/libdrm/tests/util/Makefile.am
    U xenocara/lib/libdrm/tests/util/kms.h
    U xenocara/lib/libdrm/tests/util/meson.build
    U xenocara/lib/libdrm/tests/util/pattern.c
    U xenocara/lib/libdrm/tests/kms/kms-steal-crtc.c
    U xenocara/lib/libdrm/tests/kms/kms-universal-planes.c
    C xenocara/lib/libdrm/tests/kms/Makefile.in
    U xenocara/lib/libdrm/tests/kms/libkms-test-plane.c
    U xenocara/lib/libdrm/tests/kms/Makefile.am
    U xenocara/lib/libdrm/tests/kms/meson.build
    U xenocara/lib/libdrm/tests/kms/libkms-test.h
    U xenocara/lib/libdrm/tests/kms/libkms-test-device.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-crtc.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-framebuffer.c
    U xenocara/lib/libdrm/tests/kms/libkms-test-screen.c
    U xenocara/lib/libdrm/tests/tegra/openclose.c
    C xenocara/lib/libdrm/tests/tegra/Makefile.in
    U xenocara/lib/libdrm/tests/tegra/Makefile.am
    U xenocara/lib/libdrm/tests/tegra/meson.build
    C xenocara/lib/libdrm/tests/nouveau/Makefile.in
    U xenocara/lib/libdrm/tests/nouveau/Makefile.am
    U xenocara/lib/libdrm/tests/nouveau/threaded.c
    U xenocara/lib/libdrm/tests/nouveau/meson.build
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_2d_test.c
    U xenocara/lib/libdrm/tests/etnaviv/write_bmp.h
    C xenocara/lib/libdrm/tests/etnaviv/Makefile.in
    U xenocara/lib/libdrm/tests/etnaviv/Makefile.am
    U xenocara/lib/libdrm/tests/etnaviv/state.xml.h
    U xenocara/lib/libdrm/tests/etnaviv/cmdstream.xml.h
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_bo_cache_test.c
    U xenocara/lib/libdrm/tests/etnaviv/etnaviv_cmd_stream_test.c
    U xenocara/lib/libdrm/tests/etnaviv/meson.build
    U xenocara/lib/libdrm/tests/etnaviv/state_2d.xml.h
    U xenocara/lib/libdrm/tests/etnaviv/write_bmp.c
    U xenocara/lib/libdrm/omap/omap_drmif.h
    U xenocara/lib/libdrm/omap/omap_drm.c
    U xenocara/lib/libdrm/omap/omap-symbol-check
    C xenocara/lib/libdrm/omap/Makefile.in
    U xenocara/lib/libdrm/omap/Makefile.am
    U xenocara/lib/libdrm/omap/omap_drm.h
    U xenocara/lib/libdrm/omap/meson.build
    U xenocara/lib/libdrm/omap/libdrm_omap.pc.in
    C xenocara/lib/libdrm/m4/ltversion.m4
    C xenocara/lib/libdrm/m4/libtool.m4
    C xenocara/lib/libdrm/m4/lt~obsolete.m4
    C xenocara/lib/libdrm/m4/ltsugar.m4
    C xenocara/lib/libdrm/m4/ltoptions.m4
    U xenocara/lib/libdrm/exynos/libdrm_exynos.pc.in
    U xenocara/lib/libdrm/exynos/exynos_fimg2d.h
    C xenocara/lib/libdrm/exynos/Makefile.in
    U xenocara/lib/libdrm/exynos/fimg2d_reg.h
    U xenocara/lib/libdrm/exynos/exynos_drm.h
    U xenocara/lib/libdrm/exynos/exynos_drmif.h
    U xenocara/lib/libdrm/exynos/Makefile.am
    U xenocara/lib/libdrm/exynos/exynos-symbol-check
    U xenocara/lib/libdrm/exynos/meson.build
    U xenocara/lib/libdrm/exynos/exynos_fimg2d.c
    U xenocara/lib/libdrm/exynos/exynos_drm.c
    U xenocara/lib/libdrm/amdgpu/Makefile.sources
    U xenocara/lib/libdrm/amdgpu/libdrm_amdgpu.pc.in
    U xenocara/lib/libdrm/amdgpu/amdgpu-symbol-check
    U xenocara/lib/libdrm/amdgpu/amdgpu.h
    U xenocara/lib/libdrm/amdgpu/amdgpu_vm.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_internal.h
    C xenocara/lib/libdrm/amdgpu/amdgpu_bo.c
    C xenocara/lib/libdrm/amdgpu/Makefile.in
    U xenocara/lib/libdrm/amdgpu/handle_table.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_asic_id.c
    U xenocara/lib/libdrm/amdgpu/Makefile.am
    U xenocara/lib/libdrm/amdgpu/amdgpu_cs.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_vamgr.c
    U xenocara/lib/libdrm/amdgpu/meson.build
    U xenocara/lib/libdrm/amdgpu/amdgpu_device.c
    U xenocara/lib/libdrm/amdgpu/amdgpu_gpu_info.c
    U xenocara/lib/libdrm/amdgpu/handle_table.h
    U xenocara/lib/libdrm/build-aux/compile
    C xenocara/lib/libdrm/build-aux/depcomp
    U xenocara/lib/libdrm/build-aux/test-driver
    C xenocara/lib/libdrm/build-aux/missing
    C xenocara/lib/libdrm/build-aux/config.guess
    C xenocara/lib/libdrm/build-aux/config.sub
    C xenocara/lib/libdrm/build-aux/ltmain.sh
    C xenocara/lib/libdrm/build-aux/install-sh
    U xenocara/lib/libdrm/include/drm/via_drm.h
    U xenocara/lib/libdrm/include/drm/r128_drm.h
    U xenocara/lib/libdrm/include/drm/drm_mode.h
    U xenocara/lib/libdrm/include/drm/radeon_drm.h
    U xenocara/lib/libdrm/include/drm/README
    U xenocara/lib/libdrm/include/drm/tegra_drm.h
    U xenocara/lib/libdrm/include/drm/nouveau_drm.h
    U xenocara/lib/libdrm/include/drm/vmwgfx_drm.h
    U xenocara/lib/libdrm/include/drm/sis_drm.h
    U xenocara/lib/libdrm/include/drm/virtgpu_drm.h
    U xenocara/lib/libdrm/include/drm/msm_drm.h
    U xenocara/lib/libdrm/include/drm/amdgpu_drm.h
    U xenocara/lib/libdrm/include/drm/drm_fourcc.h
    U xenocara/lib/libdrm/include/drm/vc4_drm.h
    U xenocara/lib/libdrm/include/drm/mga_drm.h
    U xenocara/lib/libdrm/include/drm/mach64_drm.h
    U xenocara/lib/libdrm/include/drm/savage_drm.h
    C xenocara/lib/libdrm/include/drm/drm.h
    C xenocara/lib/libdrm/include/drm/i915_drm.h
    U xenocara/lib/libdrm/include/drm/drm_sarea.h
    U xenocara/lib/libdrm/include/drm/qxl_drm.h
    U xenocara/lib/libdrm/intel/intel-symbol-check
    U xenocara/lib/libdrm/intel/Makefile.sources
    U xenocara/lib/libdrm/intel/mm.c
    U xenocara/lib/libdrm/intel/uthash.h
    U xenocara/lib/libdrm/intel/intel_bufmgr_gem.c
    C xenocara/lib/libdrm/intel/mm.h
    C xenocara/lib/libdrm/intel/Makefile.in
    U xenocara/lib/libdrm/intel/intel_aub.h
    C xenocara/lib/libdrm/intel/intel_bufmgr_priv.h
    U xenocara/lib/libdrm/intel/intel_bufmgr.h
    U xenocara/lib/libdrm/intel/intel_bufmgr_fake.c
    C xenocara/lib/libdrm/intel/i915_pciids.h
    U xenocara/lib/libdrm/intel/intel_debug.h
    U xenocara/lib/libdrm/intel/Makefile.am
    U xenocara/lib/libdrm/intel/libdrm_intel.pc.in
    U xenocara/lib/libdrm/intel/intel_chipset.h
    U xenocara/lib/libdrm/intel/intel_chipset.c
    U xenocara/lib/libdrm/intel/intel_bufmgr.c
    U xenocara/lib/libdrm/intel/meson.build
    U xenocara/lib/libdrm/intel/intel_decode.c
    U xenocara/lib/libdrm/intel/test_decode.c
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen7-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch
    U xenocara/lib/libdrm/intel/tests/gm45-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch.sh
    U xenocara/lib/libdrm/intel/tests/gen6-3d.batch-ref.txt
    U xenocara/lib/libdrm/intel/tests/gen4-3d.batch
    U xenocara/lib/libdrm/intel/tests/gen5-3d.batch
    U xenocara/lib/libdrm/intel/tests/test-batch.sh
    U xenocara/lib/libdrm/intel/tests/gen7-2d-copy.batch-ref.txt
    U xenocara/lib/libdrm/tegra/tegra.c
    C xenocara/lib/libdrm/tegra/Makefile.in
    U xenocara/lib/libdrm/tegra/tegra.h
    U xenocara/lib/libdrm/tegra/tegra-symbol-check
    U xenocara/lib/libdrm/tegra/Makefile.am
    U xenocara/lib/libdrm/tegra/libdrm_tegra.pc.in
    U xenocara/lib/libdrm/tegra/private.h
    U xenocara/lib/libdrm/tegra/meson.build
    U xenocara/lib/libdrm/freedreno/freedreno_ringbuffer.h
    U xenocara/lib/libdrm/freedreno/freedreno_device.c
    U xenocara/lib/libdrm/freedreno/Makefile.sources
    U xenocara/lib/libdrm/freedreno/freedreno_pipe.c
    U xenocara/lib/libdrm/freedreno/freedreno_ringbuffer.c
    C xenocara/lib/libdrm/freedreno/Makefile.in
    U xenocara/lib/libdrm/freedreno/freedreno_bo_cache.c
    U xenocara/lib/libdrm/freedreno/freedreno-symbol-check
    U xenocara/lib/libdrm/freedreno/Makefile.am
    U xenocara/lib/libdrm/freedreno/freedreno_priv.h
    U xenocara/lib/libdrm/freedreno/freedreno_bo.c
    U xenocara/lib/libdrm/freedreno/freedreno_drmif.h
    U xenocara/lib/libdrm/freedreno/meson.build
    U xenocara/lib/libdrm/freedreno/libdrm_freedreno.pc.in
    U xenocara/lib/libdrm/freedreno/kgsl/msm_kgsl.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_bo.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_ringbuffer.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_pipe.c
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_drm.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_priv.h
    U xenocara/lib/libdrm/freedreno/kgsl/kgsl_device.c
    U xenocara/lib/libdrm/freedreno/msm/msm_pipe.c
    U xenocara/lib/libdrm/freedreno/msm/msm_bo.c
    U xenocara/lib/libdrm/freedreno/msm/msm_ringbuffer.c
    U xenocara/lib/libdrm/freedreno/msm/msm_priv.h
    U xenocara/lib/libdrm/freedreno/msm/msm_device.c
    U xenocara/lib/libdrm/nouveau/nouveau.h
    U xenocara/lib/libdrm/nouveau/nouveau-symbol-check
    U xenocara/lib/libdrm/nouveau/Makefile.sources
    U xenocara/lib/libdrm/nouveau/abi16.c
    U xenocara/lib/libdrm/nouveau/bufctx.c
    C xenocara/lib/libdrm/nouveau/Makefile.in
    U xenocara/lib/libdrm/nouveau/pushbuf.c
    U xenocara/lib/libdrm/nouveau/Makefile.am
    U xenocara/lib/libdrm/nouveau/nouveau.c
    U xenocara/lib/libdrm/nouveau/private.h
    U xenocara/lib/libdrm/nouveau/meson.build
    U xenocara/lib/libdrm/nouveau/libdrm_nouveau.pc.in
    U xenocara/lib/libdrm/nouveau/nvif/if0002.h
    U xenocara/lib/libdrm/nouveau/nvif/cl9097.h
    U xenocara/lib/libdrm/nouveau/nvif/ioctl.h
    U xenocara/lib/libdrm/nouveau/nvif/if0003.h
    U xenocara/lib/libdrm/nouveau/nvif/class.h
    U xenocara/lib/libdrm/nouveau/nvif/cl0080.h
    U xenocara/lib/libdrm/nouveau/nvif/unpack.h
    U xenocara/lib/libdrm/etnaviv/Makefile.sources
    U xenocara/lib/libdrm/etnaviv/etnaviv_drm.h
    U xenocara/lib/libdrm/etnaviv/libdrm_etnaviv.pc.in
    U xenocara/lib/libdrm/etnaviv/etnaviv_perfmon.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_bo.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_device.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_bo_cache.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_gpu.c
    C xenocara/lib/libdrm/etnaviv/Makefile.in
    U xenocara/lib/libdrm/etnaviv/etnaviv_cmd_stream.c
    U xenocara/lib/libdrm/etnaviv/etnaviv_pipe.c
    U xenocara/lib/libdrm/etnaviv/Makefile.am
    U xenocara/lib/libdrm/etnaviv/etnaviv_drmif.h
    U xenocara/lib/libdrm/etnaviv/etnaviv_priv.h
    U xenocara/lib/libdrm/etnaviv/etnaviv-symbol-check
    U xenocara/lib/libdrm/etnaviv/meson.build
    
    53 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jlibdrm:yesterday -jlibdrm xenocara/lib/libdrm

CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/26 01:45:37

Modified files:
	lib/libdrm     : Makefile.bsd-wrapper Makefile.in aclocal.m4 
	                 configure configure.ac xf86drm.c xf86drm.h 
	                 xf86drmHash.c xf86drmMode.h 
	lib/libdrm/amdgpu: amdgpu_bo.c 
	lib/libdrm/include/drm: drm.h i915_drm.h 
	lib/libdrm/intel: i915_pciids.h intel_bufmgr_priv.h mm.h 
	lib/libdrm/libkms: libkms.pc.in 
	lib/libdrm/tests/amdgpu: Makefile.in 
Removed files:
	lib/libdrm     : README 

Log message:
Merge libdrm 2.4.98


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/26 01:47:03

Modified files:
	distrib/sets/lists/xbase: md.alpha md.amd64 md.arm64 md.armv7 
	                          md.hppa md.i386 md.landisk md.loongson 
	                          md.macppc md.octeon md.sgi md.socppc 
	                          md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/26 01:48:51

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/04/26 01:52:52

Modified files:
	net/powerdns_recursor: Makefile distinfo 
	net/powerdns_recursor/patches: patch-pdns_recursor_cc 

Log message:
Update to PowerDNS recursor 4.1.12


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/04/26 02:37:17

Modified files:
	etc            : moduli 
	usr.bin/ssh/moduli-gen: moduli.2048 moduli.3072 moduli.4096 
	                        moduli.6144 moduli.7680 moduli.8192 

Log message:
Import regenerated moduli.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/26 03:22:41

Modified files:
	www/epiphany   : Makefile distinfo 
	www/epiphany/pkg: PLIST 

Log message:
update to epiphany-3.30.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/26 03:27:10

Modified files:
	graphics/clutter/cogl: Makefile distinfo 
	graphics/clutter/cogl/pkg: PLIST 

Log message:
update to cogl-1.22.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/26 03:38:20

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-BUILD_gn patch-base_BUILD_gn 
	                      patch-base_allocator_allocator_shim_cc 
	                      patch-base_files_file_util_posix_cc 
	                      patch-base_process_launch_h 
	                      patch-base_process_process_metrics_h 
	                      patch-base_system_sys_info_posix_cc 
	                      patch-base_threading_thread_task_runner_handle_cc 
	                      patch-build_config_allocator_gni 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_compiler_compiler_gni 
	                      patch-build_gn_run_binary_py 
	                      patch-build_toolchain_gcc_toolchain_gni 
	                      patch-cc_BUILD_gn 
	                      patch-chrome_app_chrome_main_cc 
	                      patch-chrome_app_chrome_main_delegate_cc 
	                      patch-chrome_app_chromium_strings_grd 
	                      patch-chrome_app_generated_resources_grd 
	                      patch-chrome_app_google_chrome_strings_grd 
	                      patch-chrome_app_settings_strings_grdp 
	                      patch-chrome_app_shutdown_signal_handlers_posix_cc 
	                      patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_apps_platform_apps_api_music_manager_private_device_id_linux_cc 
	                      patch-chrome_browser_browser_process_impl_cc 
	                      patch-chrome_browser_browser_resources_grd 
	                      patch-chrome_browser_chrome_browser_main_cc 
	                      patch-chrome_browser_chrome_browser_main_linux_cc 
	                      patch-chrome_browser_chrome_content_browser_client_cc 
	                      patch-chrome_browser_chrome_content_browser_client_h 
	                      patch-chrome_browser_devtools_devtools_eye_dropper_cc 
	                      patch-chrome_browser_download_chrome_download_manager_delegate_cc 
	                      patch-chrome_browser_download_download_commands_cc 
	                      patch-chrome_browser_download_download_prefs_h 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_browser_extensions_api_image_writer_private_removable_storage_provider_cc 
	                      patch-chrome_browser_extensions_api_settings_private_prefs_util_cc 
	                      patch-chrome_browser_extensions_external_provider_impl_cc 
	                      patch-chrome_browser_flag_descriptions_cc 
	                      patch-chrome_browser_flag_descriptions_h 
	                      patch-chrome_browser_media_galleries_fileapi_mtp_device_map_service_cc 
	                      patch-chrome_browser_media_galleries_media_file_system_registry_cc 
	                      patch-chrome_browser_media_webrtc_webrtc_log_uploader_cc 
	                      patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc 
	                      patch-chrome_browser_metrics_chrome_metrics_service_client_cc 
	                      patch-chrome_browser_net_system_network_context_manager_cc 
	                      patch-chrome_browser_password_manager_password_store_factory_cc 
	                      patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc 
	                      patch-chrome_browser_prefs_browser_prefs_cc 
	                      patch-chrome_browser_process_singleton_posix_cc 
	                      patch-chrome_browser_profiles_chrome_browser_main_extra_parts_profiles_cc 
	                      patch-chrome_browser_profiles_profile_impl_cc 
	                      patch-chrome_browser_renderer_preferences_util_cc 
	                      patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                      patch-chrome_browser_resources_settings_appearance_page_appearance_page_html 
	                      patch-chrome_browser_safe_browsing_incident_reporting_incident_reporting_service_cc 
	                      patch-chrome_browser_ssl_ssl_error_controller_client_cc 
	                      patch-chrome_browser_sync_chrome_sync_client_cc 
	                      patch-chrome_browser_task_manager_sampling_task_group_cc 
	                      patch-chrome_browser_task_manager_sampling_task_group_h 
	                      patch-chrome_browser_task_manager_sampling_task_manager_impl_cc 
	                      patch-chrome_browser_tracing_crash_service_uploader_cc 
	                      patch-chrome_browser_ui_browser_command_controller_cc 
	                      patch-chrome_browser_ui_browser_window_h 
	                      patch-chrome_browser_ui_input_method_input_method_engine_base_cc 
	                      patch-chrome_browser_ui_tab_helpers_cc 
	                      patch-chrome_browser_ui_task_manager_task_manager_table_model_cc 
	                      patch-chrome_browser_ui_views_chrome_browser_main_extra_parts_views_cc 
	                      patch-chrome_browser_ui_views_frame_browser_frame_cc 
	                      patch-chrome_browser_ui_views_frame_browser_view_cc 
	                      patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc 
	                      patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_platform_specific_cc 
	                      patch-chrome_browser_ui_views_frame_system_menu_model_delegate_cc 
	                      patch-chrome_browser_ui_views_tabs_new_tab_button_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                      patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc 
	                      patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                      patch-chrome_browser_web_applications_extensions_web_app_extension_shortcut_cc 
	                      patch-chrome_common_BUILD_gn 
	                      patch-chrome_common_chrome_features_cc 
	                      patch-chrome_common_chrome_features_h 
	                      patch-chrome_common_chrome_switches_cc 
	                      patch-chrome_common_chrome_switches_h 
	                      patch-chrome_common_extensions_command_cc 
	                      patch-chrome_common_pref_names_cc 
	                      patch-chrome_common_pref_names_h 
	                      patch-chrome_common_webui_url_constants_cc 
	                      patch-chrome_common_webui_url_constants_h 
	                      patch-chrome_renderer_chrome_content_renderer_client_cc 
	                      patch-chrome_test_BUILD_gn 
	                      patch-chromecast_browser_cast_browser_main_parts_cc 
	                      patch-chromecast_browser_cast_content_browser_client_cc 
	                      patch-components_autofill_core_browser_autofill_experiments_cc 
	                      patch-components_autofill_core_common_autofill_util_cc 
	                      patch-components_autofill_strings_grdp 
	                      patch-components_crash_content_app_BUILD_gn 
	                      patch-components_crash_content_app_crashpad_cc 
	                      patch-components_crash_core_common_BUILD_gn 
	                      patch-components_download_internal_common_base_file_cc 
	                      patch-components_metrics_BUILD_gn 
	                      patch-components_neterror_resources_neterror_js 
	                      patch-components_network_session_configurator_browser_network_session_configurator_cc 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-components_services_filesystem_file_system_app_cc 
	                      patch-components_services_font_font_service_app_cc 
	                      patch-components_sync_base_get_session_name_cc 
	                      patch-content_app_content_main_runner_impl_cc 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_browser_child_process_host_impl_cc 
	                      patch-content_browser_gpu_gpu_process_host_cc 
	                      patch-content_browser_media_media_internals_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_h 
	                      patch-content_browser_renderer_host_render_view_host_impl_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_service_manager_service_manager_context_cc 
	                      patch-content_browser_webui_shared_resources_data_source_cc 
	                      patch-content_gpu_gpu_main_cc 
	                      patch-content_public_app_content_packaged_services_manifest_cc 
	                      patch-content_public_common_common_param_traits_macros_h 
	                      patch-content_public_common_content_features_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_media_audio_audio_device_factory_cc 
	                      patch-content_renderer_render_process_impl_cc 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_renderer_renderer_blink_platform_impl_cc 
	                      patch-content_renderer_renderer_blink_platform_impl_h 
	                      patch-content_shell_BUILD_gn 
	                      patch-content_utility_utility_main_cc 
	                      patch-extensions_browser_api_messaging_message_service_cc 
	                      patch-extensions_browser_browser_context_keyed_service_factories_cc 
	                      patch-extensions_common_api__permission_features_json 
	                      patch-gpu_ipc_service_gpu_init_cc 
	                      patch-headless_lib_browser_headless_content_browser_client_cc 
	                      patch-headless_lib_browser_headless_request_context_manager_cc 
	                      patch-ipc_ipc_channel_h 
	                      patch-media_BUILD_gn 
	                      patch-media_audio_BUILD_gn 
	                      patch-media_base_video_frame_cc 
	                      patch-media_base_video_frame_h 
	                      patch-media_capture_video_file_video_capture_device_factory_cc 
	                      patch-media_capture_video_mock_gpu_memory_buffer_manager_cc 
	                      patch-media_capture_video_video_capture_device_client_cc 
	                      patch-media_media_options_gni 
	                      patch-media_video_gpu_memory_buffer_video_frame_pool_cc 
	                      patch-mojo_public_js_mojo_bindings_resources_grd 
	                      patch-net_BUILD_gn 
	                      patch-net_base_address_tracker_linux_cc 
	                      patch-net_dns_host_resolver_proc_cc 
	                      patch-net_http_http_network_session_cc 
	                      patch-net_proxy_resolution_proxy_resolution_service_cc 
	                      patch-net_socket_socks5_client_socket_cc 
	                      patch-net_socket_udp_socket_posix_cc 
	                      patch-net_tools_cert_verify_tool_cert_verify_tool_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-remoting_host_me2me_desktop_environment_cc 
	                      patch-remoting_host_remoting_me2me_host_cc 
	                      patch-services_device_geolocation_location_arbitrator_cc 
	                      patch-services_device_serial_serial_io_handler_posix_cc 
	                      patch-services_network_BUILD_gn 
	                      patch-services_network_network_context_cc 
	                      patch-services_network_network_service_cc 
	                      patch-services_network_network_service_h 
	                      patch-services_resource_coordinator_public_cpp_memory_instrumentation_os_metrics_h 
	                      patch-services_resource_coordinator_public_cpp_memory_instrumentation_os_metrics_linux_cc 
	                      patch-services_service_manager_embedder_main_cc 
	                      patch-services_service_manager_public_cpp_service_executable_BUILD_gn 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_angle_src_common_platform_h 
	                      patch-third_party_angle_src_libANGLE_Display_cpp 
	                      patch-third_party_angle_third_party_vulkan-loader_BUILD_gn 
	                      patch-third_party_angle_third_party_vulkan-loader_src_loader_loader_c 
	                      patch-third_party_blink_renderer_core_inspector_inspector_memory_agent_cc 
	                      patch-third_party_blink_renderer_core_paint_paint_layer_cc 
	                      patch-third_party_blink_renderer_platform_fonts_font_cache_cc 
	                      patch-third_party_blink_renderer_platform_fonts_font_cache_h 
	                      patch-third_party_blink_renderer_platform_heap_thread_state_cc 
	                      patch-third_party_blink_renderer_platform_wtf_BUILD_gn 
	                      patch-third_party_boringssl_BUILD_generated_gni 
	                      patch-third_party_pdfium_core_fxge_fx_ge_linux_cpp 
	                      patch-third_party_perfetto_src_tracing_core_tracing_service_impl_cc 
	                      patch-third_party_sqlite_amalgamation_sqlite3_c 
	                      patch-third_party_swiftshader_src_OpenGL_libEGL_libEGL_cpp 
	                      patch-third_party_webrtc_BUILD_gn 
	                      patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                      patch-third_party_webrtc_rtc_base_BUILD_gn 
	                      patch-third_party_webrtc_rtc_base_network_cc 
	                      patch-third_party_webrtc_webrtc_gni 
	                      patch-third_party_zlib_BUILD_gn 
	                      patch-ui_base_ui_base_features_cc 
	                      patch-ui_base_ui_base_features_h 
	                      patch-ui_gfx_BUILD_gn 
	                      patch-ui_gfx_linux_client_native_pixmap_dmabuf_cc 
	                      patch-ui_gl_BUILD_gn 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_gl_sync_control_vsync_provider_cc 
	                      patch-ui_views_bubble_bubble_dialog_delegate_view_cc 
	                      patch-ui_views_controls_label_cc 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-v8_BUILD_gn patch-v8_src_api_cc 
	                      patch-v8_src_globals_h 
Added files:
	www/chromium/patches: patch-base_debug_elf_reader_cc 
	                      patch-chrome_browser_extensions_bookmark_app_extension_util_cc 
	                      patch-chrome_test_chromedriver_chrome_launcher_cc 
	                      patch-gpu_vulkan_generate_bindings_py 
	                      patch-gpu_vulkan_vulkan_function_pointers_cc 
	                      patch-gpu_vulkan_vulkan_function_pointers_h 
	                      patch-services_service_manager_BUILD_gn 
	                      patch-third_party_angle_src_common_system_utils_posix_cpp 
	                      patch-third_party_perfetto_include_perfetto_base_thread_utils_h 
Removed files:
	www/chromium/patches: patch-base_debug_elf_reader_linux_cc 
	                      patch-chrome_browser_extensions_bookmark_app_helper_cc 
	                      patch-chrome_browser_profiles_profile_io_data_cc 
	                      patch-chrome_browser_ui_input_method_input_method_engine_h 
	                      patch-chrome_browser_ui_views_frame_browser_view_h 
	                      patch-components_download_quarantine_quarantine_cc 
	                      patch-components_download_quarantine_quarantine_linux_cc 
	                      patch-content_public_common_renderer_preferences_h 
	                      patch-services_catalog_store_cc 
	                      patch-services_catalog_store_h 
	                      patch-services_service_manager_runner_host_BUILD_gn 
	                      patch-third_party_swiftshader_src_Reactor_BUILD_gn 
	                      patch-third_party_swiftshader_third_party_llvm-7_0_BUILD_gn 
	                      patch-tools_gn_build_gen_py 
	                      patch-tools_gn_tools_gn_args_cc 
	                      patch-ui_base_ime_ime_engine_handler_interface_h 
	                      patch-v8_src_heap_spaces_h 
	                      patch-v8_src_objects_hash-table_h 

Log message:
update to 74.0.3729.108


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/04/26 03:51:57

Modified files:
	lib            : Makefile 

Log message:
Unlink unused libFS from the build.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	matthieu@cvs.openbsd.org	2019/04/26 03:53:00

Modified files:
	etc/mtree      : BSD.x11.dist 

Log message:
no more libFS


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/04/26 03:53:50

Modified files:
	distrib/sets/lists/xbase: mi 
	distrib/sets/lists/xshare: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/26 04:15:40

Modified files:
	usr.bin/tmux   : layout-set.c 

Log message:
Unbreak main-vertical and main-horizontal layouts.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/26 04:24:26

Modified files:
	usr.bin/tmux   : window.c 

Log message:
Destroy panes before options to avoid crash when forced into a mode by a
hook.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/26 05:38:51

Modified files:
	usr.bin/tmux   : Makefile cmd-new-session.c cmd-new-window.c 
	                 cmd-queue.c cmd-select-pane.c 
	                 cmd-select-window.c cmd-set-option.c 
	                 cmd-show-options.c cmd-split-window.c 
	                 cmd-string.c notify.c options-table.c options.c 
	                 session.c status.c tmux.1 tmux.c tmux.h 
Removed files:
	usr.bin/tmux   : cmd-set-hook.c hooks.c 

Log message:
Merge hooks into options and make each one an array option. This allows
multiple commands to be easily bound to one hook. set-hook and
show-hooks remain but they are now variants of set-option and
show-options. show-options now has a -H flag to show hooks (by default
they are not shown).


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/04/26 05:43:46

Modified files:
	distrib/sets/lists/xshare: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/26 06:38:03

Modified files:
	devel/intellij : Makefile distinfo 
	devel/intellij/files: idea 
	devel/intellij/pkg: PLIST 

Log message:
Update intellij to 2019.1.1

Improve intellij start script to use javaPathHelper

Tested by Caspar Schutijser (maintainer) and OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/26 06:40:31

Modified files:
	devel/netbeans : Makefile distinfo 
	devel/netbeans/files: netbeans 
	devel/netbeans/patches: patch-bin_netbeans 
	devel/netbeans/pkg: PLIST 

Log message:
Update netbeans to 11.0

- fix homepage
- Keep netbeans start script in sync with intellij and pycharm.
-- Improve the start script to use javaPathHelper

OK giovanni@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/26 07:23:06

Modified files:
	net/icinga/web2: Makefile distinfo 
	net/icinga/web2/pkg: PLIST 

Log message:
update to icingaweb2 2.6.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/26 07:32:36

Modified files:
	security/wpa_supplicant: Makefile distinfo 
	security/wpa_supplicant/patches: 
	                                 patch-src_drivers_driver_openbsd_c 
	                                 patch-src_utils_eloop_c 
	                                 patch-wpa_supplicant_Makefile 

Log message:
update to wpa_supplicant-2.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/26 07:35:29

Modified files:
	graphics/img2pdf: Makefile distinfo 

Log message:
update to img2pdf-0.3.3, add a comment "some tests fail as they require
pdfrw (overall this is optional for img2pdf and autodetected at runtime;
we don't have it in ports yet)"


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/04/26 07:36:28

Modified files:
	security/nikto : Makefile 

Log message:
Let nikto find the DTD to save xml files out of the box

OK gonzalo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/26 07:39:16

Modified files:
	multimedia/mlt : Makefile distinfo 
	multimedia/mlt/patches: patch-configure 
	                        patch-src_framework_Makefile 
	                        patch-src_framework_mlt_property_h 
	                        patch-src_mlt++_Makefile 
	                        patch-src_modules_plusgpl_consumer_cbrts_c 
	                        patch-src_modules_qt_Makefile 
	multimedia/mlt/pkg: PLIST-main 

Log message:
Update mlt to 6.14.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/26 07:43:52

Modified files:
	x11/kde4       : Makefile 
	meta/kde4      : Makefile 

Log message:
Unhook dolphin-plugins

Found out from Federico Giannici <giannici AaA neomedia DoT it> by the hard
way.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/26 08:50:06

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-7.2.1, security fixes:

*  auth: Use consttime_memequal to avoid latency attack
consttime_memequal is supplied if libc does not support it
dhcpcd >=6.2 <7.2.1 are vulnerable

*  DHCP: Fix a potential 1 byte read overflow with DHO_OPTSOVERLOADED
dhcpcd >=4 <7.2.1 are vulnerable

*  DHCPv6: Fix a potential buffer overflow reading NA/TA addresses
dhcpcd >=7 <7.2.1 are vulnerable


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/04/26 08:57:35

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Use a different approach to determine the appropriate signing key:
Read the first line "untrusted comment ..." from SHA256.sig.  Use the
key named there if it corresponds to the current or next OS version.


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/04/26 09:04:29

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
Fix a missing carriage return.

OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/26 09:08:33

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: 
	                   patch-src_tools_cargo_src_cargo_core_compiler_context_compilation_files_rs 
	lang/rust/pkg  : DESCR-main PLIST-main 
Removed files:
	lang/rust/pkg  : PFRAG.aarch64-doc PFRAG.aarch64-main 
	                 PFRAG.amd64-doc PFRAG.amd64-main PFRAG.i386-doc 
	                 PFRAG.i386-main PLIST-doc 

Log message:
reduces the PLIST divergence between archs by using a controlled way to
generate metadata/hash on libraries.

remove -doc subpackage too, as it has different files depending the
arch.

with that, we should be able to have rustc on more archs.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/26 09:10:32

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register lang/rust,-doc removal.

a link for manually download an "official" tarball for the documentation is available in DESCR of lang/rust

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/26 09:46:28

Modified files:
	lang/ruby/2.6  : Makefile distinfo 
	lang/ruby/2.6/pkg: PLIST-main PLIST-ri_docs 

Log message:
Update to ruby 2.6.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/26 09:46:58

Modified files:
	lang/jruby     : Makefile distinfo 
	lang/jruby/pkg : PLIST 

Log message:
Update to JRuby 9.2.7.0


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/04/26 10:00:37

Modified files:
	gnu/llvm/tools/lld/ELF: Driver.cpp 

Log message:
add "elf64_sparc" emulation name so ELF SPARCV9 format can be explicitly
specified; suggested by and ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/26 10:10:06

Modified files:
	infrastructure/mk: arch-defines.mk 

Log message:
add lld target emulation names for mips64, mips64el, powerpc, sparc64


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/26 10:11:13

Modified files:
	databases/py-psycopg2: Makefile distinfo 
	databases/py-psycopg2/pkg: PLIST 

Log message:
update to py-psycopg2-2.8.2, ok danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/04/26 10:27:36

Modified files:
	sys/arch/mips64/include: pte.h 

Log message:
Guard against repeated inclusion of <mips64/pte.h>. This fixes drm build
on loongson.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/04/26 11:28:10

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
do not re-verify the signature for each file when checking the old files,
sha256 is enough; ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/04/26 11:55:28

Modified files:
	sbin/vnconfig  : vnconfig.8 

Log message:
document -A
okay deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/26 12:25:54

Log message:
    py-emoji is a library to convert emoji shortcodes to the actual emoji
    and vice versa.
    
    Input from kn
    
    OK kn@ sthen@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190426
    
    N ports/textproc/py-emoji/Makefile
    N ports/textproc/py-emoji/distinfo
    N ports/textproc/py-emoji/pkg/DESCR
    N ports/textproc/py-emoji/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/26 12:27:26

Modified files:
	textproc       : Makefile 

Log message:
Hook py-emoji up to the build


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/26 12:28:03

Modified files:
	faq            : faq4.html 

Log message:
better explanation of why the install iso/fs files don't include a .sig file.
discussed with msiism on freenode and tb.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/04/26 13:11:01

Modified files:
	usr.bin/rcs    : co.c 

Log message:
There was an extra newline in some cases and missing one in others.
OK joris@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/26 14:42:46

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
If we don't have a proper installurl, use cdn.openbsd.org.
Idea from sysupgrade(8).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/26 15:21:54

Modified files:
	sysutils/amazon-ecs-cli: Makefile distinfo 

Log message:
Update to ecs-cli-1.14.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/26 15:32:59

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.137.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/26 15:33:16

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.137.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/26 15:33:39

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.147.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/26 15:36:40

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-243.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/26 15:52:39

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Fix default MIRROR.

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/26 21:01:40

Added files:
	regress/lib/libutil/ber: ber_test_int_i.c 

Log message:
Regress testing for int (long long). Two's complement is eating my brain.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/26 21:36:19

Modified files:
	regress/lib/libutil/ber: ber_test_int_i.c 

Log message:
Tweak previous.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/26 22:28:57

Modified files:
	regress/lib/libutil/ber: ber_test_int_i.c 

Log message:
Fix comment regarding suspected problem when handling large negative integers.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 22:46:03

Modified files:
	sys/net        : if_vlan.c if_vlan_var.h 

Log message:
move the struct ifvlan (the vlan softc) definition into if_vlan.c.

nothing needs to see inside it, so it can move. the next steps are
to rename it to vlan_softc and all the variables to sc to make the
driver move consistent with the rest of the tree.

ok visa@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 22:53:01

Modified files:
	sys/net        : if_vlan.c 

Log message:
rename struct ifvlan to struct vlan_softc

this makes it more consistent with the rest of the tree, but has
no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 22:56:41

Modified files:
	sys/net        : if_vlan.c 

Log message:
whitespace tweaks. no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:08:30

Modified files:
	sys/net        : if_vlan.c 

Log message:
call vlan_softc variables sc, not ifv. no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:11:50

Modified files:
	sys/net        : if_vlan.c 

Log message:
fix some whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:14:33

Modified files:
	sys/net        : if_pair.c if_vlan.c 
Added files:
	sys/net        : if_wg.c if_wg.h 

Log message:
get rid of ifv_linkmib and a bunch of useless macros


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:16:15

Modified files:
	sys/net        : if_pair.c 

Log message:
this wasnt meant to be committed, back out for now.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:24:02

Removed files:
	sys/net        : if_wg.c if_wg.h 

Log message:
back out, this isn't part of a vlan change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:28:00

Modified files:
	sys/net        : if_vlan.c 

Log message:
rename softc members so theyre prefixed with sc.

makes vlan more consistent with the rest of the tree, but no
functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:30:13

Modified files:
	sys/net        : if_vlan.c 

Log message:
remove sc_proto, it isn't used.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:31:42

Modified files:
	sys/net        : if_vlan.c 

Log message:
rename sc_prio to sc_txprio


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:37:24

Modified files:
	sys/net        : if_vlan.c 

Log message:
use unsigned int, not u_int, and uintXX_t, not u_intXX_t


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:55:27

Modified files:
	sys/net        : if_vlan.c 

Log message:
don't increment noproto on the parent interface when there's no child

it's not atomic is the main reason. this simplifies leaving the
function too.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/26 23:58:17

Modified files:
	sys/net        : if_vlan.c 

Log message:
fix up some rxprio handling while here

we should swap the value off the wire for 802.1P, not the rxhprio
config value. try and avoid toctou issues by copying the sc_rxprio
value to a local.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/27 02:00:06

Modified files:
	multimedia/dav1d: Makefile distinfo 
Added files:
	multimedia/dav1d/patches: patch-src_x86_itx_ssse3_asm 
Removed files:
	multimedia/dav1d/patches: patch-meson_build 
	                          patch-tools_output_md5_c 

Log message:
Update to dav1d-0.2.2.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/27 02:08:42

Modified files:
	sysutils/polkit: Makefile distinfo 
	sysutils/polkit/pkg: PLIST 
Removed files:
	sysutils/polkit/patches: patch-src_polkit_polkitunixgroup_c 
	                         patch-src_polkit_polkitunixprocess_c 
	                         patch-src_polkit_polkitunixuser_c 

Log message:
Update to polkit-0.116.
- uses mozjs-6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/27 02:10:32

Modified files:
	sys/dev/pci/drm/ttm: ttm_page_alloc.c 

Log message:
drm/ttm: fix out-of-bounds read in ttm_put_pages() v2

From Christian Koenig
96800ba9e565ab752774cd88328f96aed28a1436 in linux 4.19.y/4.19.37
a66477b0efe511d98dde3e4aaeb189790e6f0a39 in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/04/27 02:50:18

Modified files:
	lang/rust      : Makefile distinfo 
Removed files:
	lang/rust/pkg  : DESCR-doc 

Log message:
update to 1.31.1

it affects only clippy tool.

Announce: https://blog.rust-lang.org/2019/04/25/Rust-1.34.1.html
Changelog: https://github.com/rust-lang/rust/blob/stable/RELEASES.md#version-1341-2019-04-25


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/27 03:42:26

Modified files:
	infrastructure/lib/DPB: Config.pm 

Log message:
avoid warnings by checking we got some actual info first


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/27 04:01:22

Modified files:
	x11/gnome/shell-extensions: Makefile 

Log message:
devel/spidermonkey52 is going away and was only an optional BDEP

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/27 04:02:54

Modified files:
	devel/spidermonkey60: Makefile 
	devel/spidermonkey60/pkg: PLIST 

Log message:
Provide an update path for devel/spidermonkey52.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/27 04:05:10

Modified files:
	devel          : Makefile 
Removed files:
	devel/spidermonkey52: Makefile distinfo 
	devel/spidermonkey52/patches: 
	                              patch-build_moz_configure_memory_configure 
	                              patch-config_gcc_hidden_h 
	                              patch-js_src_jit_ExecutableAllocator_h 
	                              patch-js_src_old-configure_in 
	                              patch-moz_configure 
	                              patch-mozglue_build_moz_build 
	                              patch-python_mozbuild_mozbuild_backend_recursivemake_py 
	devel/spidermonkey52/pkg: DESCR PLIST 

Log message:
Bye bye spidermonkey52; nothing uses you anymore.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/27 04:16:28

Modified files:
	mail/fdm       : Makefile distinfo 
Removed files:
	mail/fdm/patches: patch-fetch-mbox_c 

Log message:
Update to fdm 2.0, from Stephen Gregoratto, thanks !

Enable PCRE while here, from sthen@
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/27 04:56:49

Added files:
	geo/pdal/patches: patch-cmake_modules_FindNumPy_cmake 

Log message:
Ignore error messages (liblapack missing symbols) on stderr from
'python3 -c "import numpy"' for now, fixes numpy detection (and the
build)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/27 06:12:05

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: 
	                      patch-chrome_browser_net_system_network_context_manager_cc 
	                      patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc 
	                      patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc 
	                      patch-chrome_common_pref_names_cc 
	                      patch-chrome_common_pref_names_h 
	                      patch-gpu_ipc_service_gpu_init_cc 
Added files:
	www/chromium/patches: 
	                      patch-chrome_app_chrome_content_browser_overlay_manifest_cc 
	                      patch-chrome_browser_chrome_browser_main_posix_cc 
	                      patch-chrome_browser_extensions_api_webrtc_logging_private_webrtc_logging_private_api_cc 
	                      patch-chrome_browser_first_run_first_run_dialog_h 
	                      patch-chrome_browser_first_run_first_run_internal_h 
	                      patch-chrome_browser_media_webrtc_webrtc_logging_handler_host_cc 
	                      patch-chrome_browser_media_webrtc_webrtc_logging_handler_host_h 
	                      patch-chrome_browser_notifications_notification_display_service_impl_cc 
	                      patch-chrome_browser_send_tab_to_self_receiving_ui_handler_registry_cc 
	                      patch-content_browser_storage_partition_impl_cc 
	                      patch-content_browser_storage_partition_impl_map_cc 
	                      patch-media_mojo_services_gpu_mojo_media_client_cc 
	                      patch-net_tools_quic_quic_http_proxy_backend_cc 
	                      patch-ui_views_widget_desktop_aura_desktop_window_tree_host_platform_cc 
	                      patch-ui_views_widget_desktop_aura_desktop_window_tree_host_platform_h 

Log message:
add some missing OS_BSD defines


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/04/27 07:24:42

Modified files:
	games/angband  : Makefile distinfo 
	games/angband/pkg: PFRAG.sdl PLIST 
Added files:
	games/angband/patches: patch-mk_buildsys_mk_in 
Removed files:
	games/angband/patches: patch-configure patch-mk_buildsys_mk 
	                       patch-src_Makefile patch-src_config_h 

Log message:
Update games/angband to version 4.1.3.

Tested and OK pamela@ and kmos@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/27 07:45:24

Modified files:
	devel/libgtop2 : Makefile distinfo 
	devel/libgtop2/patches: patch-configure 
	                        patch-sysdeps_openbsd_Makefile_in 
	                        patch-sysdeps_openbsd_glibtop_server_h 
	devel/libgtop2/pkg: PLIST 

Log message:
update to libgtop-2.40.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 08:02:39

Modified files:
	graphics/py-opengl: Makefile distinfo 
	graphics/py-opengl/patches: patch-OpenGL___init___py 
	graphics/py-opengl/pkg: PLIST 

Log message:
update to py-opengl-3.1.3b2


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/27 08:29:28

Modified files:
	regress/lib/libutil/ber: ber_test_int_i.c 

Log message:
Add test, update comments, and modify some output.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 08:32:22

Modified files:
	www/py-tornado : Makefile distinfo 
	www/py-tornado/pkg: PLIST 

Log message:
update to py-tornado-5.1.1 (last major version supporting both py2+3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 08:38:54

Modified files:
	x11/kde-applications/cantor: Makefile 

Log message:
replace a hardcoded "python3.6m" in WANTLIB with "python${MODPY_DEFAULT_VERSION_3}m"
- still dirty but slightly less broken


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/27 08:58:15

Modified files:
	usr.bin/ldap   : ber.c 
	usr.sbin/ldapd : ber.c 
	usr.sbin/snmpd : ber.c 
	usr.sbin/ypldap: ber.c 

Log message:
Only apply sign extension when less than eight bytes have been consumed. This
fixes a problem when handling large negative integers.

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/27 09:45:32

Modified files:
	x11/xfce4/ristretto: Makefile distinfo 
	x11/xfce4/ristretto/pkg: PLIST 

Log message:
Update to ristretto 0.8.4


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/27 09:56:02

Modified files:
	regress/lib/libutil/ber: Makefile 

Log message:
Use REGRESS_TARGETS et al.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/27 10:08:56

Modified files:
	x11/xfce4      : xfce4.port.mk 

Log message:
Bump autoconf & automake dependencies to more recent versions when
building snapshots from git (no port in cvs does this)


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/27 10:21:48

Modified files:
	faq            : current.html faq1.html faq5.html 

Log message:
add a few sysupgrade bits, commented out until 6.6. ok tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/27 11:24:36

Modified files:
	security       : Makefile 
Removed files:
	security/glib-openssl: Makefile distinfo 
	security/glib-openssl/pkg: DESCR PLIST 

Log message:
Remove glib-openssl. Nothing uses it and functionnality has been moved to
glib2-networking.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/27 11:27:29

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register glib-openssl removal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/27 12:14:07

Modified files:
	devel/spidermonkey60: Makefile 

Log message:
Fix PKGSPEC.


CVSROOT:	/cvs
Module name:	www
Changes by:	landry@cvs.openbsd.org	2019/04/27 12:34:19

Modified files:
	faq            : upgrade65.html 

Log message:
Mention that ansible switched to python3 by default.

ok sthen@, proofread by kmos@ & pamela@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/04/27 12:42:41

Modified files:
	faq            : upgrade65.html 

Log message:
keep packages sorted


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/27 14:26:43

Modified files:
	infrastructure/lib/DPB/Core: Distant.pm 

Log message:
default timeout of 60 is too much (3 keepalive before it decides to mark
the host down), 60/3 is better


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/27 15:26:02

Modified files:
	sbin/vnconfig  : vnconfig.8 

Log message:
keep the grammatical structure of the options list consistent;


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/27 15:26:35

Modified files:
	devel/llvm     : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	infrastructure/mk: gcc4.port.mk 
	lang/gcc       : Makefile 
	lang/gcc/8     : Makefile 
	lang/gcc/8/pkg : PLIST-ada PLIST-c++ PLIST-f95 PLIST-libs 
	                 PLIST-main PLIST-objc 

Log message:
Switch ports-gcc to GCC 8.3.0:

* switch gcc4 module to gcc/8
* register the gcc/8 subpackages as updates for their gcc/4.9 counterparts
* sync the gcc version in devel/llvm
* add a quirk entry that gcj is obsolete
* unhook 4.9 from the build

Preparatory work by many.
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 15:28:30

Modified files:
	lang/python    : python.port.mk 
	lang/python/3.6: Makefile 
	lang/python/3.6/pkg: PLIST-idle PLIST-main 
	lang/python/3.7: Makefile 
	lang/python/3.7/pkg: PLIST-idle PLIST-main 

Log message:
Switch the default python3 version (used to build all py3 ports) from
3.6.8 to 3.7.3. ok landry@ danj@ kmos@ rpointel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/27 15:31:18

Modified files:
	sysutils/random_run: Makefile 

Log message:
gcc switch happened, this should now build on ports-gcc arches


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 15:31:59

Modified files:
	infrastructure/mk: arch-defines.mk 

Log message:
bump _SYSTEM_VERSION to force updates for all packages; the python3 default
version switch has changed dependencies for a fair sized chunk of packages on
all arches, and the gcc switch from 4.9->8 has changed dependencies for a huge
chunk of the package set on base-gcc arches.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/04/27 16:08:58

Modified files:
	distrib/miniroot: dot.profile 

Log message:
It's timer_pid not timeout_pid

There since introduction in 1.18 (2013).

OK halex


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 16:26:55

Modified files:
	net/isc-bind   : Makefile distinfo 
Added files:
	net/isc-bind/patches: patch-bin_named_client_c 
	                      patch-bin_named_include_named_interfacemgr_h 
	                      patch-bin_named_interfacemgr_c 

Log message:
Security update to bind 9.11.6-P1, plus patches ("Replace atomic
operations in bin/named/client.c with isc_refcount reference counting")
from https://gitlab.isc.org/isc-projects/bind9/merge_requests/1864.patch
for wider arch support.

Fixes:

CVE-2018-5743: Limiting simultaneous TCP clients is ineffective
https://kb.isc.org/docs/cve-2018-5743


CVSROOT:	/cvs
Module name:	src
Changes by:	tj@cvs.openbsd.org	2019/04/27 16:30:05

Modified files:
	share/man/man5 : installurl.5 

Log message:
the installer creates /etc/installurl even if we don't use http for the sets,
so update this page accordingly. while here, add sysupgrade to SEE ALSO since
it uses installurl too. ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	tj@cvs.openbsd.org	2019/04/27 16:30:40

Modified files:
	share/man/man8 : autoinstall.8 

Log message:
switch the example mirror to cdn.openbsd.org


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 17:24:02

Modified files:
	astro/py-metar : Makefile 
	databases/py-peewee: Makefile 
	devel/py-asn1-modules: Makefile 
	devel/py-asn1  : Makefile 
	devel/py-isodate: Makefile 
	devel/py-setuptools: Makefile 
	net/py-medusa  : Makefile 
	textproc/py-enchant: Makefile 
	textproc/py-epydoc: Makefile 
	textproc/py-prettytable: Makefile 
	textproc/py-pygments: Makefile 
	textproc/py-rdflib: Makefile 
	www/py-htmltmpl: Makefile 

Log message:
drop PKG_ARCH=* from the handful of python ports that use it.
1. the pyc files aren't truly arch independent (they can be used cross-arch
but aren't identical), and
2. @version isn't used on PKG_ARCH=* ports so the py3 switch is tripping PLIST_DB


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 17:43:47

Modified files:
	multimedia/devede: Makefile 

Log message:
drop PKG_ARCH=*


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/27 17:43:51

Modified files:
	regress/lib/libutil/ber: ber_test_int_i.c 

Log message:
Tweak tests; work in progress.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/27 17:45:08

Modified files:
	regress/lib/libutil/ber: Makefile 

Log message:
Tweak; work in progress.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 17:45:28

Modified files:
	converters/unoconv: Makefile 

Log message:
bump REVISION, py3 version switch. has PKG_ARCH=* (and no pyc files in this one,
just scripts).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 17:55:05

Modified files:
	audio/pympd    : Makefile 
	comms/wammu    : Makefile 
	devel/dissy    : Makefile 
	devel/git-cvs  : Makefile 
	emulators/gns3 : Makefile 
	games/childsplay: Makefile 
	games/vegastrike/data: Makefile 
	graphics/comix : Makefile 
	mail/mailpile  : Makefile 
	multimedia/oggconvert: Makefile 
	net/librenms   : Makefile 
	net/scapy      : Makefile 
	news/sabnzbd   : Makefile 
	productivity/gbirthday: Makefile 
	security/sqlmap: Makefile 
	sysutils/boar  : Makefile 
	www/ajaxterm   : Makefile 
	www/piwik      : Makefile 
	www/youtube-dl : Makefile 
	x11/gnome/orca : Makefile 
	x11/gnome/py-atspi: Makefile 
	x11/gnome/tweaks: Makefile 
	x11/nagstamon  : Makefile 
	x11/obmenu     : Makefile 

Log message:
remove more PKG_ARCH=* with pyc in PLIST


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/27 17:59:15

Modified files:
	devel/flawfinder: Makefile 
	sysutils/yabitrot: Makefile 
	textproc/gtk-doc: Makefile 
	www/puppetboard: Makefile 

Log message:
bump python ports with PKG_ARCH=* (scripts only, no pyc files, so keeping PKG_ARCH)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/27 18:03:51

Modified files:
	lang/secularize: Makefile 

Log message:
Remove a stray } from PKGNAME. Bump EPOCH since a simple revision bump
didn't work for updating.
ok naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/27 19:30:18

Modified files:
	security/steghide: Makefile 
Added files:
	security/steghide/patches: patch-tests_st_embparameters_pl 
	                           patch-tests_st_fileformats_pl 

Log message:
steghide: Use C++03 for any compiler.
It unbreaks the build with ports-gcc-8. While here, fix Perl tests
that still assumes that '.' is in @INC.
Maintainer timeout.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/27 20:01:30

Modified files:
	net/libtorrent : Makefile 
	net/libtorrent/patches: patch-src_protocol_extensions_cc 
	                        patch-src_protocol_handshake_cc 
	                        patch-src_torrent_object_stream_cc 
Added files:
	net/libtorrent/patches: patch-src_torrent_utils_log_cc 
	                        patch-src_utils_queue_buckets_h 
Removed files:
	net/libtorrent/patches: clangpatch-src_torrent_utils_log_cc 
	                        clangpatch-src_utils_queue_buckets_h 

Log message:
libtorrent: build with C++11 everywhere, merge clang specific patches
into the main ones. This fixes the build with ports-gcc-8.
Also remove an unneeded sparc64 workaround, and add missing RCS tags.

input and OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/27 20:13:31

Modified files:
	net/rtorrent   : Makefile 

Log message:
rtorrent: build with C++11 everywhere
This fixes the build with ports-gcc-8. Also remove an unneeded
sparc64 workaround.

OK sthen@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/27 21:12:53

Modified files:
	xserver/hw/xfree86/common: xf86VGAarbiterPriv.h 

Log message:
Backport cf7517675d988c2d1ff967d6d162a17acbdad46 from xserver 1.20
xfree86: Hold input_lock across SPRITE functions in VGA arbiter

Fixes stack overflow crash with VGA arbiter used with multi GPU systems.
Report and fix identified by 'Joe M' on misc@. ok matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/04/27 21:34:17

Modified files:
	games/openra   : Makefile 
	games/openra/patches: patch-Makefile 
	games/openra/pkg: PLIST 
Added files:
	games/openra/patches: patch-OpenRA_Game_Network_GeoIP_cs 
	                      patch-thirdparty_download_OpenAL-CS_dll_config 
	                      patch-thirdparty_download_SharpFont_dll_config 

Log message:
switch to getting geoip from net/libmaxminddb, add RUN_DEPENDS, restore dllmaps that require addition of "os=..." entry for openbsd to run and were erroneously removed in previous commit, ok sthen@ for geoip fix


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/27 22:20:40

Modified files:
	share/man/man9 : task_add.9 
	sys/sys        : task.h 
	sys/kern       : kern_task.c 

Log message:
add WITNESS support to barriers modelled on the timeout stuff visa did.

if a taskq takes a lock, and something holding that lock calls
taskq_barrier, there's a potential deadlock. detect this as a lock
order problem when witness is enable. task_del conditionally followed
by taskq_barrier is a common pattern, so add a taskq_del_barrier
wrapper for it that unconditionally checks for the deadlock, like
timeout_del_barrier.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/27 23:03:56

Modified files:
	lib/libcrypto/asn1: a_int.c 

Log message:
Avoid an undefined shift in ASN1_INTEGER_get().

Fixes oss-fuzz issue #13804

ok beck, jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/04/27 23:05:56

Modified files:
	lib/libcrypto/asn1: a_enum.c 

Log message:
Avoid an undefined shift in ASN1_ENUMERATED_get().
(same fix as in a_int.c rev 1.34)

Fixes oss-fuzz issue #13809

ok beck, jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:28:17

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/patches: patch-meson_build 
	devel/glib2/pkg: PLIST 
Added files:
	devel/glib2/patches: patch-gio_tests_meson_build 
Removed files:
	devel/glib2/patches: gcc3-patch-glib_tests_meson_build 
	                     patch-glib_gutils_c 

Log message:
Update to glib2-2.60.1.
First step in updating GNOME to version 3.32 (which should happen during
g2k19).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:28:52

Modified files:
	devel/template-glib: Makefile distinfo 
	devel/template-glib/pkg: PLIST 

Log message:
Update to template-glib-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:29:29

Modified files:
	devel/atk      : Makefile distinfo 

Log message:
Update to atk-2.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:29:47

Modified files:
	x11/gnome/at-spi2-core: Makefile distinfo 
Removed files:
	x11/gnome/at-spi2-core/patches: 
	                                patch-atspi_atspi-event-listener_c 
	                                patch-atspi_meson_build 

Log message:
Update to at-spi2-core-2.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:30:09

Modified files:
	x11/gnome/at-spi2-atk: Makefile distinfo 

Log message:
Update to at-spi2-atk-2.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:30:27

Modified files:
	x11/gnome/yelp-xsl: Makefile distinfo 

Log message:
Update to yelp-xsl-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:30:46

Modified files:
	x11/gnome/yelp-tools: Makefile distinfo 

Log message:
Update to yelp-tools-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:31:11

Modified files:
	devel/dconf    : Makefile distinfo 
	devel/dconf/patches: patch-shm_dconf-shm_c 

Log message:
Update to dconf-0.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:31:31

Modified files:
	x11/gnome/dconf-editor: Makefile distinfo 
	x11/gnome/dconf-editor/pkg: PLIST 

Log message:
Update to dconf-editor-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:31:54

Modified files:
	devel/gsettings-desktop-schemas: Makefile distinfo 

Log message:
Update to gsettings-desktop-schemas-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:32:15

Modified files:
	net/glib2-networking: Makefile distinfo 

Log message:
Update to glib2-networking-2.60.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:32:42

Modified files:
	devel/py-gobject3: Makefile distinfo 

Log message:
Update to py-gobject3-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:36:22

Modified files:
	x11/gnome/py-atspi: Makefile distinfo 

Log message:
Update to py3-atspi-2.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:36:41

Modified files:
	devel/jsonrpc-glib: Makefile distinfo 

Log message:
Update to jsonrpc-glib-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:37:10

Modified files:
	devel/glib2mm  : Makefile distinfo 
	devel/glib2mm/pkg: PLIST 

Log message:
Update to glib2mm-2.60.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:37:41

Modified files:
	x11/gnome/adwaita-icon-theme: Makefile distinfo 
	x11/gnome/adwaita-icon-theme/pkg: PLIST 

Log message:
Update to adwaita-icon-theme-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:38:00

Modified files:
	devel/libsoup  : Makefile distinfo 

Log message:
Update to libsoup-2.66.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 00:38:26

Modified files:
	x11/gnome/yelp : Makefile distinfo 
	x11/gnome/yelp/pkg: PLIST 

Log message:
Update to yelp-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/28 00:49:48

Added files:
	geo/pdal/patches: patch-test_unit_filters_DelaunayFilterTest_cpp 

Log message:
Fix build on 32-bits.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/28 01:21:28

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Quiet down signify, seeing all the OKs scroll by is not helping.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 01:35:18

Modified files:
	devel/dconf    : Makefile 

Log message:
Remove XXX. We don't want to build with gtk-doc by default anyway.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/28 01:35:19

Modified files:
	audio/ncmpc    : Makefile distinfo 
Removed files:
	audio/ncmpc/patches: patch-doc_meson_build 

Log message:
Update to ncmpc 0.34.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/28 01:38:48

Modified files:
	mail/geary     : Makefile distinfo 

Log message:
Update to geary 3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 02:03:13

Modified files:
	x11/gnome/user-docs: Makefile distinfo 
	x11/gnome/user-docs/pkg: PLIST 

Log message:
Update to gnome-user-docs-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 02:03:22

Modified files:
	x11/gnome/getting-started-docs: Makefile distinfo 
	x11/gnome/getting-started-docs/pkg: PLIST 

Log message:
Update to gnome-getting-started-docs-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 02:03:41

Modified files:
	x11/gnome/devel-docs: Makefile distinfo 
	x11/gnome/devel-docs/pkg: PLIST 

Log message:
Update to gnome-devel-docs-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 02:07:22

Modified files:
	x11/gnome/mousetweaks: Makefile distinfo 
	x11/gnome/mousetweaks/pkg: PLIST 

Log message:
Update to mousetweaks-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 02:17:09

Modified files:
	x11/gnome/devhelp: Makefile distinfo 
	x11/gnome/devhelp/pkg: PLIST 

Log message:
Update to devhelp-3.32.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/04/28 02:18:16

Modified files:
	sys/dev/pci/drm: drm_drv.c 

Log message:
Make sure only "primary" clients can become master.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/28 02:29:45

Modified files:
	textproc/libebml: Makefile distinfo 
	textproc/libebml/pkg: PLIST 
Added files:
	textproc/libebml/patches: patch-CMakeLists_txt 

Log message:
Update libebml to 1.3.7

CMake changes:
Add options for building and installing shared, static libraries.

OK Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/28 02:29:50

Modified files:
	multimedia/libmatroska: Makefile distinfo 
	multimedia/libmatroska/pkg: PLIST 
Added files:
	multimedia/libmatroska/patches: patch-CMakeLists_txt 

Log message:
Update ibmatroska to 1.5.0

CMake changes:
Add options for building and installing shared, static libraries.

OK Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/28 02:29:55

Modified files:
	multimedia/mkvtoolnix: Makefile distinfo 
	multimedia/mkvtoolnix/patches: 
	                               patch-src_mkvtoolnix-gui_jobs_program_runner_unix_program_runner_h 

Log message:
Update mkvtoolnix to 33.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/04/28 02:41:35

Modified files:
	www/chromium/patches: patch-build_gn_run_binary_py 

Log message:
fix LD_LIBRARY_PATH


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/28 02:59:25

Modified files:
	multimedia/libmatroska: Makefile 

Log message:
Unbreak with GCC8


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/04/28 03:03:13

Modified files:
	graphics/rawtherapee: Makefile distinfo 
	graphics/rawtherapee/patches: patch-CMakeLists_txt 
	graphics/rawtherapee/pkg: PLIST 

Log message:
update to rawtherapee-5.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 03:13:37

Modified files:
	x11/gnome/libdazzle: Makefile distinfo 
	x11/gnome/libdazzle/pkg: PLIST 

Log message:
Update to libdazzle-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 03:15:03

Modified files:
	x11/gnome/music: Makefile 
	www/epiphany   : Makefile 
	x11/gnome/calendar: Makefile 

Log message:
Sync WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 03:22:14

Modified files:
	x11/gnome/usage: Makefile distinfo 
	x11/gnome/usage/pkg: PLIST 

Log message:
Update to gnome-usage-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 03:23:44

Modified files:
	x11/gnome/backgrounds: Makefile distinfo 
	x11/gnome/backgrounds/pkg: PLIST 

Log message:
Update to gnome-backgrounds-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 03:31:02

Modified files:
	x11/gnome/orca : Makefile distinfo 
	x11/gnome/orca/pkg: PLIST 

Log message:
Update to orca-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 03:34:38

Modified files:
	multimedia/py-chromecast: Makefile distinfo 

Log message:
Update to py3-chromecast-3.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 03:45:45

Modified files:
	print/qpdf     : Makefile distinfo 

Log message:
Update to qpdf-8.4.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/04/28 05:00:08

Modified files:
	devel/llvm     : Makefile distinfo 
Added files:
	devel/llvm/pkg : DESCR-extras PLIST-extras 

Log message:
Add Clang extra tools

The clang-tools-extra package contains helpful developer tools using
Clang's APIs.

Initial diff from me, further work by jca@ with feedback from sthen@.

OK jca@ and @sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/04/28 05:18:11

Modified files:
	infrastructure/lib/DPB/Core: Init.pm 

Log message:
oops, distant cores must be created with the class that checks whether the
host is alive...


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/04/28 05:58:12

Modified files:
	graphics/hugin : Makefile distinfo 
	graphics/hugin/pkg: PLIST 
Removed files:
	graphics/hugin/patches: 
	                        patch-src_hugin_base_hugin_utils_platform_cpp 

Log message:
update to hugin-2019.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/28 07:07:12

Added files:
	lang/flang/driver/patches: patch-lib_AST_ASTContext_cpp 

Log message:
Compile this one file without optimizations to work around a bug in the
clang optimizer (?). Allows all of flang to build and work successfully
again on arm64.

ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/28 07:38:06

Modified files:
	lang/freebasic : Makefile 

Log message:
depend on the current version of ports-gcc rather than hardcoding gcc/4.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/04/28 07:38:28

Modified files:
	devel/subversion: Makefile distinfo 
	devel/subversion/pkg: PLIST-main 
Removed files:
	devel/subversion/patches: patch-subversion_mod_dav_svn_repos_c 

Log message:
Update devel/subversion to 1.12.0.
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/28 08:29:29

Modified files:
	sysutils/firmware/vmm: Makefile 

Log message:
Now that ports-gcc has switched to v8 it's able to build the vmm-firmware
package (seabios), so do so and stop using /usr/bin/gcc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/28 08:44:08

ports/www/jupyter-notebook/patches

Update of /cvs/ports/www/jupyter-notebook/patches
In directory cvs.openbsd.org:/tmp/cvs-serv41105/patches

Log Message:
Directory /cvs/ports/www/jupyter-notebook/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/28 08:45:01

Modified files:
	www/jupyter-notebook: Makefile 
Added files:
	www/jupyter-notebook/patches: patch-notebook_base_zmqhandlers_py 

Log message:
Unbreak jupyter-notebook.

Fix issue caused by recent update of py-tornado.

sthen@: "If it works for you then please go ahead..."


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 08:46:00

Modified files:
	sbin/vnconfig  : vnconfig.8 vnconfig.c 

Log message:
Remove need for -A option, lack of a vnd_dev option implies creating
a vnd.  Seperate out the code a fair bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 08:48:11

Modified files:
	distrib/alpha/bsd.rd: Makefile 
	distrib/alpha/cdfs: Makefile 
	distrib/alpha/common: Makefile.inc 
	distrib/alpha/iso: Makefile 
	distrib/alpha/miniroot: Makefile 
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
	distrib/arm64/miniroot: Makefile 
	distrib/armv7/miniroot: Makefile.inc 
	distrib/hppa/iso: Makefile 
	distrib/hppa/ramdisk: Makefile 
	distrib/i386/common: Makefile.inc 
	distrib/i386/iso: Makefile 
	distrib/landisk/miniroot: Makefile 
	distrib/loongson/miniroot: Makefile 
	distrib/luna88k/miniroot: Makefile 
	distrib/macppc/ramdisk: Makefile 
	distrib/octeon/miniroot: Makefile 
	distrib/ramdisk: Makefile 
	distrib/sgi/cdfs: Makefile 
	distrib/sgi/iso: Makefile 
	distrib/socppc/miniroot: Makefile 
	distrib/sparc64/bsd.rd: Makefile 
	distrib/sparc64/cdfs: Makefile 
	distrib/sparc64/common: Makefile.inc 
	distrib/sparc64/iso: Makefile 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
Use new vnconfig vnd-auto-allocate mode.  Resolve some variation between
architectures, and start removing some crazy junk that has collected
over the years.  Being tested on all architectures...
ok various people.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 08:51:16

Modified files:
	sys/conf       : param.c 

Log message:
the bufcachepercent=80 experiment has exposed a few problems...


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 09:09:13

Modified files:
	www/webkitgtk4 : Tag: OPENBSD_6_5 Makefile distinfo 
Added files:
	www/webkitgtk4/patches: Tag: OPENBSD_6_5 
	                        patch-Source_cmake_FindSSE2_cmake 

Log message:
SECURITY update to webkitgtk4-2.24.1.
- CVE-2019-6251


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 09:15:40

Modified files:
	distrib/arm64/ramdisk: Makefile 
	distrib/armv7/ramdisk: Makefile 
	distrib/landisk/miniroot: Makefile 
	distrib/landisk/ramdisk: Makefile 
	distrib/loongson/miniroot: Makefile 
	distrib/loongson/ramdisk: Makefile 
	distrib/luna88k/ramdisk: Makefile 
	distrib/macppc/ramdisk: Makefile 
	distrib/octeon/miniroot: Makefile 
	distrib/octeon/ramdisk: Makefile 
	distrib/sgi/ramdisk: Makefile 
	distrib/socppc/miniroot: Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
the BSD_RD variable is pointless


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/28 09:20:02

Modified files:
	x11/gnome/desktop: Tag: OPENBSD_6_5 Makefile distinfo 
	x11/gnome/desktop/pkg: Tag: OPENBSD_6_5 PLIST 
	meta/gnome     : Tag: OPENBSD_6_5 Makefile 

Log message:
SECURITY update to gnome-desktop-3.30.2.3 (and sync meta/gnome).
- Fix thumbnailer sandbox escape, CVE-2019-11460


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 09:21:50

Modified files:
	distrib/alpha/bsd.rd: Makefile 
	distrib/alpha/common: Makefile.inc 
	distrib/alpha/inst-common: Makefile.inc 
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
	distrib/arm64/ramdisk: Makefile 
	distrib/armv7/ramdisk: Makefile 
	distrib/hppa/ramdisk: Makefile 
	distrib/i386/common: Makefile.inc 
	distrib/landisk/ramdisk: Makefile 
	distrib/loongson/ramdisk: Makefile 
	distrib/luna88k/ramdisk: Makefile Makefile.inc 
	distrib/macppc/ramdisk: Makefile 
	distrib/miniroot: makeconf.awk 
	distrib/octeon/ramdisk: Makefile 
	distrib/ramdisk: Makefile 
	distrib/sgi/ramdisk: Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64/bsd.rd: Makefile 
	distrib/sparc64/common: Makefile.inc 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
CBIN variable is also pointless, it is always "instbin". Rather than
having two mysterious names, let's settle on one.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 09:23:50

Modified files:
	distrib/ramdisk: Makefile 

Log message:
NEWFS_WILL_FAIL is a ridiculous unused artifact.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 09:32:03

Modified files:
	distrib/amd64/cdfs: Makefile 
	distrib/amd64/iso: Makefile 
	distrib/arm64/ramdisk: Makefile 
	distrib/i386/cdfs: Makefile 
	distrib/i386/iso: Makefile 
	distrib/loongson/cdfs: Makefile 
	distrib/sgi/cdfs: Makefile 

Log message:
Cull BSDRD variables which are always bsd.rd


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 10:14:48

Modified files:
	distrib/miniroot: makeconf.awk 

Log message:
Oops; hardcode instbin directly


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 10:26:07

Modified files:
	distrib/alpha/bsd.rd: Makefile 
	distrib/alpha/common: Makefile.inc 
	distrib/hppa/ramdisk: Makefile 
	distrib/ramdisk: Makefile 
	distrib/sparc64/bsd.rd: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
incorporate GZIPFLAGS into place everywhere


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/28 10:28:00

Modified files:
	sbin/vnconfig  : vnconfig.c 

Log message:
fix misplaced hyphen in usage();


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 10:47:31

Modified files:
	distrib/alpha/common: Makefile.inc 
	distrib/alpha/miniroot: Makefile 
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
	distrib/arm64/miniroot: Makefile 
	distrib/i386/common: Makefile.inc 
	distrib/i386/iso: Makefile 
	distrib/landisk/miniroot: Makefile 
	distrib/loongson/miniroot: Makefile 
	distrib/luna88k/miniroot: Makefile 
	distrib/octeon/miniroot: Makefile 
	distrib/ramdisk: Makefile 
	distrib/sgi/cdfs: Makefile 
	distrib/socppc/miniroot: Makefile 
	distrib/sparc64/common: Makefile.inc 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
cleanup the situation around "df -i"


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 11:35:29

Modified files:
	distrib/amd64/iso: Makefile 

Log message:
oops, repair some BSDRD confusion


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 11:35:45

Modified files:
	distrib/i386/iso: Makefile 

Log message:
oops, repair some BSDRD confusion


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/28 11:52:19

Modified files:
	x11/gtksourceview4: Makefile distinfo 
	x11/gtksourceview4/pkg: PLIST 

Log message:
update to gtksourceview-4.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/04/28 11:59:51

Modified files:
	sys/net        : route.h rtable.h 
	usr.bin/netstat: main.c netstat.h route.c 

Log message:
Fix reading route entries via kvm(3).

From Naoki Fukaumi, ok yasuoka@, sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/28 12:34:40

Modified files:
	devel/py-elftools: Makefile distinfo 
	devel/py-elftools/pkg: PLIST 

Log message:
- update to pyelftools-0.25
- take maintainership

ok edd@ (previous MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/04/28 12:35:42

Modified files:
	games/stone-soup: Makefile distinfo 
	games/stone-soup/patches: patch-source_Makefile 
	games/stone-soup/pkg: PFRAG.no-no_x11 PLIST 

Log message:
update to stone-soup-0.23.2
from Evan Silberman, thanks!
"go for it" bcallah@
"no need to wait if you're happy with it" sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/28 12:36:21

Modified files:
	devel/py-intervaltree: Makefile distinfo 

Log message:
update to intervaltree-3.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/04/28 13:21:34

Modified files:
	emulators/mame : Makefile distinfo 
	emulators/mame/patches: 
	                        patch-3rdparty_asio_include_asio_detail_config_hpp 

Log message:
Update mame to 0.209.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/28 13:47:05

Modified files:
	cad/magic      : Makefile 

Log message:
Note to self, don't comment out changes before committing...


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/04/28 13:50:35

Modified files:
	emulators/snes9x: Makefile distinfo 

Log message:
Update snes9x to 1.60.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/28 14:05:50

Modified files:
	usr.bin/tmux   : arguments.c cmd-new-window.c cmd-respawn-pane.c 
	                 cmd-respawn-window.c cmd-split-window.c spawn.c 
	                 tmux.1 tmux.h 

Log message:
Support multiple occurances of the same argument. Use this for a new
flag -e to new-window, split-window, respawn-window, respawn-pane to
pass environment variables into the newly created process. From Steffen
Christgau in GitHub issue 1697.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	schwarze@cvs.openbsd.org	2019/04/28 14:47:20

Modified files:
	lib/libdrm     : Makefile.bsd-wrapper 
Added files:
	lib/libdrm/man : drm-kms.7 drm-memory.7 drm.7 drmAvailable.3 
	                 drmHandleEvent.3 drmModeGetResources.3 

Log message:
install libdrm manual pages; feedback and OK jsg@ matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/28 14:52:03

Modified files:
	archivers/py-libarchive-c: Makefile 
	astro/py-astral: Makefile 
	audio/beets    : Makefile 
	audio/curseradio: Makefile 
	audio/pithos   : Makefile 
	audio/py-acoustid: Makefile 
	audio/py-audio : Makefile 
	audio/py-discogs-client: Makefile 
	audio/py-eyed3 : Makefile 
	audio/py-last  : Makefile 
	audio/py-mpd2  : Makefile 
	audio/py-musicbrainzngs: Makefile 
	audio/py-mutagen: Makefile 
	audio/py-tagpy : Makefile 
	audio/quodlibet: Makefile 
	audio/rhythmbox: Makefile 
	audio/sonata   : Makefile 
	audio/speech-dispatcher: Makefile 
	benchmarks/netperf-wrapper: Makefile 
	benchmarks/speedtest-cli: Makefile 
	cad/netgen     : Makefile 
	cad/yosys      : Makefile 
	comms/sigrok/libsigrokdecode: Makefile 
	converters/py-html2text: Makefile 
	converters/py-mini-amf: Makefile 
	converters/unoconv: Makefile 
	databases/py-apsw: Makefile 
	databases/py-bsddb3: Makefile 
	databases/py-influxdb: Makefile 
	databases/py-ldap: Makefile 
	databases/py-minidb: Makefile 
	databases/py-mongo: Makefile 
	databases/py-mysqlclient: Makefile 
	databases/py-odbc: Makefile 
	databases/py-peewee: Makefile 
	databases/py-pickleshare: Makefile 
	databases/py-psycopg2: Makefile 
	databases/py-puppetdb: Makefile 
	databases/py-pygresql: Makefile 
	databases/py-redis: Makefile 
	databases/py-sql: Makefile 
	databases/py-sqlalchemy: Makefile 
	databases/py-sqlalchemy-migrate: Makefile 
	databases/py-sqlobject: Makefile 
	databases/py-sqlparse: Makefile 
	databases/xapian-bindings: Makefile 
	devel/boost    : Makefile 
	devel/bpython  : Makefile 
	devel/capstone/python: Makefile 
	devel/distcc   : Makefile 
	devel/flake8   : Makefile 
	devel/flawfinder: Makefile 
	devel/github-backup: Makefile 
	devel/glib2    : Makefile 
	devel/gobject-introspection: Makefile 
	devel/ipython  : Makefile 
	devel/iso-codes: Makefile 
	devel/keystone/python: Makefile 
	devel/libftdi1 : Makefile 
	devel/libgit2/libgit2-glib: Makefile 
	devel/libgit2/py-git2: Makefile 
	devel/liblouis : Makefile 
	devel/libpeas  : Makefile 
	devel/libsoup  : Makefile 
	devel/meson    : Makefile 
	devel/pudb     : Makefile 
	devel/py-algorithm-munkres: Makefile 
	devel/py-altgraph: Makefile 
	devel/py-anytree: Makefile 
	devel/py-apipkg: Makefile 
	devel/py-appdirs: Makefile 
	devel/py-argcomplete: Makefile 
	devel/py-argh  : Makefile 
	devel/py-arrow : Makefile 
	devel/py-asn1  : Makefile 
	devel/py-asn1-modules: Makefile 
	devel/py-astroid: Makefile 
	devel/py-async-timeout: Makefile 
	devel/py-atomicwrites: Makefile 
	devel/py-attrs : Makefile 
	devel/py-automat: Makefile 
	devel/py-babel : Makefile 
	devel/py-backports-abc: Makefile 
	devel/py-binaryornot: Makefile 
	devel/py-biplist: Makefile 
	devel/py-blessings: Makefile 
	devel/py-blinker: Makefile 
	devel/py-blist : Makefile 
	devel/py-buildbot/buildbot: Makefile 
	devel/py-buildbot/console-view: Makefile 
	devel/py-buildbot/grid-view: Makefile 
	devel/py-buildbot/pkg: Makefile 
	devel/py-buildbot/waterfall-view: Makefile 
	devel/py-buildbot/www: Makefile 
	devel/py-buildslave: Makefile 
	devel/py-cached-property: Makefile 
	devel/py-cairocffi: Makefile 
	devel/py-certifi: Makefile 
	devel/py-cffi  : Makefile 
	devel/py-chai  : Makefile 
	devel/py-cheetah: Makefile 
	devel/py-click : Makefile 
	devel/py-click-log: Makefile 
	devel/py-click-plugins: Makefile 
	devel/py-click-threading: Makefile 
	devel/py-clint : Makefile 
	devel/py-cloudpickle: Makefile 
	devel/py-codestyle: Makefile 
	devel/py-colorama: Makefile 
	devel/py-configargparse: Makefile 
	devel/py-configobj: Makefile 
	devel/py-constantly: Makefile 
	devel/py-construct: Makefile 
	devel/py-contextlib2: Makefile 
	devel/py-country: Makefile 
	devel/py-coverage: Makefile 
	devel/py-coveralls: Makefile 
	devel/py-cparser: Makefile 
	devel/py-curtsies: Makefile 
	devel/py-dateutil: Makefile 
	devel/py-decorator: Makefile 
	devel/py-dispatcher: Makefile 
	devel/py-distutils-extra: Makefile 
	devel/py-docopt: Makefile 
	devel/py-doit  : Makefile 
	devel/py-dtfabric: Makefile 
	devel/py-easyprocess: Makefile 
	devel/py-elftools: Makefile 
	devel/py-entrypoints: Makefile 
	devel/py-execnet: Makefile 
	devel/py-extras: Makefile 
	devel/py-fasteners: Makefile 
	devel/py-fastimport: Makefile 
	devel/py-filebytes: Makefile 
	devel/py-flaky : Makefile 
	devel/py-flexmock: Makefile 
	devel/py-freezegun: Makefile 
	devel/py-frozendict: Makefile 
	devel/py-funcy : Makefile 
	devel/py-future: Makefile 
	devel/py-gevent: Makefile 
	devel/py-gitdb : Makefile 
	devel/py-gobject3: Makefile 
	devel/py-greenlet: Makefile 
	devel/py-hamcrest: Makefile 
	devel/py-html5lib: Makefile 
	devel/py-hypothesis: Makefile 
	devel/py-icalendar: Makefile 
	devel/py-incremental: Makefile 
	devel/py-intervaltree: Makefile 
	devel/py-ioflo : Makefile 
	devel/py-ipykernel: Makefile 
	devel/py-ipython_genutils: Makefile 
	devel/py-iso3166: Makefile 
	devel/py-iso639: Makefile 
	devel/py-isodate: Makefile 
	devel/py-isort : Makefile 
	devel/py-jedi  : Makefile 
	devel/py-jmespath: Makefile 
	devel/py-jsonschema: Makefile 
	devel/py-jupyter_client: Makefile 
	devel/py-jupyter_core: Makefile 
	devel/py-kiwisolver: Makefile 
	devel/py-lazy-object-proxy: Makefile 
	devel/py-llvmlite: Makefile 
	devel/py-logilab-common: Makefile 
	devel/py-magic : Makefile 
	devel/py-mccabe: Makefile 
	devel/py-minimock: Makefile 
	devel/py-mock  : Makefile 
	devel/py-modulegraph: Makefile 
	devel/py-monotonic: Makefile 
	devel/py-more-itertools: Makefile 
	devel/py-munch : Makefile 
	devel/py-nbconvert: Makefile 
	devel/py-nbformat: Makefile 
	devel/py-nose  : Makefile 
	devel/py-nose-warnings-filters: Makefile 
	devel/py-nosexcover: Makefile 
	devel/py-objgraph: Makefile 
	devel/py-olefile: Makefile 
	devel/py-parallel: Makefile 
	devel/py-parsedatetime: Makefile 
	devel/py-parsing: Makefile 
	devel/py-parso : Makefile 
	devel/py-path.py: Makefile 
	devel/py-pathlib: Makefile 
	devel/py-pathlib2: Makefile 
	devel/py-pathspec: Makefile 
	devel/py-pbr   : Makefile 
	devel/py-pexpect: Makefile 
	devel/py-pip   : Makefile 
	devel/py-pluggy: Makefile 
	devel/py-plugnplay: Makefile 
	devel/py-ply   : Makefile 
	devel/py-pretend: Makefile 
	devel/py-progressbar: Makefile 
	devel/py-prompt_toolkit: Makefile 
	devel/py-protobuf: Makefile 
	devel/py-ptyprocess: Makefile 
	devel/py-py    : Makefile 
	devel/py-pyinotify: Makefile 
	devel/py-pyte  : Makefile 
	devel/py-radix : Makefile 
	devel/py-robotframework: Makefile 
	devel/py-rope  : Makefile 
	devel/py-send2trash: Makefile 
	devel/py-serial: Makefile 
	devel/py-setproctitle: Makefile 
	devel/py-setuptools: Makefile 
	devel/py-setuptools_git: Makefile 
	devel/py-setuptools_scm: Makefile 
	devel/py-setuptools_scm_git_archive: Makefile 
	devel/py-setuptools_trial: Makefile 
	devel/py-sh    : Makefile 
	devel/py-simpleeval: Makefile 
	devel/py-simplegeneric: Makefile 
	devel/py-simplejson: Makefile 
	devel/py-sip   : Makefile 
	devel/py-six   : Makefile 
	devel/py-smmap : Makefile 
	devel/py-sortedcontainers: Makefile 
	devel/py-spark-parser: Makefile 
	devel/py-stdnum: Makefile 
	devel/py-tabulate: Makefile 
	devel/py-test  : Makefile 
	devel/py-test-benchmark: Makefile 
	devel/py-test-cov: Makefile 
	devel/py-test-expect: Makefile 
	devel/py-test-forked: Makefile 
	devel/py-test-httpbin: Makefile 
	devel/py-test-localserver: Makefile 
	devel/py-test-mock: Makefile 
	devel/py-test-runner: Makefile 
	devel/py-test-subtesthack: Makefile 
	devel/py-test-xdist: Makefile 
	devel/py-testpath: Makefile 
	devel/py-testtools: Makefile 
	devel/py-tox   : Makefile 
	devel/py-traitlets: Makefile 
	devel/py-twisted: Makefile 
	devel/py-txaio : Makefile 
	devel/py-typing: Makefile 
	devel/py-tz    : Makefile 
	devel/py-tzlocal: Makefile 
	devel/py-uncompyle6: Makefile 
	devel/py-urwid : Makefile 
	devel/py-uv    : Makefile 
	devel/py-vcversioner: Makefile 
	devel/py-virtualenv: Makefile 
	devel/py-voluptuous: Makefile 
	devel/py-wbem  : Makefile 
	devel/py-wcwidth: Makefile 
	devel/py-wheel : Makefile 
	devel/py-whichcraft: Makefile 
	devel/py-wrapt : Makefile 
	devel/py-wurlitzer: Makefile 
	devel/py-xdg   : Makefile 
	devel/py-xdis  : Makefile 
	devel/py-xlsxwriter: Makefile 
	devel/py-yamllint: Makefile 
	devel/py-yapf  : Makefile 
	devel/py-zopecomponent: Makefile 
	devel/py-zopeevent: Makefile 
	devel/py-zopeinterface: Makefile 
	devel/pycdc    : Makefile 
	devel/pyflakes : Makefile 
	devel/pygame   : Makefile 
	devel/pylint   : Makefile 
	devel/spyder/py-spyder-kernels: Makefile 
	devel/spyder/spyder: Makefile 
	devel/stp      : Makefile 
	editors/libreoffice: Makefile 
	editors/py-neovim: Makefile 
	editors/py-qscintilla: Makefile 
	editors/vim    : Makefile 
	fonts/terminus-font: Makefile 
	games/pysol    : Makefile 
	geo/gdal       : Makefile 
	geo/mapserver  : Makefile 
	geo/pdal       : Makefile 
	geo/py-cligj   : Makefile 
	geo/py-fiona   : Makefile 
	geo/py-laspy   : Makefile 
	geo/py-owslib  : Makefile 
	geo/py-planet  : Makefile 
	geo/py-proj    : Makefile 
	geo/py-rasterio: Makefile 
	geo/py-rio-cogeo: Makefile 
	geo/py-shapely : Makefile 
	geo/qgis       : Makefile 
	graphics/blender: Makefile 
	graphics/graphite2: Makefile 
	graphics/img2pdf: Makefile 
	graphics/krita : Makefile 
	graphics/lensfun: Makefile 
	graphics/libgexiv2: Makefile 
	graphics/py-Pillow: Makefile 
	graphics/py-cairo: Makefile 
	graphics/py-cycler: Makefile 
	graphics/py-imagesize: Makefile 
	graphics/py-matplotlib: Makefile 
	graphics/py-opengl: Makefile 
	graphics/py-pygal: Makefile 
	graphics/py-qrcode: Makefile 
	graphics/py-sane: Makefile 
	graphics/scour : Makefile 
	graphics/termtosvg: Makefile 
	graphics/xdot  : Makefile 
	lang/cython    : Makefile 
	lang/flang/libpgmath: Makefile 
	lang/ghc       : Makefile 
	lang/secularize: Makefile 
	mail/kopano/core: Makefile 
	math/mlpack    : Makefile 
	math/py-affine : Makefile 
	math/py-bottleneck: Makefile 
	math/py-graphviz: Makefile 
	math/py-mpmath : Makefile 
	math/py-numexpr: Makefile 
	math/py-numpy  : Makefile 
	math/py-pandas : Makefile 
	math/py-patsy  : Makefile 
	math/py-scipy  : Makefile 
	math/py-snuggs : Makefile 
	math/py-sympy  : Makefile 
	math/z3        : Makefile 
	misc/gramps    : Makefile 
	misc/py-memcached: Makefile 
	misc/redshift  : Makefile 
	multimedia/devede: Makefile 
	multimedia/gstreamer1/py-gstreamer: Makefile 
	multimedia/py-caption: Makefile 
	multimedia/py-casttube: Makefile 
	multimedia/py-chromecast: Makefile 
	multimedia/py-pafy: Makefile 
	multimedia/streamlink: Makefile 
	net/aggregate6 : Makefile 
	net/avahi      : Makefile 
	net/blaeu      : Makefile 
	net/dico       : Makefile 
	net/gajim      : Makefile 
	net/gpodder    : Makefile 
	net/libproxy   : Makefile 
	net/mygpoclient: Makefile 
	net/nyx        : Makefile 
	net/onionshare : Makefile 
	net/pbgpp      : Makefile 
	net/poezio     : Makefile 
	net/profanity  : Makefile 
	net/py-IOSXR   : Makefile 
	net/py-IP      : Makefile 
	net/py-aiodns  : Makefile 
	net/py-boto    : Makefile 
	net/py-boto3   : Makefile 
	net/py-botocore: Makefile 
	net/py-cares   : Makefile 
	net/py-curl    : Makefile 
	net/py-cymruwhois: Makefile 
	net/py-dnslib  : Makefile 
	net/py-dnspython: Makefile 
	net/py-eapi    : Makefile 
	net/py-idna    : Makefile 
	net/py-ifaddr  : Makefile 
	net/py-junos-eznc: Makefile 
	net/py-libcloud: Makefile 
	net/py-msgpack : Makefile 
	net/py-nbxmpp  : Makefile 
	net/py-ncclient: Makefile 
	net/py-netaddr : Makefile 
	net/py-netifaces: Makefile 
	net/py-netmiko : Makefile 
	net/py-nmap    : Makefile 
	net/py-nxos    : Makefile 
	net/py-paho-mqtt: Makefile 
	net/py-pcapy   : Makefile 
	net/py-pf      : Makefile 
	net/py-ripe.atlas.cousteau: Makefile 
	net/py-ripe.atlas.sagan: Makefile 
	net/py-ripe.atlas.tools: Makefile 
	net/py-s3transfer: Makefile 
	net/py-simplesoap: Makefile 
	net/py-slixmpp : Makefile 
	net/py-smbc    : Makefile 
	net/py-socketio-client: Makefile 
	net/py-socks   : Makefile 
	net/py-stem    : Makefile 
	net/py-tld     : Makefile 
	net/py-websocket-client: Makefile 
	net/py-zeroconf: Makefile 
	net/py-zmq     : Makefile 
	net/toot       : Makefile 
	net/toxic      : Makefile 
	net/vf1        : Makefile 
	net/wget       : Makefile 
	print/py-cups  : Makefile 
	print/py-relatorio: Makefile 
	print/py-reportlab: Makefile 
	print/system-config-printer: Makefile 
	productivity/calcurse: Makefile 
	productivity/khal: Makefile 
	productivity/khard: Makefile 
	productivity/radicale: Makefile 
	productivity/radicale2: Makefile 
	productivity/rednotebook: Makefile 
	productivity/tryton/5.0/account: Makefile 
	productivity/tryton/5.0/account_asset: Makefile 
	productivity/tryton/5.0/account_be: Makefile 
	productivity/tryton/5.0/account_credit_limit: Makefile 
	productivity/tryton/5.0/account_de_skr03: Makefile 
	productivity/tryton/5.0/account_deposit: Makefile 
	productivity/tryton/5.0/account_dunning: Makefile 
	productivity/tryton/5.0/account_dunning_email: Makefile 
	productivity/tryton/5.0/account_dunning_fee: Makefile 
	productivity/tryton/5.0/account_dunning_letter: Makefile 
	productivity/tryton/5.0/account_es: Makefile 
	productivity/tryton/5.0/account_eu: Makefile 
	productivity/tryton/5.0/account_fr: Makefile 
	productivity/tryton/5.0/account_fr_chorus: Makefile 
	productivity/tryton/5.0/account_invoice: Makefile 
	productivity/tryton/5.0/account_invoice_correction: Makefile 
	productivity/tryton/5.0/account_invoice_history: Makefile 
	productivity/tryton/5.0/account_invoice_line_standalone: 
	                                                         Makefile 
	productivity/tryton/5.0/account_invoice_stock: Makefile 
	productivity/tryton/5.0/account_payment: Makefile 
	productivity/tryton/5.0/account_payment_clearing: Makefile 
	productivity/tryton/5.0/account_payment_sepa: Makefile 
	productivity/tryton/5.0/account_payment_sepa_cfonb: Makefile 
	productivity/tryton/5.0/account_product: Makefile 
	productivity/tryton/5.0/account_statement: Makefile 
	productivity/tryton/5.0/account_statement_ofx: Makefile 
	productivity/tryton/5.0/account_stock_anglo_saxon: Makefile 
	productivity/tryton/5.0/account_stock_continental: Makefile 
	productivity/tryton/5.0/account_stock_landed_cost: Makefile 
	productivity/tryton/5.0/account_stock_landed_cost_weight: 
	                                                          Makefile 
	productivity/tryton/5.0/analytic_account: Makefile 
	productivity/tryton/5.0/analytic_invoice: Makefile 
	productivity/tryton/5.0/analytic_purchase: Makefile 
	productivity/tryton/5.0/analytic_sale: Makefile 
	productivity/tryton/5.0/authentication_sms: Makefile 
	productivity/tryton/5.0/bank: Makefile 
	productivity/tryton/5.0/carrier: Makefile 
	productivity/tryton/5.0/carrier_percentage: Makefile 
	productivity/tryton/5.0/carrier_weight: Makefile 
	productivity/tryton/5.0/commission: Makefile 
	productivity/tryton/5.0/commission_waiting: Makefile 
	productivity/tryton/5.0/company: Makefile 
	productivity/tryton/5.0/company_work_time: Makefile 
	productivity/tryton/5.0/country: Makefile 
	productivity/tryton/5.0/currency: Makefile 
	productivity/tryton/5.0/customs: Makefile 
	productivity/tryton/5.0/dashboard: Makefile 
	productivity/tryton/5.0/edocument_uncefact: Makefile 
	productivity/tryton/5.0/edocument_unece: Makefile 
	productivity/tryton/5.0/google_maps: Makefile 
	productivity/tryton/5.0/notification_email: Makefile 
	productivity/tryton/5.0/party: Makefile 
	productivity/tryton/5.0/party_relationship: Makefile 
	productivity/tryton/5.0/party_siret: Makefile 
	productivity/tryton/5.0/product: Makefile 
	productivity/tryton/5.0/product_attribute: Makefile 
	productivity/tryton/5.0/product_classification: Makefile 
	productivity/tryton/5.0/product_classification_taxonomic: 
	                                                          Makefile 
	productivity/tryton/5.0/product_cost_fifo: Makefile 
	productivity/tryton/5.0/product_cost_history: Makefile 
	productivity/tryton/5.0/product_measurements: Makefile 
	productivity/tryton/5.0/product_price_list: Makefile 
	productivity/tryton/5.0/product_price_list_dates: Makefile 
	productivity/tryton/5.0/product_price_list_parent: Makefile 
	productivity/tryton/5.0/production: Makefile 
	productivity/tryton/5.0/production_outsourcing: Makefile 
	productivity/tryton/5.0/production_routing: Makefile 
	productivity/tryton/5.0/production_split: Makefile 
	productivity/tryton/5.0/production_work: Makefile 
	productivity/tryton/5.0/production_work_timesheet: Makefile 
	productivity/tryton/5.0/proteus: Makefile 
	productivity/tryton/5.0/purchase: Makefile 
	productivity/tryton/5.0/purchase_request: Makefile 
	productivity/tryton/5.0/purchase_shipment_cost: Makefile 
	productivity/tryton/5.0/sale: Makefile 
	productivity/tryton/5.0/sale_shipment_cost: Makefile 
	productivity/tryton/5.0/sale_supply: Makefile 
	productivity/tryton/5.0/sale_supply_drop_shipment: Makefile 
	productivity/tryton/5.0/stock: Makefile 
	productivity/tryton/5.0/stock_package: Makefile 
	productivity/tryton/5.0/stock_shipment_measurements: Makefile 
	productivity/tryton/5.0/stock_supply: Makefile 
	productivity/tryton/5.0/timesheet: Makefile 
	productivity/tryton/5.0/tryton: Makefile 
	productivity/tryton/5.0/trytond: Makefile 
	productivity/tryton/5.0/web_user: Makefile 
	productivity/vdirsyncer: Makefile 
	security/fierce: Makefile 
	security/letsencrypt/acme-tiny: Makefile 
	security/letsencrypt/client: Makefile 
	security/letsencrypt/py-acme: Makefile 
	security/py-M2Crypto: Makefile 
	security/py-PyNaCl: Makefile 
	security/py-aes: Makefile 
	security/py-artifacts: Makefile 
	security/py-asn1crypto: Makefile 
	security/py-axolotl: Makefile 
	security/py-axolotl-curve25519: Makefile 
	security/py-bcrypt: Makefile 
	security/py-cryptodome: Makefile 
	security/py-cryptography: Makefile 
	security/py-cryptography_vectors: Makefile 
	security/py-dfdatetime: Makefile 
	security/py-ecdsa: Makefile 
	security/py-gnupg: Makefile 
	security/py-josepy: Makefile 
	security/py-keyring: Makefile 
	security/py-libnacl: Makefile 
	security/py-oauthlib: Makefile 
	security/py-openssl: Makefile 
	security/py-paramiko: Makefile 
	security/py-passlib: Makefile 
	security/py-pbkdf2: Makefile 
	security/py-pefile: Makefile 
	security/py-pgpdump: Makefile 
	security/py-potr: Makefile 
	security/py-requests-aws4auth: Makefile 
	security/py-ropper: Makefile 
	security/py-rsa: Makefile 
	security/py-scp: Makefile 
	security/py-secretstorage: Makefile 
	security/py-service_identity: Makefile 
	security/py-yaswfp: Makefile 
	security/theharvester: Makefile 
	security/wapiti: Makefile 
	security/wesng : Makefile 
	security/yara/python: Makefile 
	shells/py-qtconsole: Makefile 
	sysutils/ansible: Makefile 
	sysutils/ansible-lint: Makefile 
	sysutils/binwalk: Makefile 
	sysutils/borgbackup: Makefile 
	sysutils/borgmatic: Makefile 
	sysutils/d-feet: Makefile 
	sysutils/diffoscope: Makefile 
	sysutils/menulibre: Makefile 
	sysutils/py-augeas: Makefile 
	sysutils/py-croniter: Makefile 
	sysutils/py-daemonize: Makefile 
	sysutils/py-elasticsearch-curator: Makefile 
	sysutils/py-ghmi: Makefile 
	sysutils/py-lockfile: Makefile 
	sysutils/py-parallel-ssh: Makefile 
	sysutils/py-psutil: Makefile 
	sysutils/py-pynetbox: Makefile 
	sysutils/py-scandir: Makefile 
	sysutils/py-statgrab: Makefile 
	sysutils/py-tsk: Makefile 
	sysutils/ranger: Makefile 
	sysutils/tarsnapper: Makefile 
	sysutils/upt/upt: Makefile 
	sysutils/upt/upt-cpan: Makefile 
	sysutils/upt/upt-openbsd: Makefile 
	sysutils/upt/upt-pypi: Makefile 
	sysutils/upt/upt-rubygems: Makefile 
	sysutils/yabitrot: Makefile 
	telephony/py-phonenumbers: Makefile 
	textproc/apertium-streamparser: Makefile 
	textproc/asciinema: Makefile 
	textproc/catfish: Makefile 
	textproc/gtk-doc: Makefile 
	textproc/libical: Makefile 
	textproc/link-grammar: Makefile 
	textproc/meld  : Makefile 
	textproc/nfoview: Makefile 
	textproc/py-ICU: Makefile 
	textproc/py-MarkupSafe: Makefile 
	textproc/py-PEG2: Makefile 
	textproc/py-alabaster: Makefile 
	textproc/py-black: Makefile 
	textproc/py-chardet: Makefile 
	textproc/py-colored: Makefile 
	textproc/py-commonmark: Makefile 
	textproc/py-cssselect: Makefile 
	textproc/py-cssutils: Makefile 
	textproc/py-defusedxml: Makefile 
	textproc/py-demjson: Makefile 
	textproc/py-dicttoxml: Makefile 
	textproc/py-docutils: Makefile 
	textproc/py-elasticsearch: Makefile 
	textproc/py-emoji: Makefile 
	textproc/py-enchant: Makefile 
	textproc/py-feedparser: Makefile 
	textproc/py-humanize: Makefile 
	textproc/py-iso8601: Makefile 
	textproc/py-jellyfish: Makefile 
	textproc/py-lxml: Makefile 
	textproc/py-m2r: Makefile 
	textproc/py-markdown: Makefile 
	textproc/py-mistune: Makefile 
	textproc/py-natsort: Makefile 
	textproc/py-nltk: Makefile 
	textproc/py-numpydoc: Makefile 
	textproc/py-ofxparse: Makefile 
	textproc/py-pandocfilters: Makefile 
	textproc/py-podcastparser: Makefile 
	textproc/py-polib: Makefile 
	textproc/py-precis_i18n: Makefile 
	textproc/py-prettytable: Makefile 
	textproc/py-pyRFC3339: Makefile 
	textproc/py-pygfm: Makefile 
	textproc/py-pygments: Makefile 
	textproc/py-pykwalify: Makefile 
	textproc/py-rdflib: Makefile 
	textproc/py-ruamel.yaml: Makefile 
	textproc/py-semver: Makefile 
	textproc/py-snowballstemmer: Makefile 
	textproc/py-spdx: Makefile 
	textproc/py-spdx-lookup: Makefile 
	textproc/py-sphinx: Makefile 
	textproc/py-sphinx-intl: Makefile 
	textproc/py-sphinx_guzzle_theme: Makefile 
	textproc/py-sphinx_rtd_theme: Makefile 
	textproc/py-stemmer: Makefile 
	textproc/py-termcolor: Makefile 
	textproc/py-textfsm: Makefile 
	textproc/py-toml: Makefile 
	textproc/py-unicodecsv: Makefile 
	textproc/py-unidecode: Makefile 
	textproc/py-vobject: Makefile 
	textproc/py-webencodings: Makefile 
	textproc/py-xlrd: Makefile 
	textproc/py-xmltodict: Makefile 
	textproc/py-yaml: Makefile 
	www/apertium-apy: Makefile 
	www/buku       : Makefile 
	www/jupyter-notebook: Makefile 
	www/liferea    : Makefile 
	www/mozilla-firefox: Makefile 
	www/pelican    : Makefile 
	www/puppetboard: Makefile 
	www/py-aiohttp : Makefile 
	www/py-autobahn: Makefile 
	www/py-beaker  : Makefile 
	www/py-beautifulsoup4: Makefile 
	www/py-betamax : Makefile 
	www/py-bleach  : Makefile 
	www/py-bokeh   : Makefile 
	www/py-bottle  : Makefile 
	www/py-cheroot : Makefile 
	www/py-django/lts: Makefile 
	www/py-django/stable: Makefile 
	www/py-feedgenerator: Makefile 
	www/py-flask   : Makefile 
	www/py-flask-login: Makefile 
	www/py-flask-wtf: Makefile 
	www/py-flup    : Makefile 
	www/py-formencode: Makefile 
	www/py-frozen-flask: Makefile 
	www/py-genshi  : Makefile 
	www/py-gunicorn: Makefile 
	www/py-http_ece: Makefile 
	www/py-httpbin : Makefile 
	www/py-httpie  : Makefile 
	www/py-httplib2: Makefile 
	www/py-hyperlink: Makefile 
	www/py-itsdangerous: Makefile 
	www/py-jinja2  : Makefile 
	www/py-jwt     : Makefile 
	www/py-mako    : Makefile 
	www/py-mastodon.py: Makefile 
	www/py-meld3   : Makefile 
	www/py-multidict: Makefile 
	www/py-ndg-httpsclient: Makefile 
	www/py-requests: Makefile 
	www/py-requests-futures: Makefile 
	www/py-requests-mock: Makefile 
	www/py-requests-oauthlib: Makefile 
	www/py-requests-toolbelt: Makefile 
	www/py-selenium: Makefile 
	www/py-tempita : Makefile 
	www/py-terminado: Makefile 
	www/py-tornado : Makefile 
	www/py-uritemplate: Makefile 
	www/py-urllib3 : Makefile 
	www/py-waitress: Makefile 
	www/py-webob   : Makefile 
	www/py-webtest : Makefile 
	www/py-werkzeug: Makefile 
	www/py-wtforms : Makefile 
	www/py-wtools  : Makefile 
	www/py-yarl    : Makefile 
	www/qutebrowser: Makefile 
	www/urlwatch   : Makefile 
	www/weboob     : Makefile 
	www/youtube-dl : Makefile 
	x11/dbus-python: Makefile 
	x11/gnome/builder: Makefile 
	x11/gnome/caribou: Makefile 
	x11/gnome/chrome-gnome-shell: Makefile 
	x11/gnome/code-assistance: Makefile 
	x11/gnome/eog-plugins: Makefile 
	x11/gnome/gedit: Makefile 
	x11/gnome/gedit-plugins: Makefile 
	x11/gnome/music: Makefile 
	x11/gnome/orca : Makefile 
	x11/gnome/py-atspi: Makefile 
	x11/gnome/shell: Makefile 
	x11/gnome/totem: Makefile 
	x11/gnome/tweaks: Makefile 
	x11/gtk+4      : Makefile 
	x11/gtk-vnc    : Makefile 
	x11/jgmenu     : Makefile 
	x11/kde-applications/cantor: Makefile 
	x11/kde-applications/kajongg: Makefile 
	x11/kde-applications/kalzium: Makefile 
	x11/menumaker  : Makefile 
	x11/nagstamon  : Makefile 
	x11/py-qt5     : Makefile 
	x11/py-qtawesome: Makefile 
	x11/py-qtpy    : Makefile 
	x11/py-virtualdisplay: Makefile 

Log message:
bump all the py3 things, _SYSTEM_VERSION didn't quite work out how
we expected and it's easier|safer to do it this way than fiddle with
pkg_add now. thanks aja for update tests with a quick bulk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/28 15:08:27

Modified files:
	astro/wcslib   : Makefile 
	audio/cmu-sphinxbase: Makefile 
	lang/classpath : Makefile 
	lang/compcert  : Makefile 
	lang/freebasic : Makefile 
	math/R         : Makefile 
	math/arpack    : Makefile 
	math/blas      : Makefile 
	math/cblas     : Makefile 
	math/lapack    : Makefile 
	math/libcerf   : Makefile 
	math/octave    : Makefile 
	math/plplot    : Makefile 
	math/py-numpy  : Makefile 
	math/py-scipy  : Makefile 
	math/qrupdate  : Makefile 
	math/suitesparse: Makefile 
	telephony/asterisk: Makefile 
	telephony/asterisk-g729: Makefile 
	x11/kde-applications/cantor: Makefile 

Log message:
Bump all ports that depend on ports-gcc on the clang archs.
SYSTEM_VERSION didn't quite work out how we expected and it's
easier|safer to do it this way than fiddle with pkg_add now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/28 15:09:17

Modified files:
	emulators/coldfire: Makefile 

Log message:
drop maintainer and sync wantlib, from outgoing maintainer martin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/04/28 15:46:35

Modified files:
	www/kcaldav    : Makefile distinfo 
Added files:
	www/kcaldav/patches: patch-ical_c 

Log message:
Update to kcaldav 0.1.9.
ok jung@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/04/28 16:15:58

Modified files:
	sys/net        : bridgectl.c bridgestp.c if.c if_bridge.c 
	                 if_bridge.h if_switch.c if_var.h if_vxlan.c 
	sys/net80211   : ieee80211_node.c 
	sys/netinet    : ip_output.c 
	sys/netinet6   : ip6_output.c 

Log message:
Removes the KERNEL_LOCK() from bridge(4)'s output fast-path.

This redefines the ifp <-> bridge relationship.  No lock can be
currently used across the multiples contexts where the bridge has
tentacles to protect a pointer, use an interface index.

Tested by various, ok dlg@, visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/28 16:35:40

Modified files:
	cad/yosys      : Makefile 
	geo/merkaartor : Makefile 

Log message:
drop workaround for gcc4.9 that is no longer needed for gcc8


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/04/28 16:48:25

src/regress/usr.bin/ssh/unittests/misc

Update of /cvs/src/regress/usr.bin/ssh/unittests/misc
In directory cvs.openbsd.org:/tmp/cvs-serv3598/misc

Log Message:
Directory /cvs/src/regress/usr.bin/ssh/unittests/misc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 16:49:11

Modified files:
	distrib/miniroot: list 

Log message:
reduce delta with ../ramdisk/list


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/04/28 16:53:26

Modified files:
	regress/usr.bin/ssh/unittests: Makefile 
Added files:
	regress/usr.bin/ssh/unittests/misc: Makefile tests.c 

Log message:
Add unit tests for user@host and URI parsing.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/28 18:35:58

Modified files:
	lang/ruby      : ruby.port.mk 

Log message:
Make ruby 2.6 the default ruby version


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/28 18:37:36

Modified files:
	devel/ruby-bundler: Makefile 
Added files:
	devel/ruby-bundler/pkg: PLIST.nobin 

Log message:
Make ruby26 version of bundler not include bin files

This makes it not conflict with the ruby 2.6 port.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/28 18:39:03

Modified files:
	devel/ruby-minitest: Makefile 
Added files:
	devel/ruby-minitest/pkg: PLIST.empty 

Log message:
Make ruby26 version of minitest use empty PLIST

All of these files are included in ruby 2.6.  This is simpler than modifying
dependencies to not depend on minitest when using ruby 2.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/28 18:40:35

Modified files:
	x11/kde4/ruby-qt: Makefile 
	x11/kde4/ruby-qt/pkg: PLIST 

Log message:
Support building ruby-qt4 with ruby 2.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/04/28 18:42:09

Modified files:
	databases/puppetdb4: Makefile 
	databases/puppetdb5: Makefile 
	devel/gitsh    : Makefile 
	devel/vim-command-t: Makefile 
	editors/vim    : Makefile 
	lang/mruby     : Makefile 
	mail/mew       : Makefile 
	misc/tpp       : Makefile 
	net/weechat    : Makefile 
	net/whatweb    : Makefile 
	security/arirang: Makefile 
	security/wpscan: Makefile 
	sysutils/facter: Makefile 
	sysutils/mcollective: Makefile 
	sysutils/ruby-puppet/4: Makefile 
	sysutils/ruby-puppet/5: Makefile 
	sysutils/tmuxinator: Makefile 
	www/nginx      : Makefile 
	www/sass       : Makefile 
	x11/gnome/code-assistance: Makefile 
	x11/kde4/korundum: Makefile 
	x11/kde4/kross-interpreters: Makefile 
	x11/kde4/webdev: Makefile 
	x11/kde4/workspace: Makefile 

Log message:
Bump after default ruby version change to ruby 2.6


CVSROOT:	/cvs
Module name:	src
Changes by:	jeremy@cvs.openbsd.org	2019/04/28 18:44:53

Modified files:
	share/man/man5 : ruby-module.5 

Log message:
Update to reflect change of default ruby version to ruby 2.6


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/28 19:48:41

Modified files:
	distrib/alpha  : Makefile.inc 
	distrib/alpha/bsd.rd: Makefile 
	distrib/alpha/common: Makefile.inc list 
	distrib/alpha/miniroot: Makefile 
	distrib/amd64  : Makefile.inc 
	distrib/amd64/cdfs: Makefile 
	distrib/amd64/common: list 
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
	distrib/arm64/miniroot: Makefile 
	distrib/arm64/ramdisk: Makefile list 
	distrib/armv7/miniroot: Makefile.inc 
	distrib/armv7/ramdisk: Makefile list 
	distrib/hppa   : Makefile.inc list 
	distrib/hppa/iso: Makefile 
	distrib/hppa/ramdisk: Makefile 
	distrib/i386   : Makefile.inc 
	distrib/i386/cdfs: Makefile 
	distrib/i386/common: Makefile.inc list 
	distrib/i386/iso: Makefile 
	distrib/landisk/miniroot: Makefile 
	distrib/landisk/ramdisk: Makefile list 
	distrib/loongson: Makefile.inc 
	distrib/loongson/cdfs: Makefile 
	distrib/loongson/miniroot: Makefile 
	distrib/loongson/ramdisk: Makefile list 
	distrib/luna88k: Makefile.inc 
	distrib/luna88k/miniroot: Makefile 
	distrib/luna88k/ramdisk: Makefile Makefile.inc list 
	distrib/macppc/ramdisk: Makefile list 
	distrib/miniroot: list 
	distrib/octeon/miniroot: Makefile 
	distrib/octeon/ramdisk: Makefile list 
	distrib/ramdisk: Makefile list 
	distrib/sgi    : Makefile.inc 
	distrib/sgi/cdfs: Makefile 
	distrib/sgi/iso: Makefile 
	distrib/sgi/ramdisk: Makefile list 
	distrib/socppc/miniroot: Makefile 
	distrib/socppc/ramdisk: Makefile list 
	distrib/sparc64: Makefile.inc 
	distrib/sparc64/bsd.rd: Makefile list 
	distrib/sparc64/cdfs: Makefile 
	distrib/sparc64/common: Makefile.inc 
	distrib/sparc64/iso: Makefile 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdisk: Makefile list 
	distrib/sparc64/ramdiskB: Makefile list 

Log message:
remove the abstraction REV on top of abstraction OSrev which is always
the sme.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/28 21:54:52

Modified files:
	sys/net        : trunklacp.c 

Log message:
don't have lacp input push lacp packets into the trunkports bpf again.

if_input already runs bpf for all packets on a trunkport. having
lacp code do it again means packets are seen twice by bpf filters
twice, which is misleading.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/04/28 22:26:47

Modified files:
	sys/net        : if_trunk.c if_trunk.h 

Log message:
tr_unit is unused, so gc it


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/04/28 22:30:15

Modified files:
	lib/libdrm/man : drm.7 drm.xml 

Log message:
/dev/dri/card0 -> /dev/drm0


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/04/28 23:14:38

Modified files:
	usr.sbin/ospfd : parse.y 
	usr.sbin/ospf6d: parse.y 

Log message:
Check that depend on interfaces are in the same rdomain. If they are not
the daemon wouldn't notice state changes for those interfaces.

ok benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/29 00:43:23

Modified files:
	devel/meson    : Makefile 
Added files:
	devel/meson/patches: patch-mesonbuild_modules_cmake_py 

Log message:
Fix the cmake module (from upstram).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/29 00:55:21

Modified files:
	usr.bin/tmux   : key-bindings.c window-copy.c 

Log message:
Add support for keys to jump between matching brackets - C-M-f and C-M-b
in emacs, % in vi. Suggested by and help from Chris Barber in GitHub
issue 1666.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/04/29 02:24:06

Modified files:
	net/amule      : Makefile 
	net/amule/pkg  : PLIST-main 

Log message:
Disable UPnP support

net/libupnp update is coming, but amule's latest release (from 2016) fails
to build with it, so disable this feature to avoid blocking the update and
other consumers.

OK juanfra solene


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/29 02:25:23

Modified files:
	multimedia/minidlna: Makefile 
	multimedia/minidlna/pkg: README 

Log message:
Extend description to configure limits or to disable kqueue(2) monitoring.

ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	www
Changes by:	phessler@cvs.openbsd.org	2019/04/29 02:45:30

Modified files:
	.              : 65.html 

Log message:
arm (armv7) package count


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/04/29 02:52:48

Modified files:
	math/R         : Makefile distinfo 
	math/R/patches : patch-configure 
	math/R/pkg     : PLIST 
Removed files:
	math/R/patches : patch-src_modules_internet_libcurl_c 

Log message:
Update to R 3.6.0

OK kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/04/29 03:00:17

Modified files:
	sys/dev/pci    : if_iwn.c 

Log message:
Extend channel dwell time during passive scans in iwn(4).
Makes scan results more reliable.
testing jmc@, kmos@, Tracey Emery
ok kettenis@ kevlo@ jmc@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/29 05:06:31

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-src_providers_mdal_CMakeLists_txt 

Log message:
Update to QGIS 3.6.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/29 05:38:17

Modified files:
	multimedia/libmp4v2: Makefile 

Log message:
libmp4v2: use C++03 for any compiler
This fixes the build with ports-gcc-8.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/29 05:44:01

Modified files:
	devel/llvm     : Makefile 

Log message:
Disable -extras for now, it changes the content of the -main subpackage.

Breakage in devel/include-what-you-use reported by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/29 05:46:07

Modified files:
	net/toxcore    : Makefile 

Log message:
toxcore: define COMPILER, as the build use flags that don't exist
for base-gcc.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/04/29 05:52:20

Modified files:
	www/nextcloud  : Makefile distinfo 
	www/nextcloud/pkg: PLIST 

Log message:
Update for Nextcloud to 16.0.0:

https://nextcloud.com/changelog/

Fart cloud all the things!

OK stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/29 05:56:40

Modified files:
	devel/llvm     : Makefile 

Log message:
Bump the -main subpackage to clean up the changes from -extras.

Discussed with sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/29 06:37:52

Modified files:
	devel/llvm     : Makefile 

Log message:
Reorder Makefile, add explicit CONFIGURE_STYLE


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/29 06:55:44

Log message:
    Import py-nbval-0.9.1
    
    py.test plugin to validate Jupyter notebooks
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	bket
    Release Tags:	bket_20190429
    
    N ports/devel/py-nbval/Makefile
    N ports/devel/py-nbval/distinfo
    N ports/devel/py-nbval/pkg/DESCR
    N ports/devel/py-nbval/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/29 06:58:56

Modified files:
	devel          : Makefile 

Log message:
+py-nbval,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/29 07:05:01

Log message:
    Import py-prometheus_client-0.6.0.
    
    Python client for the prometheus monitoring system.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	bket
    Release Tags:	bket_20190429
    
    N ports/sysutils/py-prometheus_client/Makefile
    N ports/sysutils/py-prometheus_client/distinfo
    N ports/sysutils/py-prometheus_client/pkg/DESCR
    N ports/sysutils/py-prometheus_client/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/04/29 07:05:57

Modified files:
	sysutils       : Makefile 

Log message:
+py-prometheus_client,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/29 07:38:05

Modified files:
	www/uriparser  : Makefile distinfo 
	www/uriparser/pkg: PLIST 

Log message:
Update to uriparser-0.9.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/29 07:57:43

Modified files:
	sysutils/diffoscope: Makefile distinfo 
	sysutils/diffoscope/patches: patch-tests_utils_tools_py 
	sysutils/diffoscope/pkg: PLIST 

Log message:
Update to diffoscope-114


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/29 08:28:57

Modified files:
	security/gnutls: Makefile 

Log message:
drop workaround for gcc4.9 that is no longer needed for gcc8
ok cwen@ ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/29 08:34:19

Modified files:
	devel/readline : Makefile 

Log message:
Link ereadline with curses, like we do with base readline, to prevent
runtime errors on archs where ld == ld.lld
ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/29 09:01:27

Modified files:
	www/wwwoffle   : Makefile 

Log message:
don't pick up gtar in configure


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/29 09:10:16

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	lang           : Makefile 
Removed files:
	lang/classpath : Makefile distinfo 
	lang/classpath/files: ecj.in 
	lang/classpath/patches: patch-doc_texi2pod_pl 
	                        patch-examples_Makefile_in 
	                        patch-gnu_classpath_SystemProperties_java 
	                        patch-include_Makefile_in 
	                        patch-native_jni_gtk-peer_gnu_java_awt_peer_gtk_FreetypeGlyphVector_c 
	                        patch-native_jni_gtk-peer_gnu_java_awt_peer_gtk_GdkFontPeer_c 
	                        patch-resource_Makefile_am 
	                        patch-resource_Makefile_in 
	                        patch-tools_gjdoc_in 
	lang/classpath/pkg: DESCR PLIST 
	lang/jamvm     : Makefile distinfo 
	lang/jamvm/patches: patch-configure patch-src_hooks_c 
	lang/jamvm/pkg : DESCR PLIST 

Log message:
GCC 7+ no longer provides a Java compiler (gcj).  Remove the ports that
depended on it.  Reminded by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/29 09:27:01

Modified files:
	lang/gcc/8     : gcc4.port.mk 

Log message:
stop special handling of MODGCC4_LANGS=java; it's gone from the tree


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/04/29 09:46:11

Modified files:
	sys/dev/ic     : mc146818reg.h 

Log message:
MC146818_GETTOD: Check for RTC rollover during read.

Because the RTC is still ticking it is theoretically possible for the
second to roll over while we are reading the clock.  This is basically
impossible on real/practical hardware but is an interesting corner case
for e.g. a VM reading an emulated MC146818 during an exit to userspace.

This doesn't check *every* register, so if it takes you a multiple of
60 seconds to read the RTC this change won't help you.  But you've got
bigger problems at that point.

"no objections" kettenis@/mlarkin@, "fine idea" deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/29 09:50:10

Modified files:
	net/unifi/stable: Makefile distinfo 
	net/unifi/testing: Makefile distinfo 

Log message:
update to unifi 5.10.21


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/29 09:55:21

Modified files:
	graphics/leptonica: Makefile distinfo 
	graphics/leptonica/pkg: PLIST 

Log message:
update to leptonica-1.78.0

the new bin/imagetops is renamed to imagetops.leptonica to avoid a
conflict with kde-libs3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/29 09:55:42

Modified files:
	x11/kde/libs3  : Makefile 

Log message:
add a comment mentioning the rename in graphics/leptonica, so it can be
undone if kde/libs3 is ever removed


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/29 09:56:26

Modified files:
	distrib/alpha/bsd.rd: Makefile 
	distrib/alpha/cdfs: Makefile 
	distrib/alpha/common: Makefile.inc 
	distrib/alpha/iso: Makefile 
	distrib/alpha/miniroot: Makefile 
	distrib/amd64/cdfs: Makefile 
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
	distrib/arm64/ramdisk: Makefile 
	distrib/armv7/ramdisk: Makefile 
	distrib/hppa/iso: Makefile 
	distrib/i386/cdfs: Makefile 
	distrib/i386/common: Makefile.inc 
	distrib/i386/iso: Makefile 
	distrib/landisk/ramdisk: Makefile 
	distrib/loongson/cdfs: Makefile 
	distrib/loongson/ramdisk: Makefile 
	distrib/luna88k/miniroot: Makefile 
	distrib/luna88k/ramdisk: Makefile Makefile.inc 
	distrib/macppc/iso: Makefile 
	distrib/macppc/ramdisk: Makefile 
	distrib/octeon/ramdisk: Makefile 
	distrib/sgi/cdfs: Makefile 
	distrib/sgi/iso: Makefile 
	distrib/sgi/ramdisk: Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64/bsd.rd: Makefile 
	distrib/sparc64/cdfs: Makefile 
	distrib/sparc64/common: Makefile.inc 
	distrib/sparc64/iso: Makefile 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
TOPDIR and TOP are not neccessary.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/29 09:56:45

Removed files:
	distrib/alpha  : Makefile.inc 
	distrib/alpha/inst-common: Makefile.inc 
	distrib/amd64  : Makefile.inc 
	distrib/hppa   : Makefile.inc 
	distrib/i386   : Makefile.inc 
	distrib/loongson: Makefile.inc 
	distrib/luna88k: Makefile.inc 
	distrib/sgi    : Makefile.inc 
	distrib/sparc64: Makefile.inc 

Log message:
These Makefile.inc are now empty and unused.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/04/29 10:04:05

Modified files:
	usr.sbin/snmpd : snmpe.c 

Log message:
Remove unnecessary end-of-contents octets.

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/04/29 10:12:28

Modified files:
	x11/icewm      : Makefile distinfo 
	x11/icewm/patches: patch-man_icewm-preferences_pod 
	                   patch-src_icesh_cc patch-src_yapp_cc 
	x11/icewm/pkg  : PLIST 
Added files:
	x11/icewm/patches: patch-lib_themes_default_default_theme 

Log message:
Update to icewm-1.5.4
While here, change default background to a solid blue color.
Background change, macppc testing, and ok cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/29 10:27:26

Modified files:
	security/yubico: Makefile.inc 
	security/yubico/yubico-c: Makefile 
	security/yubico/yubico-c-client: Makefile 
	security/yubico/yubikey-personalization: Makefile 
	security/yubico/yubikey-personalization-gui: Makefile 

Log message:
move MAINTAINER from Makefile.inc to the ports where I actually want it


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/29 10:27:52

Modified files:
	security/yubico: Makefile 
	security/yubico/yubico-piv-tool: Makefile 

Log message:
bump REVISION


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/29 10:28:45

Modified files:
	security/yubico: Makefile 

Log message:
oops, backout accidentally committed file


CVSROOT:	/cvs
Module name:	src
Changes by:	tobias@cvs.openbsd.org	2019/04/29 11:11:52

Modified files:
	lib/libevent   : event.c event.h min_heap.h 

Log message:
Switched min_heap to size_t to prevent integer overflows.

Also, as deraadt suggested, switched realloc to recallocarray to at least
prevent uninitialized memory to be used as pointers in case of other
programming errors. A proper solution (not using an array) needs more work.

This change occured in sync with upstream libevent 2.2.

with input by and ok bluhm, jca, tedu


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/29 11:43:01

Modified files:
	x11/gnome      : Makefile 

Log message:
unhook code-assistance


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/29 11:46:56

Modified files:
	x11/gnome      : Makefile 
Removed files:
	x11/gnome/gedit-code-assistance: Makefile distinfo 
	x11/gnome/gedit-code-assistance/pkg: DESCR PLIST 
	x11/gnome/code-assistance: Makefile distinfo 
	x11/gnome/code-assistance/patches: 
	                                   patch-backends_vala_valaoptionparser_vala 
	                                   patch-configure 
	x11/gnome/code-assistance/pkg: DESCR PLIST 

Log message:
remove {gnome,gedit}-code-assistance, the grand unification approach of all things
code-assistance in gnome never really took off and this project has been
quite dormant in recent years.

ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/29 11:48:38

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register {gnome,gedit}-code-assistance removal


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/04/29 11:55:54

Modified files:
	distrib/ramdisk: Makefile 

Log message:
$() is expanded by make itself, so consistently use `cat vnd`; ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/29 11:57:33

Added files:
	x11/gnome/calculator/patches: patch-lib_equation-parser_vala 

Log message:
proactively fix build with vala 0.44; from upstream git


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/29 12:01:13

Modified files:
	graphics/simple-scan/patches: patch-src_simple-scan_vala 

Log message:
proactively fix build with vala 0.44; from upstream git


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/29 12:03:48

Added files:
	devel/vte3/patches: patch-bindings_vala_app_vala 

Log message:
proactively fix build with vala 0.44; from upstream git


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/29 12:15:47

Added files:
	sysutils/deja-dup/patches: 
	                           patch-deja-dup_AssistantRestoreMissing_vala 
	                           patch-deja-dup_AssistantRestore_vala 
	                           patch-libdeja_CommonUtils_vala 
	                           patch-libdeja_OperationRestore_vala 
	                           patch-libdeja_ToolPlugin_vala 

Log message:
proactively fix build with vala 0.44; mostly from upstream git


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/04/29 12:54:12

Modified files:
	sbin/disklabel : disklabel.8 editor.c 
	sbin/fdisk     : fdisk.8 user.c 

Log message:
Add '*' to disklabel(8) editor prompt when in-memory copy of disklabel
has been modified. Use name of disk being edited in fdisk(8) editor
prompt.

Idea from tb@.

ok tb@ deraadt@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tim@cvs.openbsd.org	2019/04/29 13:02:21

Modified files:
	app/cwm        : xevents.c 

Log message:
Handle _NET_WM_NAME changes.

This fixes the problem where cwm's window menu wouldn't show Firefox's current
window title if it contains non-ASCII characters.

OK okan@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	tim@cvs.openbsd.org	2019/04/29 13:03:20

Modified files:
	app/cwm        : util.c 

Log message:
Plug a memory leak in log_debug(); OK okan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/29 13:33:38

Modified files:
	x11/qt4        : Makefile 
	x11/qt4/patches: patch-configure 
	x11/qt4/pkg    : DESCR-main 
Added files:
	x11/qt4/patches: patch-src_corelib_tools_tools_pri 
	                 patch-src_xmlpatterns_api_qcoloroutput_p_h 

Log message:
qt4: add fixes to allow building with ports-gcc-8
They mostly consist to make gcc-8 pose as gcc-4.9.
Bump SHARED_LIBS due to an ICU-related qtcore change.
While here, fix trailing whitespaces in DESCR and move
HOMEPAGE to https.

OK sthen@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/29 15:09:48

Modified files:
	sysutils/ansible: Makefile 

Log message:
add RDEP on py-netaddr to ansible, it is used by the ipaddr() filter which
isn't needed everywhere but is common enough to be worth having work out of
the box.  ok jasper@


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/04/29 16:14:30

Modified files:
	faq/ports      : guide.html 

Log message:
Lines in DESCR should try and be less than 80 characters

OK sthen@ "sigh, the porting guide is wrong :-)"


CVSROOT:	/cvs
Module name:	src
Changes by:	ian@cvs.openbsd.org	2019/04/29 16:27:39

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Install upgrade kernel with ln -f, as per kernel build. ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/04/29 17:50:34

Modified files:
	distrib/miniroot: install.sub 

Log message:
Make v[46]_info() return all the interface flags instead of just
deducing that the interface is up or down. Check for "UP," in the
returned flags where a return value of UP was used previously.

ok kn@ with feedback/optimizations to be pondered further.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/29 19:39:19

Modified files:
	sys/dev/pci/drm: drm_fb_helper.c 

Log message:
Add an equivalent test for master in drm_fb_helper_is_bound()
Prevents black screens on hotplugging a new display with Xorg running
which required a vt switch for screens to be useable.

Reported by various people on misc@.  Tested by and ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/04/29 19:45:04

Modified files:
	sys/dev/pci/drm: drm_fb_helper.c 

Log message:
Convert a linux specific test for master in currently disabled code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/04/29 20:11:35

Modified files:
	www/p5-Mojo    : Makefile distinfo 

Log message:
Update www/p5-Mojo to 8.15

From MAINTAINER Manolis Tzanidakis <mtzanidakis AT gmail.com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/29 22:46:04

Modified files:
	net/dico       : Makefile distinfo 
	net/dico/files : dicod.conf 

Log message:
Update to dico-2.9.

The pidfile is now written to the right directory by default, so setting
it in the config file is no longer required.

Take maintainership.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/29 23:35:01

Modified files:
	devel/pkgconf  : Makefile distinfo 

Log message:
Update to pkgconf-1.6.0, and update homepage.

From Adam Steen (maintainer); thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/29 23:41:19

Modified files:
	fonts/ubuntu-fonts: Makefile distinfo 

Log message:
Update homepage/master_sites.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/29 23:46:32

Modified files:
	fonts/ubuntu-fonts: Makefile 

Log message:
Missed bump.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/29 23:48:53

Modified files:
	fonts/ubuntu-fonts: Makefile 

Log message:
Update (dead) license URL too.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/30 00:19:52

Modified files:
	usr.bin/tmux   : window-tree.c 

Log message:
Fix memory leak in window tree search, from Amos Bird.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/30 00:21:30

Modified files:
	usr.bin/tmux   : cmd-select-pane.c 

Log message:
Don't redraw control clients, from George Nachman.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/30 00:44:30

Modified files:
	graphics/ipe   : Makefile distinfo 
	graphics/ipe/patches: patch-src_common_mak patch-src_config_mak 
	                      patch-src_ipe6upgrade_Makefile 
	                      patch-src_ipe_lua_prefs_lua 
	                      patch-src_ipeextract_Makefile 
	                      patch-src_ipelib_ipelatex_cpp 
	                      patch-src_ipelib_ipeplatform_cpp 
	                      patch-src_ipetoipe_Makefile 
	                      patch-src_ipetoipe_ipetoipe_cpp 
	graphics/ipe/pkg: PLIST 

Log message:
Update to ipe-7.2.11.

Release notes:
https://mailman.science.uu.nl/pipermail/ipe-announce/2019-February/000077.html
https://mailman.science.uu.nl/pipermail/ipe-announce/2019-March/000082.html

From Alessandro De Laurenzis (maintainer); thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/30 01:15:06

Modified files:
	devel/glib2/patches: patch-gio_tests_meson_build 

Log message:
Merged upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/30 01:21:58

Modified files:
	cad/yosys      : Makefile 
Added files:
	cad/yosys/patches: patch-passes_cmds_show_cc 

Log message:
Enable "show" functionality.

From Alessandro De Laurenzis (maintainer); thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/30 01:28:32

Modified files:
	infrastructure/db: user.list 

Log message:
Reserve a user for honk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/04/30 01:52:12

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_5 Makefile distinfo 
	www/nextcloud/pkg: Tag: OPENBSD_6_5 PLIST 

Log message:
Update for Nextcloud to 16.0.0:

https://nextcloud.com/changelog/

Fart cloud all the things!

OK stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/04/30 01:54:06

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_4 Makefile distinfo 
	www/nextcloud/pkg: Tag: OPENBSD_6_4 PLIST 

Log message:
Update for Nextcloud to 16.0.0:

https://nextcloud.com/changelog/

Fart cloud all the things!

OK stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/30 01:58:18

Log message:
    Import honk-0.3.0.
    
    honk is the world's first provably correct social media application. Take
    control of your honks and join the federation in the fight against the evil
    empire. Send honks. Receive honks. And not just honks. Bonk, donk, tonk, all
    your favorite activities are here.
    
    From Horia Racoviceanu; thanks!
    
    ok jturner@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190430
    
    N ports/www/honk/Makefile
    N ports/www/honk/distinfo
    N ports/www/honk/pkg/DESCR
    N ports/www/honk/pkg/PLIST
    N ports/www/honk/pkg/honk.rc
    N ports/www/honk/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/04/30 02:00:14

Modified files:
	www            : Makefile 

Log message:
+honk


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/04/30 02:08:28

Modified files:
	openbgpd       : papers.html 

Log message:
Add some presentations I gave in the last year. Seems the only things missing.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/30 02:51:13

Modified files:
	net/dnscrypt-proxy: Makefile distinfo 
	net/dnscrypt-proxy/pkg: DESCR README 

Log message:
update to dnscrypt-proxy-2.0.23, from Nam Nguyen who takes maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/04/30 02:51:25

Modified files:
	emulators/gxemul: Makefile distinfo 
	emulators/gxemul/pkg: PLIST 

Log message:
Update gxemul to 0.6.1 and take maintainership.

OK bentley@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/30 03:31:23

Modified files:
	net/blaeu      : Makefile 
	net/blaeu/pkg  : PLIST 

Log message:
unbreak; don't use FULLPKGNAME in plists


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2019/04/30 04:45:53

Modified files:
	textproc/docbook2mdoc: Makefile distinfo 

Log message:
update to docbook2mdoc-1.0.2:
support for <abstract> and <reference> and internal framework
improvents, in particular for creating, editing, and moving nodes;
now good enough for /usr/xenocara/doc/xorg-docs/general/input/XKB-*.xml;
OK bentley@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/04/30 04:51:33

Modified files:
	mail/mu        : Makefile 

Log message:
Drop maintainership


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/04/30 04:54:58

Modified files:
	openbgpd       : index.html 
Added files:
	openbgpd       : mail.html 

Log message:
There is now a openbgpd users mailing list for people using OpenBGPD or
OpenBGPD-portable. Development will still go via tech@ and bugs should
be reported on bugs@. Lets try to keep this list low volume.
mail.html is mostly based on the OpenBSD version and maybe overkill.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/30 05:08:11

Modified files:
	sysutils/deja-dup: Makefile distinfo 
	sysutils/deja-dup/pkg: PLIST 
Removed files:
	sysutils/deja-dup/patches: patch-CMakeLists_txt 
	                           patch-deja-dup_preferences_CMakeLists_txt 
	                           patch-deja-dup_preferences_Preferences_vala 
	                           patch-deja-dup_widgets_ConfigList_vala 
	                           patch-deja-dup_widgets_ConfigLocation_vala 
	                           patch-libdeja_PythonChecker_vala 
	                           patch-man_CMakeLists_txt 

Log message:
Update to deja-dup-40.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/04/30 05:09:11

Modified files:
	sbin/unwind    : unwind.c 

Log message:
Restrict file system access to /var/db for the dhclient lease files.
This and pledge("rpath") can go once we switch to RTM_PROPOSAL.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/30 05:27:46

Removed files:
	sysutils/deja-dup/patches: 
	                           patch-deja-dup_AssistantRestoreMissing_vala 
	                           patch-deja-dup_AssistantRestore_vala 
	                           patch-libdeja_CommonUtils_vala 
	                           patch-libdeja_OperationRestore_vala 
	                           patch-libdeja_ToolPlugin_vala 

Log message:
Forfot to remove those.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/30 05:48:03

Modified files:
	usr.bin/mandoc : mandoc.1 

Log message:
improve the description of the message "blank line in fill mode";
triggered by a misunderstanding by sashan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/04/30 06:16:46

Modified files:
	devel/radare2/bindings: Makefile distinfo 
	devel/radare2/main: Makefile distinfo 
	devel/radare2/main/pkg: PLIST 

Log message:
Update devel/radare2 to version 3.4.1.

From David Carlier, OK bentley@. Thanks!


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/04/30 06:22:30

Modified files:
	build          : Makefile 
	build/mirrors  : openbgpd-ftp.html.head 

Log message:
After a long long time OpenBGPD-portable is back.
This is the first release of a real portable project based on what
is in OpenBSD 6.5.


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/04/30 06:29:48

Modified files:
	openbgpd       : ftp.html 

Log message:
Sync ftp.html now that OpenBGPD-portable 6.5p0 is released


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/04/30 06:43:59

Modified files:
	.              : innovations.html 

Log message:
add unwind(8) entry and release information for rad(8);
patch from Raf Czlonka <rczlonka at gmail dot com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/04/30 06:50:29

Modified files:
	games/stone-soup: Makefile 

Log message:
- switch HOMEPAGE to HTTPS
- sort according to Makefile.template


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/04/30 07:04:13

Modified files:
	.              : innovations.html 

Log message:
add openrsync(1) and docbook2mdoc(1)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/30 07:15:33

Modified files:
	lang/gcc/8     : Makefile 

Log message:
use ld.bfd to link gcc/8 on i386 to unbreak; I haven't figured out how to
pass notext across yet and having this broken knocks out getting on for
a quarter of the ports tree on i386 (mostly via fortran).


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/04/30 07:22:09

Modified files:
	.              : innovations.html 

Log message:
for styling, rely on the already-included openbsd.css
rather than having manual colour attributes;
fixes HTML deprecation issues reported by validator.w3.org;
no text change


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/04/30 07:47:43

Modified files:
	openbgpd       : mail.html 

Log message:
trim this page down to just what's needed. ok claudio


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/04/30 08:04:53

Modified files:
	meta/gnome     : Makefile 

Log message:
Unbreak: remove x11/gnome/code-assistance

on behalf of jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/30 08:41:35

Modified files:
	databases/freetds: Makefile distinfo 

Log message:
update to freetds-1.1.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/30 08:46:48

Modified files:
	graphics/png   : Makefile distinfo 
Added files:
	graphics/png/patches: patch-Makefile_in 

Log message:
Security update of graphics/png to 1.6.37:
CVE-2019-7317: use-after-free in png_image_free()

Switch library soname from libpng16.so to libpng.so by changing the primary
name in the build.  Bump major version.

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/04/30 09:06:33

Modified files:
	net/amule      : Makefile 

Log message:
Remove ixml (libupnp) from WANTLIB as well

Missed in previous commit.

Spotted by naddy, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/30 09:25:50

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-includes_defaults_inc_php 
	net/librenms/pkg: PLIST 

Log message:
update to librenms-1.51


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/04/30 09:51:53

Modified files:
	sys/kern       : kern_tc.c 

Log message:
tc_setclock: always call tc_windup() before leaving windup_mtx.

We ought to conform to the windup_mtx protocol and call tc_windup() even
if we aren't changing the system uptime.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/30 09:52:42

Modified files:
	usr.bin/mandoc : html.c html.h man_html.c roff_html.c 
	regress/usr.bin/mandoc/roff/ft: badargs.out_html 

Log message:
In HTML output, allow switching the desired font for subsequent
text without printing an opening tag right away, and use that in
the .ft request handler.  While here, garbage collect redundant
enum htmlfont and reduce code duplication in print_text().
Fixing an assertion failure reported by Michael <Stapelberg at Debian>
in pmRegisterDerived(3) from libpcp3-dev.


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/04/30 10:22:24

Modified files:
	build/mirrors  : openbgpd-ftp.html.head 

Log message:
Correct github link. From Pierre Emeriaud


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/04/30 10:23:08

Modified files:
	openbgpd       : ftp.html 

Log message:
Regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/04/30 10:34:19

Modified files:
	sbin/route     : route.8 
	share/man/man4 : route.4 

Log message:
elaborate a little on how route priorities work;
help/ok claudio


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/04/30 10:45:26

Modified files:
	net/libtorrent-rasterbar: Makefile distinfo 
	net/libtorrent-rasterbar/patches: 
	                                  patch-include_libtorrent_config_hpp 
	net/libtorrent-rasterbar/pkg: PLIST 

Log message:
update to libtorrent-rasterbar 1.1.13

ok bentley


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/04/30 11:05:15

Modified files:
	usr.sbin/hotplugd: hotplugd.c 

Log message:
Restrict filesystem access with unveil(2):

First it needs to open(2) `device' with read permissions, /dev/hotplug by
default but can be changed via arguments. Then it needs read/execute on both
_PATH_ETC_HOTPLUG_{ATTACH,DETACH} to access(2) and execl(3) them.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/30 11:37:29

Modified files:
	geo/mdal       : Makefile distinfo 

Log message:
Update to mdal 0.3.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/04/30 11:38:31

Removed files:
	geo/mdal/patches: patch-tests_CMakeLists_txt 

Log message:
Remove upstreamed patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/30 11:40:35

Modified files:
	lang/vala      : Makefile distinfo 
	lang/vala/pkg  : PLIST-main 
Removed files:
	lang/vala/patches: no_valadoc-patch-Makefile_in 
	                   no_valadoc-patch-configure_ac 

Log message:
update to vala-0.44.3

tested in a bulk by aja, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/30 11:41:56

Modified files:
	x11/gnome/builder: Makefile 
	x11/gnome/libgda: Makefile 

Log message:
sync WANTLIB after vala update


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/30 11:42:31

Modified files:
	x11/gnome/gjs  : Makefile distinfo 
	x11/gnome/gjs/pkg: PLIST 

Log message:
update to gjs-1.56.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/04/30 11:43:15

Modified files:
	devel/gobject-introspection: Makefile distinfo 
	devel/gobject-introspection/pkg: PLIST 

Log message:
update to gobject-introspection-1.60.1


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 11:46:06

Modified files:
	distrib/alpha  : Makefile 
	distrib/alpha/iso: Makefile 
	distrib/alpha/miniroot: Makefile 
	distrib/amd64/cdfs: Makefile 
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdiskA: Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
	distrib/arm64  : Makefile 
	distrib/arm64/ramdisk: Makefile 
	distrib/armv7/miniroot: Makefile.inc 
	distrib/armv7/ramdisk: Makefile list 
	distrib/hppa/iso: Makefile 
	distrib/hppa/ramdisk: Makefile list.local 
	distrib/i386/cdfs: Makefile 
	distrib/i386/iso: Makefile 
	distrib/i386/ramdisk: Makefile list.local 
	distrib/i386/ramdisk_cd: Makefile 
	distrib/landisk: Makefile 
	distrib/landisk/ramdisk: Makefile 
	distrib/loongson: Makefile 
	distrib/loongson/ramdisk: Makefile 
	distrib/luna88k: Makefile 
	distrib/luna88k/ramdisk: Makefile 
	distrib/macppc/iso: Makefile 
	distrib/macppc/ramdisk: Makefile 
	distrib/miniroot: list2sh.awk 
	distrib/octeon : Makefile 
	distrib/octeon/ramdisk: Makefile 
	distrib/ramdisk: Makefile 
	distrib/sgi    : Makefile 
	distrib/sgi/cdfs: Makefile 
	distrib/sgi/iso: Makefile 
	distrib/sgi/ramdisk: Makefile 
	distrib/socppc : Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64: Makefile 
	distrib/sparc64/cdfs: Makefile 
	distrib/sparc64/iso: Makefile 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 
Added files:
	distrib/alpha/miniroot: list.local 
	distrib/sparc64/miniroot: list 
Removed files:
	distrib/alpha/bsd.rd: Makefile list.local 
	distrib/alpha/cdfs: Makefile 
	distrib/alpha/common: Makefile.inc 
	distrib/alpha/floppy: Makefile 
	distrib/alpha/floppyB: Makefile 
	distrib/alpha/floppyC: Makefile 
	distrib/amd64/ramdiskA: Makefile.inc 
	distrib/amd64/ramdisk_cd: Makefile.inc 
	distrib/arm64/miniroot: Makefile 
	distrib/arm64/ramdisk: Makefile.inc 
	distrib/armv7/ramdisk: Makefile.inc 
	distrib/i386/common: Makefile.inc 
	distrib/landisk/miniroot: Makefile 
	distrib/landisk/ramdisk: Makefile.inc 
	distrib/loongson/cdfs: Makefile 
	distrib/loongson/miniroot: Makefile 
	distrib/loongson/ramdisk: Makefile.inc 
	distrib/luna88k/miniroot: Makefile 
	distrib/luna88k/ramdisk: Makefile.inc 
	distrib/macppc/ramdisk: Makefile.inc 
	distrib/octeon/miniroot: Makefile 
	distrib/octeon/ramdisk: Makefile.inc 
	distrib/sgi/ramdisk: Makefile.inc 
	distrib/socppc/miniroot: Makefile 
	distrib/socppc/ramdisk: Makefile.inc 
	distrib/sparc64/bsd.rd: Makefile list 
	distrib/sparc64/common: Makefile.inc 

Log message:
Every Makefile on every architecture had deviated in unique ways.
Eliminate many more differences.  When it makes sense, build bsd.rd
and miniroot/ramdisk.fs and cd.iso in the same directory.  More steps
coming after this..


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/04/30 12:02:03

Modified files:
	usr.bin/tmux   : cmd-show-options.c 

Log message:
Fix user options after show-hooks merge, GitHub issue 1704.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/04/30 12:05:11

Modified files:
	sbin/vnconfig  : vnconfig.8 

Log message:
tweak synopsis to match actual option logic
okay schwarze@, jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 12:06:44

Modified files:
	distrib/loongson/ramdisk: Makefile 

Log message:
fix disktype related typo


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/04/30 12:28:45

Modified files:
	usr.bin/chpass : chpass.c 

Log message:
add unveil(2):

chpass(1) without parameters enters in edit mode by default, in here it will
need to execute _PATH_BSHELL to spawn a new EDITOR, _PATH_SHELLS to check
(read) if we are changing from/to a non-standard shell (in case we are not
root) and read access to `tempname' to verify if the file has valid entries and
create to unlink it.

If -s is used to change a user's shell then it will need read access to
_PATH_SHELLS by the same reason already mentioned above.

Unconditionally we need to unveil _PATH_MASTERPASSWD_LOCK with write/create
permissions, _PATH_MASTERPASSWD with read and _PATH_PWD_MKDB to execute
pwd_mkdb(8).

In the -a case I'm not unveiling /etc/spwd.db since we can get it through
pledge "getpw", which can be added later for completeness of all code paths.
Note also that the first pledges need "unveil" since we will call unveil(2)
afterwards.

"looks good" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/04/30 12:39:10

Modified files:
	graphics/png   : Tag: OPENBSD_6_5 Makefile 
Added files:
	graphics/png/patches: Tag: OPENBSD_6_5 patch-png_c 

Log message:
security fix for CVE-2019-7317 (use-after-free in png_image_free)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 12:40:43

Modified files:
	distrib/alpha/miniroot: Makefile 
Added files:
	distrib/alpha/miniroot: install.md list 
Removed files:
	distrib/alpha/common: install.md list 
	distrib/alpha/miniroot: list.local 

Log message:
common directory is pointless now


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/04/30 12:48:26

Modified files:
	usr.bin/mandoc : main.c mansearch.c mansearch.h 

Log message:
In man(1) mode, i.e. when asking for a single manual page by name,
prefer file name matches over .Dt/.TH matches over first NAME matches
over later NAME matches, but do not change the ordering for apropos(1)
nor for man -a.

This reverts main.c rev. 1.213 and mansearch.h rev. 1.23
and includes a partial revert of mansearch.c rev. 1.62.

Regression reported by Lorenzo Beretta <loreb at github>
as part of https://github.com/void-linux/void-packages/issues/9868 .


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 13:20:24

Modified files:
	distrib/sparc64: Makefile 
	distrib/sparc64/miniroot: Makefile 
Removed files:
	distrib/sparc64/cdfs: Makefile 

Log message:
merge cdfs into miniroot, so that it doesn't need obj reacharound


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/04/30 13:42:02

Modified files:
	graphics/libansilove: Makefile distinfo 

Log message:
Update libansilove to 1.1.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/30 13:53:27

Modified files:
	sys/dev/ofw    : ofw_regulator.c 

Log message:
We are allowed to enable regulators with the "regulator-always-on"
property.  The definition is that a regulator with this property
should never be disabled.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/30 14:00:25

Modified files:
	sys/dev/fdt    : mvclock.c 

Log message:
Add support for the Armada 3720 clocks to mvclock(4).

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/30 14:04:31

Modified files:
	sys/arch/arm64/arm64: machdep.c 
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : mvuart.c 

Log message:
Add mvuart(4) to support the Armada 3720's serial console.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/30 14:06:32

Modified files:
	sys/dev/fdt    : mvpinctrl.c 

Log message:
Add support for the Armada 3720 pinctrl controller to mvpinctrl(4).
This controller does not only support pinmuxing, but also includes
GPIO controller functionality.  This is needed to e.g. turn on USB
VBus on the Turris Mox.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/04/30 14:09:12

Modified files:
	sys/dev/usb    : xhci.c 

Log message:
Decrease verbosity when XHCI_DEBUG is defined.

ok mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/04/30 14:17:12

Modified files:
	sys/dev/pci    : envy.c envyreg.h 

Log message:
Enable EnvyHT-specific sample rates (above 96kHz) on the host controller.

Tests and help from Andrey Oktyabrskiy <ano at bestmx.net>. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/04/30 14:21:36

Modified files:
	sys/dev/pci    : envy.c 

Log message:
Fix ESI juil@'s EEPROM contents holding default GPIO state.

The new GPIO state doesn't set masked bits and matches the default
48kHz sampling rate. As the codec uses the host clock, this is a
no-op, but this way the code is less confusing.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/30 14:22:54

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable mvmdio(4) and mvneta(4) on arm64 as well.  These are part
of the Armada 3720 SoC as used on the Turris Mox.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/04/30 14:26:02

Modified files:
	sys/dev/fdt    : if_mvneta.c 

Log message:
Attach mvneta(4) on the Armada 3720 SoC.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/04/30 14:29:46

Modified files:
	sys/dev/pci    : envy.c envyvar.h 

Log message:
Add a "set_rate" method to the envy codec API.

This allows to hook card-specific codec initialization code
called when the sample rate is changed. As codecs follow host
clock, this method will be typically used to switch between
simple-speed to double-speed modes when necessary.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/04/30 14:38:04

Modified files:
	sys/dev/pci    : envy.c envyreg.h 

Log message:
Implement the set_rate() method for ESI Juli@ cards.

The set_rate method switches the AK5385 and the AK4358 chips between
single-, double- or quad-speed modes depending on the host sample
rate. This suppresses aliasing noise in 96kHz and 192kHz sample
rates.

Help and testing by Andrey Oktyabrskiy <ano at bestmx.net>. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 14:38:30

Modified files:
	distrib/amd64  : Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
Removed files:
	distrib/amd64/cdfs: Makefile 

Log message:
pull cdfs into ramdisk_cd


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/04/30 14:44:15

Modified files:
	sys/dev/pci    : envy.c 

Log message:
Make AK5385-related macros of ap192k cards look like julia ones.

As ap192k and julia cards are very similar, this change will hopefully
help reusing part of the juilia codec initialization code as is in the
ap192k card code.  No behavior change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/04/30 14:44:32

Modified files:
	math/lapack    : Makefile 
	math/lapack/files: Makefile 

Log message:
Add missing ilaenv2stage function to our Makefile

Missed in the update to lapack-3.8.0.  Fixes loading of py-numpy and
friends as reported by landry@.  ok landry@ steven@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 15:11:22

Modified files:
	distrib/i386   : Makefile 
	distrib/i386/ramdisk_cd: Makefile 
Removed files:
	distrib/i386/cdfs: Makefile 

Log message:
Also pull cdrom production into the full ramdisk build.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 15:15:00

Modified files:
	distrib/alpha/iso: Makefile 
	distrib/alpha/miniroot: Makefile 
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdiskA: Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
	distrib/arm64/ramdisk: Makefile 
	distrib/armv7/ramdisk: Makefile 
	distrib/hppa/iso: Makefile 
	distrib/hppa/ramdisk: Makefile 
	distrib/i386/iso: Makefile 
	distrib/i386/ramdisk: Makefile 
	distrib/landisk/ramdisk: Makefile 
	distrib/loongson/ramdisk: Makefile 
	distrib/luna88k/ramdisk: Makefile 
	distrib/macppc/iso: Makefile 
	distrib/macppc/ramdisk: Makefile 
	distrib/octeon/ramdisk: Makefile 
	distrib/ramdisk: Makefile 
	distrib/sgi/cdfs: Makefile 
	distrib/sgi/iso: Makefile 
	distrib/sgi/ramdisk: Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64/iso: Makefile 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
rm is in /bin, no need to specify


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	schwarze@cvs.openbsd.org	2019/04/30 15:37:43

Modified files:
	doc/xorg-docs  : Makefile.bsd-wrapper 
Added files:
	doc/xorg-docs/general/fonts: defs.ent fonts.7 

Log message:
install the fonts(7) manual page;
feedback and OK in principle  matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/04/30 15:52:44

Modified files:
	audio/quodlibet: Makefile distinfo 
	audio/quodlibet/patches: patch-quodlibet_player_gstbe_util_py 
	                         patch-quodlibet_util___init___py 
	                         patch-quodlibet_util_environment_py 
	audio/quodlibet/pkg: PLIST 

Log message:
update to quodlibet-4.2.1


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 17:25:19

Modified files:
	distrib/alpha/miniroot: Makefile 
	distrib/amd64/ramdiskA: Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
	distrib/arm64/ramdisk: Makefile 
	distrib/armv7/ramdisk: Makefile 
	distrib/hppa/ramdisk: Makefile 
	distrib/i386/ramdisk: Makefile 
	distrib/i386/ramdisk_cd: Makefile 
	distrib/landisk/ramdisk: Makefile 
	distrib/loongson/ramdisk: Makefile 
	distrib/macppc/ramdisk: Makefile 
	distrib/octeon/ramdisk: Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
repair more trivial differences


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/04/30 17:37:32

Modified files:
	distrib/alpha/miniroot: Makefile 
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
	distrib/i386/iso: Makefile 
	distrib/i386/ramdisk_cd: Makefile 
	distrib/octeon/ramdisk: Makefile 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
step by step, more removal of differences


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/30 18:32:16

Modified files:
	textproc/p5-Text-RecordParser: Makefile distinfo 
	textproc/p5-Text-RecordParser/pkg: DESCR PLIST 

Log message:
p5-Text-RecordParser: update to 1.6.5
Also improve DESCR to mention optional depends and bundled utils.
Changelog:
https://metacpan.org/source/KCLARK/Text-RecordParser-1.6.5/Changes

OK afresh1@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/30 18:37:55

Modified files:
	devel/p5-File-pushd: Makefile distinfo 

Log message:
p5-File-pushd: update to 1.016
Changelog:
https://metacpan.org/source/DAGOLDEN/File-pushd-1.016/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/04/30 18:47:45

Modified files:
	sysutils/p5-Capture-Tiny: Makefile distinfo 

Log message:
p5-Capture-Tiny: update to 0.48
Changelog:
https://metacpan.org/changes/release/DAGOLDEN/Capture-Tiny-0.48

tweaks (thanks!) and OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/30 19:22:00

Modified files:
	devel/py-test  : Makefile distinfo 
	devel/py-test/pkg: PLIST 

Log message:
This brings py-test up to a release from this year and solves some
issues with testing on newer ports.

OK phessler@ sthen@ shadchin@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/30 19:24:44

Modified files:
	devel/py-pluggy: Makefile distinfo 
	devel/py-pluggy/pkg: PLIST 

Log message:
This brings py-pluggy up to date and is necessary for the py-test
and py-hypothesis updates.

OK phessler@ sthen@ shadchin@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/30 19:26:32

Modified files:
	devel/py-hypothesis: Makefile distinfo 
	devel/py-hypothesis/pkg: PLIST 

Log message:
This brings py-hypothesis up to a release from this year and solves some
issues with testing on newer ports. It is necessary for the py-test
and py-pluggy updates and will be needed for other python updates.

OK phessler@ sthen@ shadchin@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/30 19:28:32

ports/devel/py-test-benchmark/patches

Update of /cvs/ports/devel/py-test-benchmark/patches
In directory cvs.openbsd.org:/tmp/cvs-serv69531/patches

Log Message:
Directory /cvs/ports/devel/py-test-benchmark/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/30 19:29:54

Modified files:
	devel/py-test-benchmark: Makefile distinfo 
	devel/py-test-benchmark/pkg: PLIST 
Added files:
	devel/py-test-benchmark/patches: 
	                                 patch-src_pytest_benchmark_plugin_py 

Log message:
This brings py-test-benchmark up to date and is needed for some updated
python ports.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/30 21:51:17

Modified files:
	converters/libdvdcss: Makefile 
	devel/libdvdread: Makefile distinfo 
	devel/libdvdread/patches: patch-src_dvd_input_c 
	devel/libdvdread/pkg: PLIST 
	multimedia/libdvdnav: Makefile distinfo 
Removed files:
	devel/libdvdread/patches: patch-src_ifo_read_c 

Log message:
Update libdvdread and libdvdnav to latest versions.
Update HOMEPAGE and MASTER_SITES of libdvdcss.

Tested to play a DVD on my laptop.

From Brad Smith, thanks.

sthen@ "Diff looks good to me but I have no optical drives to test with.."

OK espie@ (maintainer of libdvdread) "Go for it"


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/30 22:04:03

Log message:
    Siphon is a collection of Python utilities for downloading data from
    remote data services. Much of Siphon's current functionality focuses
    on access to data hosted on a THREDDS Data Server. It also provides
    clients to a variety of simple web services.
    
    From Martin Reindl
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190501
    
    N ports/net/py-siphon/Makefile
    N ports/net/py-siphon/distinfo
    N ports/net/py-siphon/pkg/DESCR
    N ports/net/py-siphon/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/04/30 22:09:44

Modified files:
	net            : Makefile 

Log message:
+py-siphon
+py-siphon,python3


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/01 00:07:14

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Remove unused variable from Thomas Adam.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/01 00:11:46

Modified files:
	sys/net        : if_tun.c 

Log message:
pretty much all of tun_wakeup needs to be protected with KERNEL_LOCK

tun_wakeup is called from the network stack, which generally runs
with NET_LOCK, not KERNEL_LOCK, which is a problem when it calls
into things like csignal or kq code. this started causing corruption
and panics of a list inside the kq code, which got reported to
bugs@.

this version of the fix is ok mpi@ (even though he hasn't seen it)
an earlier but far trickier fix was ok visa@
the bug was reported by Olivier Antoine, and again by jmc@ privately.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/01 00:22:39

Modified files:
	sys/kern       : kern_event.c 

Log message:
sprinkle some KERNEL_ASSERT_LOCKED()

operations that tweak the kq_head and kq_count need to be serialised
against the kevent syscall which also fumbles with the list and
count too.

these asserts would have made it extremely obvious where the tun(4)
bug was. for half the time of the bug report about it we werent
even sure it was tun(4)

discussed with mpi@ jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/01 00:23:39

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/01 00:26:42

Modified files:
	sys/kern       : kern_sig.c 

Log message:
add a KERNEL_ASSERT_LOCKED() to ptsignal

it obviously needs to be called with the kernel lock held, so it
makes sense to check that so we can unlock more code without
introducing bugs that shoot us in the face in the indeterminate
future.

csignal is basically a wrapper around ptsignal, so calls to that
without the kernel lock should be caught by this too.

discussed with mpi@ on bugs@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/01 00:52:00

Modified files:
	multimedia/dav1d: Makefile distinfo 
Removed files:
	multimedia/dav1d/patches: patch-src_x86_itx_ssse3_asm 

Log message:
Update to dav1d-0.3.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/01 01:22:24

Modified files:
	sys/dev/pci/drm/include/linux: wait.h 

Log message:
Avoid using an expression which resolves to an int in a bool context
when a nested macro is called with an expression argument.
Prompted by -Wint-in-bool-context with gcc 8. ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/01 04:06:46

Modified files:
	devel/libwnck3 : Makefile distinfo 
	devel/libwnck3/pkg: PLIST 

Log message:
Update to libwnck3-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/01 04:07:53

Modified files:
	x11/mate/notification-daemon: Makefile 
	x11/xfce4/xfce4-pulseaudio: Makefile 
	x11/mate/system-monitor: Makefile 
	x11/xfce4/xfce4-taskmanager: Makefile 
	x11/xfce4/xfce4-xkb: Makefile 
	x11/mate/panel : Makefile 
	x11/xfce4/xfdashboard: Makefile 

Log message:
Sync WANTLIB/LIB_DEPENDS after recent libwnck3 update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/01 04:20:24

Modified files:
	sysutils/duplicity: Makefile distinfo 
	sysutils/duplicity/patches: patch-bin_duplicity 
	                            patch-bin_duplicity_1 patch-setup_py 
Added files:
	sysutils/duplicity/patches: patch-duplicity_util_py 
	                            patch-testing_unit_test_exc_py 

Log message:
Update to duplicity-0.7.19 and bring a patch from Fedora that should fix a
unicode issue reported by stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/01 04:58:37

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/pkg: PFRAG.component 

Log message:
update to 74.0.3729.131 and fix component flavor


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/01 05:38:52

Modified files:
	graphics/py-matplotlib: Makefile distinfo 
	graphics/py-matplotlib/patches: patch-setupext_py 
	graphics/py-matplotlib/pkg: PLIST 
Removed files:
	graphics/py-matplotlib/patches: 
	                                patch-extern_ttconv_pprdrv_tt_cpp 
	                                patch-lib_matplotlib_sphinxext_tests_test_tinypages_py 
	                                patch-src__image_wrapper_cpp 

Log message:
Update to matplotlib-2.2.4.

Reply daniel@ (maintainer): "Put it in..."


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/05/01 05:41:25

Modified files:
	build          : mirrors.dat 

Log message:
comment-out mirrors which are either persistently out of date
(aarnet, internode) or are down (ipacct).


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/05/01 05:41:49

Modified files:
	.              : ftp.html ftplist httpslist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 05:53:03

Modified files:
	lang/gcc/8     : Makefile 

Log message:
remove the znotext suggestion from the i386 comment, same issue with
"ld: error: XX: has non-ABS relocation R_386_GOTOFF against symbol 'XX'"
is seen on other ports (telephony/asterisk, math/py-scipy) when built
with gcc 8 and znotext does not help there, so is unlikely to help here
either.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/01 06:09:11

Modified files:
	devel/glib2    : Makefile 
Added files:
	devel/glib2/patches: patch-glib_gutils_c 

Log message:
re-introduce the patch which was removed by the previous update so that
XDG directories are actually checked if they exist before adding them to
the list which is important for programs using unveil(2).

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 06:12:24

Modified files:
	lang/gcc/8     : Makefile 
	math/py-scipy  : Makefile 
	telephony/asterisk: Makefile 

Log message:
Use ld.bfd to link math/py-scipy and telephony/asterisk on i386, like gcc/8
itself they fail with "has non-ABS relocation R_386_GOTOFF against symbol XXX"
with LLD.

Mention these ports in the comment in lang/gcc/8/Makefile.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/01 07:41:20

Modified files:
	mail/dovecot   : Makefile 
	mail/dovecot/pkg: README-server 

Log message:
Bump limit, from Hiltjo Posthuma

Remove mention about full-text search since the internal FTS indexer
was removed and it's out-of-process now. Requested by sthen@

No feedback from maintainer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/01 07:49:52

Modified files:
	devel          : Makefile 
	devel/py-backports-abc: Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Removing another useless python3 flavor from a port that
backports functionality to python 2.x and versions of python 3.x
much earlier than what we have.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/01 08:03:25

Modified files:
	distrib/octeon/ramdisk: Makefile 

Log message:
Fix miniroot partition.

OK deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	naddy@cvs.openbsd.org	2019/05/01 08:03:27

Modified files:
	.              : 65.html 

Log message:
8556 mips64 packages


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/01 08:13:12

Modified files:
	libexec/getty  : main.c 

Log message:
Pull tname initialization up since it's used in an error path.
Pointed out by jsg, just fix it deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/01 08:34:14

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-244.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/01 08:39:11

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.139.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/01 08:39:24

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.139.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/01 08:39:37

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.149.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/01 08:51:40

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Use the proper UAC-v2.0 request to read the device controls.

Fixes STALL errors in mixer requests causing the mixer to be unusable.
With help from Claus <claus at mailbox.org>. Thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/01 10:04:26

Modified files:
	books/cvs-guide: Makefile 
	converters/xlhtml: Makefile 
	devel/p5-File-Sync: Makefile 
	graphics/libwmf: Makefile 
	mail/p5-Log-Procmail: Makefile 
	net/ucspi-unix : Makefile 
	net/yafc       : Makefile 
	textproc/p5-XML-XSLT: Makefile 
	books/docbook-guide: Makefile 
	math/p5-Math-FFT: Makefile 

Log message:
Remove avsm@ as maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/01 10:07:04

Modified files:
	textproc/docx2txt: Makefile 
	devel/p5-Devel-Cover-Report-Clover: Makefile 

Log message:
Remove schwarze@ as maintainer per his request


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/01 10:10:35

Modified files:
	.              : macppc.html 
	build          : versionup 

Log message:
the ofwboot line needs a version bump too; reminded by stephane huc


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 11:27:46

Modified files:
	graphics/py-Pillow: Makefile distinfo 
	graphics/py-Pillow/pkg: PLIST 

Log message:
update to py-Pillow-6.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/01 11:36:30

Modified files:
	meta/tor-browser: Makefile 
	www/tor-browser: Makefile.inc 
	www/tor-browser/browser: Makefile distinfo 
	www/tor-browser/https-everywhere: Makefile distinfo 
	www/tor-browser/noscript: Makefile distinfo 
	www/tor-browser/tor-launcher: Makefile 
	www/tor-browser/torbutton: Makefile distinfo 
Removed files:
	www/tor-browser/browser/patches: 
	                                 patch-build_moz_configure_init_configure 

Log message:
Update to tor-browser 8.0.8, from MAINTAINER Sean Levy


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 11:43:03

Modified files:
	www/sblg       : Makefile distinfo 

Log message:
update to sblg-0.4.23, from maintainer Bryan Vyhmeister


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/01 11:43:15

Modified files:
	net/telepathy/folks: Makefile distinfo 
	net/telepathy/folks/pkg: PLIST 
Removed files:
	net/telepathy/folks/patches: patch-backends_eds_Makefile_in 
	                             patch-backends_eds_lib_Makefile_in 
	                             patch-folks_Makefile_in 
	                             patch-folks_individual_vala 
	                             patch-folks_potential-match_vala 
	                             patch-tools_inspect_signal-manager_vala 

Log message:
update to folks-0.12.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/01 13:12:47

Modified files:
	lib/libevent   : event.c 

Log message:
Require clock_gettime(CLOCK_MONOTONIC) and remove fallback code

If clock_gettime(CLOCK_MONOTONIC) fails here, something is really wrong.
Lots of userland already require it anyway.  Removing the fallback code
means less code, less global state and less fiddling with the timeheap
internals.

ok nicm@ tedu@ tobias@ cheloha@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/01 13:14:25

Modified files:
	lib/libevent   : event.c 

Log message:
Tweaks previous: gettime() can be void, use TIMESPEC_TO_TIMEVAL

ok nicm@ tobias@ cheloha@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/01 13:21:57

Modified files:
	sysutils/monit : Makefile distinfo 
	sysutils/monit/pkg: PLIST 

Log message:
Update to monit 5.25.3.

ok dhill@ jung@ & Caspar Schutijser (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 13:29:44

Modified files:
	devel/ElectricFence: Makefile 
	fonts/ru-pscyr : Makefile 
	games/csmash   : Makefile 
	mail/milter-regex: Makefile 
	mail/milter-spamd: Makefile 
	mail/relaydb   : Makefile 
	misc/garmin-utils: Makefile 
	net/kissd      : Makefile 
	security/hatchet: Makefile 
	sysutils/resmon: Makefile 
	sysutils/xbatt : Makefile 
	www/blogsum    : Makefile 
	www/p5-HTTP-Lite: Makefile 
	www/snownews   : Makefile 

Log message:
drop maintainers with bouncing @openbsd.org addresses; thanks danj for the list


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 13:56:13

Modified files:
	net/tcpstat    : Makefile 

Log message:
update MAINTAINER email


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 13:57:08

Modified files:
	audio/cplay    : Makefile 
	devel/cvslock  : Makefile 
	devel/giblib   : Makefile 
	devel/p5-Data-Munge: Makefile 
	devel/p5-Hash-Flatten: Makefile 
	devel/p5-Hash-Merge-Simple: Makefile 
	devel/p5-IPC-Signal: Makefile 
	devel/p5-POSIX-strftime-Compiler: Makefile 
	devel/p5-Return-MultiLevel: Makefile 
	devel/p5-Safe-Isa: Makefile 
	devel/p5-Signal-Mask: Makefile 
	devel/p5-Stream-Buffered: Makefile 
	devel/p5-Test-Time: Makefile 
	devel/p5-Try-Tiny: Makefile 
	devel/p5-namespace-autoclean: Makefile 
	games/wanderer : Makefile 
	graphics/scrot : Makefile 
	misc/clex      : Makefile 
	sysutils/bchunk: Makefile 
	textproc/p5-Template-Tiny: Makefile 
	www/p5-Apache-LogFormat-Compiler: Makefile 
	www/p5-Cookie-Baker: Makefile 
	www/p5-Dancer-Plugin-Database-Core: Makefile 
	www/p5-Dancer2 : Makefile 
	www/p5-Dancer2-Plugin-Ajax: Makefile 
	www/p5-Dancer2-Plugin-Auth-Tiny: Makefile 
	www/p5-Dancer2-Plugin-DBIC: Makefile 
	www/p5-Dancer2-Plugin-Database: Makefile 
	www/p5-Plack-Middleware-FixMissingBodyInRedirect: Makefile 
	www/p5-Plack-Middleware-RemoveRedundantBody: Makefile 
	www/p5-Twiggy  : Makefile 
	x11/nagstamon  : Makefile 

Log message:
drop MAINTAINERs where dns domain does not exist


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/01 14:12:52

Modified files:
	sysutils/tpb   : Makefile 
	textproc/pdftk : Makefile 
	databases/p5-pgsql: Makefile 
	devel/libbio   : Makefile 
	devel/libfmt   : Makefile 
	devel/libregexp9: Makefile 
	devel/libutf   : Makefile 
	devel/mk       : Makefile 
	graphics/s10sh : Makefile 
	net/igmpproxy  : Makefile 
	plan9/9wm      : Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 14:24:00

Modified files:
	textproc/pdftk : Makefile distinfo 

Log message:
update to pdftk(java)-3.0.3, take maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/01 14:52:28

Modified files:
	gnu/usr.sbin/mkhybrid/src: write.c 

Log message:
only do the "when are we finished" countdown if at high verbose


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/01 14:52:36

Modified files:
	gnu/usr.sbin/mkhybrid/src: mkisofs.c 

Log message:
default to not verbose


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/01 14:53:35

Modified files:
	distrib/alpha/iso: Makefile 
	distrib/alpha/miniroot: Makefile 

Log message:
increase verbose +1 (the required level for spitting out block start/end
for files, which is tee'd out to tell installboot where the bootblocks
should point to..)  Yes, someone could fix this, but it won't be me today!


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/01 14:53:55

Modified files:
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
	distrib/i386/iso: Makefile 
	distrib/i386/ramdisk_cd: Makefile 
	distrib/loongson/ramdisk: Makefile 
	distrib/macppc/iso: Makefile 
	distrib/macppc/ramdisk: Makefile 
	distrib/sgi/cdfs: Makefile 

Log message:
verbose mkhybrid was never needed on these arch


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/01 15:02:07

Modified files:
	sys/conf       : Tag: OPENBSD_6_5 newvers.sh 

Log message:
6.5-stable


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/01 15:06:08

Modified files:
	sys/netinet6   : Tag: OPENBSD_6_3 ip6_output.c raw_ip6.c 

Log message:
For raw IPv6 sockets userland may specify an offset where the
checksum field is located.  During rip6 input and output make sure
that this field is within the packet.  The offset my be -1 to disable
the feature, otherwise it must be non-negative and aligned.  Do a
stricter check during setsockopt(2).
from FreeBSD; OK claudio@

OpenBSD 6.3 errata 033


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/01 15:07:27

Modified files:
	sys/netinet6   : Tag: OPENBSD_6_4 ip6_output.c raw_ip6.c 

Log message:
For raw IPv6 sockets userland may specify an offset where the
checksum field is located.  During rip6 input and output make sure
that this field is within the packet.  The offset my be -1 to disable
the feature, otherwise it must be non-negative and aligned.  Do a
stricter check during setsockopt(2).
from FreeBSD; OK claudio@

OpenBSD 6.4 errata 017


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/01 15:08:24

Modified files:
	sys/netinet6   : Tag: OPENBSD_6_5 ip6_output.c raw_ip6.c 

Log message:
For raw IPv6 sockets userland may specify an offset where the
checksum field is located.  During rip6 input and output make sure
that this field is within the packet.  The offset my be -1 to disable
the feature, otherwise it must be non-negative and aligned.  Do a
stricter check during setsockopt(2).
from FreeBSD; OK claudio@

OpenBSD 6.5 errata 001


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/01 15:10:06

Modified files:
	audio/py-mpd   : Makefile 
	x11/xcursor-dmz: Makefile 
	audio/wavpack  : Makefile 
	fonts/ubuntu-fonts: Makefile 
	mail/getmail   : Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/05/01 15:42:53

Modified files:
	lang/racket-minimal: Makefile 

Log message:
Portroach doesn't show racket. Maybe there is something wrong in the regex.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/01 15:47:27

Modified files:
	devel/pcre2    : Makefile distinfo 
	devel/pcre2/patches: patch-RunGrepTest 
	devel/pcre2/pkg: PLIST 

Log message:
Update to pcre2-10.33

Minor bump because of symbol additions in all libraries.
From Nam Nguyen (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/01 15:52:00

Modified files:
	mail/p5-Mail-DKIM-Iterator: Makefile distinfo 

Log message:
update p5-Mail-DKIM-Iterator to 1.009


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 16:05:02

Modified files:
	editors/vim    : Makefile 

Log message:
flavour cleanup; drop the motif/athena flavours that we don't package
rsadowski cwen kmos danj agree

< sthen> /me sets it on fire and jumps over it (seeing as it's beltane)
< kmos> Careful. Don't get any of it on you.
< sthen> oh we are used to fire in the town where i live ;)
< sthen> https://www.youtube.com/watch?v=qnXx6jvsQto
< kmos> No, not the fire. Don't get any motif on you.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 16:05:30

Modified files:
	editors/vim    : Makefile 
	editors/vim/pkg: DESCR-main 

Log message:
update flavours in DESCR


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/01 16:21:13

Modified files:
	lang/kona      : Makefile distinfo 

Log message:
Update to kona-3.2.0.20190430


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/01 16:33:14

Modified files:
	devel/p5-File-BOM: Makefile distinfo 

Log message:
p5-File-BOM: update to 0.16
Changelog:
https://metacpan.org/changes/release/MATTLAW/File-BOM-0.16

OK sthen@ steven@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/01 16:55:06

Modified files:
	distrib/landisk/ramdisk: Makefile 

Log message:
Do not need reacharound back to our own obj directory, pretty silly


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/01 16:55:58

Modified files:
	distrib/loongson/ramdisk: Makefile 

Log message:
Do not need reacharound back to our own obj directory, pretty silly


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 17:04:59

Modified files:
	telephony/asterisk-g729: Makefile 
	telephony/asterisk: Makefile 

Log message:
just set COMPILER=ports-gcc for asterisk/asterisk-g729 (dropping base-gcc).


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/05/01 17:34:17

Modified files:
	net            : Makefile 
	net/py-ftpdlib : Makefile distinfo 
	net/py-ftpdlib/pkg: PLIST 

Log message:
Update to pyftpd 1.5.5 and add python3 flavor.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/01 19:03:11

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/patches: patch-runtime_filetype_vim 
	editors/vim/pkg: PLIST-lang 
Removed files:
	editors/vim/patches: patch-runtime_gvim_desktop 

Log message:
update to vim-8.1.1244


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/01 19:18:40

Modified files:
	distrib/sgi/cdfs: Makefile 

Log message:
refer do the nested FFS filesystem by name FS, since it is similar to
a miniroot.fs elsewhere (but not made available because noone needs it)
this reduces the diff delta further...


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/01 19:53:26

Modified files:
	devel/p5-Task-Weaken: Makefile distinfo 

Log message:
Update devel/p5-Task-Weaken to 1.06

OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/01 19:54:14

Modified files:
	devel/p5-Class-Inspector: Makefile distinfo 

Log message:
Update devel/p5-Class-Inspector to 1.34

OK cwen@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/01 19:54:29

Modified files:
	.              : errata63.html errata64.html errata65.html 

Log message:
i've come from the future to release the rip6chksum errata


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/01 20:12:54

Modified files:
	.              : errata65.html 

Log message:
typo in the url


CVSROOT:	/cvs
Module name:	www
Changes by:	lteo@cvs.openbsd.org	2019/05/01 20:20:12

Modified files:
	.              : events.html 

Log message:
Add my CarolinaCon 15 talk


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/01 20:59:29

Modified files:
	distrib/macppc/ramdisk: Makefile 

Log message:
bsd.tbxi can be found in DESTDIR, rather than a excessively long obj
reacharound


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/01 21:01:25

Modified files:
	www/links+     : Makefile distinfo 

Log message:
Update to links+-2.19
Original diff from Tim Meunier (MAINTAINER) plus WANTLIB tweaks by me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/01 21:34:40

Log message:
    Import qucs-s-0.0.21.
    
    Qucs-S is a spin-off of the Qucs cross-platform circuit simulator (which
    uses its own simulation kernel Qucsator). "S" letter indicates SPICE.
    
    The purpose of the Qucs-S subproject is to use free SPICE circuit
    simulation kernels with the Qucs GUI.
    
    Qucs-S is not a simulator by itself, but it requires to use a simulation
    backend (Ngspice is recommended).
    
    From Alessandro De Laurenzis; thanks!
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190501
    
    N ports/cad/qucs-s/Makefile
    N ports/cad/qucs-s/distinfo
    N ports/cad/qucs-s/pkg/DESCR
    N ports/cad/qucs-s/pkg/PLIST
    N ports/cad/qucs-s/patches/patch-contrib_CMakeLists_txt
    N ports/cad/qucs-s/patches/patch-qucs-attenuator_CMakeLists_txt
    N ports/cad/qucs-s/patches/patch-qucs_CMakeLists_txt
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/01 21:35:24

Modified files:
	cad            : Makefile 

Log message:
+qucs-s


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/01 23:03:08

Modified files:
	www/honk       : Makefile distinfo 
	www/honk/pkg   : PLIST 

Log message:
Update to honk-0.4.0.

From Horia Racoviceanu; thanks!

ok jturner@

While here, disable ccache, which breaks the build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/01 23:13:05

Modified files:
	x11/kde4/plasma-addons: Makefile 
	x11/kde4/plasma-addons/patches: patch-CMakeLists_txt 
	x11/kde4/plasma-addons/pkg: PLIST 

Log message:
Remove marble support in KDE4 plasma

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/02 00:19:33

Modified files:
	distrib/miniroot: install.sub 

Log message:
Keep SHA256.sig around on the installed / upgraded system.
It seems like sysupgrade(8) could use this to figure out if a new
snapshot is available.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/02 00:46:36

Modified files:
	devel/jenkins/devel: Makefile distinfo 

Log message:
Update jenkins -devel to 2.175


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/02 01:00:46

Modified files:
	sys/arch/amd64/include: specialreg.h 

Log message:
Fix vmm_support.S compilation error with gcc 8.3

ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/02 01:45:16

Modified files:
	net/telepathy/folks: Makefile 

Log message:
No need to override PORTROACH anymore; we are back on stable releases.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/02 02:12:56

Modified files:
	graphics/gifsicle: Makefile distinfo 

Log message:
Update to gifsicle-1.92.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/05/02 02:30:10

Modified files:
	lib/libc/stdio : open_memstream.c 

Log message:
Fix a comparison in open_memstream not to confuse when a negative
value is given for the off.  found by nagasaka at IIJ.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/02 02:35:10

Modified files:
	etc/etc.amd64  : login.conf 

Log message:
pbuild class: bump datasize and maxproc; these should be sufficient for
running a ports bulk without bumping anything else
(matches what's on amd64.ports and exopi)

ok sthen@ phessler@ espie@ naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/05/02 02:38:41

Modified files:
	regress/lib/libc/open_memstream: open_memstreamtest.c 

Log message:
Add test fseek(,-1) works properly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/02 03:16:45

Modified files:
	textproc/highlight: Makefile distinfo 
	textproc/highlight/patches: patch-man_highlight_1 
	textproc/highlight/pkg: PLIST 

Log message:
Update to highlight-3.50.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/05/02 03:27:09

Modified files:
	security/lynis : Makefile distinfo 
	security/lynis/pkg: DESCR PLIST 

Log message:
Update for Lynis to 2.7.4:

https://cisofy.com/changelog/lynis/#274

OK rsadowski@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/02 03:47:16

Modified files:
	sys/dev/pci/drm: drm_drv.c 

Log message:
Allow non-root users to become master when they are the first to open a drm
device.  This matches what Linux does and is a first step towards running
X without setuid or root priviliges.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/02 03:49:36

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
add Cryptographics Co-processor found on newer AMD Ryzen CPUs/APUs


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/02 03:50:30

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/02 03:52:36

Modified files:
	sys/dev/pci    : ccp_pci.c 

Log message:
works on newer AMD Ryzen APUs/CPUs as well

ok deraadt@, mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/05/02 04:20:32

Modified files:
	sysutils/opam  : Makefile distinfo 

Log message:
Update sysutils/opam to 2.0.4

ok avsm@, krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/02 05:35:27

Modified files:
	lang/php/7.3   : Makefile distinfo 
	lang/php/7.3/patches: patch-acinclude_m4 

Log message:
update to php-7.3.5


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/05/02 05:39:45

Modified files:
	usr.sbin/smtpd : lka_filter.c 

Log message:
Give filter programmers a more friendlier error message when returning a
filter-dataline in non-dataline phases and vice versa instead of crashing
with "smtpd: tree_xpop(0x1e1a6b180b40, 0xc77804c6ba110977)"

OK gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/05/02 05:43:10

Modified files:
	telephony/coturn: Makefile distinfo 
	telephony/coturn/pkg: PLIST 

Log message:
Update to coturn 4.5.1.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/02 06:26:15

Log message:
    Import QtAV 1.12.0
    
    QtAV is a multimedia playback library based on Qt and FFmpeg.
    
    Tweaks and OK kn@
    
    Status:
    
    Vendor Tag:	rsadowski
    Release Tags:	rsadowski_20190502
    
    N ports/multimedia/qtav/Makefile
    N ports/multimedia/qtav/distinfo
    N ports/multimedia/qtav/patches/patch-common_pri
    N ports/multimedia/qtav/patches/patch-config_tests_xv_xv_pro
    N ports/multimedia/qtav/patches/patch-deploy_pri
    N ports/multimedia/qtav/patches/patch-examples_QMLPlayer_QMLPlayer_pro
    N ports/multimedia/qtav/patches/patch-examples_QMLPlayer_QMLPlayer_sdk_pro
    N ports/multimedia/qtav/patches/patch-examples_QMLPlayer_qtquick2applicationviewer_qtquick2applicationviewer_pri
    N ports/multimedia/qtav/patches/patch-examples_common_libcommon_pri
    N ports/multimedia/qtav/patches/patch-qml_libQmlAV_pri
    N ports/multimedia/qtav/patches/patch-src_QtAV_FilterContext_h
    N ports/multimedia/qtav/patches/patch-src_libQtAV_pri
    N ports/multimedia/qtav/patches/patch-src_libQtAV_pro
    N ports/multimedia/qtav/patches/patch-widgets_libQtAVWidgets_pri
    N ports/multimedia/qtav/patches/patch-widgets_libQtAVWidgets_pro
    N ports/multimedia/qtav/patches/patch-src_AVMuxer_cpp
    N ports/multimedia/qtav/patches/patch-src_QtAV_private_AVCompat_h
    N ports/multimedia/qtav/patches/patch-src_codec_audio_AudioEncoderFFmpeg_cpp
    N ports/multimedia/qtav/patches/patch-src_codec_video_VideoEncoderFFmpeg_cpp
    N ports/multimedia/qtav/patches/patch-src_filter_LibAVFilter_cpp
    N ports/multimedia/qtav/patches/patch-src_subtitle_SubtitleProcessorFFmpeg_cpp
    N ports/multimedia/qtav/pkg/DESCR
    N ports/multimedia/qtav/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/05/02 06:49:25

Modified files:
	databases/lmdb : Makefile 
	databases/lmdb/patches: patch-mdb_c 

Log message:
Backport double-free / use-after-free fix from upstream

https://github.com/openldap/openldap/commit/8d93fe07184a87cce5bd7a12de83f03e1a900bfe

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/02 07:13:08

Modified files:
	math/cfitsio   : Makefile distinfo 
	math/cfitsio/pkg: PLIST 
Added files:
	math/cfitsio/patches: patch-configure 
Removed files:
	math/cfitsio/patches: patch-configure_in patch-eval_defs_h 
	                      patch-eval_l_c patch-grparser_c 

Log message:
Update cfitsio to 3.450


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/02 07:24:30

Log message:
    Import math/ebc, an implementation of POSIX bc with GNU and BSD extensions.
    ok rsadowski@
    
    This is an implementation of the POSIX bc calculator that implements GNU
    bc extensions, as well as the period (.) extension for the BSD flavor of
    bc.
    
    This bc also includes an implementation of dc in the same binary,
    accessible via a symbolic link, which implements all *BSD and GNU
    extensions, though the ! command is omitted for security concerns.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190502
    
    N ports/math/ebc/Makefile
    N ports/math/ebc/distinfo
    N ports/math/ebc/pkg/DESCR
    N ports/math/ebc/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/02 07:24:50

Modified files:
	math           : Makefile 

Log message:
+ebc


CVSROOT:	/cvs
Module name:	src
Changes by:	gerhard@cvs.openbsd.org	2019/05/02 08:04:10

Modified files:
	usr.sbin/snmpd : mib.c 

Log message:
Index 0 is out of range for hrStorageIndex.

ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/02 08:45:41

Modified files:
	security/p5-Crypt-Serpent: Makefile 

Log message:
Remove stephan@ as maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/02 08:51:49

Modified files:
	archivers/zziplib: Makefile 
	graphics/jpegpixi: Makefile 
	graphics/mapivi: Makefile 
	graphics/gimp/stable: Makefile 
	net/filezilla  : Makefile 
	security/steghide: Makefile 
	sysutils/anacron: Makefile 
	sysutils/smartmontools: Makefile 
	multimedia/imagination: Makefile 
	www/havp       : Makefile 
	www/piwik      : Makefile 
	x11/gtksourceview: Makefile 
	x11/xdesktopwaves: Makefile 

Log message:
Remove giovanni@ as maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/02 09:52:58

Log message:
    Mcds is a command line tool primarily used as a search query plugin for mutt
    to query a carddav server.
    
    From maintainer Timothy Brown
    
    With suggestions from myself, sthen and landry
    
    OK landry@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190502
    
    N ports/productivity/mcds/Makefile
    N ports/productivity/mcds/distinfo
    N ports/productivity/mcds/pkg/DESCR
    N ports/productivity/mcds/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/02 09:54:06

Modified files:
	productivity   : Makefile 

Log message:
Adding productivity/mcds


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/02 10:15:48

Modified files:
	graphics/comix : Makefile 
	graphics/comix/patches: patch-install_py patch-src_comix_py 

Log message:
unbreak comix with Pillow 6.0.0; it maybe worth considering replacing this
with https://sourceforge.net/projects/mcomix/ which seems a bit more active


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/02 10:24:32

Modified files:
	sys/net        : bridgestp.c 

Log message:
Reset root port after last STP interface is removed.

Prevent use-after-free reported by Hrvoje Popovski.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/02 10:40:20

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register libgeomap removal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/02 10:40:42

Modified files:
	graphics/digikam-kde4: Makefile 
	graphics/digikam-kde4/pkg: PLIST-dcraw PLIST-kipi PLIST-libkipi 
	                           PLIST-main PLIST-sane 
Removed files:
	graphics/digikam-kde4/pkg: DESCR-geomap PLIST-geomap 

Log message:
Remove marble support (libgeomap) in KDE4 digikam

- Fix @comment in PLIST-*
- Reorder PLIST

OK espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/02 10:51:57

Modified files:
	x11/kde4       : Makefile 
	meta/kde4      : Makefile 

Log message:
unhook marble


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/02 11:21:02

Modified files:
	misc/py-memcached: Makefile 

Log message:
Remove maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/02 11:52:31

Modified files:
	textproc/p5-PDF-API2-Simple: Makefile 

Log message:
Remove maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2019/05/02 12:50:08

Modified files:
	textproc/docbook2mdoc: Makefile distinfo 

Log message:
update to docbook2mdoc-1.1.0:
new -s command line option
and large numbers of improvements to whitespace handling
OK bentley@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/02 12:58:38

Modified files:
	devel/cvsweb   : Makefile 
	devel/cvsweb/pkg: README 

Log message:
add files newly required by perl 5.28 to chroot documentation


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	schwarze@cvs.openbsd.org	2019/05/02 13:12:05

Modified files:
	doc/xorg-docs  : Makefile.bsd-wrapper 
	doc/xorg-docs/general/fonts: fonts.7 
	lib/libdrm     : Makefile.bsd-wrapper 
	lib/libdrm/man : drm-kms.7 drm-memory.7 drm.7 drmAvailable.3 
	                 drmHandleEvent.3 drmModeGetResources.3 

Log message:
simplify Makefiles for use with docbook2mdoc-1.1.0
and regen for improved formatting:
correct linebreaks in literal displays; and new sentence, new line


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/02 13:34:40

Modified files:
	x11/thewidgetfactory: Makefile 

Log message:
Remove maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/02 13:38:36

Modified files:
	sysutils/anacron: Makefile 

Log message:
His hiatus is over, Andreas takes maintainership again


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/02 13:42:57

Modified files:
	net/glib2-networking: Makefile distinfo 

Log message:
Update to glib2-networking-2.60.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/02 13:43:20

Modified files:
	net/dclib      : Makefile 
	www/fcgi       : Makefile 
	x11/wmtime     : Makefile 

Log message:
Remove maintainers whose addresses bounce


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/02 13:58:53

Added files:
	games/stepmania/patches: 
	                         patch-src_libtomcrypt_src_headers_tomcrypt_cfg_h 

Log message:
Fix build on arm64 and armv7.
Go aheads from bentley@ and thfr@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/02 14:10:47

Modified files:
	multimedia/libmp4v2: Makefile 

Log message:
libmp4v2: explain why it has to be built with C++03

Proposed by and OK naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/02 14:12:40

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Fix up some bits about window-size that seem to have got lost.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/02 14:15:16

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-doc_nano_1 

Log message:
Update to 4.2.  Fixes a possible crash on M-J, fixes --nowrap, and again
automatically adds a newline character at the end of a buffer.
Prodded by upstream maintainer Benno Schulenberg.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/02 14:18:29

Modified files:
	www/p5-WebService-MusicBrainz: Makefile distinfo 
Removed files:
	www/p5-WebService-MusicBrainz/patches: patch-t_Area_t 

Log message:
p5-WebService-MusicBrainz: update to 1.05
Upstream changelog is not up to date.
Our test patch has been upstreamed, and MAINTAINER
email address changed.

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/02 14:24:58

Modified files:
	devel/p5-Config-AutoConf: Makefile distinfo 

Log message:
p5-Config-AutoConf: update to 0.317
Changelog:
https://metacpan.org/source/REHSACK/Config-AutoConf-0.317/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/02 14:28:46

Modified files:
	sys/dev/pci    : ehci_pci.c 

Log message:
Avoid running the activate function for a partially attached ehci(4) driver.
The Realtek DASH ehci(4) doesn't have a properly set SBRN register which
prevents us from fully attaching the device.  This would result in a panic
during suspend because the activate function will access register that
aren't mapped.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/02 15:12:45

Modified files:
	sys/arch/arm64/dev: mainbus.c 

Log message:
Add a print function to mainbus(4) such that it prints unconfigured devices
just like we do for simplebus(4).

ok patrick@, visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/05/02 15:46:02

Modified files:
	lang/bacon     : Makefile distinfo 

Log message:
Update to bacon 3.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/02 15:58:21

Log message:
    tootstream is a command line interface for interacting with Mastodon
    instances.
    
    OK kn@ solene@ sthen@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190502
    
    N ports/www/tootstream/Makefile
    N ports/www/tootstream/distinfo
    N ports/www/tootstream/pkg/DESCR
    N ports/www/tootstream/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/02 16:01:01

Modified files:
	www            : Makefile 

Log message:
Add www/tootstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/02 16:02:31

Modified files:
	mail/claws-mail: Makefile 

Log message:
Disable tnef_parse plugin

Otherwise it might pick converters/libytnef. Reported by espie


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/02 16:06:13

Modified files:
	mail/dovecot   : Makefile distinfo 
	mail/dovecot/patches: patch-doc_example-config_Makefile_in 
	                      patch-doc_example-config_conf_d_10-mail_conf 
	                      patch-doc_example-config_conf_d_10-master_conf 
	                      patch-doc_example-config_conf_d_10-ssl_conf 
	                      patch-doc_example-config_conf_d_Makefile_in 
	                      patch-doc_example-config_conf_d_auth-system_conf_ext 
	                      patch-doc_example-config_dovecot_conf 
	                      patch-doc_mkcert_sh 
	                      patch-src_auth_password-scheme-crypt_c 
	mail/dovecot/pkg: PLIST-server 

Log message:
update to Dovecot 2.3.6, from Brad:

- CVE-2019-11494: Submission-login crashed with signal 11 due to null
pointer access when authentication was aborted by disconnecting.

- CVE-2019-11499: Submission-login crashed when authentication was
started over TLS secured channel and invalid authentication message was
sent.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/02 16:06:35

Modified files:
	mail/dovecot-pigeonhole: Makefile distinfo 
	mail/dovecot-pigeonhole/patches: 
	                                 patch-doc_example-config_conf_d_20-managesieve_conf 
	                                 patch-doc_example-config_conf_d_90-sieve_conf 
	                                 patch-src_lib-sieve_sieve-common_h 
	                                 patch-src_managesieve-login_Makefile_in 

Log message:
update to Dovecot-pigeonhole 0.5.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/02 16:07:03

Modified files:
	mail/postfix/snapshot: Makefile distinfo 

Log message:
update to postfix 3.5-20190427, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/02 16:09:01

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/02 16:10:57

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
update the quirks cve thingy for dovecot, reminded by danj


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/05/02 16:32:34

Modified files:
	usr.sbin/httpd : logger.c 

Log message:
Avoid opening log files on "no log"

When not logging anything, do not open files in the first place.
This prevents startup failures on configurations where the log/ directory
is missing but logging is disabled anyway.

OK aja solene reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/02 19:41:35

Modified files:
	sys/dev/pci/drm/i915: intel_fbdev.c 

Log message:
Revert "drm/i915/fbdev: Actually configure untiled displays"

From Dave Airlie
2bc7ce32eb21b094b3ae3e489017fabfe72b4dda in linux 4.19.y/4.19.38
9fa246256e09dc30820524401cdbeeaadee94025 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/02 19:48:42

Modified files:
	usr.sbin/bgpctl: bgpctl.c 

Log message:
missing break
ok benno@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/02 20:41:25

Modified files:
	.              : mail.html 

Log message:
some assorted improvements:
- add opensmtpd/openbgpd lists
- add opensmtpd security contact
- mention arm64 in the arm@ list description
- add archive links for each list (where available)
- format list names more consistently
- switch some links to https

ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/05/02 21:25:18

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
Wrap XMSS including in ifdef.  Patch from markus at blueflash.cc, ok djm


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/05/02 21:27:38

Modified files:
	usr.bin/ssh    : sshconnect.c 

Log message:
Free host on exit path.  Patch from markus at blueflash.cc, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/02 22:06:08

Modified files:
	lib/libc/sys   : kqueue.2 

Log message:
basic macro cleanup; from Fabio Scotoni <fabio at esse dot ch>


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/05/02 22:11:00

Modified files:
	usr.bin/ssh    : channels.c 

Log message:
Free channel objects on exit path.  Patch from markus at blueflash.cc,
ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/02 23:18:04

Modified files:
	multimedia     : Makefile 

Log message:
hook qtav


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/02 23:32:41

Modified files:
	textproc/cmark : Makefile distinfo 

Log message:
Update cmark to 0.29.0

From Jan Klemkow <j.klemkow aAa wemelug DoT de> (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/05/03 00:00:58

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add telephony/coturn to CVE table

Fixes CVE-2018-4056, CVE-2018-4058, and CVE-2018-4059.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/05/03 00:06:30

Modified files:
	usr.bin/ssh    : progressmeter.c 

Log message:
Use the correct (according to POSIX) format for left-justification
in snmprintf. bz#3002, patch from velemas at gmail.com, ok markus@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/03 00:17:52

Modified files:
	graphics/digikam: Makefile distinfo 
	graphics/digikam/patches: 
	                          patch-core_app_utils_digikam_version_h_cmake_in 
	graphics/digikam/pkg: PLIST 
Added files:
	graphics/digikam/patches: 
	                          patch-core_libs_kmemoryinfo_libstatgrab_kmemoryinfo_backend_cpp 
	                          patch-core_libs_pgfutils_libpgf_PGFplatform_h 
Removed files:
	graphics/digikam/patches: 
	                          patch-core_libs_kmemoryinfo_kmemoryinfo_backend_cpp 
	                          patch-core_libs_pgfutils_PGFplatform_h 

Log message:
Update Digikam to 6.1.0

Notable new features:

- Full support of video files management working just like photos.
- An integration of all import/export web-service tools in LightTable, Image
editor and Showfoto.
- Raw file decoding engine supporting new cameras.
- Similarity data is now stored in a separate database file.
- Simplified web-service authentication using OAuth protocol.
- New tools to export to Pinterest, OneDrive and Box web-services.
- The capability to re-organize the icon-view contents manually.

- New Plugins Interface ���DPlugins���


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/05/03 00:22:34

Modified files:
	security/suricata: Makefile distinfo 
	security/suricata/patches: patch-configure_ac 
	                           patch-src_suricata_c 
Removed files:
	security/suricata/patches: patch-src_suricata_h 

Log message:
Update for Suricata to 4.1.4 and suricata-update to 1.0.5.

While here we prepare Suricata for version 5 with rust included,
some patches already applied upstream thanks to bluhm@.

OK bluhm@ jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/03 00:26:38

Modified files:
	graphics/digikam: Makefile 
Added files:
	graphics/digikam/patches: patch-core_app_DigikamTarget_cmake 

Log message:
add missing patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/03 00:38:46

Modified files:
	security/pdfcrack: Makefile distinfo 
	security/pdfcrack/patches: patch-Makefile 
	security/pdfcrack/pkg: PLIST 

Log message:
Update to pdfcrack-0.17.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 00:59:58

Modified files:
	graphics/py-matplotlib: Makefile 
	graphics/py-matplotlib/pkg: PLIST 

Log message:
Unbreak !python3
Error: duplicate item in packing-list /usr/local/lib/python2.7/site-packages/matplotlib/cbook
Error: duplicate item in packing-list /usr/local/lib/python2.7/site-packages/matplotlib/testing/_nose
Error: duplicate item in packing-list /usr/local/lib/python2.7/site-packages/matplotlib/testing/_nose/plugins


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/03 01:35:59

Modified files:
	graphics/py-matplotlib: Makefile 
Added files:
	graphics/py-matplotlib/patches: patch-setup_py 

Log message:
Fix py-matplotlib-2.2.4 build.

naddy@ and ajacoutot@, independently from each other, found that the
recent update of py-matplotlib does not build. Issue is caused by me not
noticing that matplotlib tries to download jquery-ui-1.12.1, which fails
when building in a chroot using dpb. Instead of downloading jquery-ui
use the bundled files.

REVISION is not bumped as patched file is not included in the package,
and no new files are added.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/03 01:54:22

Modified files:
	security/py-ecdsa: Makefile distinfo 

Log message:
Update to py-ecdsa-0.13.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 01:59:10

Modified files:
	x11/gnome/tracker: Makefile distinfo 
	x11/gnome/tracker/patches: 
	                           patch-tests_functional-tests_test-runner_sh 

Log message:
Update to meta-tracker-2.2.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 01:59:23

Modified files:
	x11/gnome/tracker-miners: Makefile distinfo 

Log message:
Update to tracker-miners-2.2.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/05/03 01:59:37

Modified files:
	www/httrack    : Makefile 

Log message:
switch HOMEPAGE to HTTPS


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 02:18:04

Modified files:
	multimedia/qtav: Makefile 

Log message:
Unbreak: ports/multimedia/qtav: Poisoned variable NO_TESTS is already set


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/03 02:46:51

Modified files:
	net/gssdp      : Makefile distinfo 
Removed files:
	net/gssdp/patches: patch-libgssdp_gssdp-net-posix_c 

Log message:
update to gssdp-1.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/03 03:01:35

Modified files:
	net/gupnp/core : Makefile distinfo 

Log message:
update to gupnp-1.2.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/03 03:39:01

Modified files:
	usr.bin/mandoc : main.c 

Log message:
In man(1) mode, when the first argument starts with a digit,
optionally followed by a letter, and at least one more argument
follows, interpret the first argument as a section name even when
additional characters follow after the digit and letter.

This is needed because many operating systems have section names
consisting of a digit followed by more than one letter - for example
Illumos, Solaris, Linux, even NetBSD.

There is very little risk of regressions: in the whole corpus of
manual pages on man.openbsd.org, there isn't a single manual page
name starting with a digit.  And even if programs like "0ad" or
"4channels" had manual pages, "man 0ad" and "man -a cat 0ad" would
still work, only "man -a 0ad cat" will fail with "man: No entry for
cat in section 0ad of the manual."

Fixing one of the issues reported by Lorenzo Beretta <loreb at github>
as part of https://github.com/void-linux/void-packages/issues/9868 .


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 04:00:48

Modified files:
	usr.bin/tmux   : status.c 

Log message:
Fix reverse attribute in status line, GitHub issue 1709.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/03 04:03:48

Modified files:
	sysutils/ttyplot: Makefile distinfo 

Log message:
Update ttyplot to 1.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/05/03 05:06:26

Modified files:
	www/varnish    : Makefile distinfo 
	www/varnish/patches: patch-lib_libvmod_unix_cred_compat_h 
	www/varnish/pkg: MESSAGE PLIST 
Removed files:
	www/varnish/patches: patch-doc_sphinx_reference_varnishd_rst 

Log message:
Update for Varnish to 6.2.0

https://github.com/varnishcache/varnish-cache/blob/6.2/doc/changes.rst#varnish-cache-611-2018-10-26

OK kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/03 05:09:55

Modified files:
	www/stagit     : Makefile distinfo 

Log message:
Update to stagit-0.9.2

From Hiltjo Posthuma, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/03 05:17:32

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
update to 1.3 (slightly faster)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/03 05:59:52

Modified files:
	devel/p5-Test-Object: Makefile 

Log message:
p5-Test-Object: requires FIX_EXTRACT_PERMISSIONS

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/03 06:13:33

Modified files:
	emulators/atari800: Makefile distinfo 
Removed files:
	emulators/atari800/patches: patch-src_atari800_man 

Log message:
Update atari800 to 4.1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/05/03 06:35:00

Modified files:
	www/stagit     : Makefile 

Log message:
Add maintainer, who happens to be upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/05/03 06:59:00

Modified files:
	net/syncthing  : Makefile distinfo 
	net/syncthing/patches: patch-build_go 
	net/syncthing/pkg: PLIST 

Log message:
Update net/syncthing to version 1.1.1.

OK bket@ and gonzalo@. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/03 07:02:00

Modified files:
	sbin/unwind    : unwind.c 

Log message:
Revert previous, I got too excited and forgot about the config file :(


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/03 07:04:40

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 sysupgrade.sh 

Log message:
Only fetch and upgrade if a new snapshot is available.
Based on a diff by Marco Bonetti (sid77 AT slackware.it).

discussed with deraadt@, OK kn


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/03 07:32:57

Modified files:
	math/cfitsio/patches: patch-fitsio2_h 

Log message:
regen patch

(offset 30 lines)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/03 07:44:26

Modified files:
	graphics/p5-Image-MetaData-JPEG: Makefile 

Log message:
Remove giovanni@ as maintainer per his request

I missed this change in the other commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/03 07:45:29

Modified files:
	lang/scheme48  : Makefile 
	news/nn        : Makefile 

Log message:
Remove maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/03 07:47:01

Modified files:
	mail/sylpheed  : Makefile 

Log message:
Update maintainer's email address per his request


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/03 08:24:13

Modified files:
	sys/kern       : vfs_vops.c 

Log message:
Make VOP_ADVLOCK() safe to use without kernel lock

All non-dummy implementations of VOP_ADVLOCK() rely on lf_advlock()
which is now safe to use without the kernel lock. Because VOP_ADVLOCK()
does not make the vnode dirty, it is unnecessary to keep track of
in-flight vnode lock operations and the updating of vnode->v_inflight
can be dropped from VOP_ADVLOCK(). This makes VOP_ADVLOCK() safe to use
without the kernel lock.

OK tedu@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/03 08:28:58

Modified files:
	distrib/miniroot: maketz.sh 

Log message:
During debugging, media are often built without DESTDIR correctly set.
Such media are not entirely accurate -- that's fine.  However one case
is very bad -- the TZ tree is entirely skipped, resulting in artificially
smaller media and confusion.  Just assume DESTDIR=/ for that case...


CVSROOT:	/cvs
Module name:	src
Changes by:	ian@cvs.openbsd.org	2019/05/03 08:44:19

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 sysupgrade.sh 

Log message:
sysupgrade gains -n for no-reboot option. Accidentally duplicated benno's diff, who
graciously OK'd mine. Improvement from naddy; polishing and OKs from kn and ingo.


CVSROOT:	/cvs
Module name:	src
Changes by:	ian@cvs.openbsd.org	2019/05/03 08:48:13

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
typo in previous


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 08:51:31

Modified files:
	usr.bin/tmux   : server-client.c tmux.h tty-keys.c 

Log message:
Instead of processing keys all together, put them up on the client
command queue so they are ordered correctly with the commands that they
execute.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/03 09:08:03

Modified files:
	net/toxcore    : Makefile 
Added files:
	net/toxcore/patches: patch-CMakeLists_txt 

Log message:
toxcore: build with base-gcc on !base-clang archs, instead of ports-gcc
Done by removing an unsupported warning option.

Proposed by and OK naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/03 09:08:47

Modified files:
	usr.sbin/bgpd  : parse.y 

Log message:
Make sure that the as-set name is not too long when parsing the config file.
Fixes an assertion caught in new_as_set() parsing some arouteserver config.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/03 09:10:25

Modified files:
	math/ebc       : Makefile distinfo 

Log message:
Update to ebc-1.2.8
Changelog: https://github.com/gavinhoward/bc/compare/1.2.5...1.2.8


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/03 09:18:14

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 sysupgrade.sh 

Log message:
Rename -c to -s since the correct term is snapshot, not current. Also
implement -r for symetry reasons to force an upgrade to the next
release.
suggested by & OK deraadt, OK benno, kmos


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/03 09:20:29

Modified files:
	usr.sbin/bgpd  : bgpd.h 

Log message:
Bump SET_NAME_LEN to 128 since arouteserver produces names that are more
than 64 chars long.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/03 09:25:47

Modified files:
	usr.sbin/bgpd  : bgpd.h 

Log message:
Adjust some comments that were misleading. Those flags are used by bgpd
but only on the request side of a bgpctl call.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/03 09:27:28

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register graphics/png vulnerability


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 09:43:01

Modified files:
	usr.bin/tmux   : cmd-queue.c tmux.h 

Log message:
Correct ordering when adding after an existing item.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 09:48:33

Modified files:
	graphics/digikam-kde4: Makefile 

Log message:
Unbreak...

|Error: change in plist
| If the old and new builds were done correctly
| (fully up-to-date ports tree including relevant MODULES)
| then someone probably forgot to bump a REVISION.
| (see bsd.port.mk(5), PACKAGE_REPOSITORY)
--- /exopi-cvs/ports/plist/amd64/libksane-4.14.3p4
+++ /exopi-cvs/ports/plist/amd64/libksane-4.14.3p4-new
@@ -1,3 +1,4 @@
+@comment $OpenBSD: PLIST-sane,v$
@name libksane-4.14.3p4
@version 5
@comment pkgpath=graphics/digikam-kde4,-sane cdrom=yes ftp=yes
@@ -21,7 +22,6 @@
@wantlib pthread.26.1
@wantlib sane.2.0
@cwd /usr/local
-@comment $OpenBSD:


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/03 10:13:12

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
micro-update, source tweaks


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 10:13:39

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.323.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/03 10:14:31

Modified files:
	usr.bin/mandoc : main.c 

Log message:
In man(1) mode with a specific section requested,
try harder to find the best match.

Use this order of preference:
1. The section in both the directory name and the file name matches exactly.
2. The section in the file name matches exactly.
3. The section in the directory name matches exactly.
4. Neither of them matches exactly.
The latter can happen when mansearch() finds substring matches
or when the second .Dt argument mismatches the dir and file names.

Lorenzo Beretta <loreb at github> reported that this caused real
problems on Void Linux, like "man 3 readline" showing readline(3m).
See https://github.com/void-linux/void-packages/issues/9868 for details.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 10:20:13

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.141.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 10:20:25

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.141.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 10:20:39

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.151.


CVSROOT:	/cvs
Module name:	src
Changes by:	tobias@cvs.openbsd.org	2019/05/03 10:31:34

Modified files:
	lib/libevent   : buffer.c 

Log message:
Fixed endless loop/ OOB write on 64 bit systems with large buffers.

If a buffer exceeds UINT_MAX (which is only possible on 64 bit systems)
an endless loop or OOB write can occur in buffer-specific readline
functions.

Switching variables in function scope to size_t solves these issue because
relevant fields in struct buffer are already size_t.

ok cheloha, deraadt, nicm, tedu


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/03 10:31:37

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/pkg: PLIST 

Log message:
Update to glib2-2.60.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/03 10:32:28

Added files:
	astro/kstars   : Makefile distinfo 
	astro/kstars/patches: patch-CMakeLists_txt 
	                      patch-cmake_modules_CheckNodump_cmake 
	astro/kstars/pkg: DESCR PLIST 

Log message:
re-add kstars 3.2.1

Feedback and OK kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/03 10:33:25

Modified files:
	geo/py-rasterio: Makefile distinfo 
	geo/py-rasterio/pkg: PLIST 

Log message:
Update to py-rasterio 1.0.22.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/03 10:35:03

Modified files:
	x11/kde4       : Makefile 
	meta/kde4      : Makefile 

Log message:
unhook x11/kde4/kstars


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/03 10:35:46

Modified files:
	astro          : Makefile 

Log message:
hook kstars


CVSROOT:	/cvs
Module name:	www
Changes by:	landry@cvs.openbsd.org	2019/05/03 10:40:58

Modified files:
	.              : 65.html 

Log message:
9495 sparc64 packages


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 10:51:29

Modified files:
	usr.bin/tmux   : cmd-resize-pane.c cmd.c server-client.c 

Log message:
Fix mouse positioning when the pane is not entirely visible.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/03 10:53:07

Modified files:
	sys/net        : if_bridge.c 

Log message:
An if_put() was missing in one branch of bridge_process().  This
caused a hanging "ifconfig bridge0 destroy" and a subsequent uvm
fault.
reported and tested by Hrvoje Popovski; OK visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/03 10:59:10

Modified files:
	audio/mp3splt  : Makefile 
	lang/pcc       : Makefile 
	sysutils/entr  : Makefile 
	mail/tmda      : Makefile 
	sysutils/p5-Schedule-At: Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/03 11:16:27

Modified files:
	usr.sbin/httpd : httpd.conf.5 httpd.h parse.y server_http.c 

Log message:
Add a "forwarded" log format that extends the "combined" log format
by including the contents of the X-Forwarded-For and X-Forwarded-Port
headers.  If httpd(8) runs behind a proxy like relayd(8), this allows
tracking the origin of the requests.  The format is compatible with
log analyzers such as GoAccess and Webalizer.

Patch from Bruno Flueckiger

ok benno, reyk


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/03 11:31:05

Modified files:
	usr.bin/mandoc : main.c 

Log message:
In fs_lookup(), use stat(2) rather than access(2) to check file existence.
Some mildly broken real-world packages on some operating systems
contain dangling symlinks in manual page directories: pestering the
user to run makewhatis(8) makes no sense because that won't help.
On the other hand, missing read permissions deserve ugly error messages
and are unlikely to occur in practice anyway.

Fixing an issue reported by Lorenzo Beretta <loreb at github>
as part of https://github.com/void-linux/void-packages/issues/9868 .


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/03 11:45:17

Modified files:
	usr.bin/mandoc : manpath.c 

Log message:
When processing unknown output options, prevent passing NULL to printf.

ok schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 12:00:19

Modified files:
	usr.bin/tmux   : tty-keys.c 

Log message:
Use the right index for user-keys.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/03 12:16:57

Modified files:
	usr.bin/mandoc : mandocdb.c 

Log message:
Enter dangling .so links into the database, to avoid harassing
users of man(1) about running makewhatis(8), which won't help.
Seeing the content of the broken .so request might even help
users to figure out how to access the manual page they want.

Fixing the last issue reported by Lorenzo Beretta <loreb at github>
as part of https://github.com/void-linux/void-packages/issues/9868 .


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/03 12:23:22

ports/sysutils/librelp/patches

Update of /cvs/ports/sysutils/librelp/patches
In directory cvs.openbsd.org:/tmp/cvs-serv62766/patches

Log Message:
Directory /cvs/ports/sysutils/librelp/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/03 12:38:45

Modified files:
	usr.bin/mandoc : main.c manpath.c 

Log message:
avoid duplicate "bad argument" error message, also shortening the code


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/03 12:39:08

Modified files:
	sys/net        : bridgestp.c 

Log message:
Add missing bridge_getbif(), reported by jsg@.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 12:42:40

Modified files:
	usr.bin/tmux   : cmd-resize-pane.c cmd.c server-client.c 
	                 window-copy.c 

Log message:
Do not store the mouse position we calculate as the start of a drag back
into the mouse event that later code uses, it has been adjusted and they
should use the original position. GitHub issue 1710.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/03 12:51:02

Modified files:
	lang/scheme48  : Makefile 

Log message:
Fix typo.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 12:59:58

Modified files:
	usr.bin/tmux   : cmd-queue.c 

Log message:
Insert after the right element on queue.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/03 14:03:59

Modified files:
	distrib/alpha/miniroot: Makefile 
	distrib/amd64/iso: Makefile 
	distrib/amd64/ramdiskA: Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
	distrib/arm64/ramdisk: Makefile 
	distrib/armv7/miniroot: Makefile.inc 
	distrib/armv7/ramdisk: Makefile 
	distrib/hppa/ramdisk: Makefile 
	distrib/i386/iso: Makefile 
	distrib/i386/ramdisk: Makefile 
	distrib/i386/ramdisk_cd: Makefile 
	distrib/landisk/ramdisk: Makefile 
	distrib/loongson/ramdisk: Makefile 
	distrib/luna88k/ramdisk: Makefile 
	distrib/macppc/ramdisk: Makefile 
	distrib/octeon/ramdisk: Makefile 
	distrib/ramdisk: Makefile 
	distrib/sgi/cdfs: Makefile 
	distrib/sgi/iso: Makefile 
	distrib/sgi/ramdisk: Makefile 
	distrib/socppc/ramdisk: Makefile 
	distrib/sparc64/miniroot: Makefile 
	distrib/sparc64/ramdisk: Makefile 
	distrib/sparc64/ramdiskB: Makefile 

Log message:
Further removal of differences (using install instead of cp, sorting
chunks in a specified order, using a few variables, performing bsd.rd
to bsd.gz conversion as similar as possible)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/03 14:20:05

Modified files:
	devel/llvm     : Makefile 

Log message:
Actually disable -extras

no_* PSEUDO_FLAVORS are ignored under dpb(1) / BUILD_ONCE=Yes
Reminded by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/03 14:38:15

Modified files:
	distrib/miniroot: install.sub 

Log message:
Bring v6_config() into the modern age. Remember
'autoconf' if install restarts. Be more
careful to keep things clean. Remove unnecessary
checks left over from rtsol days.

Started by claudio@ noticing 'autoconf' is not
remembered.

ok florian@ kn@ (mostly)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 14:44:24

Modified files:
	usr.bin/tmux   : cmd-display-message.c cmd-split-window.c 
	                 format.c input.c server-client.c server-fn.c 
	                 spawn.c tmux.1 tmux.h window.c 

Log message:
Allow panes to be empty (no command), output can be piped to them with
split-window or display-message -I.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/03 15:21:00

Modified files:
	usr.bin/tmux   : cfg.c 

Log message:
Fix order of insertion in load_cfg.


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2019/05/03 16:29:00

Modified files:
	math/plplot    : Makefile 

Log message:
dropping maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/03 17:17:58

Modified files:
	net/wget       : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Security update to 1.20.3 for a buffer overflow vulnerability.
From maintainer Nam Nguyen.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/03 17:49:06

Modified files:
	distrib/sgi/cdfs: Makefile 

Log message:
cannot give newfs a -c parameter yet, since this Makefile still
thinks in terms of MB and it's not a trivial conversion.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/03 17:53:05

Modified files:
	distrib/sgi/cdfs: Makefile 

Log message:
Use MOUNT_POINT throughout, consistant with other platforms.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/03 18:17:11

Modified files:
	comms/x3270    : Makefile 
	www/squidguard : Makefile 
	net/clive      : Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/05/03 19:14:34

Modified files:
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod: Perldoc.pm 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: ToMan.pm 

Log message:
Fix Pod::Perldoc::ToMan and use it as the default perldoc formatter

From Andrew Daugherity <andrew.daugherity () gmail ! com>

Corrections to fix and OK millert@, suggestions and OK schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/03 19:18:59

Modified files:
	audio/mkplaylist: Makefile 
	audio/mp3cut   : Makefile 
	audio/multimux : Makefile 
	audio/p5-CDDB-File: Makefile 
	devel/p5-Term-ProgressBar: Makefile 
	misc/p5-Term-Animation: Makefile 
	misc/randtype  : Makefile 
	net/p5-DNS-ZoneParse: Makefile 
	net/p5-Net-FTP-AutoReconnect: Makefile 
	security/ipguard: Makefile 
	www/p5-CSS-Minifier: Makefile 
	www/p5-HTML-Copy: Makefile 
	www/p5-HTML-SiteTear: Makefile 
	www/p5-JavaScript-Minifier: Makefile 
	www/p5-pQuery  : Makefile 
	www/retawq     : Makefile 
	misc/supercat  : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/03 19:25:49

Modified files:
	www/p5-URI     : Makefile distinfo 

Log message:
Update www/p5-URI to 1.76

OK sthen@, cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/03 19:27:58

Modified files:
	devel/p5-Package-Stash: Makefile distinfo 
	devel/p5-Package-Stash/pkg: PLIST 

Log message:
Update devel/p5-Package-Stash to 0.38

and stop installing bin/package-stash-conflicts

OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/03 19:39:09

Log message:
    Add www/p5-Mojolicious-Plugin-AccessLog
    
    Mojolicious plugin to easily generate an access log.
    
    From MAINTAINER Olivier Cherrier <oc () symacx ! com>
    OK cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190503
    
    N ports/www/p5-Mojolicious-Plugin-AccessLog/Makefile
    N ports/www/p5-Mojolicious-Plugin-AccessLog/distinfo
    N ports/www/p5-Mojolicious-Plugin-AccessLog/pkg/DESCR
    N ports/www/p5-Mojolicious-Plugin-AccessLog/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/03 19:40:22

Log message:
    Add www/p5-Mojolicious-Plugin-Thumbnail
    
    Simple Mojolicious plugin for fast creating thumbnails using Imager.
    
    From MAINTAINER Olivier Cherrier <oc () symacx ! com>
    OK cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190503
    
    N ports/www/p5-Mojolicious-Plugin-Thumbnail/Makefile
    N ports/www/p5-Mojolicious-Plugin-Thumbnail/distinfo
    N ports/www/p5-Mojolicious-Plugin-Thumbnail/pkg/DESCR
    N ports/www/p5-Mojolicious-Plugin-Thumbnail/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/03 19:41:27

Modified files:
	www            : Makefile 

Log message:
+p5-Mojolicious-Plugin-AccessLog p5-Mojolicious-Plugin-Thumbnail


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/03 20:00:17

Log message:
    Import games/gnukem, an open source retro-style 2D scrolling platform
    shooter game.
    Big-endian fixes from Raphael Graf.
    macppc testing and ok cwen@
    
    Dave Gnukem is an open source retro-style 2D scrolling platform shooter,
    inspired by and similar to Duke Nukem 1 (a famous original 1991 game
    that launched the Duke Nukem series). It features an integrated level
    editor. (Please note this is not a 'clone' or a 're-make'; it is
    probably most akin to a parody.)
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190503
    
    N ports/games/gnukem/Makefile
    N ports/games/gnukem/distinfo
    N ports/games/gnukem/patches/patch-Makefile
    N ports/games/gnukem/patches/patch-src_game_cpp
    N ports/games/gnukem/patches/patch-src_datadir_h
    N ports/games/gnukem/patches/patch-src_sdl_djsound_cpp
    N ports/games/gnukem/patches/patch-src_sys_defs_h
    N ports/games/gnukem/patches/patch-src_sdl_djgraph_cpp
    N ports/games/gnukem/patches/patch-src_djimage_cpp
    N ports/games/gnukem/pkg/PLIST
    N ports/games/gnukem/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/03 20:00:51

Modified files:
	games          : Makefile 

Log message:
+gnukem


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/03 20:52:35

Modified files:
	textproc/p5-PPI: Makefile distinfo 
	textproc/p5-PPI/pkg: PLIST 

Log message:
Update textproc/p5-PPI to 1.264

OK cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/04 00:40:33

Modified files:
	sys/dev/pci    : files.pci 
Added files:
	sys/dev/pci    : if_mcx.c 

Log message:
Add mcx(4), a driver for Mellanox ConnectX-4 (and later) Ethernet
controllers, written by dlg@ and me based on the cut down non-NDA
programming reference manual Mellanox were nice enough to release.

ok dlg@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/04 01:55:31

Modified files:
	sys/dev/pci/drm: drm_file.c 

Log message:
drm: Fix drm_release() and device unplug

From Noralf Tronnes
c5eb9a424ebd2d9f9e3cccdf2bfbb415c2921261 in linux 4.19.y/4.19.39
3f04e0a6cfebf48152ac64502346cdc258811f79 in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 01:57:00

Modified files:
	lang/php/7.2   : Makefile distinfo 
	lang/php/7.2/patches: patch-acinclude_m4 patch-aclocal_m4 
	                      patch-configure_ac 
	                      patch-ext_mysqlnd_config9_m4 
	                      patch-ext_tidy_config_m4 
	                      patch-ext_tidy_tidy_c patch-main_php_h 
	                      patch-main_php_ini_c 
	                      patch-php_ini-development 
	                      patch-php_ini-production 
	                      patch-sapi_cgi_cgi_main_c 
	                      patch-sapi_cli_php_cli_c 
	                      patch-sapi_fpm_fpm_fpm_children_c 
	                      patch-sapi_fpm_www_conf_in 
	                      patch-scripts_Makefile_frag 
	                      patch-scripts_php-config_in 
	                      patch-scripts_phpize_in 

Log message:
update to php-7.2.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 02:00:59

Modified files:
	lang/php/7.1/patches: patch-acinclude_m4 patch-aclocal_m4 
	                      patch-configure_in 
	                      patch-ext_mysqlnd_config9_m4 
	                      patch-ext_tidy_config_m4 
	                      patch-ext_tidy_tidy_c patch-main_php_h 
	                      patch-main_php_ini_c 
	                      patch-php_ini-development 
	                      patch-php_ini-production 
	                      patch-sapi_cgi_cgi_main_c 
	                      patch-sapi_cli_php_cli_c 
	                      patch-sapi_fpm_www_conf_in 
	                      patch-scripts_Makefile_frag 
	                      patch-scripts_php-config_in 
	                      patch-scripts_phpize_in 
	lang/php/7.3/patches: patch-acinclude_m4 patch-aclocal_m4 
	                      patch-ext_mysqlnd_config9_m4 
	                      patch-main_php_h patch-main_php_ini_c 
	                      patch-php_ini-development 
	                      patch-php_ini-production 
	                      patch-sapi_cgi_cgi_main_c 
	                      patch-sapi_cli_php_cli_c 
	                      patch-sapi_fpm_www_conf_in 
	                      patch-scripts_Makefile_frag 
	                      patch-scripts_php-config_in 
	                      patch-scripts_phpize_in 

Log message:
regen patches; no change


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/05/04 03:10:11

Modified files:
	security/pcsc-cyberjack: Makefile distinfo 
	security/pcsc-cyberjack/patches: patch-cjeca32_Debug_cpp 
	                                 patch-configure_ac 
	                                 patch-include_driver_Platform_unix_h 

Log message:
Update to pcsc-cyberjack 3.99.5final.SP13


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/04 04:20:11

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : mcx.4 

Log message:
a quick and dirty manpage for mcx


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/04 04:49:11

Modified files:
	devel/py-cffi  : Makefile distinfo 
	devel/py-cffi/pkg: PLIST 

Log message:
update to py-cffi-1.12.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/04 05:07:35

Modified files:
	devel/libgit2/libgit2: Makefile distinfo 
	devel/libgit2/libgit2/pkg: PLIST 

Log message:
update to libgit2-0.28.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/04 05:07:45

Modified files:
	devel/libgit2/libgit2-glib: Makefile distinfo 
Removed files:
	devel/libgit2/libgit2-glib/patches: 
	                                    patch-libgit2-glib_meson_build 

Log message:
update to libgit2-glib-0.28.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/04 05:07:59

Modified files:
	devel/libgit2/py-git2: Makefile distinfo 
	devel/libgit2/py-git2/pkg: PLIST 

Log message:
update to py-git2-0.28.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/04 05:26:20

Modified files:
	devel/vte3     : Makefile distinfo 
Removed files:
	devel/vte3/patches: patch-bindings_vala_app_vala 

Log message:
update to vte3-0.56.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/04 05:29:40

Modified files:
	devel/help2man : Makefile distinfo 

Log message:
update to help2man-1.47.10


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/04 05:34:48

Modified files:
	sys/arch/amd64/amd64: efifb.c mainbus.c 
	sys/arch/amd64/conf: GENERIC 
	sys/arch/amd64/include: efifbvar.h 
	sys/arch/i386/conf: GENERIC 
	sys/conf       : files 
	sys/dev/pci/drm: drm_drv.c files.drm 
	sys/dev/pci/drm/i915: i915_drv.c i915_drv.h 
	sys/dev/pci/drm/include/drm: drmP.h 
	sys/dev/pci/drm/radeon: radeon.h radeon_kms.c 
	sys/dev/wscons : wsdisplay.c wsdisplayvar.h 

Log message:
Improve the interaction between efifb(4), inteldrm(4) and radeondrm(4)
when we have a serial console by introducing the notion of a "primary"
graphics device.  The primary graphics device is the one set up and
used by firmware (BIOS, UEFI).

The goal is to make sure that wsdisplay0 and drm0 reliably attach to
the primary graphics device such that X works out of the box even
if you have multiple cards or if you are using a serial console.

This also fixes the situation where inteldrm(4) or radeondrm(4) would
take over the console on UEFI systems even if the kernel was booted
with a serial console.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/04 05:53:40

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Require root to run (still allow access to usage).

ok naddy@ florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/04 06:00:51

Modified files:
	x11/gnome/at-spi2-atk: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Tarball has been rerolled.
Only change was the project version in meson.build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/04 06:02:40

Modified files:
	graphics/simple-scan: Makefile distinfo 
	graphics/simple-scan/patches: patch-meson_build 
	                              patch-src_simple-scan_vala 
	graphics/simple-scan/pkg: PLIST 

Log message:
Update to simple-scan-3.32.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/04 06:23:56

Modified files:
	share/man/man4 : pci.4 

Log message:
Xr mcx


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/04 06:42:23

Modified files:
	net/mrtg       : Makefile 

Log message:
Various packaging tweaks

- https HOMEPAGE and MASTER_SITES
- register textproc/groff dep, picked up if installed
- sync WANTLIB
- sed -i instead of perl -pi
- don't clobber LDFLAGS


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/04 07:12:02

Modified files:
	x11/gnome/gvfs : Makefile distinfo 

Log message:
Update to gvfs-1.40.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/04 07:37:47

Modified files:
	sys/dev/pci/drm/i915: intel_bios.c 

Log message:
drm/i915/bios: assume eDP is present on port A when there is no VBT

From Thomas Preston
6e0473633af059a559ce7b4cbaa51e389c94085e in mainline linux

Makes inteldrm(4) work on James Hastings's 'HP Stream Laptop 14-cb1XX'
a Gemini Lake system where finding the VBT fails.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/04 07:42:12

Modified files:
	sys/dev/pci    : if_ixl.c 

Log message:
fix array bounds check in ixl_search_link_speed()
ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/04 07:47:25

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 08:04:16

Log message:
    import textproc/pecl-yaml, ok bcallah@
    
    pecl-yaml provides PHP support for YAML 1.1 (YAML Ain't Markup Language)
    serialization using the LibYAML library.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190504
    
    N ports/textproc/pecl-yaml/Makefile
    N ports/textproc/pecl-yaml/distinfo
    N ports/textproc/pecl-yaml/pkg/DESCR
    N ports/textproc/pecl-yaml/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 08:05:26

Modified files:
	textproc       : Makefile 

Log message:
+pecl-yaml,php7{1,2,3}


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/04 08:12:40

Modified files:
	www            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	www/piwik      : Makefile distinfo 
	www/piwik/patches: patch-config_global_ini_php 
	www/piwik/pkg  : DESCR PLIST README 

Log message:
Remove piwik, web app lagging behind upstream

The port does little more than extracting the port and tweaking perms.
Since it is not kept up to date (especially wrt security issues) it
doesn't make sense to provide it here.  ok danj@ sthen@ bcallah@

Note: the project has been renamed to Matomo in January 2018


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 08:29:48

Modified files:
	sysutils/entr  : Makefile distinfo 

Log message:
update to entr-4.2, don't use a wildcard in WRKDIST


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/04 08:42:44

Modified files:
	sys/kern       : kern_event.c 

Log message:
Relax the check in knote_{de,en}queue: don't panic w/o KERNEL_LOCK().

Use splassert_fail() instead, please set kern.splassert to 2 and report
the corresponding stack trace if you see a warning.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/04 08:52:45

Modified files:
	sys/kern       : kern_event.c 

Log message:
Removed all diagnostic, calling printf() here might create a recursion.

Should be revisited once logwakeup() is fixed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/05/04 09:03:15

Modified files:
	lang/go        : Makefile 

Log message:
Ensure GOCACHE refers to a suitable location when building Go.

Issue found and fix verified by phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/05/04 09:08:45

Modified files:
	sysutils/supervisor: Makefile distinfo 
	sysutils/supervisor/patches: patch-supervisor_skel_sample_conf 
	sysutils/supervisor/pkg: PLIST supervisord.rc 

Log message:
Update sysutils/supervisor to version 4.0.2.

OK solene@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/04 09:38:12

Modified files:
	sys/ufs/ufs    : dir.h 

Log message:
Add DIR_ROUNDUP define, from Kirk McKusick
ok millert otto kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/04 09:57:20

Modified files:
	share/man/man4 : ixl.4 mcx.4 pci.4 

Log message:
call these devices "Ethernet device", as other pages do;
prod/ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/04 10:18:35

Modified files:
	sys/arch/arm64/include: asm.h 

Log message:
Remove some junk that we don't use.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/05/04 11:09:12

Modified files:
	multimedia/libv4l: Makefile distinfo 

Log message:
Update to libv4l 1.16.6


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/04 11:14:12

Modified files:
	sys/dev/pci/drm/radeon: radeon_agp.c 

Log message:
Silence "Uunable to acquire AGP" message since we don't support AGP on all
AGP-capable chipsets and probably never will.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/04 11:57:46

Modified files:
	sys/ufs/ufs    : ufs_lookup.c 

Log message:
3 bytes of kernel stack address space were leaked into on-disk directories.
With some gritty work up to 254 bytes can be discovered.  More details at
https://svnweb.freebsd.org/changeset/base/347066
The impact on OpenBSD is very limited:
1 - such stack bytes can be found in raw-device reads, from group operator.
If you can read the raw disks you can undertake other more powerful actions.
2 - read(2) upon directory fd was disabled July 1997 because I didn't like
how grep * would display garbage and mess up the tty, and applying vis(3)
for just directory reads seemed silly.  read(2) was changed to return
0 (EOF).  Sep 2016 this was further changed to EISDIR, so you still cannot
see the bad bytes.
3 - In 2013 when guenther adapted the getdents(2) directory-reading system
call to 64-bit ino_t, the userland data format changed to 8-byte-alignment,
making it incompatible with the 4-byte-alignment UFS on-disk format.  As
a result of code refactoring the bad bytes were not copied to userland.
Bad bytes will remain in old directories on old filesystems, but nothing makes
those bytes user visible.  There will be no errata or syspatch issued.  I
urge other systems which do expose the information to userland to issue
errata quickly, since this is a 254 byte infoleak of the stack which is great
for ROP-chain building to attack some other bug. Especially if the kernel
has no layout/link-order randomization ...
ok kettenis jca millert otto ...


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/04 11:59:40

Modified files:
	sys/arch/amd64/conf: GENERIC RAMDISK_CD 

Log message:
let users try mcx(4)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/04 13:02:49

Modified files:
	net/py-siphon  : Makefile 
	net/py-siphon/pkg: DESCR 

Log message:
Fix HOMEPAGE link to point at the actual project and add a URL
to the THREDDS data server, which is the primary target of users
of this port.

From a tip by Stefan Wollny - Thank you

OK from kn@ and Martin Reindl (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/04 13:48:55

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
* For "unpriv -f file", chown file back to root once the command finishes,
like install.sub does.
* Only verify the signature once.
* Only checksum the newly downloaded files.

ok florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/04 14:13:37

Modified files:
	sysutils/restic: Makefile distinfo 

Log message:
Update to restic-0.9.5.

Changelog can be found at
https://github.com/restic/restic/blob/master/CHANGELOG.md

OK abieber@ (maintainer, who has the same diff locally)


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/05/04 14:16:43

Modified files:
	sysutils/librelp: Makefile distinfo 
Added files:
	sysutils/librelp/patches: patch-src_tcp_c 

Log message:
Update librelp to version  1.4.0. It now supports OpenSSL and GnuTLS.

Many inputs from jca@
OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/04 14:18:40

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
oops, fix unpriv() argument handling; from install.sub


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/04 14:52:01

Modified files:
	misc/gpsd      : Makefile 

Log message:
Amend LIB_DEPENDS-main so libestdc++ from gcc-libs can be found

Unbreaks build on sparc64.  Sync WANTLIB-main while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 15:46:17

Modified files:
	lang/go        : go.port.mk 
	databases/influxdb: Makefile 
	devel/go-tools : Makefile 
	devel/hub      : Makefile 
	editors/micro  : Makefile 
	net/dnscrypt-proxy: Makefile 
	net/mattermost-server: Makefile 
	net/syncthing  : Makefile 
	security/gopass: Makefile 
	security/keybase: Makefile 
	sysutils/consul-template: Makefile 
	sysutils/prometheus: Makefile 
	sysutils/telegraf: Makefile 
	www/gitea      : Makefile 
	www/honk       : Makefile 
Removed files:
	editors/micro/patches: patch-Makefile 

Log message:
No need for a special MODGO_ENV for go.port.mk, just use normal MAKE_ENV
like the rest of the ports tree. This also allows removing a bunch of
manual setting of PATH="${PORTPATH}" HOME="${PORTHOME}" done in various
ports etc. This also makes sure CFLAGS is passed through (not everything
honours it but it does improve at least some ports).

Remove NO_CCACHE from www/honk that was added because the above problem
resulted in ccache variables not being passed through correctly breaking
the cc calls in this.

ok kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 15:47:33

Modified files:
	lang/php/7.1   : Makefile distinfo 

Log message:
update to php-7.1.29


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 15:56:18

Modified files:
	net/dhcpcd     : Makefile distinfo 
Added files:
	net/dhcpcd/patches: patch-src_if-bsd_c 

Log message:
update to dhcpcd-7.2.2, fixes:

DHCP: Ensure dhcp is running on the interface received from
BSD: Link handling has been simplified, however it is expected
that if an interface supports SIOCGIFMEDIA then it reports
the correct link status via route(4) for reliable operations
BPF: ARP filter is more robust
BSD and sun: Validate RTM message lengths
DHCPv6 (security): Fix a potential read overflow with D6_OPTION_PD_EXCLUDE


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/04 16:01:12

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
add dhcpcd version check
update php version checks, drop old php branches


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/04 18:00:11

Modified files:
	devel/p5-String-Format: Makefile distinfo 

Log message:
p5-String-Format: update to 1.18
Changelog:
https://metacpan.org/source/SREZIC/String-Format-1.18/Changes

OK steven@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/04 18:13:41

Modified files:
	archivers/unrar: Makefile distinfo 

Log message:
update to 5.71


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/04 22:31:22

Modified files:
	audio/cdparanoia: Makefile 
	audio/celt     : Makefile 
	audio/celt07   : Makefile 
	audio/libao    : Makefile 
	audio/libogg   : Makefile 
	audio/libvorbis: Makefile 
	audio/speex    : Makefile 
	audio/speexdsp : Makefile 
	audio/vorbis-tools: Makefile 
	multimedia/libtheora: Makefile 
	multimedia/oggz: Makefile 
	net/ezstream   : Makefile 
	net/icecast    : Makefile 
	net/ices       : Makefile 
	net/ices2      : Makefile 
	net/libshout   : Makefile 

Log message:
Use https for xiph.org master_sites and homepages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/04 23:07:45

Modified files:
	audio/flac     : Makefile 

Log message:
Move master_sites to https.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/04 23:08:26

Modified files:
	productivity/gnucash: Makefile 

Log message:
Move homepage to https.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/05 00:09:47

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 

Log message:
sentences start with capitals;


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/05 00:54:33

Log message:
    Import libsignal-protocol-c-2.3.2.
    
    The Signal Protocol is a ratcheting forward secrecy protocol that works in
    synchronous and asynchronous messaging environments.
    
    From Alex Holst; thanks!
    
    ok bcallah@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190505
    
    N ports/net/libsignal-protocol-c/Makefile
    N ports/net/libsignal-protocol-c/distinfo
    N ports/net/libsignal-protocol-c/patches/patch-tests_test_common_openssl_c
    N ports/net/libsignal-protocol-c/patches/patch-tests_test_common_h
    N ports/net/libsignal-protocol-c/patches/patch-tests_test_session_builder_c
    N ports/net/libsignal-protocol-c/patches/patch-tests_test_session_cipher_c
    N ports/net/libsignal-protocol-c/pkg/DESCR
    N ports/net/libsignal-protocol-c/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/05 00:55:09

Modified files:
	net            : Makefile 

Log message:
+libsignal-protocol-c


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/05 02:14:11

Modified files:
	news/nzbget    : Makefile distinfo 
	news/nzbget/patches: patch-nzbget_conf 

Log message:
Update to nzbget-21.0.

Changelog can be found at
https://github.com/nzbget/nzbget/releases/tag/v21.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/05 03:09:59

Modified files:
	sys/dev/pci    : azalia.c ccp_pci.c pcidevs 

Log message:
Harmonize AMD CPU/APU devices.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/05 03:11:00

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 03:41:57

Modified files:
	astro/kstars   : Makefile 

Log message:
Unbreak: missing EPOCH
Found newer package kstars-4.14.3p5 in ports/plist/amd64


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 03:47:51

Modified files:
	devel/libgsf   : Makefile distinfo 

Log message:
Update to libgsf-1.14.46.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 03:48:15

Modified files:
	misc/osinfo/osinfo-db: Makefile distinfo 
	misc/osinfo/osinfo-db/pkg: PLIST 

Log message:
Update to osinfo-db-20190504.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 04:17:43

Modified files:
	devel/dconf    : Makefile 

Log message:
dconf: use ports-gcc on !base-clang archs because it uses C99 constructs

OK jca@ aja@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 04:21:30

Modified files:
	devel/p5-Universal-can: Makefile distinfo 

Log message:
p5-Universal-can: update to 1.20140328
Changelog:
https://metacpan.org/source/CHROMATIC/UNIVERSAL-can-1.20140328/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 04:22:57

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Change variable name.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 04:24:00

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Initialise variable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/05 04:24:26

Added files:
	mail/dspam/patches: patch-configure 

Log message:
Don't error out if CR_ERROR_FIRST isn't defined.

Not shipped by recent versions of mariadb and not used anywhere in the
dspam source code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 04:25:13

Modified files:
	devel/p5-Universal-isa: Makefile distinfo 

Log message:
p5-Universal-isa: update to 1.20171012
Changelog:
https://metacpan.org/source/ETHER/UNIVERSAL-isa-1.20171012/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 04:34:01

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
For "unpriv -f file", chown file back to root once the command finishes,
like install.sub and sysupgrade(8) do.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 04:48:05

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.142.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 04:48:17

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.142.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 04:48:29

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.152.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/05 06:52:58

Modified files:
	mail/evolution-rss: Makefile 

Log message:
Regen WANTLIB.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/05 07:28:14

Modified files:
	sys/arch/mips64/include: cpu.h 
	sys/arch/mips64/mips64: cpu.c sendsig.c 

Log message:
Turn need_resched() and signotify() into proper functions on mips64.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/05 07:36:28

Modified files:
	sys/arch/mips64/mips64: cpu.c 

Log message:
Call cpu_unidle() from need_resched() on mips64 like most
other architectures.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/05 09:10:00

Modified files:
	x11/xkeycaps   : Makefile 

Log message:
Remove maintainer because unreachable

554 5.4.0 Error: too many hops (in reply to end of DATA command)


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/05 09:15:46

Modified files:
	textproc/lq-sp : Makefile 
	textproc/sp    : Makefile 
	textproc/validate: Makefile 
	textproc/wdg-sgml-lib: Makefile 
	x11/gtk2-oxygen-engine: Makefile 
	x11/gtk3-oxygen-engine: Makefile 
	x11/pwm        : Makefile 
	math/p5-Math-Random-ISAAC: Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/05 09:43:25

Modified files:
	sys/arch/octeon/octeon: locore.S machdep.c 

Log message:
Use the .bss for the bootstrap stack of mips_init(). This way the memory
region is properly allocated by the firmware.

Move the .bss clearing to locore.S because the section has to be ready
when the stack is taken into use. This additionally makes the
C environment more consistent at the start of mips_init().


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/05 09:44:13

Modified files:
	devel/py-ipykernel: Makefile 
	devel/py-jedi  : Makefile 
	devel/py-jupyter_client: Makefile 
	devel/py-jupyter_core: Makefile 
	devel/py-parso : Makefile 
	devel/py-pathlib2: Makefile 
	devel/py-rope  : Makefile 
	devel/py-wurlitzer: Makefile 
	devel/spyder/py-spyder-kernels: Makefile 
	devel/spyder/spyder: Makefile 
	devel/spyder   : Makefile.inc 
	graphics/sk1   : Makefile 
	math/py-pandas : Makefile 
	net/py-zmq     : Makefile 
	net/qbittorrent: Makefile.inc 
	net/qbittorrent/qbittorrent: Makefile 
	net/qbittorrent/qbittorrent-nox: Makefile 
	print/lyx      : Makefile 
	sysutils/py-scandir: Makefile 
	textproc/py-xlrd: Makefile 
	x11/py-qtpy    : Makefile 

Log message:
Remove mariani@ as maintainer per his request


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/05 09:59:19

Modified files:
	distrib/sgi/iso: Makefile 

Log message:
like ../cdfs/, not yet adjusted to use FSSIZE


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/05 10:06:34

Modified files:
	devel/bashunit : Makefile 
	devel/expect-lite: Makefile 
	devel/rcs-fast-import: Makefile 
	devel/shunit2  : Makefile 
	devel/src      : Makefile 
	misc/gnugetopt : Makefile 
	www/awstats    : Makefile 
	www/sarg       : Makefile 
	www/selfoss    : Makefile 

Log message:
Remove rpe@ as maintainer per his request


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/05/05 10:17:18

Modified files:
	.              : plus.html 

Log message:
Plus entries for the week of 2019-04-22 through 2019-04-28

with pamela@

OK florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/05/05 10:35:59

Modified files:
	devel/liblognorm: Makefile distinfo 

Log message:
update to liblognorm 2.0.6
while here change URLs to https.

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/05 11:09:08

Modified files:
	x11/lxqt       : Makefile.inc 
	x11/lxqt/about : Makefile 
	x11/lxqt/build-tools: Makefile 
	x11/lxqt/compton-conf: Makefile 
	x11/lxqt/config: Makefile 
	x11/lxqt/globalkeys: Makefile 
	x11/lxqt/l10n  : Makefile 
	x11/lxqt/libfm-qt: Makefile 
	x11/lxqt/liblxqt: Makefile 
	x11/lxqt/libqtxdg: Makefile 
	x11/lxqt/libsysstat: Makefile 
	x11/lxqt/lximage-qt: Makefile 
	x11/lxqt/notificationd: Makefile 
	x11/lxqt/obconf-qt: Makefile 
	x11/lxqt/openssh-askpass: Makefile 
	x11/lxqt/panel : Makefile 
	x11/lxqt/pavucontrol-qt: Makefile 
	x11/lxqt/pcmanfm-qt: Makefile 
	x11/lxqt/policykit: Makefile 
	x11/lxqt/powermanagement: Makefile 
	x11/lxqt/qterminal: Makefile 
	x11/lxqt/qtermwidget: Makefile 
	x11/lxqt/qtplugin: Makefile 
	x11/lxqt/runner: Makefile 
	x11/lxqt/screengrab: Makefile 
	x11/lxqt/session: Makefile 
	x11/lxqt/sudo  : Makefile 
	x11/lxqt/themes: Makefile 

Log message:
Remove mariani@ as maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/05 11:09:38

Modified files:
	devel/msgpack  : Makefile 

Log message:
Doesn't build using base-gcc, use COMPILER as in other c++ ports


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/05 11:41:38

Modified files:
	lib/libc/sys   : sysctl.2 

Log message:
kern.bufcachepercent is actually for dma-reachable memory.
While here, stop describing the default (wrong place to be so specific)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/05 11:52:54

Modified files:
	x11/qt5ct      : Makefile distinfo 

Log message:
Update qt5ct to 0.39

OK landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/05 11:54:58

Modified files:
	distrib/loongson/ramdisk: Makefile 

Log message:
Use bsd.gz inside ramdisk


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/05 12:11:20

Modified files:
	www            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	www/wml        : Makefile distinfo 
	www/wml/patches: patch-Makefile_in patch-configure 
	                 patch-wml_aux_Makefile_in 
	                 patch-wml_aux_freetable_freetable_src 
	                 patch-wml_aux_iselect_Makefile_in 
	                 patch-wml_aux_iselect_configure 
	                 patch-wml_aux_txt2html_Makefile_in 
	                 patch-wml_aux_txt2html_txt2html_src 
	                 patch-wml_aux_weblint_Makefile_in 
	                 patch-wml_aux_weblint_weblint_src 
	                 patch-wml_backend_p2_mp4h_configure 
	                 patch-wml_backend_p2_mp4h_doc_mp4h_mp4h 
	                 patch-wml_backend_p2_mp4h_mp4h-config_src 
	                 patch-wml_backend_p2_mp4h_src_builtin_c 
	                 patch-wml_backend_p2_mp4h_src_ltdl_c 
	                 patch-wml_backend_p3_eperl_configure 
	                 patch-wml_backend_p3_eperl_configure_in 
	                 patch-wml_backend_p3_eperl_eperl_perl5_h 
	                 patch-wml_backend_p6_asubst_asubst_src 
	                 patch-wml_common_Makefile_in 
	                 patch-wml_docs_wml_intro_pod 
	                 patch-wml_docs_wml_tutorial_pod 
	                 patch-wml_frontend_Makefile_in 
	                 patch-wml_frontend_wml_src 
	                 patch-wml_include_Makefile_in 
	                 patch-wml_include_des_imgbg_src 
	                 patch-wml_include_des_imgdot_src 
	                 patch-wml_include_des_typography_src 
	                 patch-wml_include_fmt_isolatin_src 
	                 patch-wml_include_fmt_text_src 
	                 patch-wml_include_fmt_xtable_src 
	                 patch-wml_include_imp_csmap_src 
	                 patch-wml_misc_Makefile_in 
	                 patch-wml_test_Makefile_in 
	                 patch-wml_test_t_des-space_t 
	www/wml/pkg    : DESCR PLIST 

Log message:
Remove www/wml, an old HTML preprocessor

Not updated since 2008, on life support with recent perl and compiler
changes, dead upstream.  There's a new upstream at

https://www.shlomifish.org/open-source/projects/website-meta-language/

who says wml is "still maintained for legacy reasons, but probably not
recommended for new sites".

ok bcallah@ kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	denis@cvs.openbsd.org	2019/05/05 12:52:24

Log message:
    Import flameshot-0.6.0.
    
    Flameshot is an easy to use, powerful and customizable screenshot
    software.
    
    https://flameshot.js.org/
    
    Tweaks and OK bcallah@
    
    Status:
    
    Vendor Tag:	denis
    Release Tags:	denis_20190505
    
    N ports/graphics/flameshot/Makefile
    N ports/graphics/flameshot/distinfo
    N ports/graphics/flameshot/pkg/DESCR
    N ports/graphics/flameshot/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	denis@cvs.openbsd.org	2019/05/05 12:54:30

Modified files:
	graphics       : Makefile 

Log message:
+flameshot


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/05 13:06:56

Modified files:
	lib/libc/sys   : sysctl.2 
	share/man/man4 : options.4 

Log message:
sync the description of bufcachepercent; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/05 13:17:03

Modified files:
	sys/arch/amd64/stand/efiboot: Makefile.common conf.c 
Added files:
	sys/arch/amd64/stand/efiboot: efirng.c 

Log message:
Add support for the EFI Random Number Generator Protocol and use it to XOR
random data into the buffer that we feed the kernel.

ok deraadt@, mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/05 14:11:12

Modified files:
	sys/arch/i386/conf: RAMDISK 

Log message:
Getting too tight. Surrender a little


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/05 14:29:41

Modified files:
	net/znc        : Makefile distinfo 
	net/znc/pkg    : PLIST 

Log message:
update to znc-1.7.3, from Hiltjo Posthuma, ok Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	akoshibe@cvs.openbsd.org	2019/05/05 15:33:00

Modified files:
	usr.sbin/switchd: ofp10.c ofp13.c packet.c switchd.h 

Log message:
switchd(8) will sometimes not save a copy of a packet needing forwarding
even when a switch(4) instance requires it to supply it. Cases where this
can happen are: if the copy of the packet recieved from the switch is too
short (source/destination pairs can't be recovered), is non-unicast, or
when switchd has to fall back to flooding traffic.

Factor out the check for short packets, stopping before forwarding
decisions are made if the full packet is needed by the switch. Set the
packet buffer early for cases where it is needed otherwise.

Also replace a few bzero's with memset's.

Diff based on one by guenther@
OK phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 16:08:30

ports/devel/p5-File-BaseDir/patches

Update of /cvs/ports/devel/p5-File-BaseDir/patches
In directory cvs.openbsd.org:/tmp/cvs-serv80711/patches

Log Message:
Directory /cvs/ports/devel/p5-File-BaseDir/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 16:10:55

Modified files:
	devel/p5-File-BaseDir: Makefile distinfo 
	devel/p5-File-BaseDir/pkg: PLIST 
Added files:
	devel/p5-File-BaseDir/patches: patch-t_04_pod_ok_t 

Log message:
p5-File-BaseDir: update to 0.08
Changelog:
https://metacpan.org/changes/release/KIMRYAN/File-BaseDir-0.08

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/05 16:14:17

Modified files:
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: ToMan.pm 

Log message:
Like we already do for pod2man(1), always let perldoc(1) produce man(7)
output in UTF-8 encoding on OpenBSD.  The consumer is always mandoc(1)
on OpenBSD, which can always handle UTF-8 input (no matter what LC_CTYPE
is) and which always produces useful output: UTF-8 for LC_CTYPE=*.UTF-8
or ASCII otherwise, in particular for LC_CTYPE=C.

Patch written after afresh1@ reported that "perldoc -oman" output
looked bad in both output modes.
OK afresh1@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 16:15:54

Modified files:
	devel/p5-File-ChangeNotify: Makefile distinfo 

Log message:
p5-File-ChangeNotify: update to 0.31
Changelog:
https://metacpan.org/source/DROLSKY/File-ChangeNotify-0.31/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 16:18:49

Modified files:
	devel/p5-File-Flat: Makefile distinfo 

Log message:
p5-File-Flat: update to 1.05
Changelog:
https://metacpan.org/source/ETHER/File-Flat-1.05/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/05 16:26:32

Modified files:
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: ToMan.pm 

Log message:
The perldoc(1) program wants to support the MANWIDTH environment
variable and fall back to what stty(1) reports, and it does so with
nroff(1), but it didn't with mandoc(1) because it didn't know how
to pass the desired width to mandoc.  Teach it to use "-O width=".
OK afresh1@.

I noticed the unimplemented feature when Andrew Daugherity asked
on tech@ what the point of a certain patch in FreeBSD is (which it
turns out we don't need).


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 16:27:36

Modified files:
	devel/p5-File-HomeDir: Makefile distinfo 

Log message:
p5-File-HomeDir: update to 1.004
Changelog:
https://metacpan.org/source/REHSACK/File-HomeDir-1.004/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/05 16:29:50

Modified files:
	devel/jam      : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 16:33:11

ports/devel/p5-File-MimeInfo/patches

Update of /cvs/ports/devel/p5-File-MimeInfo/patches
In directory cvs.openbsd.org:/tmp/cvs-serv83425/patches

Log Message:
Directory /cvs/ports/devel/p5-File-MimeInfo/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/05 16:34:40

Modified files:
	net/proxy-suite: Makefile 
	archivers/p7zip: Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/05 16:37:23

Modified files:
	devel/p5-File-MimeInfo: Makefile distinfo 
	devel/p5-File-MimeInfo/pkg: DESCR 
Added files:
	devel/p5-File-MimeInfo/patches: patch-t_06_pod_ok_t 

Log message:
p5-File-MimeInfo: update to 0.29
Also update DESCR to mention the bundled tools.
Changelog:
https://metacpan.org/changes/release/MICHIELB/File-MimeInfo-0.29

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/05 16:40:36

Modified files:
	net/plushs     : Makefile 

Log message:
Remove maintainer whose addresse bounce


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	schwarze@cvs.openbsd.org	2019/05/05 17:27:58

Modified files:
	doc/xorg-docs  : Makefile.bsd-wrapper 
	lib/libdrm     : Makefile.bsd-wrapper 
	distrib/sets/lists/xbase: md.alpha md.amd64 md.arm64 md.armv7 
	                          md.hppa md.i386 md.landisk md.loongson 
	                          md.macppc md.octeon md.sgi md.socppc 
	                          md.sparc64 
	distrib/sets/lists/xshare: mi 

Log message:
put fonts.7 and drm*.3 into the install sets;
patch from Nathanael Rensen <nathanael at list dot polymorpheus dot com>,
minimally tweaked by me;
OK matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/05 17:48:01

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register znc as 1.7.3 fixes CVE-2019-9917


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/05 18:47:43

Modified files:
	lang/flang/libpgmath: Makefile distinfo 
	lang/flang/flang: Makefile distinfo 

Log message:
Update to flang-7.0.1.20190503


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/05 20:56:37

Modified files:
	fonts/gohufont : Makefile 

Log message:
Fix dead homepage/master_sites.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:19:27

Modified files:
	share/man/man4/man4.i386: Makefile 
Removed files:
	share/man/man4/man4.i386: vmm.4 

Log message:
Cleanup things that missed removal during vmm(4) i386 purge a few months
ago.

ok kn, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:20:43

Modified files:
	share/man/man8/man8.i386: MAKEDEV.8 

Log message:
Remove vmm(4) from i386 MAKEDEV.8

pointed out by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:27:54

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
vmctl.8 : man page cleanup

input from jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:30:10

Modified files:
	sys/arch/armv7/omap: gptimer.c 

Log message:
Whitespace and extra semicolon removal.

Pointed out by Jerome Pinot


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:32:48

Modified files:
	sys/arch/armv7/armv7: armv7_machdep.c armv7_start.S 

Log message:
Whitespace removal

Pointed out by Jerome Pinot


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:34:43

Modified files:
	sys/arch/armv7/include: bootconfig.h intr.h machine_reg.h 

Log message:
Whitespace removal

Pointed out by Jerome Pinot


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:45:58

Modified files:
	sys/arch/armv7/omap: amdisplay.c amdisplayreg.h dmtimer.c 
	                     gptimer.c intc.c intc.h nxphdmi.c 
	                     omdisplay.c omehcivar.h omusbtll.c 
	                     sitara_cm.h ti_iic.c 

Log message:
Whitespace removal

Pointed out by Jerome Pinot


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:47:40

Modified files:
	sys/arch/armv7/stand/efiboot: efidev.h 

Log message:
Whitespace removal

Pointed out by Jerome Pinot


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:49:53

Modified files:
	sys/arch/armv7/sunxi: sxiintc.c sxitimer.c 

Log message:
Whitespace removal

Pointed out by Jerome Pinot


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/05 21:50:48

Modified files:
	sys/arch/armv7/vexpress: sysreg.c 

Log message:
Whitespace removal

Pointed out by Jerome Pinot


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/05 23:40:49

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
double macro snuck in;


CVSROOT:	/cvs
Module name:	ports
Changes by:	claudio@cvs.openbsd.org	2019/05/06 00:15:23

Modified files:
	devel/promu    : Makefile distinfo 

Log message:
Update to promu v0.3.0
OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	claudio@cvs.openbsd.org	2019/05/06 00:16:27

Modified files:
	sysutils/prometheus: Makefile distinfo 
	sysutils/prometheus/pkg: PLIST 
Added files:
	sysutils/prometheus/patches: patch-Makefile_common 
Removed files:
	sysutils/prometheus/patches: patch-Makefile 

Log message:
Update to prometheus v2.9.2
OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/05/06 01:44:00

Modified files:
	sys/dev/pci    : if_alc.c 

Log message:
Fix a logic error when configuring the driver to use msi.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 02:17:49

Modified files:
	graphics/simple-scan: Makefile distinfo 

Log message:
Update to simple-scan-3.32.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 02:22:31

Modified files:
	multimedia/dav1d: Makefile 
Added files:
	multimedia/dav1d/patches: patch-src_itx_tmpl_c patch-src_lib_c 
	                          patch-src_thread_h 
	                          patch-src_win32_thread_c 

Log message:
- Control the stack size of spawned threads
- itx_tmpl: Fix the assert in inv_txfm_add_c

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/06 03:23:15

Modified files:
	www/varnish    : Makefile 

Log message:
Switch pre-configure to do-gen and AUTOCONF_ENV


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/06 03:49:26

Modified files:
	usr.sbin/bgpd  : kroute.c 

Log message:
Fix reloading of network statements that have no fixed prefix specification.
The return value of kr_net_redist_add() was not as intended and so
kr_redistribute() removed those networks on config reloads.
Bug reported by openbsd (at) kene.nu
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/06 03:50:34

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 66.0.4.

See https://www.mozilla.org/en-US/firefox/66.0.4/releasenotes/
Fixes the addons issue seen all around, cf
https://blog.mozilla.org/addons/2019/05/04/update-regarding-add-ons-in-firefox/

Repackage i18n langpacks from 66.0.3 as they're not available for this
release.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/05/06 03:50:46

Modified files:
	geo/globe      : Makefile distinfo 
Removed files:
	geo/globe/patches: patch-globe_c 

Log message:
Update to globe-20140814.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/06 03:51:39

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 60.6.2.

See https://www.mozilla.org/en-US/firefox/60.6.2/releasenotes/
Fixes the addons issue seen all around, cf
https://blog.mozilla.org/addons/2019/05/04/update-regarding-add-ons-in-firefox/

Repackage i18n langpacks from 60.6.1 as they're not available for this
release.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 03:55:37

Modified files:
	x11/gnome/nautilus: Makefile 
Added files:
	x11/gnome/nautilus/patches: patch-meson_build 
	                            patch-src_gnome-desktop_gnome-desktop-thumbnail-script_c 
	                            patch-src_gnome-desktop_gnome-desktop-thumbnail_c 

Log message:
SECURITY fix for CVE-2019-11461 (sandbox escape).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 03:55:53

Modified files:
	x11/gnome/nautilus: Tag: OPENBSD_6_5 Makefile 
Added files:
	x11/gnome/nautilus/patches: Tag: OPENBSD_6_5 patch-meson_build 
	                            patch-src_gnome-desktop_gnome-desktop-thumbnail-script_c 
	                            patch-src_gnome-desktop_gnome-desktop-thumbnail_c 

Log message:
SECURITY fix for CVE-2019-11461 (sandbox escape).


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/06 03:55:59

Modified files:
	www/mozilla-firefox: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to firefox 66.0.4.

See https://www.mozilla.org/en-US/firefox/66.0.4/releasenotes/
Fixes the addons issue seen all around, cf
https://blog.mozilla.org/addons/2019/05/04/update-regarding-add-ons-in-firefox/

6.5-stable packages available at https://packages.rhaalovely.net, signed
with https://packages.rhaalovely.net/landry-mozilla-pkg.pub. i386 still
building.

ppl running 6.5-release not wanting to install 3rd-party packages from a
potentially untrusted source (ie, me) can temporarly enable studies to
get the hotfix, or manually install
https://storage.googleapis.com/moz-fx-normandy-prod-addons/extensions/hotfix-update-xpi-intermediate%40mozilla.com-1.0.2-signed.xpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/06 03:58:38

Modified files:
	www/firefox-esr: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to firefox-esr 60.6.2.

See https://www.mozilla.org/en-US/firefox/60.6.2/releasenotes/
Fixes the addons issue seen all around, cf
https://blog.mozilla.org/addons/2019/05/04/update-regarding-add-ons-in-firefox/

6.5-stable packages available at https://packages.rhaalovely.net, signed
with https://packages.rhaalovely.net/landry-mozilla-pkg.pub. i386 still
building.

ppl running 6.5-release not wanting to install 3rd-party packages from a
potentially untrusted source (ie, me) can temporarly enable studies to
get the hotfix, or manually install
https://storage.googleapis.com/moz-fx-normandy-prod-addons/extensions/hotfix-update-xpi-intermediate%40mozilla.com-1.0.2-signed.xpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/06 04:38:26

Modified files:
	x11/itk        : Makefile 
	x11/itk/patches: patch-Makefile_in 
	x11/itk/pkg    : PLIST 

Log message:
Fix loading of the shared library, so make it actually work


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/06 06:54:51

Modified files:
	sys/arch/mips64/mips64: exception.S 

Log message:
Fix unintentional delay of ASTs on MP mips64

Make the interrupt and trap return paths check for ASTs with interrupts
disabled. If there is no pending request, interrupts are kept disabled
until return to userspace. This fixes delayed processing of an AST
request that arrives from another CPU after the AST flag has been
checked but before the CPU has finished the return path. The IPI that
follows the setting of the AST flag forces kernel re-entry and recheck
of AST.

Noticed by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/06 06:56:30

Modified files:
	sys/arch/mips64/mips64: ipifuncs.c 

Log message:
Issue write-write barrier before sending IPI on mips64

The barrier ensures that any lockless state changes become visible
to other CPUs before the IPI is sent. Otherwise, a receiving CPU
might still observe an old state when it processes the interrupt.

OK guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/06 06:57:56

Modified files:
	sys/arch/mips64/mips64: cpu.c sendsig.c trap.c 

Log message:
Enforce store/load order when setting or clearing AST flag on mips64

Make sure that any preceding stores become visible to other CPUs before
setting the AST flag in need_resched() and signotify(). This should
prevent a very unlikely case with inter-CPU ASTs where the receiving
CPU uses stale state.

When clearing the AST flag in ast(), ensure that the clearing store
is performed before any other memory accesses in the AST handler.
Otherwise, there is a slight risk of losing an AST request that gets
posted while the handler is running.

OK guenther@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	fcambus@cvs.openbsd.org	2019/05/06 08:15:08

Modified files:
	driver/xf86-video-openchrome: Makefile.in aclocal.m4 configure 
	                              configure.ac 
	driver/xf86-video-openchrome/man: Makefile.am Makefile.in 
	driver/xf86-video-openchrome/src: via_display.c via_driver.h 
	                                  via_fp.c via_ums.c via_ums.h 
	driver/xf86-video-openchrome/src/xvmc: xf86dristr.h 

Log message:
Update openchrome to 0.6.182.

Tested on my VX900 system.

Looks OK to matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/06 08:58:54

Modified files:
	audio/cmus     : Makefile distinfo 
	audio/cmus/patches: patch-Makefile patch-configure 
	audio/cmus/pkg : PLIST-main 
Removed files:
	audio/cmus/patches: patch-ffmpeg_c patch-sndio_c 

Log message:
cmus: update to 2.8.0
Also drop all ffmpeg v4 compat and upstreamed patches.
Changelog:
https://github.com/cmus/cmus/releases/tag/v2.8.0

Original diff from Paco Esteban, with input from edd@ and jca@
- thanks you all - and additional ports-gcc and macppc tweaks
from me.

OK edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/06 09:40:06

Modified files:
	graphics/p5-Image-Info: Makefile distinfo 

Log message:
Update to p5-Image-Info-1.41.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/06 09:44:34

Modified files:
	usr.bin/rsync  : rsync.1 

Log message:
Remove an example that doesn't do what the accompanying text says,
with the current formatting.
OK benno@ naddy@

The original suggestion to delete it rather than fix it came from deraadt@:
we do not want to encourage use of --rsync-path because it is important
that the openrsync client smoothly works with the Samba rsync server.
If it doesn't, we should fix it and not fragment the ecosystem.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/06 09:44:56

Modified files:
	net/p5-Nmap-Parser: Makefile distinfo 

Log message:
Update to p5-Nmap-Parser-1.37.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/06 10:01:32

Modified files:
	x11/hs-xmonad-contrib: Makefile 
	x11/xmobar     : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/06 10:29:19

Modified files:
	sys/kern       : vfs_lockf.c 

Log message:
Bring back lockf deadlock detection from the dead. Back in 2007, the deadlock
detection broke while changing the owner of a lock from struct proc to struct
filedesc/file. Instead of keeping track of the owning proc for each lock,
introduce a new list for all pending blocked locks. This list is scanned before
waiting on a blocking lock in order to determine if sleeping would cause a
deadlock.

The new implementation is serialized by the recently added locking to the same
subsystem, meaning that acquiring the kernel lock is no longer necessary.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/06 10:32:04

Modified files:
	regress/sys/kern/flock: Makefile 

Log message:
enable deadlock related tests


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/06 10:34:44

Modified files:
	multimedia/upplay: Makefile distinfo 
	multimedia/upplay/patches: patch-upplay_pro 

Log message:
Update to upplay-1.3.3

Cope with libupnpp>=0.17.1, otherwise just "Minuscule source
changes mostly dealing with building and documentation".

Set COMPILER while here as C++11 is required.

OK pascal


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/06 10:34:44

Modified files:
	net/libupnp    : Makefile distinfo 
	net/libupnp/pkg: PLIST 

Log message:
Update to libupnp-1.8.4

libthreadutil merged into libupnp, ABI and API changes;
see http://pupnp.sourceforge.net/ChangeLog.

Enable `reuseaddr' support as requirement for an upcoming port.

OK rsadowski steven


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/06 10:34:44

Modified files:
	net/libupnpp   : Makefile distinfo 
	net/libupnpp/patches: patch-configure 
	net/libupnpp/pkg: PLIST 

Log message:
Update to libupnpp-0.17.1

Cope with libupnp>=1.8.4.

Set NO_TEST and SEPARATE_BUILD while here.

OK rsadowski pascal


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/06 11:13:22

Modified files:
	sys/arch/octeon/octeon: locore.S 

Log message:
Fix thinko in previous. The .bss clearing was overzealous and overwrote
a part of the free memory list, terminating it prematurely.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/06 11:31:25

Modified files:
	sbin/unwind    : resolver.c 

Log message:
Only try to resolve the DNSSEC trust anchor if we have a validating
resolver context. Otherwise we will ignore the answer later on
anyway.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 12:12:07

Modified files:
	databases/evolution-data-server: Makefile distinfo 
	databases/evolution-data-server/pkg: PLIST 

Log message:
Update to evolution-data-server-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 12:12:29

Modified files:
	mail/evolution : Makefile distinfo 
	mail/evolution/pkg: PLIST 

Log message:
Update to evolution-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 12:12:44

Modified files:
	mail/evolution-ews: Makefile distinfo 
	mail/evolution-ews/pkg: PLIST 

Log message:
Update to evolution-ews-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 12:13:26

Modified files:
	x11/gnome/calendar: Makefile 
Added files:
	x11/gnome/calendar/patches: patch-meson_build 
	                            patch-src_gcal-utils_h 
	x11/gnome/todo/patches: patch-plugins_eds_gtd-eds-autoptr_h 

Log message:
Unbreak after recent e-d-s update (patches will be remove as soon as we
update to 3.32).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/06 12:29:59

Modified files:
	news/sabnzbd   : Makefile 
	news/sabnzbd/pkg: sabnzbd.rc 

Log message:
Fix daemon_flags in sabnznd.rc.

Current daemon flags are:

daemon_flags="-b 0 -f ${datadir} -p ${datadir}/sabnzbd.pid"

Intention is to be:

daemon_flags="-b 0 -f ${datadir} --pidfile ${datadir}/sabnzbd.pid"

Notice "--pidfile" instead of "-p". "-p" starts the daemon paused, which
isn't desired for most people. Additionally, the entire PID option can
be omitted.

Addressed offlist by Nick Templeton <nick () nicktempleton ! com>. Diff
by me.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/06 12:33:21

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 

Log message:
not do -> do not; ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/06 13:36:30

Modified files:
	audio/nosefart : Makefile 
	print/mftrace  : Makefile 
	www/p5-HTML-Template: Makefile 
	www/p5-HTML-Template-Expr: Makefile 
	devel/ninja    : Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/06 13:51:38

Modified files:
	games/freedink : Makefile.inc 
	games/freedink/data: Makefile 
	games/freedink/game: Makefile 
	productivity/tdl: Makefile 
	x11/oroborus   : Makefile 
	www/mimetex    : Makefile 
	net/mudix      : Makefile 
	multimedia/streamdvd: Makefile 
	devel/cunit    : Makefile 

Log message:
Remove unreachable maintainers


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 13:52:08

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-gitlab: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2019/05/06 15:09:53

Modified files:
	math/octave    : Makefile distinfo 
	math/octave/patches: patch-configure 
	math/octave/pkg: PLIST 

Log message:
update to 5.1.0

ok kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/05/06 15:17:19

Modified files:
	print/poppler  : Makefile distinfo 
	print/poppler/pkg: PLIST-main 

Log message:
Update to poppler-0.76.0.

This does *not* contain the major bump for the poppler-qt5 shared
library from the diff I initially sent to ports, because that isn't
needed (as pointed out by jca@).

Also build-tested with gcc-8 by jca@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/05/06 15:20:22

Modified files:
	graphics/pdf2djvu: Makefile 
Added files:
	graphics/pdf2djvu/patches: patch-pdf2djvu_cc 

Log message:
Unbreak build with poppler-0.76.0.

ok juanfra@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/05/06 15:22:17

Modified files:
	graphics/inkscape: Makefile 
Added files:
	graphics/inkscape/patches: 
	                           patch-src_extension_internal_pdfinput_pdf-parser_cpp 

Log message:
Unbreak build with poppler-0.76.0.

ok rsadowski@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 16:00:12

Modified files:
	x11/gnome/user-docs: Makefile distinfo 
	x11/gnome/user-docs/pkg: PLIST 

Log message:
Update to gnome-user-docs-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/06 16:09:10

Modified files:
	x11/gnome/libdazzle: Makefile distinfo 

Log message:
Update to libdazzle-3.32.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/06 18:06:00

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
use MCX_PAGE_SIZE when calculating number of pages for queues

PAGE_SIZE might be the same, but isn't on sparc64 at least.

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/06 18:08:33

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
align the rx buffer to ETHER_ALIGN

this will probably change as the rx handling grows to cope with the
hardware max mru.

ok jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/06 20:31:03

Modified files:
	security/logsentry: Makefile 
	misc/p5-File-Rotate-Backup: Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/06 20:33:03

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/06 22:12:15

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
always rearm completion queues as leaving them disarmed would lead to rx
or tx completion stalling.

(also replace a line dlg didn't mean to remove)


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/06 23:20:05

Modified files:
	lib/libcxx     : Makefile shlib_version 

Log message:
Add support for std::filesystem.  We're already installing the
headers, so also compile the needed source files for it.  While
there, switch to compiling libc++ with C++14.

Prompted by, initial patch from and ok espie@, ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/07 01:16:56

Modified files:
	graphics/digikam-kde4: Makefile 

Log message:
Bump all that were a miss.
This update was a shit show... please use PLIST_DB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/07 01:33:53

Modified files:
	plan9          : Makefile 

Log message:
Unhook 9wm, w9wm, larswm.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/07 01:38:34

Removed files:
	plan9/9wm      : Makefile distinfo 
	plan9/9wm/patches: patch-event_c patch-fns_h patch-manage_c 
	                   patch-menu_c 
	plan9/9wm/pkg  : DESCR PLIST 
	plan9/larswm   : Makefile distinfo 
	plan9/larswm/pkg: DESCR PLIST 
	plan9/w9wm     : Makefile distinfo 
	plan9/w9wm/patches: patch-client_c patch-error_c patch-menu_c 
	plan9/w9wm/pkg : DESCR PLIST 

Log message:
Remove 9wm, w9wm, larswm.

Restrictive PERMIT_*; CONFIGURE_STYLE=imake; no updates in 15+ years.

If you're itching for the Plan 9 window experience, plan9port has rio.

ok markus@ (former 9wm maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/07 01:58:50

Modified files:
	net/libupnpp   : Makefile 

Log message:
Remove NO_TEST since tests do not fail, see bsd.port.mk(5).

Reminded by jca, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/07 02:01:38

Modified files:
	net/py-IP      : Makefile distinfo 

Log message:
Update to py-IP-1.00.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/07 02:29:28

Modified files:
	net/znc        : Makefile 
	x11/vlc        : Makefile 
	databases/mariadb: Makefile 

Log message:
use https; from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/07 02:36:19

Log message:
    Import gw-libretro-1.6.3.
    
    gw-libretro is a libretro core that runs Nintendo Game & Watch simulators.
    
    ok jeremy@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190507
    
    N ports/emulators/gw-libretro/Makefile
    N ports/emulators/gw-libretro/distinfo
    N ports/emulators/gw-libretro/patches/patch-Makefile_libretro
    N ports/emulators/gw-libretro/patches/patch-gwlua_functions_c
    N ports/emulators/gw-libretro/patches/patch-gwlua_gwlua_c
    N ports/emulators/gw-libretro/patches/patch-retroluxury_src_rl_image_c
    N ports/emulators/gw-libretro/pkg/DESCR
    N ports/emulators/gw-libretro/pkg/PLIST
    N ports/emulators/gw-libretro/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/07 02:36:58

Modified files:
	emulators      : Makefile 

Log message:
+gw-libretro


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/07 02:38:21

Log message:
    Import public-sans-1.0.0.
    
    Public Sans is a strong, neutral, principles-driven, open-source typeface
    for text or display. It is a fork of the SIL Open Licensed face Libre
    Franklin. Public Sans has many similarities with its parent, but differs
    in its focus on longform reading and neutral UI applicability. It takes
    inspiration from geometric sans faces of the 20th century, as well as the
    original Franklins of the 19th, resulting in something of a mongrel face
    that retains its American origin.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190507
    
    N ports/fonts/public-sans/Makefile
    N ports/fonts/public-sans/distinfo
    N ports/fonts/public-sans/pkg/DESCR
    N ports/fonts/public-sans/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/07 02:39:12

Modified files:
	fonts          : Makefile 

Log message:
+public-sans


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/07 04:25:15

Modified files:
	usr.bin/tmux   : control-notify.c input.c notify.c tmux.h 
	                 window.c 

Log message:
Do not use evbuffer_add_buffer because it is destructive and doesn't
work in newer libevent.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/07 04:50:13

Modified files:
	infrastructure/bin: register-plist 

Log message:
comment that stuff a bit more


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/07 05:06:40

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/07 05:24:03

Modified files:
	usr.bin/tmux   : cmd-copy-mode.c server-client.c tmux.h 
	                 tty-keys.c 

Log message:
Treat keys in identify mode (display-panes) specially and handle them
immediately rather than queuing them (the command can block the queue
which means they were not being seen until it finished which was too
late). Reported by denis@ and solene@, ok solene@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/07 06:54:54

Modified files:
	infrastructure/bin: register-plist 

Log message:
refactor code a bit for later


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/07 07:20:06

Modified files:
	infrastructure/bin: register-plist 

Log message:
give names to comparison results
rewrite a bit to diminish code duplication


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/07 07:56:06

Modified files:
	devel/ruby-opt_parse_validator: Makefile distinfo 

Log message:
Update to 1.7.2, new versioning scheme


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/07 07:56:51

Modified files:
	security/ruby-cms_scanner: Makefile distinfo 
	security/ruby-cms_scanner/pkg: PLIST 

Log message:
Update to 0.5.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/07 07:57:40

Modified files:
	security/wpscan: Makefile distinfo 
	security/wpscan/pkg: PLIST 

Log message:
Update to 3.5.3 and add HOMEPAGE


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/07 08:01:39

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Rename the ENVIRONMENT section which was squatting on the standard
manual page section and create a new ENVIRONMENT with the expected
content.  Move some information that was misplaced below the -u
flag into that new section.
Feedback and OK nicm@ jmc@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/07 08:16:16

Modified files:
	usr.bin/less   : line.c 

Log message:
UTF-8 cleanup of the function pappend():
Use the standard function mbrtowc(3) to distinguish valid, incomplete,
and invalid multibyte characters, getting rid of five calls to functions
and macros that we want to phase out, and of one goto.  Add comments.
OK millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/07 08:22:06

Modified files:
	sys/dev/ic     : ncr53c9x.c 

Log message:
Fix delay logic: measure w/ uptime, pack timeval correctly.  ok krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/07 08:24:01

Modified files:
	sysutils/apcupsd: Makefile 

Log message:
Fix packaging on ports-gcc archs

Spotted by Johan Huldtgren on mips64 and me on sparc64.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/07 08:26:38

Modified files:
	usr.bin/less   : charset.c filename.c funcs.h 

Log message:
Completely clean up UTF-8 handling in the file filename.c:
Employ the usual form of an mbtowc(3) loop, eliminating two calls
to the bad function step_char() and reducing the number of nested
loops by one.  This also removes the last caller of the bad function
binary_char(), which is consequently deleted.
While here, count ASCII C0 non-whitespace control characters as
binary (except backspace and, with -R only, escape).
OK millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/07 08:26:45

Modified files:
	sysutils/apcupsd: Makefile 

Log message:
Zap extra REVISION


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/07 09:25:43

Modified files:
	sysutils/bfs   : Makefile distinfo 
	sysutils/bfs/patches: patch-Makefile 

Log message:
Update to bfs-1.4.1
Changelog: https://github.com/tavianator/bfs/releases/tag/1.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/07 09:27:47

Modified files:
	games/freedink : Makefile.inc 
	games/freedink/data: Makefile distinfo 
	games/freedink/data/pkg: PLIST 
	games/freedink/game: Makefile distinfo 
	games/freedink/game/pkg: PLIST 
Removed files:
	games/freedink/data/patches: patch-Makefile 

Log message:
Update to newest FreeDink game and data code. FreeDink is now compiled with
SDL2 instead of SDL1.2. Remove a patch since we have `cp -a' support.
While here, take MAINTAINER.
ok solene@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/05/07 10:15:08

Modified files:
	infrastructure/db: network.conf 

Log message:
remove some stale mirrors and switch one to https. ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/07 10:29:03

Modified files:
	games/crack-attack: Makefile 

Log message:
Update maintainer's address per their request


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/05/07 10:33:42

Modified files:
	lang/go        : Makefile distinfo 
	lang/go/pkg    : PLIST 

Log message:
Update lang/go to 1.12.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/07 10:52:35

Modified files:
	devel/lua-cliargs: Makefile 
	devel/lua-lgi  : Makefile 
	devel/lua-openbsd: Makefile 
	devel/lua-term : Makefile 
	devel/luafs    : Makefile 
	net/hexchat    : Makefile 
	textproc/lua-yaml: Makefile 
	textproc/the_silver_searcher: Makefile 
	x11/herbstluftwm: Makefile 

Log message:
Remove maintainer per their request

Done with portbump -z, thanks sthen!


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/07 11:04:59

Modified files:
	audio/nap      : Makefile 
	devel/atlas    : Makefile 
	devel/smpeg    : Makefile 
	games/amph     : Makefile 
	games/fire     : Makefile 
	games/gtkballs : Makefile 
	games/heroes   : Makefile 
	games/icebreaker: Makefile 
	games/lgeneral : Makefile 
	games/newvox   : Makefile 
	games/sdlzombies: Makefile 
	games/xpilot   : Makefile 
	graphics/dumpmpeg: Makefile 
	graphics/enjoympeg: Makefile 
	graphics/iview : Makefile 
	graphics/p5-Imager: Makefile 
	math/mcsim     : Makefile 
	math/sc        : Makefile 
	math/yorick    : Makefile 
	net/p5-Net-RawIP: Makefile 
	sysutils/xuvmstat: Makefile 
	textproc/bibelot: Makefile 
	textproc/palm-bookmarks: Makefile 
	x11/fvwm2      : Makefile 

Log message:
Remove pvalchev as maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/07 11:07:29

Modified files:
	games/glutton  : Makefile 
	education/dvorak7min: Makefile 

Log message:
Remove maintainers whose addresses bounce


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/07 11:51:52

Modified files:
	mail/mailpile/patches: patch-scripts_mailpile-test_py 

Log message:
Remove cp -a patch

ok solene@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/07 11:54:23

Modified files:
	devel/p5-File-Remove: Makefile distinfo 

Log message:
p5-File-Remove: update to 1.58
Changelog:
https://metacpan.org/changes/release/SHLOMIF/File-Remove-1.58

OK steven@ afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/07 12:38:22

Modified files:
	distrib/sets/lists/base: md.amd64 md.arm64 md.armv7 md.i386 
	                         md.loongson md.macppc md.octeon md.sgi 
	                         md.sparc64 

Log message:
Sync after libc++ bump

Noticed by mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/07 12:53:35

Modified files:
	lib/libc/sys   : sysctl.2 

Log message:
add an extra m where needed. spotted by Kent Watsen


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2019/05/07 13:28:09

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Remove junit, no benefit to packaging,

all the good kids use maven or gradle these days. correction & ok JCA@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2019/05/07 13:29:41

Removed files:
	java/junit     : Makefile distinfo 
	java/junit/pkg : DESCR PLIST 

Log message:
Remove junit, no benefit to packaging, OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2019/05/07 13:38:46

Modified files:
	java           : Makefile 

Log message:
unhook junit


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/07 13:39:32

Modified files:
	www/icedtea-web/patches: patch-Makefile_in 

Log message:
Remove install -D and cp -a hunks, not needed any more.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/07 13:44:30

Modified files:
	textproc/discount: Makefile 
	textproc/discount/pkg: PLIST 
Added files:
	textproc/discount/patches: patch-configure_inc 

Log message:
Build a shared lib with our versioning instead of a static lib.

Needed by an upcoming purple-rocketchat port.

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/07 13:46:17

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Adjust the same bit to adjust the selection for history-top and
history-bottom as for cursor-up and cursor-down. GitHub issue 1723.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/07 13:53:08

Modified files:
	x11/fluxter    : Makefile 
	x11/idesk      : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/07 14:01:41

Modified files:
	usr.bin/tmux   : cmd-display-panes.c screen-redraw.c 
	                 server-client.c tmux.h 

Log message:
Move around the display-panes identify code to make it a bit more
generic and hide the display-panes specific bits into
cmd-display-panes.c.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/07 14:07:47

Modified files:
	devel/p5-File-ShareDir-Install: Makefile distinfo 
	devel/p5-File-ShareDir-Install/pkg: DESCR 

Log message:
p5-File-ShareDir-Install: update to 0.13
Changelog:
https://metacpan.org/source/ETHER/File-ShareDir-Install-0.13/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/07 14:08:52

Removed files:
	telephony/pjsua/patches: patch-Makefile 

Log message:
Yet another boring cp -a patch removed


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/07 14:10:58

Modified files:
	devel/p5-File-ShareDir: Makefile distinfo 

Log message:
p5-File-ShareDir: update to 1.116
Changelog:
https://metacpan.org/source/REHSACK/File-ShareDir-1.116/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/07 14:14:11

Modified files:
	devel/p5-File-Slurp: Makefile distinfo 

Log message:
p5-File-Slurp: update to 9999.27
Changelog:
https://metacpan.org/release/CAPOEIRAB/File-Slurp-9999.27

tweaks and OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/07 14:18:10

Modified files:
	devel/p5-File-Slurper: Makefile distinfo 

Log message:
p5-File-Slurper: update to 0.012
Changelog:
https://metacpan.org/changes/release/LEONT/File-Slurper-0.012

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/07 14:26:50

Removed files:
	games/chromium-bsu/patches: patch-misc_Makefile_in 
	textproc/rubber/patches: patch-tests_run_sh 
	www/tor-browser/tor-launcher/patches: patch-Makefile 

Log message:
Drop some more cp -a patches


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/07 14:28:06

Modified files:
	devel/p5-File-Sync: Makefile distinfo 

Log message:
p5-File-Sync: update to 0.11
Changelog:
https://metacpan.org/source/BRIANSKI/File-Sync-0.11/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/07 14:32:32

Modified files:
	games/egoboo   : Makefile 
	games/egoboo/patches: patch-game_egoboo_sh 

Log message:
Last "drop cp -a patch" commit

While here, move one hardcoded /sur/local to ${TRUEPREFIX}.
ok phessler@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/07 14:42:46

Modified files:
	x11/gnome/yelp-tools: Makefile distinfo 

Log message:
Update to yelp-tools-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/07 14:54:20

Modified files:
	x11/gnome/yelp : Makefile distinfo 

Log message:
Update to yelp-3.32.2.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/05/07 15:08:14

Modified files:
	build          : mirrors.pl 

Log message:
fix the openbgpd-6.5p0.tar.gz filename, with the new release the files
end in tar.gz.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/05/07 15:09:08

Modified files:
	openbgpd       : ftp.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/07 15:38:02

Modified files:
	.              : ftp.html ftplist httpslist 
	build          : mirrors.dat 
	openbgpd       : ftp.html 
	openntpd       : portable.html 
	openssh        : ftp.html portable.html 

Log message:
update cdn-related comments and only list the fastly mirror once. ok job


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2019/05/07 16:53:17

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	geo/jeoip      : Makefile distinfo 
	geo/jeoip/patches: patch-build_xml 
	geo/jeoip/pkg  : DESCR PLIST 

Log message:
Remove geo/jeoip. Upstream data file no longer generally available.
And geoip is a better choice for command-line use. Comments by sthen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2019/05/07 16:55:34

Modified files:
	geo            : Makefile 

Log message:
unhook jeoip


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/07 17:05:12

Modified files:
	usr.bin/less   : less.1 

Log message:
fix an obvious documentation bug: -# requires an argument


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/07 17:21:49

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Use the same completion queue for both the send and receive queues.
We don't get any benefit from having separate queues (yet), and the tx
completion queue seems to stall sometimes if it's on its own.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:02:29

Modified files:
	x11/gtksourceview3: Makefile distinfo 

Log message:
update to gtksourceview3-3.24.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/07 19:07:35

Modified files:
	www/chromium/patches: patch-chrome_common_chrome_paths_cc 
	www/chromium   : Makefile 

Log message:
unbreak policies by actually setting the correct policy dir


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:08:23

Modified files:
	devel/vte3     : Makefile distinfo 
	devel/vte3/pkg : PLIST 

Log message:
update to vte3-0.56.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:09:42

Modified files:
	x11/gnome/gjs  : Makefile distinfo 

Log message:
update to gjs-1.56.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:19:32

Modified files:
	x11/gnome/libgweather: Makefile distinfo 

Log message:
update to libgweather-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/07 19:19:52

Modified files:
	x11/gnome/tweaks: Makefile distinfo 
	x11/gnome/tweaks/pkg: PLIST 

Log message:
Update to gnome-tweaks-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:21:14

Modified files:
	x11/gnome/online-accounts: Makefile distinfo 
	x11/gnome/online-accounts/pkg: PLIST 

Log message:
update to gnome-online-accounts-3.32.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:28:15

Modified files:
	x11/gnome/calendar: Makefile distinfo 
	x11/gnome/calendar/pkg: PLIST 
Removed files:
	x11/gnome/calendar/patches: patch-meson_build 
	                            patch-src_gcal-utils_h 

Log message:
update to gnome-calendar-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/07 19:31:29

Modified files:
	x11/gnome/desktop: Makefile distinfo 
	x11/gnome/desktop/pkg: PLIST 
Added files:
	x11/gnome/desktop/patches: patch-meson_build 
Removed files:
	x11/gnome/desktop/patches: patch-libgnome-desktop_Makefile_in 

Log message:
Update to gnome-desktop-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/07 19:31:43

Modified files:
	meta/gnome     : Makefile 

Log message:
Welcome GNOME 3.32.2 (WIP).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:34:48

Modified files:
	x11/gnome/gucharmap: Makefile distinfo 
Removed files:
	x11/gnome/gucharmap/patches: 
	                             patch-gucharmap_gucharmap-unicode-info_h 

Log message:
update to gucharmap-12.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:35:47

Modified files:
	x11/gnome/recipes: Makefile 

Log message:
regen WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:44:12

Modified files:
	x11/gnome/characters: Makefile distinfo 
	x11/gnome/characters/pkg: PLIST 

Log message:
update to gnome-characters-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/07 19:46:00

Modified files:
	net            : Makefile 
Removed files:
	net/gnaughty   : Makefile distinfo 
	net/gnaughty/patches: patch-configure_in patch-src_gnaughty_c 
	                      patch-src_http_c 
	net/gnaughty/pkg: DESCR PLIST 

Log message:
remove net/gnaughty as it goes against our code of conduct

ok ajacoutot@, jasper@, mbalmer@, mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/07 19:49:20

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
deprecate gnaughty


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:51:45

Modified files:
	x11/gnome/zenity: Makefile distinfo 

Log message:
update to zenity-3.32.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:51:50

Modified files:
	x11/gnome/font-viewer: Makefile distinfo 
	x11/gnome/font-viewer/pkg: PLIST 

Log message:
update to gnome-font-viewer-3.32.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/07 19:55:14

Modified files:
	x11/gnome/screenshot: Makefile distinfo 
	x11/gnome/screenshot/pkg: PLIST 

Log message:
update to gnome-screenshot-3.32.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/07 19:57:02

Modified files:
	x11/gnome/weather: Makefile distinfo 
	x11/gnome/weather/pkg: PLIST 

Log message:
Update to gnome-weather-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/08 00:38:53

Modified files:
	games/heroes   : Makefile 

Log message:
Take maintainership.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/08 01:26:55

Log message:
    Import sigil-0.9.13.
    
    Sigil is a free, open source, multi-platform ebook editor.
    It is designed to edit books in ePub format (both ePub 2 and ePub 3).
    
    tweaks + ok kirby@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190508
    
    N ports/editors/sigil/Makefile
    N ports/editors/sigil/distinfo
    N ports/editors/sigil/patches/patch-3rdparty_minizip_ioapi_c
    N ports/editors/sigil/pkg/PLIST
    N ports/editors/sigil/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/08 01:27:36

Modified files:
	editors        : Makefile 

Log message:
+sigil


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/08 03:10:54

Modified files:
	infrastructure/bin: dpb 
	infrastructure/lib/DPB: Reporter.pm 
	infrastructure/lib/DPB/Reporter: Tty.pm 

Log message:
create the reporter object earlier, and add the producers of report as
they become available.

make the code "less special", be explicit about the singleton part
always.

(fixes a TOCTOU reported by landry@)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/08 04:19:15

Modified files:
	usr.sbin/pkg_add/OpenBSD: Signature.pm 

Log message:
fix pkg_info -S bug: multiple inheritance tricks signature into actually
ignoring version elements.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/08 05:20:57

Modified files:
	net/unifi      : Makefile.inc 

Log message:
unifi common Makefile.inc tweaks;
- don't care whether BUILD_V starts with a dash
- handle filenames containing spaces


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/08 05:24:04

Modified files:
	net/unifi/lts  : Makefile distinfo 
	net/unifi/lts/pkg: PLIST 

Log message:
update to unifi-5.6.42, includes unspecified "security improvements" (details to
follow later at https://community.ubnt.com/t5/Security-Updates-Blog/bg-p/Security_Updates_Blog)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/08 05:25:40

Modified files:
	net/unifi/stable: Makefile distinfo 

Log message:
update to unifi-5.10.23, includes unspecified "security improvement" (details to
follow later at https://community.ubnt.com/t5/Security-Updates-Blog/bg-p/Security_Updates_Blog)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 05:55:47

Modified files:
	x11/gnome/menus: Makefile distinfo 
	x11/gnome/menus/pkg: PLIST 
Added files:
	x11/gnome/menus/patches: patch-libmenu_Makefile_am 
	                         patch-libmenu_canonicalize_c 
	                         patch-libmenu_canonicalize_h 
	                         patch-libmenu_menu-layout_c 
Removed files:
	x11/gnome/menus/patches: patch-layout_gnome-applications_menu 
	                         patch-libmenu_desktop-entries_c 
	                         patch-libmenu_entry-directories_c 
	                         patch-libmenu_gmenu-tree_c 
	                         patch-util_test-menu-spec_c 

Log message:
Update to gnome-menus-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 06:04:10

Modified files:
	x11/gnome/settings-daemon: Makefile distinfo 
	x11/gnome/settings-daemon/patches: 
	                                   patch-plugins_power_gsd-power-manager_c 
	x11/gnome/settings-daemon/pkg: PLIST 

Log message:
Update to gnome-settings-daemon-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 06:07:02

Modified files:
	x11/gnome/power-manager: Makefile distinfo 

Log message:
Update to gnome-power-manager-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 06:07:18

Modified files:
	x11/gnome/color-manager: Makefile distinfo 
	x11/gnome/color-manager/pkg: PLIST 

Log message:
Update to gnome-color-manager-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 06:10:31

Modified files:
	www/epiphany   : Makefile distinfo 
	www/epiphany/pkg: PLIST 

Log message:
update to epiphany-3.32.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 06:11:54

Added files:
	www/epiphany/patches: patch-lib_ephy-web-app-utils_c 

Log message:
missed in previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 06:14:57

Modified files:
	x11/gnome/file-roller: Makefile distinfo 
	x11/gnome/file-roller/pkg: PLIST 

Log message:
update to file-roller-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	claudio@cvs.openbsd.org	2019/05/08 06:24:15

Modified files:
	infrastructure/db: user.list 

Log message:
Reserve UID 834 for node_exporter
OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/08 06:34:00

Modified files:
	lang/mono      : Makefile distinfo 
	lang/mono/pkg  : PLIST 
Removed files:
	lang/mono/patches: patch-support_sys-mman_c 

Log message:
update to 5.20.1.19


CVSROOT:	/cvs
Module name:	ports
Changes by:	claudio@cvs.openbsd.org	2019/05/08 06:37:10

Log message:
    Prometheus exporter for hardware and OS metrics exposed by *NIX kernels, written
    in Go with pluggable metric collectors.
    OK sthen@
    
    Status:
    
    Vendor Tag:	claudio
    Release Tags:	claudio_20190508
    
    N ports/sysutils/node_exporter/Makefile
    N ports/sysutils/node_exporter/distinfo
    N ports/sysutils/node_exporter/patches/patch-Makefile_common
    N ports/sysutils/node_exporter/pkg/DESCR
    N ports/sysutils/node_exporter/pkg/PLIST
    N ports/sysutils/node_exporter/pkg/node_exporter.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/08 06:40:57

Modified files:
	sys/kern       : vfs_bio.c vfs_biomem.c 

Log message:
Modify the buffer cache to always flip recovered DMA buffers high.

This also modifies the backoff logic to only back off what is requested
and not a "mimimum" amount. Tested by me, benno@, tedu@ anda ports build
by naddy@.

ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/08 06:41:55

Modified files:
	usr.sbin/bgpd  : bgpd.c bgpd.h config.c pfkey.c session.c 
	                 session.h 

Log message:
Rework the TCP md5sig and IKE handling. Move the pfkey socket to the parent
process in this process. The refreshing of the keys is done whenever the
session state is changes to state IDLE or ACTIVE. This should behave better
when reloading configs with auth changes.
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 06:55:52

Modified files:
	graphics/evince: Makefile distinfo 
	graphics/evince/pkg: PLIST 
Removed files:
	graphics/evince/patches: patch-shell_ev-application_c 

Log message:
update to evince-3.32.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/08 06:59:33

Modified files:
	infrastructure/lib/DPB: Config.pm Core.pm Host.pm 
	infrastructure/lib/DPB/Core: Distant.pm Init.pm 

Log message:
simplify host/core creation: create actual host objects once, and create
cores based on them.

Remove the localhost normal jobs/fetch jobs ambiguity by creating a dummy
"FETCH" host.

(still a bit of unwanted redundancy in hosts, but works better already)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/08 07:03:06

Modified files:
	infrastructure/bin: register-plist 

Log message:
make register-plist more readable, and add some logic for better
diagnostics.

- show more info when @version is bumped, either updated info for simple
cases, or diffs when it's the only thing preventing an error.
- remove synthetic @version -1 from confusing diffs
- talk about missing version info when we end up with an error that we couldn't
solve.

okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/08 07:04:27

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgAdd.pm Signature.pm Update.pm 

Log message:
better signatures.
- pass state along to be able to do proper errsay instead of raw printing.
- compare VERSION markers first, because they're supposed to trump
everything else.

(todo: evaluate -v diagnostics for version bumps)

okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 07:05:10

Modified files:
	x11/gnome/gedit: Makefile distinfo 
	x11/gnome/gedit/pkg: PLIST 

Log message:
update to gedit-3.32.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 07:07:14

Modified files:
	x11/gnome/eog  : Makefile distinfo 
	x11/gnome/eog/pkg: PLIST 

Log message:
update to eog-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 07:11:43

Modified files:
	cad/netgen     : Makefile 

Log message:
Use -std=gnu89 so base-gcc doesn't crap out on c++-style comments

REVISION bump to be safe.  ok bentley@ Alessandro DE LAURENZIS (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/08 07:13:38

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: 
	                      patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_cc 

Log message:
call XGetErrorDatabaseText() before pledge(2) to have the XErrorDB cached
for future XGetErrorDatabaseText() calls


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 07:15:49

Modified files:
	x11/gnome/system-monitor: Makefile distinfo 
	x11/gnome/system-monitor/pkg: PLIST 

Log message:
update to gnome-system-monitor-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 07:15:50

Modified files:
	x11/gnome/calculator: Makefile distinfo 
	x11/gnome/calculator/pkg: PLIST 
Removed files:
	x11/gnome/calculator/patches: patch-lib_equation-parser_vala 

Log message:
update to gnome-calculator-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 07:17:33

Modified files:
	x11/gnome/session: Makefile distinfo 
	x11/gnome/session/pkg: PLIST 

Log message:
Update to gnome-session-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 07:23:55

Modified files:
	x11/gnome/gedit-plugins: Makefile distinfo 
	x11/gnome/gedit-plugins/pkg: PLIST 

Log message:
update to gedit-plugins-3.32.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 07:37:46

Modified files:
	x11/gnome/baobab: Makefile distinfo 
	x11/gnome/baobab/pkg: PLIST 

Log message:
Update to baobab-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/08 07:45:44

Modified files:
	www            : Makefile 
	www/pecl-memcached: Makefile distinfo 

Log message:
update to pecl-memcached-3.1.3, enable for php73


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/05/08 07:47:24

Modified files:
	.              : hackathons.html 
Added files:
	images/hackathons: g2k19-s.gif g2k19.gif 

Log message:
g2k19 in Ottawa begins


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/08 07:49:47

Modified files:
	mail/spampd    : Makefile 
	net/prosody    : Makefile 
	net/py-oauth2  : Makefile 
	devel/py-coveralls: Makefile 
	devel/py-docopt: Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 08:09:07

Modified files:
	x11/gnome/bijiben: Makefile distinfo 
	x11/gnome/bijiben/pkg: PLIST 

Log message:
update to bijiben-3.32.1


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/08 08:18:25

Modified files:
	lib/libcrypto/modes: ccm128.c 

Log message:
Make sure that the tag buffer size is equal to the tag size
in CRYPTO_ccm128_tag(). Otherwise the caller might end up
using the part of the tag buffer that was left uninitialized.

Issue found by Guido Vranken.

ok inoguchi


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 08:21:42

Modified files:
	x11/gnome/nautilus: Makefile distinfo 
	x11/gnome/nautilus/pkg: PLIST 
Removed files:
	x11/gnome/nautilus/patches: patch-meson_build 
	                            patch-src_gnome-desktop_gnome-desktop-thumbnail-script_c 
	                            patch-src_gnome-desktop_gnome-desktop-thumbnail_c 

Log message:
Update to nautilus-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/08 08:22:25

Modified files:
	net/p5-Net-DNS-SEC: Makefile distinfo 

Log message:
update p5-Net-DNS-SEC to 1.13


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/08 08:24:41

Modified files:
	devel/pear-Date-Holidays: Makefile.inc 
	devel/pear-Date-Holidays/Australia: Makefile 
	devel/pear-Date-Holidays/Austria: Makefile 
	devel/pear-Date-Holidays/Brazil: Makefile 
	devel/pear-Date-Holidays/Chile: Makefile 
	devel/pear-Date-Holidays/Croatia: Makefile 
	devel/pear-Date-Holidays/Czech: Makefile 
	devel/pear-Date-Holidays/Denmark: Makefile 
	devel/pear-Date-Holidays/Discordian: Makefile 
	devel/pear-Date-Holidays/EnglandWales: Makefile 
	devel/pear-Date-Holidays/Finland: Makefile 
	devel/pear-Date-Holidays/France: Makefile 
	devel/pear-Date-Holidays/Germany: Makefile 
	devel/pear-Date-Holidays/Iceland: Makefile 
	devel/pear-Date-Holidays/Ireland: Makefile 
	devel/pear-Date-Holidays/Italy: Makefile 
	devel/pear-Date-Holidays/Japan: Makefile 
	devel/pear-Date-Holidays/Netherlands: Makefile 
	devel/pear-Date-Holidays/Norway: Makefile 
	devel/pear-Date-Holidays/PHPdotNet: Makefile 
	devel/pear-Date-Holidays/Portugal: Makefile 
	devel/pear-Date-Holidays/Romania: Makefile 
	devel/pear-Date-Holidays/Russia: Makefile 
	devel/pear-Date-Holidays/SanMarino: Makefile 
	devel/pear-Date-Holidays/Serbia: Makefile 
	devel/pear-Date-Holidays/Slovenia: Makefile 
	devel/pear-Date-Holidays/Spain: Makefile 
	devel/pear-Date-Holidays/Sweden: Makefile 
	devel/pear-Date-Holidays/Turkey: Makefile 
	devel/pear-Date-Holidays/UNO: Makefile 
	devel/pear-Date-Holidays/USA: Makefile 
	devel/pear-Date-Holidays/Ukraine: Makefile 
	devel/pear-Date-Holidays/Venezuela: Makefile 
	devel/pear-Date-Holidays/pear-Date-Holidays: Makefile 

Log message:
Drop jhuldtgren as maintainer of the pear-Date-* ports, he doesn't use
them any more. Discussed with danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 08:32:25

Log message:
    import libhandy 0.0.9.1
    
    The aim of The handy library is to help with developing UI for mobile
    devices using GTK+/GNOME.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190805
    
    N ports/x11/libhandy/Makefile
    N ports/x11/libhandy/distinfo
    N ports/x11/libhandy/pkg/PLIST
    N ports/x11/libhandy/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 08:34:10

Modified files:
	x11            : Makefile 
	x11/libhandy/pkg: PLIST 

Log message:
add libhandy (and fixup PLIST while here)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 08:37:21

Modified files:
	x11/gnome/contacts: Makefile distinfo 
	x11/gnome/contacts/pkg: PLIST 

Log message:
update to gnome-contacts-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 08:39:03

Modified files:
	www/epiphany   : Makefile 

Log message:
stop using the bundled libhandy and use the one from ports


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 08:39:05

Modified files:
	x11/libhandy   : Makefile 

Log message:
Fix SHARED_LIBS comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 08:40:33

Modified files:
	x11/gnome/latex: Makefile distinfo 
	x11/gnome/latex/pkg: PLIST 

Log message:
Update to gnome-latex-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2019/05/08 08:45:24

Modified files:
	lang/jikes     : Makefile 

Log message:
jikes new maintainer Yozo TODA


CVSROOT:	/cvs
Module name:	src
Changes by:	ccardenas@cvs.openbsd.org	2019/05/08 08:53:54

Modified files:
	sys/arch/arm64/dev: agintc.c 

Log message:
Fix kernel compile with DEBUG_AGINTC.

ok phessler, deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 08:55:03

ports/x11/gnome/quadrapassel/patches

Update of /cvs/ports/x11/gnome/quadrapassel/patches
In directory cvs.openbsd.org:/tmp/cvs-serv42246/patches

Log Message:
Directory /cvs/ports/x11/gnome/quadrapassel/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/08 08:55:20

Modified files:
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Initial try at python dependency detection for portgen

It does not correctly separate build/test/run depends or separate
dependencies per python version, but it does add dependencies it
thinks it needs and will recurse.

add it as is kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/08 08:59:31

Modified files:
	regress/sys/net/rtable: kern_compat.h 

Log message:
Mutex functions have no __ prefix anymore.  Adjust kernel compat
macros to make art.c compile again in regress.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/08 09:01:02

Modified files:
	infrastructure/lib/DPB: Core.pm 

Log message:
unbreak


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 09:04:36

Modified files:
	x11/gnome/quadrapassel: Makefile distinfo 
	x11/gnome/quadrapassel/pkg: PLIST 
Added files:
	x11/gnome/quadrapassel/patches: patch-meson_build 
	                                patch-src_meson_build 
	                                patch-src_quadrapassel_vala 

Log message:
update to quadrapassel-3.32.0


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/08 09:06:20

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
It is not an error condition if no new snapshot is available.
ok jasper@ florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/08 09:06:24

Modified files:
	infrastructure/lib/DPB: Core.pm 

Log message:
unbreak 2, really need to pass a {} even if I don't use it.


CVSROOT:	/cvs
Module name:	www
Changes by:	mpi@cvs.openbsd.org	2019/05/08 09:07:52

Modified files:
	.              : want.html 

Log message:
Remove my request for a USB card.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/08 09:13:02

Modified files:
	mail/p5-Email-MIME-ContentType: Makefile distinfo 
	mail/p5-Email-MIME-ContentType/pkg: DESCR 

Log message:
Update mail/p5-Email-MIME-ContentType to 1.022

OK Sam Smith <s () msmith ! net> (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/08 09:16:16

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
add more Intel 300 Series PCH ids


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/08 09:16:39

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 09:19:44

Modified files:
	x11/gnome/clocks: Makefile distinfo 
	x11/gnome/clocks/pkg: PLIST 

Log message:
Update to gnome-clocks-3.32.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/08 09:20:05

Modified files:
	sys/dev/pci    : ichiic.c 

Log message:
match on 300 series pch


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/08 09:23:20

Modified files:
	sys/dev/pci    : pucdata.c 

Log message:
match on 200 and 300 series pch kt


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 09:24:14

Modified files:
	databases/gdbm : Makefile distinfo 
Added files:
	databases/gdbm/patches: patch-src_gdbmconst_h 

Log message:
update to gdbm-1.18.1


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/08 09:32:02

Modified files:
	sys/dev/acpi   : acpi.c 

Log message:
free size. the allocation is the header plus the length.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/08 09:32:53

Modified files:
	sys/dev/ic     : nvme.c 

Log message:
when freeing ccbs, pass the number so we can free with the size.
ok deraadt mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/08 09:33:42

Modified files:
	sys/dev/pci    : azalia_codec.c 

Log message:
add free size, the old number of mixers, when reallocating.
ok deraadt mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/08 09:34:19

Modified files:
	sys/arch/mips64/mips64: db_machdep.c 

Log message:
Print the current ASID in hex instead of decimal, to match the format
with the ASID format on TLB entry lines.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/08 09:44:46

Modified files:
	databases/p5-Class-DBI-AbstractSearch: Makefile 
	databases/p5-Class-DBI-AsForm: Makefile 
	databases/p5-Class-DBI-FromCGI: Makefile 
	databases/p5-Class-DBI-Loader: Makefile 
	databases/p5-Class-DBI-Loader-Relationship: Makefile 
	databases/p5-Class-DBI-Pager: Makefile 
	databases/p5-Class-DBI-Plugin-RetrieveAll: Makefile 
	databases/p5-Class-DBI-Plugin-Type: Makefile 
	databases/p5-Class-DBI-SQLite: Makefile 
	databases/p5-Class-DBI-mysql: Makefile 
	databases/p5-DBIx-ContextualFetch: Makefile 
	devel/p5-AppConfig-Std: Makefile 
	devel/p5-Class-MethodMapper: Makefile 
	devel/p5-Class-WhiteHole: Makefile 
	devel/p5-Class-XPath: Makefile 
	devel/p5-Date-ICal: Makefile 
	devel/p5-Date-Leapyear: Makefile 
	devel/p5-Date-Simple: Makefile 
	devel/p5-Number-Compare: Makefile 
	devel/p5-Number-Compare-Date: Makefile 
	devel/p5-Universal-exports: Makefile 
	mail/p5-Email-MIME-ContentType: Makefile 
	mail/p5-Email-MessageID: Makefile 
	net/p5-Net-FTP-Recursive: Makefile 
	net/p5-Net-ICal: Makefile 
	textproc/p5-Lingua-EN-Inflect: Makefile 
	textproc/p5-Lingua-EN-Inflect-Number: Makefile 
	textproc/p5-PDF-Reuse: Makefile 
	textproc/p5-Text-Reform: Makefile 
	textproc/p5-XML-RAI: Makefile 
	textproc/p5-XML-RSS-Timing: Makefile 
	textproc/p5-XML-RSS-TimingBot: Makefile 
	www/p5-CGI-Untaint: Makefile 
	www/p5-HTML-Calendar-Month-Simple: Makefile 
	www/p5-HTML-Scrubber: Makefile 
	www/p5-HTTP-Proxy: Makefile 
	www/p5-HTTP-Recorder: Makefile 
	www/p5-HTTP-Request-Params: Makefile 
	www/p5-LWP-UserAgent-Determined: Makefile 
	www/p5-Maypole : Makefile 
	www/p5-Maypole-Authentication-UserSessionCookie: Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 09:45:47

Modified files:
	x11/gnome/control-center: Makefile distinfo 
	x11/gnome/control-center/patches: 
	                                  patch-panels_power_cc-power-panel_c 
	                                  patch-panels_printers_pp-host_c 
	                                  patch-shell_cc-panel-loader_c 
	                                  patch-shell_meson_build 
	x11/gnome/control-center/pkg: PLIST 
Added files:
	x11/gnome/control-center/patches: 
	                                  patch-panels_info_cc-info-overview-panel_c 
	                                  patch-panels_info_meson_build 
	                                  patch-panels_user-accounts_cc-realm-manager_c 
	                                  patch-panels_user-accounts_user-utils_c 
	                                  patch-tests_datetime_meson_build 
	                                  patch-tests_interactive-panels_meson_build 
Removed files:
	x11/gnome/control-center/patches: 
	                                  patch-panels_display_cc-night-light-widget_c 
	                                  patch-panels_user-accounts_um-realm-manager_c 
	                                  patch-panels_user-accounts_um-utils_c 

Log message:
Update to gnome-control-center-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/08 09:48:26

Modified files:
	sysutils/cfengine: Makefile 
	benchmarks/fs_mark: Makefile 
	fonts/gohufont : Makefile 
	graphics/freeglut: Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 09:50:19

Modified files:
	x11/gnome/maps : Makefile distinfo 
	x11/gnome/maps/pkg: PLIST 

Log message:
Update to gnome-maps-3.32.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/08 09:53:31

Modified files:
	distrib/miniroot: install.sub 

Log message:
cleanup after unattended upgrade

tweak & OK kmos, OK semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/08 09:55:56

Modified files:
	sys/dev/pci/drm/i915: i915_drv.c 

Log message:
We're not quite ready yet to actually detach inteldrm(4).

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/08 10:05:32

Modified files:
	devel/p5-Test-Inter: Makefile distinfo 

Log message:
Update devel/p5-Test-Inter to 1.09

OK due to a similar diff, cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/08 10:08:00

Modified files:
	mail/p5-Email-MessageID: Makefile distinfo 
	mail/p5-Email-MessageID/pkg: PLIST 

Log message:
Update mail/p5-Email-MessageID to 1.406

OK Sam Smith <s () msmith ! net> (ex-MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 10:16:59

Modified files:
	x11/gnome/mutter: Makefile distinfo 
	x11/gnome/mutter/patches: patch-src_compositor_compositor_c 
	                          patch-src_core_main_c 
	x11/gnome/mutter/pkg: PLIST 
Removed files:
	x11/gnome/mutter/patches: 
	                          patch-src_backends_x11_meta-input-settings-x11_c 

Log message:
update to mutter-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 10:17:27

Modified files:
	x11/gnome/shell: Makefile distinfo 
	x11/gnome/shell/patches: patch-js_misc_loginManager_js 
	                         patch-js_ui_status_keyboard_js 
	                         patch-js_ui_tweener_js patch-src_main_c 
	x11/gnome/shell/pkg: PLIST 
Removed files:
	x11/gnome/shell/patches: patch-js_ui_messageTray_js 

Log message:
update to gnome-shell-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 10:17:40

Modified files:
	x11/gnome/shell-extensions: Makefile distinfo 
	x11/gnome/shell-extensions/pkg: PLIST 

Log message:
update to gnome-shell-extensions-3.32.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 10:17:51

Modified files:
	x11/gnome/terminal: Makefile distinfo 
	x11/gnome/terminal/pkg: PLIST 

Log message:
update to gnome-terminal-3.32.1


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/08 10:22:42

Modified files:
	sys/kern       : subr_prf.c 

Log message:
Add a compile-time option called SPLASSERT_WATCH which changes the
default value of kern.splassert to 3, i.e. enter ddb on splassert()
failure. Will be used during fuzzing.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 10:23:39

Modified files:
	x11/gnome/music: Makefile distinfo 
	x11/gnome/music/pkg: PLIST 

Log message:
Update to gnome-music-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 10:24:14

Modified files:
	x11/gnome/photos: Makefile distinfo 
	x11/gnome/photos/pkg: PLIST 

Log message:
Update to gnome-photos-3.32.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/08 10:24:48

Modified files:
	sys/kern       : vfs_lockf.c 

Log message:
group function prototypes


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 10:25:47

Modified files:
	x11/gnome/mutter: Makefile 
	x11/gnome/mutter/pkg: PLIST 

Log message:
add missing SHARED_LIBS entry and regen PLIST


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 10:27:28

Modified files:
	devel/p5-Config-IniFiles: Makefile distinfo 

Log message:
update to p5-Config-IniFiles-3.000002


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 10:35:53

Log message:
    import r2pipe-1.2.0
    
    Interact with radare2 using the #!pipe command or in standalone scripts
    that communicate with local or remote r2 via pipe, tcp or http.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190805
    
    N ports/devel/py-r2pipe/Makefile
    N ports/devel/py-r2pipe/distinfo
    N ports/devel/py-r2pipe/pkg/DESCR
    N ports/devel/py-r2pipe/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 10:36:59

Modified files:
	devel          : Makefile 

Log message:
add py-r2pipe


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 10:37:24

Modified files:
	x11/gnome/totem: Makefile distinfo 
	x11/gnome/totem/patches: patch-src_meson_build 
	x11/gnome/totem/pkg: PLIST 

Log message:
Update to totem-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 10:42:28

Modified files:
	x11/gnome/seahorse: Makefile distinfo 
	x11/gnome/seahorse/pkg: PLIST 

Log message:
Update to seahorse-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/08 11:26:52

Modified files:
	textproc/oniguruma: Makefile distinfo 

Log message:
update to oniguruma-6.9.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/08 11:29:28

Modified files:
	infrastructure/db: user.list 

Log message:
reserve 835 for _opendmarc


CVSROOT:	/cvs
Module name:	src
Changes by:	tobias@cvs.openbsd.org	2019/05/08 11:33:22

Modified files:
	lib/libevent   : kqueue.c 

Log message:
Fixed integer overflow with an excessively large amount of events.

While at it: KNF and switch from reallocarray to recallocarray.

ok tedu


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 11:34:34

ports/databases/py-mysqlclient/patches

Update of /cvs/ports/databases/py-mysqlclient/patches
In directory cvs.openbsd.org:/tmp/cvs-serv19287/patches

Log Message:
Directory /cvs/ports/databases/py-mysqlclient/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/08 11:55:41

Modified files:
	usr.bin/signify: signify.1 

Log message:
xr to sysupgrade


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/08 12:05:03

Modified files:
	usr.bin/tmux   : cmd.c cmd-find.c 

Log message:
Adjust how mouse targets are found so they always have a session, window
and pane.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/08 12:07:13

Modified files:
	usr.bin/tmux   : cmd-display-panes.c screen-redraw.c 
	                 server-client.c tmux.h 

Log message:
Add a flag to redraw only the overlay, and remove the overlay on resize.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/08 12:16:31

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 66.0.5.

See https://www.mozilla.org/en-US/firefox/66.0.5/releasenotes/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/08 12:17:38

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Update to firefox-esr 60.6.3.

See https://www.mozilla.org/en-US/firefox/60.6.3/releasenotes/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/08 12:19:24

Modified files:
	www/mozilla-firefox: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to firefox 66.0.5.

See https://www.mozilla.org/en-US/firefox/66.0.5/releasenotes/

6.5-stable packages at the usual spot.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/08 12:19:56

Modified files:
	www/firefox-esr: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to firefox 60.6.3.

See https://www.mozilla.org/en-US/firefox/60.6.3/releasenotes/

6.5-stable packages at the usual spot (in some hours).


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/08 12:26:43

Modified files:
	infrastructure/lib/DPB: Host.pm 

Log message:
create the shell in a lazy way, so I can refactor host creation and
remove code duplication


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 12:28:29

Modified files:
	www/epiphany   : Makefile distinfo 
	www/epiphany/patches: patch-lib_ephy-web-app-utils_c 

Log message:
- update to epiphany-3.32.2
- apply upstream's patch for ephy-web-app-utils.c


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 12:42:30

Modified files:
	x11/gnome/initial-setup: Makefile distinfo 
Added files:
	x11/gnome/initial-setup/patches: 
	                                 patch-gnome-initial-setup_meson_build 
	                                 patch-gnome-initial-setup_pages_meson_build 
Removed files:
	x11/gnome/initial-setup/patches: patch-configure_ac 
	                                 patch-gnome-initial-setup_Makefile_in 
	                                 patch-gnome-initial-setup_pages_Makefile_in 
	                                 patch-gnome-initial-setup_pages_account_Makefile_in 
	                                 patch-gnome-initial-setup_pages_password_Makefile_in 

Log message:
Update to gnome-initial-setup-3.32.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/08 12:48:34

Modified files:
	usr.sbin/bgpd  : bgpd.c 

Log message:
when passing objects to imsg use the for 'obj, sizeof(*obj)' instead of
'obj, sizeof(struct object)'
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 12:52:18

Modified files:
	graphics/evince: Makefile 
	graphics/evince/pkg: PLIST 

Log message:
Unbreak: missing BDEP.
Regen PLIST while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/08 12:52:46

Modified files:
	lang/snobol4   : Makefile 

Log message:
Update maintainer's address per their request


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 13:04:30

Modified files:
	games/freedink/game: Makefile 
	games/freedink/game/pkg: PLIST 

Log message:
Unbreak: missing BDEP
Regen PLIST while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/08 13:08:34

Modified files:
	www/honk       : Makefile distinfo 

Log message:
Bonk honk to the latest vonk. Update from MAINTAINER!

OK jturner@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/08 13:08:58

Modified files:
	games/chessx   : Makefile 
	math/moo       : Makefile 
	net/wifind     : Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 13:23:19

Modified files:
	x11/gnome/shell: Makefile 

Log message:
Sync COMPILER with gjs.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/08 13:29:41

Modified files:
	regress/sys/kern/realpath: realpathtest.c 

Log message:
Add another case for robert@ :)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/08 13:41:15

Modified files:
	www/py-tornado : Makefile 

Log message:
Add missing RDEP on devel/py-futures.

Grepping the source code of py-tornado shows that concurrent.futures is
imported at several places.

This fixes an issue with spyder not starting as it errors out with
"pkg_resources.DistributionNotFound: The 'futures' distribution was not
found and is required by tornado"

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 13:41:30

Modified files:
	x11/gnome/sushi: Makefile distinfo 

Log message:
Update to sushi-3.32.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/08 13:57:45

Modified files:
	usr.sbin/httpd : config.c httpd.h parse.y server_fcgi.c 
	                 server_http.c 

Log message:
spacing


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/05/08 14:00:26

Modified files:
	usr.bin/rsync  : blocks.c client.c downloader.c extern.h fargs.c 
	                 flist.c ids.c io.c log.c main.c mkpath.c 
	                 mktemp.c receiver.c sender.c server.c session.c 
	                 socket.c symlinks.c uploader.c 

Log message:
remove sess argument from log functions. ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/08 14:13:57

Modified files:
	infrastructure/mk: fortran.port.mk 

Log message:
Teach the fortran module about flang.
ok steven@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcallah@cvs.openbsd.org	2019/05/08 14:14:52

Modified files:
	share/man/man5 : port-modules.5 

Log message:
Add flang to the MODFORTRAN_COMPILER list.
ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/08 14:17:21

Modified files:
	math/R         : Makefile 

Log message:
Use flang to build R on arm64
ok jca@ steven@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 14:23:27

Modified files:
	x11/gnome/documents: Makefile distinfo 
	x11/gnome/documents/pkg: DESCR PLIST 

Log message:
Update to gnome-documents-3.32.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/08 14:27:29

Modified files:
	lib/csu        : crt0.c 

Log message:
Call _csu_finish() before {pre,}init_array functions so that in static
executables the TIB and __progname are set up before they can be used.

problem noted by ori@
ok millert@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 14:42:57

Modified files:
	devel          : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/mysql++  : Makefile distinfo 
	devel/mysql++/patches: patch-Makefile_in 
	devel/mysql++/pkg: DESCR PLIST 

Log message:
Remove mysql++, a C++ mysql library unused by the rest of the ports tree

... since the removal of mysqlgui in 2004.  Fails to build with the wip
update to mariadb-10.2.3, now is a good time to remove the port.
ok bcallah@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/05/08 15:09:57

Modified files:
	sbin/pfctl     : pfctl.8 
	share/man/man5 : pf.conf.5 

Log message:
update to PF pfctl(8) and pf.conf(5) manpages
great input by Ingo, Jason and Klemens

OK schwarze@, OK kn@, OK jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 15:15:44

Log message:
    import pwntools-3.12.2
    
    Pwntools is a CTF framework and exploit development library. Written in
    Python, it is designed for rapid prototyping and development, and
    intended to make exploit writing as simple as possible.
    
    NB: Only the 'pwn' script has been installed, all other end-user scripts
    are available through 'pwn', e.g. 'pwn checksec'.
    
    OK aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190805
    
    N ports/security/pwntools/Makefile
    N ports/security/pwntools/distinfo
    N ports/security/pwntools/pkg/DESCR
    N ports/security/pwntools/pkg/PLIST
    N ports/security/pwntools/patches/patch-pwn___init___py
    N ports/security/pwntools/patches/patch-pwnlib___init___py
    N ports/security/pwntools/patches/patch-pwnlib_commandline_main_py
    N ports/security/pwntools/patches/patch-pwnlib_elf_elf_py
    N ports/security/pwntools/patches/patch-setup_py
    N ports/security/pwntools/patches/patch-pwnlib_asm_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 15:16:54

Modified files:
	security       : Makefile 

Log message:
+pwntools


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/08 15:25:54

Modified files:
	lang/flang/flang: Makefile 

Log message:
flang1 and flang2 were being linked with the LLVM shared library.
Do the same thing we do with the flang driver and force linking with the
static libraries instead.
Reported off-list by j <AT> bitminer <DOT> ca -- thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/08 15:27:29

Modified files:
	security/pwntools: Makefile 
	security/pwntools/patches: patch-pwnlib_elf_elf_py 

Log message:
recognize retguard; can be used through 'pwn checksec'

discussed with mortimer@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 15:28:55

Log message:
    Import gnome-books-3.32.0.
    
    Books is an e-book manager application for GNOME.
    It was split from gnome-documents.
    
    ok jasper@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20190508
    
    N ports/x11/gnome/books/Makefile
    N ports/x11/gnome/books/distinfo
    N ports/x11/gnome/books/pkg/DESCR
    N ports/x11/gnome/books/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 15:29:18

Modified files:
	x11/gnome      : Makefile 

Log message:
+books


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/05/08 15:30:11

Modified files:
	usr.bin/rsync  : Makefile blocks.c downloader.c extern.h flist.c 
	                 ids.c io.c mkpath.c mktemp.c receiver.c 
	                 sender.c server.c socket.c symlinks.c 
	                 uploader.c 

Log message:
remove sess argument from all functions that only used it for logging
functions.
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 15:31:30

Modified files:
	meta/gnome     : Makefile 

Log message:
Add x11/gnome/books to -extras.


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/05/08 15:31:30

Modified files:
	sbin/pfctl     : parse.y 

Log message:
pfctl should check pfctl.astack is not overrun
(bug found and fixed by Petr Hoffmann _at_ oracle.com)

OK kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 15:32:36

Modified files:
	x11/gnome/gdm  : Makefile distinfo 
	x11/gnome/gdm/patches: patch-daemon_gdm-display_c 
	                       patch-daemon_gdm-local-display-factory_c 
	                       patch-daemon_gdm-server_c 
	                       patch-daemon_gdm-session_c 
	                       patch-daemon_gdm-session_h 
	                       patch-data_Makefile_am 
	x11/gnome/gdm/pkg: PLIST 
Removed files:
	x11/gnome/gdm/patches: patch-data_gdm_schemas 

Log message:
Update to gdm-3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/08 15:36:07

Modified files:
	devel/p5-App-Cmd: Makefile 
	devel/p5-Class-Method-Modifiers: Makefile 
	devel/p5-ExtUtils-Config: Makefile 
	devel/p5-ExtUtils-Helpers: Makefile 
	devel/p5-ExtUtils-InstallPaths: Makefile 
	devel/p5-IO-TieCombine: Makefile 
	devel/p5-Import-Into: Makefile 
	devel/p5-Moo   : Makefile 
	devel/p5-MooX-Types-MooseLike: Makefile 
	devel/p5-Role-Tiny: Makefile 
	devel/p5-indirect: Makefile 
	devel/p5-strictures: Makefile 
	net/p5-Net-SCP : Makefile 
	net/p5-Net-SSH : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/08 15:41:06

Modified files:
	usr.sbin/httpd : http.h server_fcgi.c server_http.c 

Log message:
Set the REQUEST_URI CGI variable to the requested URI and query string
instead of the rewritten path and query string.

Patch from Tim Baumgard, reminded by Mischa Peters.

ok benno, reyk


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/08 15:44:06

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-ui_gl_BUILD_gn 
Added files:
	www/chromium/patches: patch-ui_gl_gl_surface_glx_cc 
	                      patch-ui_views_widget_desktop_aura_desktop_window_tree_host_x11_cc 

Log message:
add an upstream fix for https://bugs.chromium.org/p/chromium/issues/detail?id=956061

Issue 956061: Context menu and on top elements draw a black rectangle


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/08 15:46:44

Modified files:
	graphics/mtpaint: Makefile 
	security/sqlmap: Makefile 
	security/zaproxy: Makefile 

Log message:
Remove maintainers whose addresses bounce


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/08 15:46:56

Modified files:
	usr.sbin/httpd : httpd.conf.5 server_http.c 

Log message:
The QUERY_STRING macro is not actually URL encoded, so fix the manual.
Add a QUERY_STRING_ENC macro that is URL encoded.

Patch from Tim Baumgartner

ok reyk


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 15:48:20

Modified files:
	devel/llvm     : Makefile 

Log message:
Now that we have ports-gcc-8, enable lldb on ports-gcc archs

While here remove PSEUDO_FLAVORS and other goo to make lldb conditional.
From Brad.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/08 15:53:10

Modified files:
	lib/libcrypto/x509v3: v3_bcons.c v3_bitst.c v3_pmaps.c 

Log message:
initialize safestack pointers

ok beck@, tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 15:53:20

Modified files:
	devel/llvm     : Makefile 
Removed files:
	devel/llvm/pkg : DESCR-extras PLIST-extras 

Log message:
Remove -extras subpackage (already disabled)

Discussed with rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 15:58:04

Modified files:
	x11/gnome/gdm/patches: patch-daemon_gdm-local-display-factory_c 
	                       patch-daemon_gdm-server_c 
	                       patch-daemon_gdm-session_c 

Log message:
Forgot to regen some patches before committing.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/08 15:59:13

Modified files:
	sbin/unwind    : frontend.c 

Log message:
When starting up use the built-in DNSSEC trust anchor as well as the
on-disk one to give us a better chance on root KSK roll.  Either we
were online during the time the key rolled or we are running on a
version of unwind(8) that has the new KSK.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 16:00:42

Modified files:
	databases/py-mysqlclient: Makefile distinfo 
	databases/py-mysqlclient/pkg: PLIST 

Log message:
Update to py-mysqlclient-1.4.2

Fixes build with recent mariadb releases


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/08 16:00:55

Modified files:
	usr.sbin/dhcpd : confpars.c dhcp-options.5 dhcp.h dhcpd.h 
	                 tables.c 

Log message:
Switch domain-search parsing from hand rolled hex string to
human readable list of strings.

Slightly tweaked version of a diff from William Ahern via tech@.

Long silence on all fronts leads to community based testing.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/08 16:01:19

Modified files:
	sys/dev/pci/drm/include/linux: atomic.h 

Log message:
add cmpxchg() with same implementation as atomic_cmpxchg()


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/08 16:04:25

Modified files:
	www/chromium/patches: patch-base_debug_stack_trace_posix_cc 
	                      patch-base_process_process_metrics_openbsd_cc 
	                      patch-base_process_process_posix_cc 

Log message:
remove some noisy notimplemented notifications


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 16:04:51

Modified files:
	x11/gnome/libgda: Makefile distinfo 
	x11/gnome/libgda/pkg: PLIST-ui 

Log message:
Update to libgda-5.2.9.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/08 16:15:48

Modified files:
	libexec/ld.so  : util.c 

Log message:
On retguard systems, remove the ld.so-local stack-protector handling
functions because retguard uses hard-traps instead.
ok mortimer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 16:29:07

Modified files:
	graphics/gegl04: Makefile distinfo 
	graphics/gegl04/patches: 
	                         patch-operations_seamless-clone_Makefile_in 

Log message:
Update to gegl04-0.4.16.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 16:29:13

Modified files:
	databases      : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	databases/mysqlcc: Makefile distinfo 
	databases/mysqlcc/files: qmake.conf 
	databases/mysqlcc/patches: patch-configure patch-mysqlcc_pro_in 
	                           patch-src_CApplication_cpp 
	                           patch-src_CHotKeyEditorDialog_cpp 
	                           patch-src_main_cpp 
	databases/mysqlcc/pkg: DESCR PLIST 

Log message:
Remove mysqlcc, an old Qt gui for mysql

Won't build with recent mariadb releases, unmaintained upstream, no
interest in keeping this on life support.  ok bcallah@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 16:33:32

Modified files:
	databases/py-mysql: Makefile 
	databases/py-mysql/patches: patch-_mysql_c 
	databases/ruby-mysql: Makefile 
	databases/ruby-mysql/patches: patch-ext_mysql_api_mysql_c 

Log message:
Fix build with recent mariadb releases.

No more 'reconnect' member in struct MYSQL, use mysql_options() and
mysql_get_options() to set/get the autoreconnect setting.  Same approach
as in databases/py-mysqlclient.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 16:34:02

Modified files:
	devel/llvm     : distinfo 

Log message:
Missed in previous.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/08 16:44:31

Modified files:
	sys/dev/pci/drm/include/linux: mm.h slab.h 

Log message:
Fix overflow tests such that we can allocate arrays with zero items.
Linux allows this sillyness and it is needed to make X work on the
integrated graphics on the AMD Ryzen 3 PRO 2200GE APU.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 16:50:07

Modified files:
	mail/alpine    : Makefile 

Log message:
Fix HOMEPAGE and MASTER_SITES.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 16:53:30

Modified files:
	audio/qsynth   : Makefile 

Log message:
Don't pick up qmake from qt3-mt when we want qt5, use ${MODQT_QMAKE} instead

Spotted by ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/08 17:04:57

Modified files:
	devel/p5-Memoize-ExpireLRU: Makefile distinfo 

Log message:
Update devel/p5-Memoize-ExpireLRU to 0.56


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/05/08 17:10:44

Modified files:
	.              : plus.html 

Log message:
plus entries for April 28 - May 8
OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/08 17:22:19

Modified files:
	usr.sbin/relayd: http.h relay.c relay_http.c relayd.c relayd.h 

Log message:
Fix and tweak websocket upgrade handling.

- Don't expect the Connection header to equal Upgrade, it may include Upgrade
- Reshuffle the code to check the Upgrade/Connection headers in one place

Reported and tested by Rivo Nurges

OK and input from benno@
Cvs: ----------------------------------------------------------------------


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/08 17:23:06

Modified files:
	distrib/miniroot: install.sub 

Log message:
Move the magic ping6 IPv6 default router discovery so we probe all
relevant interfaces at once, and ask for a user decision right after
we ask for the IPv4 default route.

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/08 17:35:23

Modified files:
	sys/dev/pci/drm/include/linux: wait.h 

Log message:
Add wait_event_killable().  In linux TASK_KILLABLE only gets fatal
signals, as we don't have an equivalent use PCATCH and check for all
signals before and after msleep.  Discussed with kettenis@.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/08 17:49:45

Modified files:
	lib/libssl     : ssl_tlsext.c 

Log message:
In DTLS, use_srtp is part of the extended server hello while in TLSv1.3,
it is an encrypted extension.  Include it in the server hello for now.
This will have to be revisited once TLSv1.3 gets there. Fixes SRTP
negotiation.

Problem found by two rust-openssl regress failures reported by mikeb.

with & ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/08 17:51:14

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
add Google vendor ID


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/08 17:51:34

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/08 17:53:26

Modified files:
	sys/kern       : kern_malloc.c 

Log message:
print a few warnings when calling free with a zero size.
let's see what falls out.
ok beck deraadt kettenis mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/08 17:53:40

Added files:
	sys/dev/usb    : ucrcom.c 

Log message:
Add ucrcom(4) a (very simple) driver for the serial console of (some)
chromebooks.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/08 17:54:13

Modified files:
	usr.bin/systat : iostat.c systat.1 

Log message:
allow switching to print stats since boot via 'b'.
ok beck deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/08 17:54:39

Modified files:
	sys/arch/alpha/conf: GENERIC 
	sys/arch/amd64/conf: GENERIC 
	sys/arch/arm64/conf: GENERIC 
	sys/arch/armv7/conf: GENERIC 
	sys/arch/hppa/conf: GENERIC 
	sys/arch/i386/conf: GENERIC 
	sys/arch/landisk/conf: GENERIC 
	sys/arch/loongson/conf: GENERIC 
	sys/arch/macppc/conf: GENERIC 
	sys/arch/octeon/conf: GENERIC 
	sys/arch/sparc64/conf: GENERIC 

Log message:
Enable ucrcom(4) on all architectures that have uslcom(4).

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/08 17:56:48

Modified files:
	libexec/ftpd   : extern.h ftpcmd.y ftpd.8 ftpd.c popen.c 

Log message:
rm dead code and simplify ftpd_popen. this code has only called
its statically linked ls_main for some time now.
from Jan Klemkow
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/08 17:59:19

Modified files:
	usr.sbin/ikectl: ikeca.c 

Log message:
convert system() calls to an execv() like interface.
avoids sh difficulties, etc.
from Matthew Martin.
ok deraadt reyk


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2019/05/08 18:10:52

Added files:
	.              : 66.html 

Log message:
Add a 66.html to start with


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 18:11:20

Modified files:
	x11/gnome/builder: Makefile distinfo 
	x11/gnome/builder/patches: 
	                           patch-src_plugins_todo_gbp-todo-model_c 
	x11/gnome/builder/pkg: PLIST 
Added files:
	x11/gnome/builder/patches: patch-src_libide_io_ide-path_c 
Removed files:
	x11/gnome/builder/patches: patch-src_libide_util_ide-posix_c 

Log message:
Update to gnome-builder-3.32.2.
We need to build with ports-gcc because clang doesn't support variadic
macros (__VA_OPT__) in C mode.


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/05/08 18:13:36

Modified files:
	.              : 66.html 

Log message:
obligatory bikeshedding now that i can't do that anymore
when the release notes are prepared


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 18:16:32

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-245.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 18:19:37

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.145.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 18:19:50

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.145.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 18:20:05

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.155.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/08 18:20:57

Modified files:
	sys/dev/usb    : files.usb 

Log message:
Add ucrcom(4) a (very simple) driver for the serial console of (some)
chromebooks.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/08 18:39:16

Modified files:
	net/kea        : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/05/08 18:40:38

Modified files:
	security/py-axolotl: Makefile distinfo 

Log message:
Update to python-axolotl 0.2.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/08 19:05:50

Modified files:
	editors/sigil/pkg: PLIST 

Log message:
Remove stray .so in plist, fixing the build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/08 20:13:57

Modified files:
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Avoid uninitalized $req warning in portgen

Noticed by jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/08 20:19:48

Modified files:
	x11/gnome/gedit-plugins: Makefile 

Log message:
Missing BDEP on devel/appstream-glib.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 21:27:40

Modified files:
	security/cyrus-sasl2: Makefile 

Log message:
Help this build with recent mariadb releases.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/08 21:48:56

Modified files:
	net/jabberd    : Makefile 
Added files:
	net/jabberd/patches: patch-c2s_authreg_mysql_c 
	                     patch-sm_storage_mysql_c 

Log message:
Cope with lack of 'reconnect' in struct MYSQL in recent mariadb releases.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ratchov@cvs.openbsd.org	2019/05/08 23:12:53

Modified files:
	emulators/qemu : Makefile 
	emulators/qemu/patches: patch-configure 
Added files:
	emulators/qemu/patches: patch-audio_Makefile_objs 
	                        patch-audio_sndioaudio_c 

Log message:
Add sndio backend. It should allow guest operating systems with no
sndio support to use sndio audio interfaces of the host system.

With help from brad@, ok sthen@.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/08 23:17:45

Modified files:
	sys/dev/pci    : envy.c 

Log message:
Implement set_rate() method for M-Audio Audiophile 192k cards.

It switches the AK5385 and the AK4358 chips between single-, double-
or quad-speed modes depending on the host sample rate.

Help and testing by Andrey Oktyabrskiy <ano at bestmx.net>. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/08 23:47:27

Modified files:
	regress/lib/libssl/key_schedule: key_schedule.c 

Log message:
Proper prototype for main(). Make sparc64 happier.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/09 00:00:55

Modified files:
	distrib/miniroot: install.sub 

Log message:
Don't forget about previous dhcp configuration attempts
when restarting an install. Even if the original dhcp
attempt did not successfully get a lease and configure
the interface.

ok beck@ florian@


CVSROOT:	/cvs
Module name:	www
Changes by:	anton@cvs.openbsd.org	2019/05/09 00:15:14

Modified files:
	.              : plus.html 

Log message:
correct description of recent lockf changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/09 00:31:18

Modified files:
	meta/tor-browser: Makefile 
	www/tor-browser: Makefile.inc 
	www/tor-browser/browser: distinfo 
	www/tor-browser/https-everywhere: Makefile 
	www/tor-browser/noscript: Makefile distinfo 
	www/tor-browser/tor-launcher: Makefile 
	www/tor-browser/torbutton: Makefile distinfo 

Log message:
Update to tor-browser 8.0.9, from MAINTAINER.

See https://blog.torproject.org/new-release-tor-browser-809


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/09 00:58:13

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Skip empty control interfaces when parsing descriptors.

Even if having multiple control interface descriptors is not allowed
by the UAC spec, there's no reason to stop as long as a proper control
interface was processed.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/09 01:00:38

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Set the rate of UAC v2.0 clock units using the control interface, not
a random streaming iface.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/09 01:09:05

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
When changing device rate, send request to the clock source unit.

Currently we send the request to the unit indicated as clock source of
the terminals, which may be a clock selector unit that doesn't support
the request. Fix this by following the clock source path until the
clock source unit is found.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/09 02:38:13

Modified files:
	usr.bin/tmux   : format.c tmux.1 

Log message:
Add formats to show if pane is the marked pane and if any marked pane is set.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/09 02:39:09

Modified files:
	usr.bin/tmux   : cmd-swap-window.c 

Log message:
Change swap-window -d to be the other way round (stay with src window),
so it works like swap-pane.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/05/09 03:18:34

Modified files:
	devel/py-xlsxwriter: Makefile distinfo 

Log message:
update XlsxWriter to 1.1.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/05/09 03:37:56

Modified files:
	net/py-tld     : Makefile distinfo 

Log message:
update py-tld to 0.9.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/09 03:43:28

Modified files:
	share/man/man1 : register-plist.1 

Log message:
be more thorough in describing what register-plist does.
also document -p, used by check-register
... and @version bumps.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/09 04:35:59

Modified files:
	usr.bin/less   : line.c 

Log message:
UTF-8 cleanup in the function pshift().
Use the standard functions mbtowc(3), wcwidth(3), iscntrl(3) instead
of bad functions like get_wchar(), utf_len(), is_wide_char(),
is_composing_char(), is_combining_char(), control_char().
If only half of a double-width character is shifted off screen, do not
inspect anything following it because that clearly remains on-screen.
Improve and add comments.
OK millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 04:37:05

Modified files:
	x11/gnome/mutter: Makefile 

Log message:
add missing dependency on gnome-settings-daemon


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 04:47:46

Modified files:
	x11/gnome/terminal: Makefile distinfo 

Log message:
update to gnome-terminal-3.32.2


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/09 04:53:59

Modified files:
	usr.bin/less   : charset.h 

Log message:
delete five unused macros


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/09 05:05:36

Modified files:
	infrastructure/lib/DPB: Core.pm 
	infrastructure/lib/DPB/PortBuilder: Rebuild.pm 

Log message:
finish fixing host changes
noticed by Andreas Kusalananda K��h��ri

patch is slightly different:
- remove badly placed empty prop
- no need to use Hosts. All "basic" includes are done by dpb proper.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/09 05:06:01

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
way simpler to zap vim .swp files on the way...


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/09 05:08:55

Modified files:
	infrastructure/lib/DPB: Config.pm 

Log message:
Add LISTING_EXTRA for config files, as an alternative to -e
(coucou Antoine)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/09 05:09:18

Modified files:
	share/man/man1 : dpb.1 

Log message:
actual timeout is smaller.
document LISTING_EXTRA


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/05/09 05:23:04

Modified files:
	print/poppler  : Makefile distinfo 

Log message:
Update to poppler-0.76.1.

Testbuild with ports gcc and ld.bfd by jca@, thanks!

ok, jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/09 05:23:53

Modified files:
	devel/libyaml  : Makefile distinfo 

Log message:
update to yaml-0.2.2, maintainer timeout


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/09 05:38:36

Modified files:
	productivity/tryton/5.0: Makefile 

Log message:
add (commented) entries for 5.0 modules not currently ported (to keep track of them)


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/09 05:40:51

ports/productivity/tryton/5.2

Update of /cvs/ports/productivity/tryton/5.2
In directory cvs.openbsd.org:/tmp/cvs-serv33804/5.2

Log Message:
Directory /cvs/ports/productivity/tryton/5.2 added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/05/09 05:48:23

Modified files:
	security/oledump: Makefile distinfo 

Log message:
update oledump to 0.0.42.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/09 05:49:02

Log message:
    import 5.2 serie of tryton
    
    "commit but not hooked for now" @aja
    
    Status:
    
    Vendor Tag:	semarie
    Release Tags:	semarie_20190509
    
    N ports/productivity/tryton/5.2/Makefile
    N ports/productivity/tryton/5.2/Makefile.inc
    N ports/productivity/tryton/5.2/account/Makefile
    N ports/productivity/tryton/5.2/account/distinfo
    N ports/productivity/tryton/5.2/account/pkg/DESCR
    N ports/productivity/tryton/5.2/account/pkg/PLIST
    N ports/productivity/tryton/5.2/account_asset/Makefile
    N ports/productivity/tryton/5.2/account_asset/distinfo
    N ports/productivity/tryton/5.2/account_asset/pkg/DESCR
    N ports/productivity/tryton/5.2/account_asset/pkg/PLIST
    N ports/productivity/tryton/5.2/account_be/Makefile
    N ports/productivity/tryton/5.2/account_be/distinfo
    N ports/productivity/tryton/5.2/account_be/pkg/DESCR
    N ports/productivity/tryton/5.2/account_be/pkg/PLIST
    N ports/productivity/tryton/5.2/account_credit_limit/Makefile
    N ports/productivity/tryton/5.2/account_credit_limit/distinfo
    N ports/productivity/tryton/5.2/account_credit_limit/pkg/DESCR
    N ports/productivity/tryton/5.2/account_credit_limit/pkg/PLIST
    N ports/productivity/tryton/5.2/account_de_skr03/distinfo
    N ports/productivity/tryton/5.2/account_de_skr03/Makefile
    N ports/productivity/tryton/5.2/account_de_skr03/pkg/DESCR
    N ports/productivity/tryton/5.2/account_de_skr03/pkg/PLIST
    N ports/productivity/tryton/5.2/account_deposit/distinfo
    N ports/productivity/tryton/5.2/account_deposit/Makefile
    N ports/productivity/tryton/5.2/account_deposit/pkg/DESCR
    N ports/productivity/tryton/5.2/account_deposit/pkg/PLIST
    N ports/productivity/tryton/5.2/account_dunning/distinfo
    N ports/productivity/tryton/5.2/account_dunning/Makefile
    N ports/productivity/tryton/5.2/account_dunning/pkg/DESCR
    N ports/productivity/tryton/5.2/account_dunning/pkg/PLIST
    N ports/productivity/tryton/5.2/account_dunning_email/distinfo
    N ports/productivity/tryton/5.2/account_dunning_email/Makefile
    N ports/productivity/tryton/5.2/account_dunning_email/pkg/DESCR
    N ports/productivity/tryton/5.2/account_dunning_email/pkg/PLIST
    N ports/productivity/tryton/5.2/account_dunning_fee/distinfo
    N ports/productivity/tryton/5.2/account_dunning_fee/Makefile
    N ports/productivity/tryton/5.2/account_dunning_fee/pkg/DESCR
    N ports/productivity/tryton/5.2/account_dunning_fee/pkg/PLIST
    N ports/productivity/tryton/5.2/account_dunning_letter/distinfo
    N ports/productivity/tryton/5.2/account_dunning_letter/Makefile
    N ports/productivity/tryton/5.2/account_dunning_letter/pkg/DESCR
    N ports/productivity/tryton/5.2/account_dunning_letter/pkg/PLIST
    N ports/productivity/tryton/5.2/account_es/Makefile
    N ports/productivity/tryton/5.2/account_es/distinfo
    N ports/productivity/tryton/5.2/account_es/pkg/DESCR
    N ports/productivity/tryton/5.2/account_es/pkg/PLIST
    N ports/productivity/tryton/5.2/account_eu/distinfo
    N ports/productivity/tryton/5.2/account_eu/Makefile
    N ports/productivity/tryton/5.2/account_eu/pkg/DESCR
    N ports/productivity/tryton/5.2/account_eu/pkg/PLIST
    N ports/productivity/tryton/5.2/account_fr/Makefile
    N ports/productivity/tryton/5.2/account_fr/distinfo
    N ports/productivity/tryton/5.2/account_fr/pkg/DESCR
    N ports/productivity/tryton/5.2/account_fr/pkg/PLIST
    N ports/productivity/tryton/5.2/account_fr_chorus/Makefile
    N ports/productivity/tryton/5.2/account_fr_chorus/distinfo
    N ports/productivity/tryton/5.2/account_fr_chorus/pkg/DESCR
    N ports/productivity/tryton/5.2/account_fr_chorus/pkg/PLIST
    N ports/productivity/tryton/5.2/account_invoice/Makefile
    N ports/productivity/tryton/5.2/account_invoice/distinfo
    N ports/productivity/tryton/5.2/account_invoice/pkg/DESCR
    N ports/productivity/tryton/5.2/account_invoice/pkg/PLIST
    N ports/productivity/tryton/5.2/account_invoice_correction/Makefile
    N ports/productivity/tryton/5.2/account_invoice_correction/distinfo
    N ports/productivity/tryton/5.2/account_invoice_correction/pkg/DESCR
    N ports/productivity/tryton/5.2/account_invoice_correction/pkg/PLIST
    N ports/productivity/tryton/5.2/account_payment/Makefile
    N ports/productivity/tryton/5.2/account_payment/distinfo
    N ports/productivity/tryton/5.2/account_payment/pkg/DESCR
    N ports/productivity/tryton/5.2/account_payment/pkg/PLIST
    N ports/productivity/tryton/5.2/account_invoice_history/Makefile
    N ports/productivity/tryton/5.2/account_invoice_history/distinfo
    N ports/productivity/tryton/5.2/account_invoice_history/pkg/DESCR
    N ports/productivity/tryton/5.2/account_invoice_history/pkg/PLIST
    N ports/productivity/tryton/5.2/account_invoice_line_standalone/Makefile
    N ports/productivity/tryton/5.2/account_invoice_line_standalone/distinfo
    N ports/productivity/tryton/5.2/account_invoice_line_standalone/pkg/DESCR
    N ports/productivity/tryton/5.2/account_invoice_line_standalone/pkg/PLIST
    N ports/productivity/tryton/5.2/account_invoice_stock/Makefile
    N ports/productivity/tryton/5.2/account_invoice_stock/distinfo
    N ports/productivity/tryton/5.2/account_invoice_stock/pkg/DESCR
    N ports/productivity/tryton/5.2/account_invoice_stock/pkg/PLIST
    N ports/productivity/tryton/5.2/account_payment_clearing/Makefile
    N ports/productivity/tryton/5.2/account_payment_clearing/distinfo
    N ports/productivity/tryton/5.2/account_payment_clearing/pkg/DESCR
    N ports/productivity/tryton/5.2/account_payment_clearing/pkg/PLIST
    N ports/productivity/tryton/5.2/account_payment_sepa/Makefile
    N ports/productivity/tryton/5.2/account_payment_sepa/distinfo
    N ports/productivity/tryton/5.2/account_payment_sepa/pkg/DESCR
    N ports/productivity/tryton/5.2/account_payment_sepa/pkg/PLIST
    N ports/productivity/tryton/5.2/account_payment_sepa_cfonb/Makefile
    N ports/productivity/tryton/5.2/account_payment_sepa_cfonb/distinfo
    N ports/productivity/tryton/5.2/account_payment_sepa_cfonb/pkg/DESCR
    N ports/productivity/tryton/5.2/account_payment_sepa_cfonb/pkg/PLIST
    N ports/productivity/tryton/5.2/account_product/Makefile
    N ports/productivity/tryton/5.2/account_product/distinfo
    N ports/productivity/tryton/5.2/account_product/pkg/DESCR
    N ports/productivity/tryton/5.2/account_product/pkg/PLIST
    N ports/productivity/tryton/5.2/account_statement/distinfo
    N ports/productivity/tryton/5.2/account_statement/Makefile
    N ports/productivity/tryton/5.2/account_statement/pkg/DESCR
    N ports/productivity/tryton/5.2/account_statement/pkg/PLIST
    N ports/productivity/tryton/5.2/account_statement_ofx/Makefile
    N ports/productivity/tryton/5.2/account_statement_ofx/distinfo
    N ports/productivity/tryton/5.2/account_statement_ofx/pkg/DESCR
    N ports/productivity/tryton/5.2/account_statement_ofx/pkg/PLIST
    N ports/productivity/tryton/5.2/account_statement_rule/Makefile
    N ports/productivity/tryton/5.2/account_statement_rule/distinfo
    N ports/productivity/tryton/5.2/account_statement_rule/pkg/DESCR
    N ports/productivity/tryton/5.2/account_statement_rule/pkg/PLIST
    N ports/productivity/tryton/5.2/account_stock_anglo_saxon/distinfo
    N ports/productivity/tryton/5.2/account_stock_anglo_saxon/Makefile
    N ports/productivity/tryton/5.2/account_stock_anglo_saxon/pkg/DESCR
    N ports/productivity/tryton/5.2/account_stock_anglo_saxon/pkg/PLIST
    N ports/productivity/tryton/5.2/account_stock_continental/distinfo
    N ports/productivity/tryton/5.2/account_stock_continental/Makefile
    N ports/productivity/tryton/5.2/account_stock_continental/pkg/DESCR
    N ports/productivity/tryton/5.2/account_stock_continental/pkg/PLIST
    N ports/productivity/tryton/5.2/account_stock_landed_cost/distinfo
    N ports/productivity/tryton/5.2/account_stock_landed_cost/Makefile
    N ports/productivity/tryton/5.2/account_stock_landed_cost/pkg/DESCR
    N ports/productivity/tryton/5.2/account_stock_landed_cost/pkg/PLIST
    N ports/productivity/tryton/5.2/account_stock_landed_cost_weight/distinfo
    N ports/productivity/tryton/5.2/account_stock_landed_cost_weight/Makefile
    N ports/productivity/tryton/5.2/account_stock_landed_cost_weight/pkg/DESCR
    N ports/productivity/tryton/5.2/account_stock_landed_cost_weight/pkg/PLIST
    N ports/productivity/tryton/5.2/analytic_account/distinfo
    N ports/productivity/tryton/5.2/analytic_account/Makefile
    N ports/productivity/tryton/5.2/analytic_account/pkg/DESCR
    N ports/productivity/tryton/5.2/analytic_account/pkg/PLIST
    N ports/productivity/tryton/5.2/bank/distinfo
    N ports/productivity/tryton/5.2/bank/Makefile
    N ports/productivity/tryton/5.2/bank/pkg/DESCR
    N ports/productivity/tryton/5.2/bank/pkg/PLIST
    N ports/productivity/tryton/5.2/analytic_invoice/distinfo
    N ports/productivity/tryton/5.2/analytic_invoice/Makefile
    N ports/productivity/tryton/5.2/analytic_invoice/pkg/DESCR
    N ports/productivity/tryton/5.2/analytic_invoice/pkg/PLIST
    N ports/productivity/tryton/5.2/analytic_purchase/distinfo
    N ports/productivity/tryton/5.2/analytic_purchase/Makefile
    N ports/productivity/tryton/5.2/analytic_purchase/pkg/DESCR
    N ports/productivity/tryton/5.2/analytic_purchase/pkg/PLIST
    N ports/productivity/tryton/5.2/analytic_sale/distinfo
    N ports/productivity/tryton/5.2/analytic_sale/Makefile
    N ports/productivity/tryton/5.2/analytic_sale/pkg/DESCR
    N ports/productivity/tryton/5.2/analytic_sale/pkg/PLIST
    N ports/productivity/tryton/5.2/authentication_sms/distinfo
    N ports/productivity/tryton/5.2/authentication_sms/Makefile
    N ports/productivity/tryton/5.2/authentication_sms/pkg/DESCR
    N ports/productivity/tryton/5.2/authentication_sms/pkg/PLIST
    N ports/productivity/tryton/5.2/carrier/distinfo
    N ports/productivity/tryton/5.2/carrier/Makefile
    N ports/productivity/tryton/5.2/carrier/pkg/DESCR
    N ports/productivity/tryton/5.2/carrier/pkg/PLIST
    N ports/productivity/tryton/5.2/carrier_percentage/distinfo
    N ports/productivity/tryton/5.2/carrier_percentage/Makefile
    N ports/productivity/tryton/5.2/carrier_percentage/pkg/DESCR
    N ports/productivity/tryton/5.2/carrier_percentage/pkg/PLIST
    N ports/productivity/tryton/5.2/carrier_weight/distinfo
    N ports/productivity/tryton/5.2/carrier_weight/Makefile
    N ports/productivity/tryton/5.2/carrier_weight/pkg/DESCR
    N ports/productivity/tryton/5.2/carrier_weight/pkg/PLIST
    N ports/productivity/tryton/5.2/commission/distinfo
    N ports/productivity/tryton/5.2/commission/Makefile
    N ports/productivity/tryton/5.2/commission/pkg/DESCR
    N ports/productivity/tryton/5.2/commission/pkg/PLIST
    N ports/productivity/tryton/5.2/commission_waiting/distinfo
    N ports/productivity/tryton/5.2/commission_waiting/Makefile
    N ports/productivity/tryton/5.2/commission_waiting/pkg/DESCR
    N ports/productivity/tryton/5.2/commission_waiting/pkg/PLIST
    N ports/productivity/tryton/5.2/company/distinfo
    N ports/productivity/tryton/5.2/company/Makefile
    N ports/productivity/tryton/5.2/company/pkg/DESCR
    N ports/productivity/tryton/5.2/company/pkg/PLIST
    N ports/productivity/tryton/5.2/company_work_time/distinfo
    N ports/productivity/tryton/5.2/company_work_time/Makefile
    N ports/productivity/tryton/5.2/company_work_time/pkg/DESCR
    N ports/productivity/tryton/5.2/company_work_time/pkg/PLIST
    N ports/productivity/tryton/5.2/country/distinfo
    N ports/productivity/tryton/5.2/country/Makefile
    N ports/productivity/tryton/5.2/country/pkg/DESCR
    N ports/productivity/tryton/5.2/country/pkg/PLIST
    N ports/productivity/tryton/5.2/currency/distinfo
    N ports/productivity/tryton/5.2/currency/Makefile
    N ports/productivity/tryton/5.2/currency/pkg/DESCR
    N ports/productivity/tryton/5.2/currency/pkg/PLIST
    N ports/productivity/tryton/5.2/customs/distinfo
    N ports/productivity/tryton/5.2/customs/Makefile
    N ports/productivity/tryton/5.2/customs/pkg/DESCR
    N ports/productivity/tryton/5.2/customs/pkg/PLIST
    N ports/productivity/tryton/5.2/dashboard/distinfo
    N ports/productivity/tryton/5.2/dashboard/Makefile
    N ports/productivity/tryton/5.2/dashboard/pkg/DESCR
    N ports/productivity/tryton/5.2/dashboard/pkg/PLIST
    N ports/productivity/tryton/5.2/edocument_uncefact/distinfo
    N ports/productivity/tryton/5.2/edocument_uncefact/Makefile
    N ports/productivity/tryton/5.2/edocument_uncefact/pkg/DESCR
    N ports/productivity/tryton/5.2/edocument_uncefact/pkg/PLIST
    N ports/productivity/tryton/5.2/edocument_unece/distinfo
    N ports/productivity/tryton/5.2/edocument_unece/Makefile
    N ports/productivity/tryton/5.2/edocument_unece/pkg/DESCR
    N ports/productivity/tryton/5.2/edocument_unece/pkg/PLIST
    N ports/productivity/tryton/5.2/google_maps/distinfo
    N ports/productivity/tryton/5.2/google_maps/Makefile
    N ports/productivity/tryton/5.2/google_maps/pkg/DESCR
    N ports/productivity/tryton/5.2/google_maps/pkg/PLIST
    N ports/productivity/tryton/5.2/notification_email/distinfo
    N ports/productivity/tryton/5.2/notification_email/Makefile
    N ports/productivity/tryton/5.2/notification_email/pkg/DESCR
    N ports/productivity/tryton/5.2/notification_email/pkg/PLIST
    N ports/productivity/tryton/5.2/party/distinfo
    N ports/productivity/tryton/5.2/party/Makefile
    N ports/productivity/tryton/5.2/party/pkg/DESCR
    N ports/productivity/tryton/5.2/party/pkg/PLIST
    N ports/productivity/tryton/5.2/party_relationship/distinfo
    N ports/productivity/tryton/5.2/party_relationship/Makefile
    N ports/productivity/tryton/5.2/party_relationship/pkg/DESCR
    N ports/productivity/tryton/5.2/party_relationship/pkg/PLIST
    N ports/productivity/tryton/5.2/sao/distinfo
    N ports/productivity/tryton/5.2/sao/Makefile
    N ports/productivity/tryton/5.2/sao/pkg/DESCR
    N ports/productivity/tryton/5.2/sao/pkg/PLIST
    N ports/productivity/tryton/5.2/sao/files/sao-dependencies.sh
    N ports/productivity/tryton/5.2/sao/files/custom.css
    N ports/productivity/tryton/5.2/sao/files/custom.js
    N ports/productivity/tryton/5.2/party_siret/distinfo
    N ports/productivity/tryton/5.2/party_siret/Makefile
    N ports/productivity/tryton/5.2/party_siret/pkg/DESCR
    N ports/productivity/tryton/5.2/party_siret/pkg/PLIST
    N ports/productivity/tryton/5.2/product/distinfo
    N ports/productivity/tryton/5.2/product/Makefile
    N ports/productivity/tryton/5.2/product/pkg/DESCR
    N ports/productivity/tryton/5.2/product/pkg/PLIST
    N ports/productivity/tryton/5.2/product_attribute/distinfo
    N ports/productivity/tryton/5.2/product_attribute/Makefile
    N ports/productivity/tryton/5.2/product_attribute/pkg/DESCR
    N ports/productivity/tryton/5.2/product_attribute/pkg/PLIST
    N ports/productivity/tryton/5.2/product_classification/distinfo
    N ports/productivity/tryton/5.2/product_classification/Makefile
    N ports/productivity/tryton/5.2/product_classification/pkg/DESCR
    N ports/productivity/tryton/5.2/product_classification/pkg/PLIST
    N ports/productivity/tryton/5.2/product_classification_taxonomic/distinfo
    N ports/productivity/tryton/5.2/product_classification_taxonomic/Makefile
    N ports/productivity/tryton/5.2/product_classification_taxonomic/pkg/DESCR
    N ports/productivity/tryton/5.2/product_classification_taxonomic/pkg/PLIST
    N ports/productivity/tryton/5.2/product_cost_fifo/distinfo
    N ports/productivity/tryton/5.2/product_cost_fifo/Makefile
    N ports/productivity/tryton/5.2/product_cost_fifo/pkg/DESCR
    N ports/productivity/tryton/5.2/product_cost_fifo/pkg/PLIST
    N ports/productivity/tryton/5.2/product_cost_history/distinfo
    N ports/productivity/tryton/5.2/product_cost_history/Makefile
    N ports/productivity/tryton/5.2/product_cost_history/pkg/DESCR
    N ports/productivity/tryton/5.2/product_cost_history/pkg/PLIST
    N ports/productivity/tryton/5.2/product_measurements/distinfo
    N ports/productivity/tryton/5.2/product_measurements/Makefile
    N ports/productivity/tryton/5.2/product_measurements/pkg/DESCR
    N ports/productivity/tryton/5.2/product_measurements/pkg/PLIST
    N ports/productivity/tryton/5.2/product_price_list/distinfo
    N ports/productivity/tryton/5.2/product_price_list/Makefile
    N ports/productivity/tryton/5.2/product_price_list/pkg/DESCR
    N ports/productivity/tryton/5.2/product_price_list/pkg/PLIST
    N ports/productivity/tryton/5.2/product_price_list_dates/distinfo
    N ports/productivity/tryton/5.2/product_price_list_dates/Makefile
    N ports/productivity/tryton/5.2/product_price_list_dates/pkg/DESCR
    N ports/productivity/tryton/5.2/product_price_list_dates/pkg/PLIST
    N ports/productivity/tryton/5.2/product_price_list_parent/distinfo
    N ports/productivity/tryton/5.2/product_price_list_parent/Makefile
    N ports/productivity/tryton/5.2/product_price_list_parent/pkg/DESCR
    N ports/productivity/tryton/5.2/product_price_list_parent/pkg/PLIST
    N ports/productivity/tryton/5.2/production/distinfo
    N ports/productivity/tryton/5.2/production/Makefile
    N ports/productivity/tryton/5.2/production/pkg/DESCR
    N ports/productivity/tryton/5.2/production/pkg/PLIST
    N ports/productivity/tryton/5.2/production_outsourcing/distinfo
    N ports/productivity/tryton/5.2/production_outsourcing/Makefile
    N ports/productivity/tryton/5.2/production_outsourcing/pkg/DESCR
    N ports/productivity/tryton/5.2/production_outsourcing/pkg/PLIST
    N ports/productivity/tryton/5.2/production_routing/distinfo
    N ports/productivity/tryton/5.2/production_routing/Makefile
    N ports/productivity/tryton/5.2/production_routing/pkg/DESCR
    N ports/productivity/tryton/5.2/production_routing/pkg/PLIST
    N ports/productivity/tryton/5.2/production_split/distinfo
    N ports/productivity/tryton/5.2/production_split/Makefile
    N ports/productivity/tryton/5.2/production_split/pkg/DESCR
    N ports/productivity/tryton/5.2/production_split/pkg/PLIST
    N ports/productivity/tryton/5.2/production_work/distinfo
    N ports/productivity/tryton/5.2/production_work/Makefile
    N ports/productivity/tryton/5.2/production_work/pkg/DESCR
    N ports/productivity/tryton/5.2/production_work/pkg/PLIST
    N ports/productivity/tryton/5.2/production_work_timesheet/distinfo
    N ports/productivity/tryton/5.2/production_work_timesheet/Makefile
    N ports/productivity/tryton/5.2/production_work_timesheet/pkg/DESCR
    N ports/productivity/tryton/5.2/production_work_timesheet/pkg/PLIST
    N ports/productivity/tryton/5.2/proteus/distinfo
    N ports/productivity/tryton/5.2/proteus/Makefile
    N ports/productivity/tryton/5.2/proteus/pkg/DESCR
    N ports/productivity/tryton/5.2/proteus/pkg/PLIST
    N ports/productivity/tryton/5.2/sale/distinfo
    N ports/productivity/tryton/5.2/sale/Makefile
    N ports/productivity/tryton/5.2/sale/pkg/DESCR
    N ports/productivity/tryton/5.2/sale/pkg/PLIST
    N ports/productivity/tryton/5.2/purchase/distinfo
    N ports/productivity/tryton/5.2/purchase/Makefile
    N ports/productivity/tryton/5.2/purchase/pkg/DESCR
    N ports/productivity/tryton/5.2/purchase/pkg/PLIST
    N ports/productivity/tryton/5.2/purchase_request/distinfo
    N ports/productivity/tryton/5.2/purchase_request/Makefile
    N ports/productivity/tryton/5.2/purchase_request/pkg/DESCR
    N ports/productivity/tryton/5.2/purchase_request/pkg/PLIST
    N ports/productivity/tryton/5.2/purchase_shipment_cost/distinfo
    N ports/productivity/tryton/5.2/purchase_shipment_cost/Makefile
    N ports/productivity/tryton/5.2/purchase_shipment_cost/pkg/DESCR
    N ports/productivity/tryton/5.2/purchase_shipment_cost/pkg/PLIST
    N ports/productivity/tryton/5.2/sale_price_list/distinfo
    N ports/productivity/tryton/5.2/sale_price_list/Makefile
    N ports/productivity/tryton/5.2/sale_price_list/pkg/DESCR
    N ports/productivity/tryton/5.2/sale_price_list/pkg/PLIST
    N ports/productivity/tryton/5.2/sale_promotion/distinfo
    N ports/productivity/tryton/5.2/sale_promotion/Makefile
    N ports/productivity/tryton/5.2/sale_promotion/pkg/DESCR
    N ports/productivity/tryton/5.2/sale_promotion/pkg/PLIST
    N ports/productivity/tryton/5.2/sale_shipment_cost/distinfo
    N ports/productivity/tryton/5.2/sale_shipment_cost/Makefile
    N ports/productivity/tryton/5.2/sale_shipment_cost/pkg/DESCR
    N ports/productivity/tryton/5.2/sale_shipment_cost/pkg/PLIST
    N ports/productivity/tryton/5.2/sale_supply/distinfo
    N ports/productivity/tryton/5.2/sale_supply/Makefile
    N ports/productivity/tryton/5.2/sale_supply/pkg/DESCR
    N ports/productivity/tryton/5.2/sale_supply/pkg/PLIST
    N ports/productivity/tryton/5.2/sale_supply_drop_shipment/distinfo
    N ports/productivity/tryton/5.2/sale_supply_drop_shipment/Makefile
    N ports/productivity/tryton/5.2/sale_supply_drop_shipment/pkg/DESCR
    N ports/productivity/tryton/5.2/sale_supply_drop_shipment/pkg/PLIST
    N ports/productivity/tryton/5.2/stock/distinfo
    N ports/productivity/tryton/5.2/stock/Makefile
    N ports/productivity/tryton/5.2/stock/pkg/DESCR
    N ports/productivity/tryton/5.2/stock/pkg/PLIST
    N ports/productivity/tryton/5.2/stock_package/distinfo
    N ports/productivity/tryton/5.2/stock_package/Makefile
    N ports/productivity/tryton/5.2/stock_package/pkg/DESCR
    N ports/productivity/tryton/5.2/stock_package/pkg/PLIST
    N ports/productivity/tryton/5.2/stock_shipment_measurements/distinfo
    N ports/productivity/tryton/5.2/stock_shipment_measurements/Makefile
    N ports/productivity/tryton/5.2/stock_shipment_measurements/pkg/DESCR
    N ports/productivity/tryton/5.2/stock_shipment_measurements/pkg/PLIST
    N ports/productivity/tryton/5.2/stock_supply/distinfo
    N ports/productivity/tryton/5.2/stock_supply/Makefile
    N ports/productivity/tryton/5.2/stock_supply/pkg/DESCR
    N ports/productivity/tryton/5.2/stock_supply/pkg/PLIST
    N ports/productivity/tryton/5.2/timesheet/distinfo
    N ports/productivity/tryton/5.2/timesheet/Makefile
    N ports/productivity/tryton/5.2/timesheet/pkg/DESCR
    N ports/productivity/tryton/5.2/timesheet/pkg/PLIST
    N ports/productivity/tryton/5.2/tryton/distinfo
    N ports/productivity/tryton/5.2/tryton/Makefile
    N ports/productivity/tryton/5.2/tryton/patches/patch-tryton_config_py
    N ports/productivity/tryton/5.2/tryton/pkg/DESCR
    N ports/productivity/tryton/5.2/tryton/pkg/PLIST
    N ports/productivity/tryton/5.2/trytond/distinfo
    N ports/productivity/tryton/5.2/trytond/Makefile
    N ports/productivity/tryton/5.2/trytond/pkg/PLIST
    N ports/productivity/tryton/5.2/trytond/pkg/trytond_worker.rc
    N ports/productivity/tryton/5.2/trytond/pkg/DESCR
    N ports/productivity/tryton/5.2/trytond/pkg/trytond_cron.rc
    N ports/productivity/tryton/5.2/trytond/pkg/README
    N ports/productivity/tryton/5.2/trytond/pkg/trytond.rc
    N ports/productivity/tryton/5.2/trytond/files/logging.conf
    N ports/productivity/tryton/5.2/trytond/files/server.conf
    N ports/productivity/tryton/5.2/user_role/Makefile
    N ports/productivity/tryton/5.2/user_role/distinfo
    N ports/productivity/tryton/5.2/user_role/pkg/PLIST
    N ports/productivity/tryton/5.2/user_role/pkg/DESCR
    N ports/productivity/tryton/5.2/web_user/Makefile
    N ports/productivity/tryton/5.2/web_user/distinfo
    N ports/productivity/tryton/5.2/web_user/pkg/PLIST
    N ports/productivity/tryton/5.2/web_user/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 05:49:10

Log message:
    import py-ldap3-2.6
    
    ldap3 is a pure Python LDAP 3 client library strictly conforming to RFC4510.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190905
    
    N ports/databases/py-ldap3/Makefile
    N ports/databases/py-ldap3/distinfo
    N ports/databases/py-ldap3/pkg/DESCR
    N ports/databases/py-ldap3/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 05:49:39

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.612.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 05:50:20

Modified files:
	databases      : Makefile 

Log message:
+py-ldap3


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2019/05/09 06:50:03

Modified files:
	sys/arch/luna88k/stand/boot: Makefile 

Log message:
Eliminate 'make clean' stops with 'rmdir: .: Invalid argument'.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 06:59:57

Modified files:
	multimedia/gstreamer1/plugins-base: Makefile 

Log message:
Regen WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 07:00:43

Modified files:
	graphics/graphene: Makefile distinfo 
	graphics/graphene/patches: patch-meson_build 

Log message:
Update to graphene-1.9.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/09 07:12:59

Modified files:
	usr.bin/tmux   : cmd-send-keys.c key-bindings.c tmux.h 

Log message:
send-keys also needs to insert key commands in the right order.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 07:29:49

Added files:
	x11/gnome/gedit/patches: patch-plugins_filebrowser_meson_build 

Log message:
fix missing dependency on gedit-file-browser-enum-types.h which may get
included before it's generated

spotted by aja@, fix from upstream git


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 07:42:05

Modified files:
	x11/gtk+4      : Makefile distinfo 
	x11/gtk+4/pkg  : PLIST-main 
Added files:
	x11/gtk+4/patches: patch-gtk_tools_updateiconcache_c 
Removed files:
	x11/gtk+4/patches: patch-gtk_gtksettings_c 
	                   patch-gtk_updateiconcache_c 

Log message:
Update to gtk+4-3.96.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 07:53:10

Modified files:
	x11/gnome/nautilus: Makefile 
	x11/gnome/nautilus/pkg: PLIST 

Log message:
Add missing conflict with totem-<3.32.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 08:03:14

Modified files:
	security/sqlmap: Makefile distinfo 
	security/sqlmap/pkg: PLIST 

Log message:
update to sqlmap-1.3.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/09 08:07:44

Modified files:
	converters/p5-DateManip: Makefile distinfo 
	converters/p5-DateManip/pkg: PLIST 

Log message:
Update converters/p5-DateManip to 6.76

Looks good, okay espie@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/09 08:09:01

Modified files:
	sys/kern       : kern_malloc.c 

Log message:
disable stack printing for now since at least arm64 can't print them
reported by kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/09 08:09:32

Modified files:
	usr.bin/tmux   : tmux.h tty-keys.c 

Log message:
Save mouse buttons as well as position.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 08:09:36

Modified files:
	sysutils/consolekit: Makefile 
	sysutils/consolekit/pkg: README 

Log message:
Drop useless chunk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/09 08:10:10

Modified files:
	www/p5-CGI     : Makefile distinfo 

Log message:
Update www/p5-CGI to 4.43

OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/09 08:14:02

Modified files:
	textproc/p5-Lingua-EN-Tagger: Makefile distinfo 

Log message:
Update textproc/p5-Lingua-EN-Tagger to 0.30


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 08:15:30

Log message:
    import boofuzz-0.1.4
    
    Boofuzz is a fork of and the successor to the venerable Sulley fuzzing
    framework. Besides numerous bug fixes, boofuzz aims for extensibility.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190905
    
    N ports/security/boofuzz/Makefile
    N ports/security/boofuzz/distinfo
    N ports/security/boofuzz/pkg/DESCR
    N ports/security/boofuzz/pkg/PLIST
    N ports/security/boofuzz/patches/patch-boofuzz_helpers_py
    N ports/security/boofuzz/patches/patch-setup_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 08:16:10

Modified files:
	security       : Makefile 

Log message:
+boofuzz


CVSROOT:	/cvs
Module name:	src
Changes by:	phessler@cvs.openbsd.org	2019/05/09 08:29:30

Modified files:
	sys/net        : bfd.c 

Log message:
we don't need to check rtisvalid() in these places, the functions we are
protecing will do the right thing

OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/09 08:50:46

Modified files:
	sys/dev/pci    : azalia.c 

Log message:
add free sizes

ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/09 08:51:34

Modified files:
	usr.bin/ftp    : ftp.1 

Log message:
ftp makes a new connection for each auto-fetch file.  Remove a lie claiming
otherwise.  ok tb@ tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/09 08:52:33

Modified files:
	mail/kopano    : Makefile.inc 
	mail/kopano/core: Makefile distinfo 
	mail/kopano/core/patches: patch-ECtools_monitor_monitor_cpp 
	                          patch-ECtools_presence_kopano_presence___init___py 
	                          patch-ECtools_search_Makefile_in 
	                          patch-ECtools_search_kopano_search_plaintext_py 
	                          patch-Makefile_in 
	                          patch-caldav_CalDAV_cpp 
	                          patch-configure_ac 
	                          patch-provider_libserver_ECCacheManager_cpp 
	                          patch-provider_libserver_ECCacheManager_h 
	                          patch-provider_libserver_ECUserManagement_cpp 
	                          patch-spooler_DAgent_cpp 
	                          patch-swig_python_kopano_kopano_item_py 
	mail/kopano/core/pkg: PLIST-main 
Removed files:
	mail/kopano/core/patches: 
	                          patch-provider_libserver_ECUserManagement_h 

Log message:
update to 8.7.80.943


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/09 08:53:18

Modified files:
	sys/ufs/ufs    : ufs_lookup.c 

Log message:
For filenames which are a multiple of 4 bytes long, the zero pad is
incorrectly placed underneath the last 4 bytes (and then overwritten)
rather than afterwards.
We got confused and followed FreeBSD's lead, which curiously increased
the leakage of kernel stack from 3 bytes to 4...
ok millert kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 08:53:28

Modified files:
	x11/gnome/shell: Makefile 
	x11/gnome/shell/patches: patch-js_misc_loginManager_js 

Log message:
sync our local LoginManagerConsoleKit implementation with the upstream changes
to port non-GObject classes to JS6 classes

fixes breakage seen by aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/09 08:59:30

Modified files:
	sys/kern       : kern_sysctl.c 
	sys/net        : pf_ioctl.c 
	sys/sys        : sysctl.h 

Log message:
Add a sysctl accessor to struct pf_status. The pf_status only holds the
current status and statistics and can be exported without super-user
rights via sysctl to make it easier for tools like systat to access those.
OK deraadt@, sashan@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/09 09:01:09

Modified files:
	usr.bin/systat : pf.c 

Log message:
Use the new sysctl to print systat pf 1. This now works even for unprived
users.
OK deraadt@, sashan@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/09 09:05:47

Modified files:
	lib/libc/sys   : sysctl.2 

Log message:
Document KERN_PFSTATUS


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/09 09:09:40

Modified files:
	sys/kern       : vfs_bio.c 

Log message:
Don't unconditionally throw away dma memory when we don't need to.
Noticed by me and otto@
ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/09 09:35:19

Modified files:
	sys/ufs/ufs    : ufs_lookup.c 

Log message:
Nope, the right byte layout is happening, but we still need to figure out
a reported baddir panic.  Discussed with guenther tedu kettenis millert..


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 09:54:25

Modified files:
	sysutils/py-ghmi: Makefile distinfo 
	sysutils/py-ghmi/pkg: PLIST 

Log message:
update to pyghmi-1.3.0


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/09 09:54:31

Log message:
    Test IPv6 raw sockets with checksum calculation in kernel.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190509
    
    N src/regress/sys/netinet6/rip6cksum/Makefile
    N src/regress/sys/netinet6/rip6cksum/LICENSE
    N src/regress/sys/netinet6/rip6cksum/README
    N src/regress/sys/netinet6/rip6cksum/rip6cksum.c
    N src/regress/sys/netinet6/rip6cksum/sendrecv.py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 09:56:12

Modified files:
	sysutils/borgmatic: Makefile distinfo 

Log message:
update to borgmatic-1.3.2


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/09 09:58:18

Modified files:
	regress/sys/netinet6: Makefile 

Log message:
Link rip6cksum regress to build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/09 09:59:33

Modified files:
	devel/libyaml  : Makefile distinfo 

Log message:
cope with libyaml upstream distfile which was rerolled to include
generated autoconf files and html docs; thanks aja@ for the report


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/09 09:59:34

Modified files:
	comms/chirp    : Makefile distinfo 
	comms/chirp/pkg: PLIST 

Log message:
Bump chirp to the latest version.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 10:04:47

Modified files:
	net/py-nxos    : Makefile distinfo 

Log message:
update to py-nxos-0.0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 10:06:03

Modified files:
	sysutils/ansible: Makefile distinfo 

Log message:
update to ansible-2.7.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 10:12:52

Modified files:
	security/py-M2Crypto: Makefile distinfo 

Log message:
update to py-M2Crypto-0.33.0


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/09 10:13:34

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
Add two sanity checks to iwm's firmware notification interrupt handler:

1) Clamp firmware-provided index into the rx ring to the size of the ring.
Linux started doing this, too, to work around HW bugs in the 9000 series.
(mathes Linux 5eae443eb5e2b3777582ea37c6a002171ec134d5)

2) Don't call iwm_cmd_done() if the firmware response in the Rx buffer
is not recognized. We should just skip such buffers, not act on them.

ok beck kevlo mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 10:13:56

Modified files:
	x11/yaru       : Makefile distinfo 
	x11/yaru/pkg   : PLIST 

Log message:
Update to yaru-19.04.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/09 10:14:14

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
Correctly mask status bits in iwm's ADD_STA command response; remaining
bits are used by firmware to return the BAID for a BA session.

matches:
Dragonfly 74d41163ddac72b0d7ea7b7873d53fe134723a12
Linux 837c4da98481d4e504b2aba077c8528fee1b6d13

ok kevlo mpi jmatthew


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 10:40:28

Modified files:
	x11/gnome/initial-setup: Makefile 
	x11/gnome/initial-setup/patches: 
	                                 patch-gnome-initial-setup_meson_build 

Log message:
Unbreak runtime: properly find libkrb5.so by providing an rpath.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 10:41:23

Modified files:
	net/py-junos-eznc: Makefile distinfo 

Log message:
update to py-junos-eznc-2.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/09 10:45:43

Modified files:
	security/gpgme : Makefile 

Log message:
change COMPILER=base-clang ports-clang ports-gcc -> base-clang ports-gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 10:47:26

Modified files:
	x11/gnome/shell: Makefile 
Added files:
	x11/gnome/shell/patches: patch-js_ui_dateMenu_js 
	                         patch-js_ui_dialog_js 
	                         patch-js_ui_padOsd_js 
	                         patch-js_ui_panel_js 
	                         patch-js_ui_status_network_js 
	                         patch-js_ui_workspacesView_js 
	                         patch-src_shell-app_c 
	                         patch-src_st_st-widget_c 

Log message:
Merge all patches from the stable branch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 10:47:51

Modified files:
	x11/gnome/mutter: Makefile 
	x11/gnome/mutter/patches: patch-src_compositor_compositor_c 
Added files:
	x11/gnome/mutter/patches: 
	                          patch-clutter_clutter_x11_clutter-backend-x11_c 
	                          patch-clutter_clutter_x11_clutter-xkb-a11y-x11_c 
	                          patch-src_backends_meta-idle-monitor_c 
	                          patch-src_backends_meta-input-mapper_c 
	                          patch-src_backends_meta-input-settings_c 
	                          patch-src_compositor_compositor-private_h 
	                          patch-src_core_meta-launch-context_c 

Log message:
Merge all patches from the stable branch.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/09 10:59:25

Modified files:
	distrib/miniroot: install.sub 

Log message:
Shuffle code a bit to consistently call 'ifconfig $_if [-inet|-inet6]' to
completely clear existing configurations after restarting an install.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/09 11:02:30

Modified files:
	graphics/gdcm  : Makefile distinfo 
	graphics/gdcm/patches: patch-CMakeLists_txt 
	graphics/gdcm/pkg: PLIST 
Removed files:
	graphics/gdcm/patches: patch-Applications_Cxx_gdcminfo_cxx 
	                       patch-Applications_Cxx_gdcmpdf_cxx 

Log message:
update to gdcm-3.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/09 11:05:42

Modified files:
	mail/p5-Email-MIME: Makefile distinfo 
	mail/p5-Email-MIME/pkg: PLIST 

Log message:
Update mail/p5-Email-MIME to 1.946

ok cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 11:22:31

Modified files:
	x11/gnome/settings-daemon: Makefile 
	x11/gnome/settings-daemon/patches: 
	                                   patch-plugins_media-keys_gsd-media-keys-manager_c 
	                                   patch-plugins_power_gsd-power-manager_c 
Added files:
	x11/gnome/settings-daemon/patches: 
	                                   patch-plugins_color_gcm-self-test_c 
	                                   patch-plugins_color_gsd-night-light-common_c 
	                                   patch-plugins_color_gsd-night-light_c 
	                                   patch-plugins_common_gsd-shell-helper_c 
	                                   patch-plugins_common_gsd-shell-helper_h 
	                                   patch-plugins_media-keys_mpris-controller_c 
	                                   patch-plugins_power_gsd-backlight_c 
	                                   patch-plugins_power_gsd-backlight_h 

Log message:
Merge all relevant patches from the stable branch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 11:22:49

Modified files:
	x11/gnome/control-center: Makefile 
Added files:
	x11/gnome/control-center/patches: 
	                                  patch-panels_display_cc-display-settings_c 
	                                  patch-panels_mouse_gnome-mouse-properties_ui 
	                                  patch-panels_power_cc-power-panel_ui 
	                                  patch-panels_region_cc-region-panel_c 

Log message:
Merge all relevant patches from the stable branch.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/09 11:32:07

Modified files:
	distrib/miniroot: install.sub 

Log message:
Shuffle code to make v4_config() and v6_config() look even
more like each other.


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/05/09 11:38:23

Modified files:
	sys/dev/isa    : isa.c 

Log message:
add free sizes

ok tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/09 11:39:24

Modified files:
	productivity/tryton/5.2/trytond/pkg: README 

Log message:
add a title to pkg-readme

pointed by ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/09 11:40:27

Modified files:
	productivity/tryton/5.0/trytond: Makefile 
	productivity/tryton/5.0/trytond/pkg: README 

Log message:
add a title to pkg-readme

pointed by ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 11:45:05

Modified files:
	infrastructure/templates: README.template 

Log message:
Extend paper cut.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/09 11:52:04

Modified files:
	build          : mirrors.dat 

Log message:
add upstream syncing info for ftp2.fr


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/09 12:15:17

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190424


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/09 12:19:28

Modified files:
	distrib/miniroot: install.sub 

Log message:
Stop tromping over the saved interface configuration when
invalid address or netmask/prefixlen values are entered.

Keeps the presented default values sane in the face of
cats or otherunintended keyboard events.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/09 12:22:18

Modified files:
	games/openjk   : Makefile distinfo 

Log message:
Update to openjk-0.0.0.20190428
This builds with gcc-8, so change COMPILER to base-clang ports-gcc


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/09 12:29:25

Modified files:
	sys/dev/acpi   : acpisbs.c 

Log message:
Measure poll interval with monotonic clock.  ok jcs@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/09 12:32:56

Modified files:
	security/keybase: Makefile distinfo 
Added files:
	security/keybase/patches: 
	                          patch-go_client_platform_specific_ctl_commands_other_go 
	                          patch-go_install_stop_openbsd_go 

Log message:
Update keybase to 4.0.0

OK bket@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/09 13:10:59

Modified files:
	sysutils/colorls: Makefile distinfo 

Log message:
sync with OpenBSD 6.5


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/09 13:56:18

Modified files:
	sys/dev/pci/drm/i915: intel_gtt.c 

Log message:
set up IFP using the gen3 path on pineview

Avoids crashes on boot with pineview on chipset flush due to IFP not
being initialised.

Diagnosed by, tested by and ok ratchov@ ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/09 14:17:31

Modified files:
	sysutils/ruby-puppet/5: Makefile distinfo 
	sysutils/ruby-puppet/5/patches: 
	                                patch-lib_puppet_provider_package_gem_rb 

Log message:
Update to 5.5.14

since the switch to ruby 2.6 as default, installing packages with the gem
provider was broken, since it used the long depreprecated parameters to
omit installation of documenation. 5.5.14 apparently fixed that.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/09 14:19:23

Modified files:
	games/battlestar: com1.c com4.c com6.c cypher.c extern.h 
	                  globals.c init.c 

Log message:
rm lists of hereditary wizards and bad users to ensure level playing field
ok benno mlarkin tb


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/09 14:26:33

Modified files:
	regress/usr.sbin/pkg_add: check-sig 

Log message:
compare now wants a state object, so make it.

noticed by bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/09 14:30:22

Modified files:
	sys/kern       : kern_time.c syscalls.c syscalls.master 
	                 init_sysent.c 

Log message:
Unlock adjfreq(2), adjtime(2), clock_settime(2), and settimeofday(2).

clock_settime(2)/settimeofday(2) still need KERNEL_LOCK for a moment
when resetting the RTC, as that's done periodically from a task under
KERNEL_LOCK.  Not quite sure how to approach that one yet.

ok visa@ mpi@, "good stuff" tedu@,
"please wait until after [tree] unlock" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/09 14:36:44

Modified files:
	sys/kern       : vfs_biomem.c 
	sys/uvm        : uvm_extern.h uvm_pdaemon.c uvm_pmemrange.c 

Log message:
Ensure that pagedaemon wakeups as a result of failed UVM_PLA_NOWAIT
allocations will recover some memory from the dma_constraint range.

The allocation still fails, the intent is to ensure that the
pagedaemon will free some memory to possibly allow a subsequent
allocation to succeed.

This also adds a UVM_PLA_NOWAKE flag to allow special cases in the
buffer cache to not wake up the pagedaemon until they want to.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/09 15:04:20

Modified files:
	x11/gnome/control-center: Makefile 
	x11/gnome/control-center/patches: 
	                                  patch-panels_info_cc-info-overview-panel_c 
	                                  patch-panels_info_meson_build 

Log message:
Display a few more things on the info panel.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/09 15:06:09

Modified files:
	distrib/miniroot: install.sub 
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
sysupgrade already verifies all sets, so eliminate redundant
verification by the installer:

Verification is triggered by the presence of SHA256.sig.
In sysupgrade, remove SHA256.sig once the signature has been verified.
Compare SHA256 against a stored copy from the previous install/upgrade.

In the installer, stash away a copy of SHA256 and move that code
into install_files() where the sets are actually processed.
Confirm in the response file that we want to proceed without
verifying the sets.

ok florian@ tj@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/09 15:09:37

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 sysupgrade.sh 

Log message:
Add a -k flag to keep the files in /home/_sysupgrade, since they
will be deleted after the upgrade by default.  ok kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/09 15:13:26

Modified files:
	devel/py-html5lib: Makefile 
	lang/expect    : Makefile 
	sysutils/tentakel: Makefile 
	textproc/py-lxml: Makefile 
	x11/compton    : Makefile 
	x11/xkbset     : Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/09 15:55:26

Modified files:
	distrib/miniroot: install.sub 

Log message:
Simplify v4_config() and v6_config() by getting updated information
via [v4|v6]_info() after calling ifconfig.

As a side effect 'inet' lines in hostname.if will always use the
hex format for the netmask, i.e. as displayed by ifconfig(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/09 16:25:42

Modified files:
	sys/kern       : exec_elf.c 

Log message:
If mallocing the array program header fails, give up on coredumping
instead of panicing

ok deraadt@, tedu@, mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/09 16:27:33

Modified files:
	usr.sbin/bgpd  : rde_filter.c rde_update.c 

Log message:
Neither rde_apply_set() nor rde_filter() are called with a NULL state so
remove some unneeded == NULL checks.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/09 16:38:42

Modified files:
	distrib/miniroot: install.sub 

Log message:
Don't ignore configured netmask/prefixlen on restarting
an install. Use the info as default answers in
relevant questions.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/09 16:44:53

Modified files:
	usr.bin/xinstall: xinstall.c 

Log message:
This no longer uses utime(3), so it doesn't need <utime.h>


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/09 16:54:28

Modified files:
	lib/libcrypto/gost: streebog.c 

Log message:
Fix incorrect carry operation in 512 bit addition: in the case
that there is already a carry and Sigma[i-1] == -1, the carry
must be kept.

From Dmitry Eremin-Solenik.

Fixes incorrect Streebog result reported by Guido Vranken.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/09 17:01:09

Modified files:
	regress/lib/libcrypto/evp: evptests.txt 

Log message:
Add a test vector for Streebog 512 from Guido Vranken


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/05/09 17:09:15

Modified files:
	.              : 66.html 

Log message:
incorrect carry operation for streebog


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/09 17:13:31

Modified files:
	regress/sys/kern/mmap2: mmaptest.c 

Log message:
Drop reference to sparc and expand 'VAC' so the comment makes sense
to semi-gurus


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/09 19:22:11

Added files:
	net/monitoring-plugins/patches: patch-plugins_common_h 

Log message:
Recent mariadb releases don't define MYSQL_PORT, pull fix from upstream

No change with current mariadb so no REVISION bump.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/09 19:29:14

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
tweak verbosity; ok ccardenas@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/09 19:29:31

Modified files:
	sbin/dhclient  : dispatch.c 
	sbin/ifconfig  : brconfig.c ifconfig.c 
	usr.bin/netstat: route.c 
	usr.sbin/hostapd: apme.c handle.c hostapd.c iapp.c llc.c parse.y 
	                  print-802_11.c privsep.c roaming.c 
	usr.sbin/npppd/l2tp: l2tp_ctrl.c 
	usr.sbin/npppd/npppd: npppd.c npppd_subr.c 
	usr.sbin/npppd/pptp: pptpd.c 
	usr.sbin/ospf6d: packet.c 
	usr.sbin/rad   : frontend.c parse.y 
	usr.sbin/ripd  : parse.y 

Log message:
Delete superfluous #includes of <ifaddrs.h>, <net/if_dl.h>, and <net/if_enc.h>

ok krw@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/09 19:31:30

Modified files:
	lib/libc/arch/amd64/sys: tfork_thread.S 

Log message:
Apply retpoline protection to the indirect call to the thread startfunc

ok mortimer@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/09 19:57:35

Modified files:
	games/ja2-stracciatella: Makefile 
	games/mnemosyne: Makefile 
	games/typespeed: Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/09 20:05:35

Modified files:
	sys/dev/usb    : xhcireg.h 

Log message:
Add more flags to the debug bitmask

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/09 20:16:50

Modified files:
	sys/uvm        : uvm_pdaemon.c 

Log message:
Check for nowait failed *after* the wakeup point, not before.
ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ians@cvs.openbsd.org	2019/05/09 20:17:46

Modified files:
	sysutils/htop  : Makefile 
	sysutils/htop/patches: patch-openbsd_Platform_c 
Added files:
	sysutils/htop/patches: patch-openbsd_OpenBSDProcessList_c 
	                       patch-openbsd_OpenBSDProcessList_h 

Log message:
Fix CPU meters & sysctl logic

- Enumerate CPU meters based on NCPUONLINE instead of NCPU

- Use CPUSTATS_ONLINE flag to build CPU index and poll based
on those instead of cpu count

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/09 20:22:34

Modified files:
	regress/sbin/slaacd: Makefile 
	regress/sys/kern/sosplice/scapy: Makefile 
	regress/sys/net/pf_forward: Makefile 
	regress/sys/net/pf_fragment: Makefile 
	regress/sys/net/pf_state: Makefile 
	regress/sys/netinet/arp: Makefile 
	regress/sys/netinet/frag: Makefile 
	regress/sys/netinet/pmtu: Makefile 
	regress/sys/netinet6/frag6: Makefile 
	regress/sys/netinet6/nd6: Makefile 
	regress/sys/netinet6/rh0: Makefile 
	regress/sys/netinet6/rip6cksum: Makefile 

Log message:
Simplify the detection for installed python and scapy.  Refactor
these tests to make them similar.  Use the setup and cleanup
variables.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benno@cvs.openbsd.org	2019/05/09 20:29:37

Modified files:
	sysutils       : Makefile 

Log message:
unhook relayd-updateconf from build, it's no longer useful


CVSROOT:	/cvs
Module name:	ports
Changes by:	benno@cvs.openbsd.org	2019/05/09 20:31:20

Removed files:
	sysutils/relayd-updateconf: Makefile distinfo 
	sysutils/relayd-updateconf/patches: patch-parse_y 
	sysutils/relayd-updateconf/pkg: DESCR PLIST 

Log message:
remove relayd-updateconf, no longer useful.
ok danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/09 20:33:57

Modified files:
	sys/uvm        : uvm_pdaemon.c 

Log message:
simplify logic after wakeup since this variable is only manipulated
under lock
ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benno@cvs.openbsd.org	2019/05/09 20:38:04

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
relayd-updateconf was used to update a OpenBSD 5.5 relayd config to OpenBSD 5.6
relayds format. Its no longer useful.
ok danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/09 22:14:13

Modified files:
	fonts/noto     : Makefile.inc 
	fonts/noto/cjk : Makefile distinfo 
	fonts/noto/cjk/pkg: PLIST 
	fonts/noto/emoji: Makefile distinfo 
	fonts/noto/emoji/pkg: PLIST 
	fonts/noto/fonts: Makefile distinfo 
	fonts/noto/fonts/pkg: PLIST 

Log message:
Update noto fonts to their latest versions.

Take maintainership also.

ok naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ians@cvs.openbsd.org	2019/05/09 22:24:36

Modified files:
	sysutils/htop  : Makefile 
	sysutils/htop/patches: patch-openbsd_Platform_c 
Added files:
	sysutils/htop/patches: patch-CPUMeter_c patch-Header_c 

Log message:
Don't attempt to redraw meters if they haven't been init'd yet.

This will stop a large number of crashes.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/09 22:39:08

Modified files:
	usr.bin/sndiod : fdpass.c 

Log message:
Don't try to send to device helper process if it's terminated.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/09 22:40:16

Modified files:
	usr.bin/sndiod : midi.c 

Log message:
Use the correct length for MIDI common messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/09 22:45:48

Modified files:
	usr.bin/sndiod : midi.c 

Log message:
Backout latest, commited by mistake.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/09 22:59:49

Modified files:
	x11/xwallpaper : Makefile distinfo 

Log message:
Update xwallpaper to 0.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/09 23:13:41

Modified files:
	fonts/font-awesome: Makefile distinfo 

Log message:
Update font-awesome to 5.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/09 23:50:17

Modified files:
	graphics/maim  : Makefile distinfo 

Log message:
Update maim to 5.5.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/10 00:20:18

Modified files:
	games/openomf  : Makefile distinfo 
	games/openomf/patches: patch-CMakeLists_txt 
	                       patch-src_game_gui_menu_c 
	games/openomf/pkg: PLIST 

Log message:
Update to latest openomf code since it fixes a number of bugs and memory
leaks. Also, the libshadowdive library was integrated into the code itself
since it never got any external users, and so it goes away from PLIST.


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/10 03:15:00

Modified files:
	usr.sbin/relayd: parse.y relay.c relay_http.c relayd.conf.5 
	                 relayd.h 

Log message:
Add support for from/to in relay filter rules.

For example,
pass from 10.0.0.0/8 path "/hello/*" forward to <b>

Ok benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/10 03:47:03

Modified files:
	textproc/p5-XML-Parser-Lite: Makefile distinfo 

Log message:
Update to p5-XML-Parser-Lite-0.722.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/10 05:17:36

Modified files:
	sysutils/facter: Makefile distinfo 

Log message:
simple update to 3.13.2


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/05/10 05:18:01

Modified files:
	.              : 66.html 

Log message:
mention powerpc clang; from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/10 05:24:15

Modified files:
	net/ruby-msgpack: Makefile distinfo 

Log message:
simple update to 1.2.10


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/05/10 05:27:23

Modified files:
	etc/etc.i386   : MAKEDEV.md 

Log message:
vmm(4) was removed from share/man/man8/man8.i386/MAKEDEV.8 but not the
input file or MAKEDEV script itself; sync up the input file. req by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/05/10 05:28:38

Modified files:
	share/man/man8/man8.i386: MAKEDEV.8 
	etc/etc.i386   : MAKEDEV 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/10 05:35:39

Modified files:
	www/py-terminado: Makefile distinfo 

Log message:
Update to py-terminado-0.8.2.

Overview on changes can be found at
https://github.com/jupyter/terminado/compare/0.6...0.8.2

OK shadchin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/10 05:36:55

Modified files:
	www/jupyter-notebook: Makefile distinfo 
	www/jupyter-notebook/pkg: PLIST 
Removed files:
	www/jupyter-notebook/patches: patch-notebook_base_zmqhandlers_py 

Log message:
Update to jupyter-notebook-5.7.8.

This update introduces numerous fixes, and addresses CVE-2018-8768
(bypass sanitization), CVE-2019���9644 (cross-site inclusion
vulnerability) and CVE-2019-10255 (Open Redirect vulnerability). It also
includes a newer Bootstrap, which addresses CVE-2018-14041 (XSS
vulnerability).

Changelog can be found at
https://github.com/jupyter/notebook/blob/5.7.8/docs/source/changelog.rst

While here change HOMEPAGE to https.

OK shadchin@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	schwarze@cvs.openbsd.org	2019/05/10 05:44:39

Modified files:
	distrib/sets/lists/xshare: mi 
	doc/xorg-docs  : Makefile.bsd-wrapper 
	lib/libXext    : Makefile.bsd-wrapper 
	lib/libXmu     : Makefile.bsd-wrapper 
	lib/libxtrans  : Makefile.bsd-wrapper 
Added files:
	doc/xorg-docs/general/input: XKB-Config.7 XKB-Enhancing.7 
	                             defs.ent 
	lib/libXext/specs: defs.ent shapelib.3 synclib.3 xtest1.3 
	lib/libXmu/doc : Xmu.3 defs.ent 
	lib/libxtrans/doc: defs.ent xtrans.3 

Log message:
Install more manual pages:
* XKB-Config(7), XKB-Enhancing(7): user-level documentation
for XKB configuration; not perfect, but the best available.
* xtrans(3): a library actively maintained upstream.
* libXmu and libXext: Many libraries are effectively frozen upstream.
According to matthieu@, the documentation of libXmu and libXext
is among the most valuable of those.
Feedback and OK matthieu@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/10 05:44:50

Modified files:
	shells/fish    : Makefile distinfo 

Log message:
Update fish to 3.0.2. Enable tests.

OK rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/10 06:01:55

Modified files:
	lang/python/3.6: Makefile 
	lang/python/3.6/pkg: PLIST-gdbm PLIST-idle PLIST-main 
	                     PLIST-tests PLIST-tkinter 
	lang/python/3.7: Makefile 
	lang/python/3.7/pkg: PLIST-gdbm PLIST-idle PLIST-main 
	                     PLIST-tests PLIST-tkinter 

Log message:
fix @pkgpath markers;

- there was never a lang/python3/3.6 (@pkgpath marker for this is present in
current 3.6 plists), python3/3.x was only used for 3.2, so remove these.

- they should probably have originally used "@pkgpath lang/python/3.5" to
trigger updates from 3.5 when 3.5 was removed, but no point adding those
to 3.6 now that 3.7 is the default version. so add @pkgpath lang/python/3.5
markers in 3.7 PLISTs, fixing the upgrade path if old versions were present
(there was previously nothing to trigger 3.5 being removed/updated so
stray packages would be left around).

problem reported by Laurie Tratt


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/10 06:11:33

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register jupyter-notebook{,3} as 5.7.8 fixes CVE-2018-14041,
CVE-2018-8768, CVE-2019-10255 and CVE-2019-9644.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/10 06:25:51

Modified files:
	lang/php/7.2   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.2/patches: Tag: OPENBSD_6_5 patch-acinclude_m4 
	                      patch-aclocal_m4 patch-configure_ac 
	                      patch-ext_mysqlnd_config9_m4 
	                      patch-ext_tidy_config_m4 
	                      patch-ext_tidy_tidy_c patch-main_php_h 
	                      patch-main_php_ini_c 
	                      patch-php_ini-development 
	                      patch-php_ini-production 
	                      patch-sapi_cgi_cgi_main_c 
	                      patch-sapi_cli_php_cli_c 
	                      patch-sapi_fpm_fpm_fpm_children_c 
	                      patch-sapi_fpm_www_conf_in 
	                      patch-scripts_Makefile_frag 
	                      patch-scripts_php-config_in 
	                      patch-scripts_phpize_in 

Log message:
MFC update to php-7.2.18, diff/tests from Josh Grosse, thank you


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/10 06:27:36

Modified files:
	lang/php       : Tag: OPENBSD_6_5 Makefile.inc 

Log message:
mfc re2c BDEP for php ports


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/10 06:27:56

Modified files:
	lang/php/7.1   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.1/patches: Tag: OPENBSD_6_5 patch-acinclude_m4 
	                      patch-aclocal_m4 patch-configure_in 
	                      patch-ext_mysqlnd_config9_m4 
	                      patch-ext_tidy_config_m4 
	                      patch-ext_tidy_tidy_c patch-main_php_h 
	                      patch-main_php_ini_c 
	                      patch-php_ini-development 
	                      patch-php_ini-production 
	                      patch-sapi_cgi_cgi_main_c 
	                      patch-sapi_cli_php_cli_c 
	                      patch-sapi_fpm_www_conf_in 
	                      patch-scripts_Makefile_frag 
	                      patch-scripts_php-config_in 
	                      patch-scripts_phpize_in 

Log message:
MFC update to php-7.1.29


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/10 06:28:15

Modified files:
	lang/php/7.3   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.3/patches: Tag: OPENBSD_6_5 patch-acinclude_m4 
	                      patch-aclocal_m4 
	                      patch-ext_mysqlnd_config9_m4 
	                      patch-main_php_h patch-main_php_ini_c 
	                      patch-php_ini-development 
	                      patch-php_ini-production 
	                      patch-sapi_cgi_cgi_main_c 
	                      patch-sapi_cli_php_cli_c 
	                      patch-sapi_fpm_www_conf_in 
	                      patch-scripts_Makefile_frag 
	                      patch-scripts_php-config_in 
	                      patch-scripts_phpize_in 

Log message:
MFC update to php-7.3.5


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/10 06:41:30

Modified files:
	sys/net        : if_bridge.c 

Log message:
Move bridge_filterrule() before doing the mbuf copy. Fixes a memory leak
when multiple interfaces do MAC filtering.
Memory leak reported by Daniel Levai
With and OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/05/10 06:41:49

Modified files:
	share/man/man8 : ssl.8 

Log message:
Browsers using SAN instead of CN in Subject is now more than just "some
new browsers" and it's a strict requirement rather than just deprecating
cn; adjust the text accordingly. ok reyk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/05/10 06:45:30

Modified files:
	net/munin      : Makefile distinfo 
	net/munin/patches: patch-node__bin_munin-asyncd_in 

Log message:
update to munin-2.0.49


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/10 06:49:16

Modified files:
	lib/libc/time  : strptime.3 strptime.c 

Log message:
Delete support for military timezones in %z (A-I and K-Y).
They were originally defined in one way, then RFC822 erroneously
redefined them the opposite way, then RFC5322 said they can no
longer be used reliably.
So return NULL like FreeBSD, DragonFly, glibc, and musl do.

Issue reported by Hiltjo Posthuma <hiltjo at codemadness dot org>.
Deletion suggested by tedu@ and deraadt@.
Feedback and OK on the patch from tedu@.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/10 06:49:58

Modified files:
	sys/stand/boot : cmd.h 

Log message:
Fix prototype of upgrade(). OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rapha@cvs.openbsd.org	2019/05/10 06:55:19

Modified files:
	audio/portmidi : Makefile 
	audio/portmidi/files/pm_sndio: pmsndio.c 

Log message:
Add support for midi input.

ok ratchov@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 07:04:56

Modified files:
	misc/osinfo    : Makefile.inc 
	misc/osinfo/libosinfo: Makefile distinfo 
	misc/osinfo/libosinfo/pkg: PLIST 
	misc/osinfo/osinfo-db-tools: distinfo 

Log message:
Update to:
libosinfo-1.5.0
osinfo-db-tools-1.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 07:06:05

Modified files:
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-opc: Makefile distinfo 

Log message:
Update a couple of terraform providers.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/10 07:13:14

Modified files:
	share/man/man3 : tree.3 

Log message:
Make the red-black tree example -Wmissing-prototypes clean by providing
prototypes with RB_PROTOTYPE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 07:27:03

Modified files:
	textproc/gtk-doc: Makefile distinfo 
	textproc/gtk-doc/pkg: PLIST 

Log message:
Update to gtk-doc-1.30.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/10 07:28:40

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Add some more edge case tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/10 07:29:21

Modified files:
	include        : tib.h 
	etc            : rc 
	libexec/ld.so  : Makefile boot.c loader.c resolve.h util.h 
	libexec/ld.so/aarch64: Makefile.inc ldasm.S 
	libexec/ld.so/amd64: Makefile.inc ldasm.S 
	libexec/ld.so/arm: Makefile.inc ldasm.S 
	libexec/ld.so/powerpc: Makefile.inc ldasm.S 
	libexec/ld.so/sparc64: Makefile.inc ldasm.S 
	lib/csu        : boot.h crt0.c extern.h 
Added files:
	libexec/ld.so/aarch64: ld.script 
	libexec/ld.so/amd64: ld.script 
	libexec/ld.so/arm: ld.script 
	libexec/ld.so/powerpc: ld.script 
	libexec/ld.so/sparc64: ld.script 

Log message:
ld.so boot cleanup support:
- put functions and data which are only used before calling the executable's
start function into their own page-aligned segments for unmapping
(only done on amd64, arm64, armv7, powerpc, and sparc64 so far)
- pass .init_array and .preinit_array functions an addition argument which
is a callback to get a structure which includes a function that frees
the boot text and data
- sometimes delay doing RELRO processing: for a shared-object marked
DF_1_INITFIRST do it after the object's .init_array, for the executable
do it after the .preinit_array
- improve test-ld.so to link against libpthread and trigger its initialization
late
libc changes to use this will come later

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 07:29:36

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-vault: Makefile distinfo 

Log message:
Update a few more terraform providers.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/10 07:50:34

Modified files:
	usr.sbin/ospf6d: database.c lsreq.c 

Log message:
When calculating how much payload ospf6d can put into DD and LSREQ packets
substract the size of the IPv6 header and not the IPv4 header from the MTU.
This stops ospf6d to send out fragmented packets.
Found with and OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/10 08:10:38

Modified files:
	sbin/unwind    : captiveportal.c frontend.c parse.y printconf.c 
	                 resolver.c unwind.c unwind.conf.5 unwind.h 

Log message:
Implement DNS block lists. If unwind is queried for a domain
in the block list it answers with rcode REFUSED.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/10 08:12:47

Modified files:
	usr.bin/tmux   : tmux.h screen-write.c 

Log message:
Add a function to draw a simple menu onto a screen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 08:25:44

Modified files:
	x11/gnome/menus: Makefile 
Added files:
	x11/gnome/menus/patches: patch-libmenu_entry-directories_c 
	                         patch-libmenu_gmenu-tree_c 

Log message:
Forgot to cvs add these in previous.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/10 08:36:21

Modified files:
	share/man/man9 : KASSERT.9 

Log message:
The correct header for KASSERT(9) is <sys/systm.h>.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/10 08:45:01

Modified files:
	regress/sys/netinet6/rip6cksum: Makefile sendrecv.py 

Log message:
Python for scapy must be executed a bit differently in this test.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/10 08:45:19

Modified files:
	distrib/sparc64/miniroot: Makefile 

Log message:
The cdrom contains a nested ffs filesystem, so indicate that dependency
for large-factor make -j, hit by claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/10 09:02:17

Modified files:
	sbin/iked      : iked.h ikev2.c ikev2_msg.c 

Log message:
Enforce messages after IKE_SA_INIT exchange to contain only
encrypted payloads.  Also increment message id only for valid
messages.

From Tobias Heider
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/10 09:03:24

Modified files:
	include        : stdlib.h 
	lib/libc       : Symbols.list shlib_version 
	lib/libc/hidden: stdlib.h 
	lib/libc/stdlib: malloc.3 malloc.c 

Log message:
Inroduce malloc_conceal() and calloc_conceal(). Similar to their
counterparts but return memory in pages marked MAP_CONCEAL and on
free() freezero() is actually called.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/10 09:03:58

Modified files:
	usr.sbin/dhcpd : confpars.c 

Log message:
Fix dhcpd build on gcc architectures.

OK deraadt@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/05/10 09:12:19

Modified files:
	math/hdf5      : Makefile distinfo 
	math/hdf5/pkg  : PLIST 

Log message:
Update to HDF5 1.10.5

Joint work with and OK martin@


CVSROOT:	/cvs
Module name:	src
Changes by:	akoshibe@cvs.openbsd.org	2019/05/10 09:13:38

Modified files:
	sys/net        : if_switch.c if_switch.h switchofp.c 

Log message:
Add port protection support to switch(4). The behavior copies that of
bridge(4), where the SIOCBRDGSIFPROT ioctl can be used to add a port to up
to 31 protected domains. This allows configuration by specifying a list of
IDs to the 'protected' option in ifconfig(8):

# ifconfig switch0 protected pair1 1,2,..

Domain membership is checked for unicast, flooded (broadcast), and
local (host-network-bound, e.g. trunk) traffic.

OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/10 09:18:04

Modified files:
	sbin/iked      : ikev2.c 

Log message:
Set the IKED_REQ_INFORMATIONAL flag when sending a delete request
during rekeying to make sure that the response is not rejected.

From Tobias Heider
"much more stable" dhill@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/10 09:18:23

Modified files:
	x11/gnome/calendar: Makefile distinfo 

Log message:
update to gnome-calendar-3.32.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/10 09:19:03

Log message:
    import selectors2-2.0.1
    
    Backported, durable, and portable selectors designed to replace the
    standard library selectors module.
    
    ok aja@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20191005
    
    N ports/devel/py-selectors2/Makefile
    N ports/devel/py-selectors2/distinfo
    N ports/devel/py-selectors2/pkg/DESCR
    N ports/devel/py-selectors2/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/10 09:20:34

Modified files:
	devel          : Makefile 

Log message:
+py-selectors2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/10 09:20:57

Modified files:
	net/py-ncclient: Makefile distinfo 

Log message:
update to ncclient-0.6.4


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/10 09:28:45

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
add Intel Atom C3000 ids


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/10 09:29:18

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/10 09:36:19

Modified files:
	regress/lib/libedit: Makefile.inc 
	regress/lib/libedit/read: Makefile 

Log message:
Regress libedit needs header files generated during src libedit
build.  Improve dependencies to resolve this more reliably.
requested by claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/10 09:38:19

Modified files:
	distrib/miniroot: install.sub 

Log message:
Always make the default answer 'dhcp' on unconfigured interfaces.
Allow 'dhcp' even if the install media lacks /sbin/dhclient.

Great simplification of code.

ok florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/10 09:42:09

Modified files:
	www/p5-CGI-Fast: Makefile distinfo 

Log message:
Update www/p5-CGI-Fast to 2.15

From Mikolaj Kucharski <mikolaj () kucharski ! name> (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/10 09:43:20

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/10 09:57:37

Modified files:
	multimedia/mlt : Makefile distinfo 

Log message:
Update mlt to 6.16.0

- Remove ports-gcc<=8 workaround.

OK cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/10 09:57:39

Modified files:
	regress/sys/kern/noexec: noexec.c testfly.S 

Log message:
Let the test build on mips64.

OK guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/10 09:58:22

Modified files:
	regress/sys/kern/noexec: Makefile 

Log message:
Enable the test on octeon. Ignore the fact that the test cannot work
on CN3xxx where the TLB does not implement the execute inhibit feature.

OK guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/10 10:02:09

Modified files:
	www/p5-Dancer  : Makefile distinfo 
	www/p5-Dancer/pkg: PLIST 

Log message:
p5-Dancer: update to 1.3512
Changelog:
https://metacpan.org/source/BIGPRESH/Dancer-1.3512/Changes

Original diff from Wen Heping (thanks!) with some tweaks by me.

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/10 10:05:18

Modified files:
	textproc/p5-XML-SAX-Writer: Makefile distinfo 

Log message:
p5-XML-SAX-Writer: update to 0.57
Changelog:
https://github.com/perigrin/xml-sax-writer/compare/v0.56...v0.57

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/10 10:08:49

Modified files:
	textproc/p5-XML-SemanticDiff: Makefile distinfo 

Log message:
p5-XML-SemanticDiff: update to 1.0007
Changelog:
https://metacpan.org/source/PERIGRIN/XML-SemanticDiff-1.0007/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/10 10:11:20

Modified files:
	textproc/p5-XML-Simple: Makefile distinfo 

Log message:
p5-XML-Simple: update to 2.25
Changelog:
https://metacpan.org/source/GRANTM/XML-Simple-2.25/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/10 10:14:20

Modified files:
	sysutils/p5-File-Which: Makefile distinfo 

Log message:
p5-File-Which: update to 1.23
Changelog:
https://metacpan.org/source/PLICEASE/File-Which-1.23/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/10 10:44:36

Modified files:
	sys/dev/ic     : bwireg.h 
	sys/dev/pci    : if_bwi_pci.c 

Log message:
Explicitly disable BCM4331 chips present in 2011-2012 Apple Mac systems.

The Mac EFI firmware enables the wireless controller, but does not disable it,
so it continues to receive packets and signal interrupts. This
was originally seen as an interrupt storm that consumes about 50% of
CPU0 on affected machines. The issue was originally discovered in 2012 by
Matthew Garret with a partial fix in Grub, then Lukas Wunner added a fix for
the Linux kernel in 2016.

This piggy-backs on the most-related driver (bwi) for the purpose of detection
and mapping the control registers, but does not actually register the driver if
the affected chip is detected.

See this archived discussion for further analysis of the bug:
https://www.mail-archive.com/linux-kernel@vger.kernel.org/msg1165355.html

ok kettenis stsp


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/10 10:50:05

Modified files:
	biology/py-biopython: Makefile 
	mail/spambayes : Makefile 
	net/cjc        : Makefile 
	net/nssl       : Makefile 
	net/py-xmpp    : Makefile 
	productivity/bruce: Makefile 
	sysutils/clusterit: Makefile 
	www/py-clientform: Makefile 
	www/twill      : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/05/10 10:51:13

Modified files:
	sbin/dhclient  : kroute.c 

Log message:
Make it possible to switch between wireless and physical interfacs
(again?): when adding the default route, set it with the interface
address of the interface we are configuring. This way its possible to
have two default routes (from two running dhclient processes) in the
routing table. Since wireless interfaces have a higher prio value,
when a physical interface is connected it will be prefered (for new
connections).
ok krw@ mumble yes mumble claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/05/10 11:02:08

Added files:
	share/man/man9 : wsfont_init.9 

Log message:
Document the wsfont framework.

This is wsfont.9 revision 1.18 from NetBSD with the following changes:

- Remove documentation for wsfont_matches() which we don't have
- Remove wsfont_find() arguments which we don't have
- Add missing arguments for wsfont_lock() which NetBSD doesn't have
- Modify wsfont_enum() signature to match our implementation
- Modify the wsdisplay_font struct to add the index and cookie members
which NetBSD doesn't have
- Remove some macros for font encoding we do not support anymore
- Remove and correct stuff which doesn't apply to us because the
codebases have diverged

Looks fine to jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/10 11:24:53

Modified files:
	share/man/man9 : wsfont_init.9 

Log message:
tweak previous: fix three wrong macros and one missing macro


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/10 12:04:06

Modified files:
	usr.bin/tmux   : Makefile cmd.c format.c key-bindings.c tmux.1 
	                 tmux.h 
Added files:
	usr.bin/tmux   : cmd-display-menu.c menu.c 

Log message:
Add support for simple menus usable with mouse or keyboard. New command
display-menu shows a menu (bound to the mouse on status line by default)
and a couple of extra formats for the default menus.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/10 12:09:51

Modified files:
	usr.bin/tmux   : format.c 

Log message:
Fix a typo in previous (, -> :).


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/10 12:11:27

Modified files:
	usr.sbin/vmd   : vmd.h 
	usr.sbin/vmctl : vmctl.h 

Log message:
remove receive_vm prototype for the function does not exist (anymore)

ok pd@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/10 12:20:41

Modified files:
	sys/dev/fdt    : ehci_fdt.c 

Log message:
Add a fallback to ehci(4)'s phy init code so that when there
is no compatible phy it tries to enable the VBus using the
phy-supply property.  Makes the USB ports on the RockPro64
work.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	akoshibe@cvs.openbsd.org	2019/05/10 12:27:50

Modified files:
	sbin/ifconfig  : ifconfig.8 
	share/man/man4 : bridge.4 switch.4 

Log message:
Document port protection support in switch(4). Also add SIOCBRDGSIFPROT to
list of ioctls in bridge(4).

OK ccardenas@ kn@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/10 12:30:15

Modified files:
	sys/net80211   : ieee80211_output.c 

Log message:
On the transmit path the ethernet and ip headers might not be
in contiguous memory.  Taking the pointer to the data and simply
looking at the IP header by adding an offset can lead to an out-
of-bounds access.  Make the ieee80211 classify function copy the
ethernet and ip header into stack variables to fix it.

Fixes a panic for florian@
Discussed with claudio@
ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/10 12:35:00

Modified files:
	sys/dev/pci/drm: drm_linux.c 

Log message:
Fix idr_get_next() such that idr_for_each_entry() actually works.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/10 12:41:17

Modified files:
	lib/libcrypto/evp: e_aes.c 

Log message:
Revert part of r1.36: in the case of GCM, gcm.key is assigned from
aesni_gcm_init_key() via CRYPTO_gcm128_init(), so it needs to be
copied over...

Fixes cryptofuzz issue #14352 and likely also #14374.

ok beck jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/10 12:48:41

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
fix a very old bug.
I was confused in my variable names, and thus old locks
where only affecting localhost... ouch


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/10 12:50:11

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Restart the protocol and get a new/renewed lease for any relevant
RTM_IFINFO seen. As dhclient no longer commits suicide to restart the
protocol this should be very low cost.

This will help some trunk(4) setups after some pending network stack
commits.

Requested by & ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/10 12:53:13

Modified files:
	sys/kern       : kern_tc.c 

Log message:
Reduce number of timehands from to just two.

Reduces the worst-case error for for time values retrieved via the
microtime(9) functions from 10 ticks to 2 ticks.  Being interrupted
for over a tick is unlikely but possible.

While here use C99 initializers.

From FreeBSD r303383.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/10 12:55:17

Modified files:
	usr.bin/ssh    : channels.c 

Log message:
For PermitOpen violations add the remote host and port to
be able to find out from where the request was comming.

Add the same logging for PermitListen violations which where not
logged at all.

Pointed out by Robert Kisteleki (robert AT ripe.net)

input markus
OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 13:11:13

Modified files:
	multimedia/dav1d: Makefile 
	multimedia/dav1d/patches: patch-src_lib_c 

Log message:
Increase thread stack size (slightly too low for certain debugging tools).

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/10 13:14:12

Modified files:
	share/man/man3 : timeradd.3 

Log message:
Document TIMEVAL_TO_TIMESPEC() and TIMESPEC_TO_TIMEVAL().

With input from schwarze@.

"read ok" jmc@, "yep" deraadt@, ok schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/10 13:15:06

Modified files:
	lib/libcrypto/ec: ec_kmeth.c 

Log message:
Initialize EC_KEY_METHOD before use.

Fixes COV-186146

ok tb, beck


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/10 13:22:50

Modified files:
	devel/p5-Test-Time: Makefile distinfo 

Log message:
Update devel/p5-Test-Time to 0.08

From Julien Dhaille <julien.dhaille () gmail ! com>

OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/10 13:38:01

Modified files:
	print/cups-bjnp: Makefile 
	net/p5-Net-PH  : Makefile 

Log message:
Remove maintainers whose addresses bounce


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/10 13:38:52

Modified files:
	sys/arch/sparc64/stand/ofwboot: boot.c vers.c 

Log message:
Add bsd.upgrade support to sparc64 bootloader.
OK kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/05/10 14:10:06

Modified files:
	etc/root       : root.mail 

Log message:
few can remember what apm was
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	pd@cvs.openbsd.org	2019/05/10 14:17:41

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm: handle some unhandled exits for SVM

There were some exits for instructions that were unhandled and caused the guest
to terminate if it tried to execute them.  We now inject a #ud for those.  Also
intercept and #ud RDTSCP and INVLPGA instructions.

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/10 14:22:59

Modified files:
	x11/i3-gaps    : Makefile 

Log message:
remove useless autoreconf invocation


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/10 14:24:58

Modified files:
	lib/libc/time  : strptime.c 

Log message:
repair %Z: write seconds into tm_gmtoff, not hours;
patch from Hiltjo Posthuma <hiltjo at codemadness dot org>;
OK tedu@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2019/05/10 14:38:23

Modified files:
	graphics/ftgl  : Makefile 

Log message:
remove myself as MAINTAINER, as I haven't used this for a long time


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2019/05/10 14:41:36

Modified files:
	games/egoboo   : Makefile 

Log message:
remove myself as MAINTAINER, as I haven't used this for a long time


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/10 14:47:54

Modified files:
	distrib/miniroot: install.sub 

Log message:
Improve error message of "Question has no answer in response file".

It didn't always print the actual question so it was hard to debug
problems in the autoinstall(8) script.

OK florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/10 14:50:51

Modified files:
	infrastructure/lib/OpenBSD/PortGen: License.pm 

Log message:
Recognize "MPL v2" as a license in portgen

OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/10 15:13:28

Modified files:
	net/rtg        : Makefile 
	net/rtg/patches: patch-configure_in 
Added files:
	net/rtg/patches: patch-src_rtgsnmp_c 

Log message:
Stop referencing my_thread_init to unbreak build with recent mariadb releases

The code was already using mysql_thread_init() at runtime with
mysql>=4.0, this diff only removes references to an obsolete function.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/10 15:20:43

Modified files:
	sys/arch/amd64/stand/efiboot: Makefile.common 
	sys/arch/amd64/stand/libsa: cmd_i386.c dev_i386.c diskprobe.c 
	                            exec_i386.c machdep.c memprobe.c 
Added files:
	sys/arch/amd64/stand/efiboot: cmd_i386.c dev_i386.c diskprobe.c 
	                              exec_i386.c machdep.c memprobe.c 

Log message:
Disentangle #ifdef EFIBOOT.

Separate out files used by both BIOS and EFI boot modes. These files
had many #ifdef EFIBOOT code paths that make it difficult to move forward
with changes needed to support random base VA linked kernels.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/10 15:27:07

Modified files:
	editors/TeXmacs: Makefile 
Added files:
	editors/TeXmacs/patches: 
	                         patch-src_Plugins_Pdf_PDFWriter_PDFDocumentHandler_cpp 

Log message:
Unbreak build with ports-gcc and use ports-gcc on all archs.

texmacs on amd64 prints a few ugly warnings about symbol size mismatch
on stderr, but it seems to work properly anyway.  ports-gcc approach
suggested by phessler@.  One less port that builds only with base-gcc.

rsadowski@ has a diff to update this port and make it use clang, but
nobody gave feedback on it yet.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/10 15:27:57

Modified files:
	lib/libc/time  : strptime.c 

Log message:
repair %z: store seconds into tm_gmtoff, not centihours;
bug reported by Hiltjo Posthuma <hiltjo at codemadness dot org>;
feedback and OK millert@, OK tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/10 15:39:05

Modified files:
	lib/libc/time  : strptime.c 

Log message:
trim trailing whitespace (reported by Hiltjo Posthuma)
and also delete spaces before tabs;
no object change


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/10 15:39:53

Added files:
	devel/autoconf/2.60/patches: patch-bin_Makefile_in 
	devel/autoconf/2.61/patches: patch-bin_Makefile_in 

Log message:
fix parallel build; from autoconf 2.62


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/10 15:55:40

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-BUILD_gn 
	                      patch-apps_ui_views_app_window_frame_view_cc 
	                      patch-base_BUILD_gn 
	                      patch-base_debug_debugger_posix_cc 
	                      patch-base_debug_elf_reader_cc 
	                      patch-base_files_file_util_posix_cc 
	                      patch-base_process_launch_h 
	                      patch-base_process_process_metrics_cc 
	                      patch-build_config_BUILDCONFIG_gn 
	                      patch-build_config_BUILD_gn 
	                      patch-build_config_c++_c++_gni 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_features_gni 
	                      patch-build_toolchain_gcc_toolchain_gni 
	                      patch-cc_BUILD_gn 
	                      patch-chrome_app_chrome_content_browser_overlay_manifest_cc 
	                      patch-chrome_app_chrome_main_delegate_cc 
	                      patch-chrome_app_chromium_strings_grd 
	                      patch-chrome_app_generated_resources_grd 
	                      patch-chrome_app_google_chrome_strings_grd 
	                      patch-chrome_app_settings_strings_grdp 
	                      patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_browser_process_impl_cc 
	                      patch-chrome_browser_browser_process_impl_h 
	                      patch-chrome_browser_browser_resources_grd 
	                      patch-chrome_browser_chrome_browser_main_cc 
	                      patch-chrome_browser_chrome_browser_main_linux_cc 
	                      patch-chrome_browser_chrome_content_browser_client_cc 
	                      patch-chrome_browser_chrome_content_browser_client_h 
	                      patch-chrome_browser_download_chrome_download_manager_delegate_cc 
	                      patch-chrome_browser_download_download_prefs_cc 
	                      patch-chrome_browser_download_download_prefs_h 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_browser_extensions_bookmark_app_extension_util_cc 
	                      patch-chrome_browser_flag_descriptions_cc 
	                      patch-chrome_browser_flag_descriptions_h 
	                      patch-chrome_browser_metrics_chrome_metrics_service_client_cc 
	                      patch-chrome_browser_net_system_network_context_manager_cc 
	                      patch-chrome_browser_notifications_notification_display_service_impl_cc 
	                      patch-chrome_browser_platform_util_h 
	                      patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc 
	                      patch-chrome_browser_prefs_browser_prefs_cc 
	                      patch-chrome_browser_prefs_pref_service_incognito_whitelist_cc 
	                      patch-chrome_browser_process_singleton_posix_cc 
	                      patch-chrome_browser_profiles_chrome_browser_main_extra_parts_profiles_cc 
	                      patch-chrome_browser_profiles_profile_impl_cc 
	                      patch-chrome_browser_renderer_preferences_util_cc 
	                      patch-chrome_browser_send_tab_to_self_receiving_ui_handler_registry_cc 
	                      patch-chrome_browser_ssl_ssl_error_controller_client_cc 
	                      patch-chrome_browser_sync_chrome_sync_client_cc 
	                      patch-chrome_browser_task_manager_sampling_task_group_h 
	                      patch-chrome_browser_task_manager_sampling_task_group_sampler_cc 
	                      patch-chrome_browser_task_manager_sampling_task_group_sampler_h 
	                      patch-chrome_browser_task_manager_sampling_task_manager_impl_cc 
	                      patch-chrome_browser_ui_browser_command_controller_cc 
	                      patch-chrome_browser_ui_browser_window_h 
	                      patch-chrome_browser_ui_startup_bad_flags_prompt_cc 
	                      patch-chrome_browser_ui_startup_startup_browser_creator_cc 
	                      patch-chrome_browser_ui_tab_helpers_cc 
	                      patch-chrome_browser_ui_task_manager_task_manager_table_model_cc 
	                      patch-chrome_browser_ui_toolbar_app_menu_model_cc 
	                      patch-chrome_browser_ui_views_accelerator_table_cc 
	                      patch-chrome_browser_ui_views_chrome_browser_main_extra_parts_views_cc 
	                      patch-chrome_browser_ui_views_chrome_views_delegate_h 
	                      patch-chrome_browser_ui_views_frame_browser_frame_cc 
	                      patch-chrome_browser_ui_views_frame_browser_view_cc 
	                      patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc 
	                      patch-chrome_browser_ui_views_tabs_new_tab_button_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                      patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc 
	                      patch-chrome_common_BUILD_gn 
	                      patch-chrome_common_chrome_features_cc 
	                      patch-chrome_common_chrome_features_h 
	                      patch-chrome_common_chrome_switches_cc 
	                      patch-chrome_common_chrome_switches_h 
	                      patch-chrome_common_pref_names_cc 
	                      patch-chrome_common_pref_names_h 
	                      patch-chrome_common_webui_url_constants_cc 
	                      patch-chrome_common_webui_url_constants_h 
	                      patch-chrome_renderer_chrome_content_renderer_client_cc 
	                      patch-chrome_test_BUILD_gn 
	                      patch-chromecast_browser_cast_browser_main_parts_cc 
	                      patch-chromecast_browser_cast_content_browser_client_cc 
	                      patch-components_autofill_core_browser_autofill_experiments_cc 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-content_app_content_main_runner_impl_cc 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_browser_child_process_host_impl_cc 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_h 
	                      patch-content_browser_renderer_host_render_view_host_impl_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_event_handler_cc 
	                      patch-content_browser_service_manager_service_manager_context_cc 
	                      patch-content_browser_webui_shared_resources_data_source_cc 
	                      patch-content_ppapi_plugin_ppapi_blink_platform_impl_h 
	                      patch-content_public_app_content_packaged_services_manifest_cc 
	                      patch-content_public_common_common_param_traits_macros_h 
	                      patch-content_public_common_content_features_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_media_stream_processed_local_audio_source_cc 
	                      patch-content_renderer_render_process_impl_cc 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_renderer_renderer_blink_platform_impl_cc 
	                      patch-content_renderer_renderer_blink_platform_impl_h 
	                      patch-content_shell_BUILD_gn 
	                      patch-content_shell_browser_shell_browser_context_cc 
	                      patch-content_shell_browser_shell_browser_main_parts_cc 
	                      patch-device_bluetooth_BUILD_gn 
	                      patch-device_gamepad_gamepad_provider_cc 
	                      patch-extensions_browser_api_messaging_message_service_cc 
	                      patch-gpu_command_buffer_common_gpu_memory_buffer_support_cc 
	                      patch-gpu_ipc_common_gpu_memory_buffer_support_cc 
	                      patch-gpu_ipc_service_gpu_init_cc 
	                      patch-gpu_ipc_service_gpu_memory_buffer_factory_cc 
	                      patch-gpu_ipc_service_gpu_watchdog_thread_cc 
	                      patch-gpu_ipc_service_gpu_watchdog_thread_h 
	                      patch-gpu_vulkan_generate_bindings_py 
	                      patch-gpu_vulkan_vulkan_function_pointers_cc 
	                      patch-gpu_vulkan_vulkan_function_pointers_h 
	                      patch-headless_lib_browser_headless_content_browser_client_h 
	                      patch-ipc_ipc_message_utils_cc 
	                      patch-ipc_ipc_message_utils_h 
	                      patch-media_audio_BUILD_gn 
	                      patch-media_audio_audio_thread_impl_cc 
	                      patch-media_base_video_frame_cc 
	                      patch-media_base_video_frame_h 
	                      patch-media_capture_video_fake_video_capture_device_factory_cc 
	                      patch-media_capture_video_mock_gpu_memory_buffer_manager_cc 
	                      patch-media_capture_video_video_capture_device_client_cc 
	                      patch-media_media_options_gni 
	                      patch-media_mojo_services_gpu_mojo_media_client_cc 
	                      patch-mojo_public_js_mojo_bindings_resources_grd 
	                      patch-net_BUILD_gn 
	                      patch-net_base_address_tracker_linux_cc 
	                      patch-net_base_network_change_notifier_cc 
	                      patch-net_proxy_resolution_proxy_resolution_service_cc 
	                      patch-net_socket_udp_socket_posix_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-services_network_BUILD_gn 
	                      patch-services_network_network_context_cc 
	                      patch-services_network_network_service_cc 
	                      patch-services_network_network_service_h 
	                      patch-services_service_manager_embedder_main_cc 
	                      patch-services_service_manager_zygote_zygote_linux_cc 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_blink_renderer_core_html_forms_internal_popup_menu_cc 
	                      patch-third_party_blink_renderer_platform_BUILD_gn 
	                      patch-third_party_blink_renderer_platform_fonts_font_description_cc 
	                      patch-third_party_blink_renderer_platform_fonts_font_unique_name_lookup_cc 
	                      patch-third_party_blink_renderer_platform_wtf_stack_util_cc 
	                      patch-third_party_crc32c_BUILD_gn 
	                      patch-third_party_libusb_BUILD_gn 
	                      patch-third_party_pdfium_core_fxcrt_fx_system_h 
	                      patch-third_party_pdfium_xfa_fgas_font_cfx_fontsourceenum_file_cpp 
	                      patch-third_party_perfetto_src_tracing_core_tracing_service_impl_cc 
	                      patch-third_party_sqlite_amalgamation_sqlite3_c 
	                      patch-third_party_swiftshader_src_OpenGL_libEGL_Display_cpp 
	                      patch-third_party_swiftshader_src_OpenGL_libEGL_Surface_cpp 
	                      patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                      patch-third_party_webrtc_rtc_base_BUILD_gn 
	                      patch-third_party_webrtc_rtc_base_network_cc 
	                      patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                      patch-third_party_webrtc_webrtc_gni 
	                      patch-third_party_zlib_BUILD_gn 
	                      patch-tools_json_schema_compiler_feature_compiler_py 
	                      patch-tools_json_schema_compiler_model_py 
	                      patch-tools_variations_fieldtrial_to_struct_py 
	                      patch-ui_base_ui_base_features_cc 
	                      patch-ui_base_ui_base_features_h 
	                      patch-ui_gfx_BUILD_gn 
	                      patch-ui_gfx_font_fallback_linux_cc 
	                      patch-ui_gfx_gpu_memory_buffer_h 
	                      patch-ui_gfx_ipc_gfx_param_traits_macros_h 
	                      patch-ui_gfx_mojo_buffer_types_struct_traits_cc 
	                      patch-ui_gfx_mojo_buffer_types_struct_traits_h 
	                      patch-ui_gfx_native_pixmap_handle_cc 
	                      patch-ui_gfx_native_pixmap_handle_h 
	                      patch-ui_gl_BUILD_gn 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_message_center_public_cpp_message_center_constants_h 
	                      patch-ui_message_center_views_message_popup_view_cc 
	                      patch-ui_views_bubble_bubble_dialog_delegate_view_cc 
	                      patch-ui_views_controls_label_cc 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_corewm_tooltip_aura_cc 
	                      patch-ui_views_examples_widget_example_cc 
	                      patch-ui_views_selection_controller_cc 
	                      patch-ui_views_views_delegate_h 
	                      patch-ui_views_widget_desktop_aura_desktop_window_tree_host_platform_cc 
	                      patch-ui_views_widget_desktop_aura_desktop_window_tree_host_x11_cc 
	                      patch-ui_views_window_custom_frame_view_cc 
	                      patch-ui_views_window_dialog_delegate_cc 
	                      patch-ui_views_window_frame_background_cc 
	                      patch-v8_BUILD_gn patch-v8_src_api_cc 
	                      patch-v8_src_globals_h 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: 
	                      patch-chrome_browser_ui_webui_settings_settings_localized_strings_provider_cc 
	                      patch-components_sync_device_info_local_device_info_util_cc 
	                      patch-gpu_command_buffer_service_external_vk_image_backing_cc 
	                      patch-gpu_command_buffer_service_external_vk_image_gl_representation_cc 
	                      patch-ui_base_ime_init_input_method_initializer_cc 
Removed files:
	www/chromium/patches: 
	                      patch-base_files_memory_mapped_file_posix_cc 
	                      patch-chrome_browser_policy_machine_level_user_cloud_policy_controller_cc 
	                      patch-chrome_browser_ui_webui_settings_md_settings_localized_strings_provider_cc 
	                      patch-components_autofill_core_browser_autofill_experiments_h 
	                      patch-components_autofill_strings_grdp 
	                      patch-components_services_font_font_service_app_cc 
	                      patch-components_sync_device_info_local_device_info_provider_impl_cc 
	                      patch-content_browser_storage_partition_impl_cc 
	                      patch-content_browser_storage_partition_impl_map_cc 
	                      patch-net_third_party_quic_platform_impl_quic_ip_address_impl_cc 
	                      patch-third_party_blink_renderer_platform_heap_stack_frame_depth_cc 
	                      patch-third_party_blink_renderer_platform_wtf_BUILD_gn 
	                      patch-third_party_libjingle_xmpp_task_runner_taskrunner_cc 
	                      patch-third_party_swiftshader_third_party_llvm-7_0_configs_linux_include_llvm_Config_config_h 
	                      patch-ui_base_ime_input_method_initializer_cc 

Log message:
update to 75.0.3770.27;

75.0.3770.27 is still a beta, but it fixes a really bad bug with notifications


CVSROOT:	/cvs
Module name:	ports
Changes by:	ians@cvs.openbsd.org	2019/05/10 16:35:36

Modified files:
	sysutils/htop  : Makefile 
	sysutils/htop/patches: patch-CPUMeter_c 

Log message:
Properly initialize draw fptr instead of skipping draw on edge case


CVSROOT:	/cvs
Module name:	ports
Changes by:	ians@cvs.openbsd.org	2019/05/10 17:38:58

Modified files:
	sysutils/htop  : Makefile 
	sysutils/htop/patches: patch-CPUMeter_c patch-openbsd_Platform_c 

Log message:
Re-init all meters on edge case, fix platform code

When meters draw before init, re-init everything
Also don't write useless unusued period var in
platform code

This should stop all runtime crashes


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/10 18:07:08

Removed files:
	security/nss/patches: patch-nss_lib_freebl_config_mk 

Log message:
Drop patch not needed since a few releases

ok landry@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/10 19:05:17

Modified files:
	usr.sbin/vmd   : vmd.c 

Log message:
sync the vm state in vmd too when (un)pausing a vm, otherwise the vm process
knows the vm is paused, but vmd does not.

ok mlarkin@ pd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2019/05/10 19:11:20

Modified files:
	java           : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	java/java-getopt: Makefile distinfo 
	java/java-getopt/pkg: DESCR PLIST 

Log message:
Remove another port that doesn't benefit from packaging...
because people will use it from Maven or Gradle. OK sthen jca.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/10 20:24:46

src/sys/arch/amd64/stand/efi64

Update of /cvs/src/sys/arch/amd64/stand/efi64
In directory cvs.openbsd.org:/tmp/cvs-serv58012/efi64

Log Message:
Directory /cvs/src/sys/arch/amd64/stand/efi64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/10 20:24:46

src/sys/arch/amd64/stand/efi32

Update of /cvs/src/sys/arch/amd64/stand/efi32
In directory cvs.openbsd.org:/tmp/cvs-serv58012/efi32

Log Message:
Directory /cvs/src/sys/arch/amd64/stand/efi32 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/10 20:30:51

src/sys/arch/amd64/stand/efi32/bootia32

Update of /cvs/src/sys/arch/amd64/stand/efi32/bootia32
In directory cvs.openbsd.org:/tmp/cvs-serv5847/bootia32

Log Message:
Directory /cvs/src/sys/arch/amd64/stand/efi32/bootia32 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/10 20:33:34

Added files:
	sys/arch/amd64/stand/efi32: Makefile Makefile.common 
	                            Makefile.inc cmd_i386.c conf.c 
	                            dev_i386.c diskprobe.c efiboot.c 
	                            efiboot.h eficall.S eficall.h 
	                            efidev.c efidev.h efipxe.c efipxe.h 
	                            efirng.c exec_i386.c heap.h 
	                            ldscript.amd64 ldscript.i386 
	                            machdep.c memprobe.c run_i386.S 
	                            run_i386.h self_reloc.c 
	                            start_amd64.S start_i386.S 
	sys/arch/amd64/stand/efi32/bootia32: Makefile 

Log message:
Refactor efiboot into 32 and 64 bit copies.

Make 2 separate efiboots, one for 32 bit and one for 64 bit to allow
us to remove lots of #ifdef code. Needed to ease the development effort
for random-VA linked kernels

ok tedu, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/10 20:34:10

src/sys/arch/amd64/stand/efi64/bootx64

Update of /cvs/src/sys/arch/amd64/stand/efi64/bootx64
In directory cvs.openbsd.org:/tmp/cvs-serv41896/bootx64

Log Message:
Directory /cvs/src/sys/arch/amd64/stand/efi64/bootx64 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/10 20:36:10

Added files:
	sys/arch/amd64/stand/efi64: Makefile Makefile.common 
	                            Makefile.inc cmd_i386.c conf.c 
	                            dev_i386.c diskprobe.c efiboot.c 
	                            efiboot.h eficall.S eficall.h 
	                            efidev.c efidev.h efipxe.c efipxe.h 
	                            efirng.c exec_i386.c heap.h 
	                            ldscript.amd64 ldscript.i386 
	                            machdep.c memprobe.c run_i386.S 
	                            run_i386.h self_reloc.c 
	                            start_amd64.S start_i386.S 
	sys/arch/amd64/stand/efi64/bootx64: Makefile 

Log message:
Refactor efiboot into 32 and 64 bit copies.

Make 2 separate efiboots, one for 32 bit and one for 64 bit to allow
us to remove lots of #ifdef code. Needed to ease the development effort
for random-VA linked kernels

ok tedu, deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/10 20:51:04

Modified files:
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Make python PKGNAME lowercase if neccessary in portgen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/10 21:33:43

Modified files:
	multimedia     : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	multimedia/avidemux: Makefile distinfo 
	multimedia/avidemux/files: ADM_devicesndio.cpp ADM_devicesndio.h 
	multimedia/avidemux/patches: patch-addons_Makefile 
	                             patch-admin_detect-autoconf_sh 
	                             patch-avidemux_ADM_audiodevice_ADM_audiodevice_cpp 
	                             patch-avidemux_ADM_audiodevice_Makefile_am 
	                             patch-avidemux_ADM_audiodevice_audio_out_h 
	                             patch-avidemux_ADM_libraries_ADM_lavcodec_Makefile_am 
	                             patch-avidemux_ADM_libraries_ADM_lavcodec_dsputil_c 
	                             patch-avidemux_ADM_libraries_ADM_lavcodec_mpegaudiodec_c 
	                             patch-avidemux_ADM_libraries_ADM_lavcodec_mpegvideo_c 
	                             patch-avidemux_ADM_libraries_ADM_libswscale_yuv2rgb_c 
	                             patch-avidemux_ADM_libraries_ADM_utilities_ADM_imageUtils_cpp 
	                             patch-avidemux_ADM_libraries_ADM_utilities_default_h 
	                             patch-avidemux_ADM_libraries_ADM_utilities_prefs_cpp 
	                             patch-avidemux_ADM_osSupport_ADM_crashdump_cpp 
	                             patch-avidemux_ADM_script_ADM_JSFunctions_cpp 
	                             patch-avidemux_ADM_userInterfaces_ADM_commonUI_DIA_builtin_cpp 
	                             patch-avidemux_ADM_userInterfaces_ADM_commonUI_DIA_prefs_cpp 
	                             patch-avidemux_ADM_videoFilter_ADM_vidBlend_cpp 
	                             patch-avidemux_ADM_videoFilter_ADM_vidDeintASM_cpp 
	                             patch-avidemux_ADM_videoFilter_ADM_vidFields_cpp 
	                             patch-avidemux_ADM_videoFilter_ADM_vidFlux_cpp 
	                             patch-avidemux_ADM_videoFilter_ADM_vidResampleFPS_cpp 
	                             patch-avidemux_ADM_video_ADM_interlaced_cpp 
	                             patch-avidemux_avi_vars_h 
	                             patch-avidemux_gtk_gui_cpp 
	                             patch-avidemux_gui_action_names 
	                             patch-configure_in_bot 
	                             patch-configure_in_in 
	multimedia/avidemux/pkg: DESCR PLIST 

Log message:
Remove avidemux, broken with clang and not updated since 2009

ok kn@ naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 22:08:57

Modified files:
	net/ircd-hybrid: Makefile distinfo 
	net/ircd-hybrid/patches: patch-doc_Makefile_in 
	                         patch-doc_reference_conf 
	                         patch-include_defaults_h 
	                         patch-include_stdinc_h patch-src_ircd_c 

Log message:
Update to ircd-hybrid-8.2.25.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 22:24:49

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.146.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 22:25:01

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.146.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/10 22:25:23

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.156.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/11 00:34:56

Modified files:
	usr.bin/tmux   : resize.c status.c 

Log message:
Do not reduce window height by status line height for control mode
clients, from George Nachman.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/11 00:40:02

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Don't use arguments with It and -enum, pointed out by jmc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2019/05/11 00:59:58

Modified files:
	databases/postgresql: Makefile distinfo 
	databases/postgresql/pkg: PLIST-docs 

Log message:
Update to 11.3

ok jeremy@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/11 01:18:17

Modified files:
	.              : Makefile.cross 
	distrib        : Makefile 
	distrib/notes  : Makefile 
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 
	distrib/special/disklabel: Makefile 
	distrib/special/fdisk: Makefile 
	distrib/special/installboot: Makefile 
	etc            : Makefile 
	etc/mtree      : 4.4BSD.dist 
	regress/etc/MAKEDEV: Makefile 
	sbin/disklabel : Makefile 
	sbin/fdisk     : Makefile 
	share/man/man4 : Makefile com.4 
	share/man/man7 : mdoc.7 
	share/man/man8 : Makefile 
	sys            : Makefile 
	sys/kern       : Makefile 
	usr.bin/mandoc : arch.c 
	usr.sbin/hotplugd: Makefile 
	usr.sbin/pcidump: Makefile 
Removed files:
	distrib/notes/socppc: contents features hardware install prep 
	                      upgrade whatis xfer 
	distrib/sets/lists/base: md.socppc 
	distrib/sets/lists/comp: gcc.socppc md.socppc 
	distrib/sets/lists/etc: md.socppc 
	distrib/sets/lists/game: md.socppc 
	distrib/sets/lists/man: md.socppc 
	distrib/socppc : Makefile 
	distrib/socppc/ramdisk: Makefile install.md list 
	etc/etc.socppc : MAKEDEV MAKEDEV.md Makefile Makefile.inc 
	                 disktab fbtab login.conf sysctl.conf ttys 
	share/man/man4/man4.socppc: Makefile autoconf.4 intro.4 ipic.4 
	                            mem.4 obio.4 sociic.4 socpcic.4 
	                            tsec.4 
	share/man/man8/man8.socppc: MAKEDEV.8 Makefile 
	sys/arch/socppc: Makefile 
	sys/arch/socppc/compile: Makefile Makefile.inc 
	sys/arch/socppc/compile/GENERIC: Makefile 
	sys/arch/socppc/compile/RAMDISK: Makefile 
	sys/arch/socppc/conf: GENERIC Makefile.socppc RAMDISK 
	                      files.socppc 
	sys/arch/socppc/dev: com_obio.c ehci_obio.c if_tsec.c ipic.c 
	                     obio.c pciide_machdep.c sociic.c socpcic.c 
	                     wdc_mainbus.c 
	sys/arch/socppc/include: _float.h _types.h asm.h atomic.h 
	                         autoconf.h bus.h cdefs.h conf.h cpu.h 
	                         db_machdep.h disklabel.h endian.h 
	                         exec.h fenv.h fpu.h frame.h ieee.h 
	                         ieeefp.h intr.h kcore.h limits.h 
	                         loadfile_machdep.h lock.h mutex.h 
	                         param.h pcb.h pci_machdep.h pio.h 
	                         pmap.h proc.h profile.h psl.h pte.h 
	                         ptrace.h reg.h reloc.h setjmp.h 
	                         signal.h spinlock.h stdarg.h tcb.h 
	                         trap.h varargs.h vmparam.h 
	sys/arch/socppc/socppc: autoconf.c clock.c conf.c cpu.c 
	                        disksubr.c genassym.cf locore.S 
	                        machdep.c mainbus.c mem.c n1200.dts 
	                        n1200_dts.S 
	sys/arch/socppc/stand: Makefile Makefile.inc 
	sys/arch/socppc/stand/boot: Makefile boot.8 clock.c cmd_socppc.c 
	                            conf.c dev_socppc.c devopen.c exec.c 
	                            fdt.c fdt.h libsa.h machdep.c 
	                            ns16550.c pciide.c start.S time.c 
	                            wd.c wdc.c wdc_obio.c wdvar.h 
	sys/arch/socppc/stand/mbr: Makefile mbr.S 
	sys/arch/socppc/stand/mkboot: Makefile mkboot.8 mkboot.c 

Log message:
socppc makes an extended visit to the bigbucket.
ok kettenis


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2019/05/11 01:22:55

Removed files:
	distrib/notes  : README.socppc 

Log message:
socppc is gone


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/05/11 01:46:07

Modified files:
	lib/pixman     : Makefile.am Makefile.bsd-wrapper Makefile.in 
	                 aclocal.m4 configure configure.ac 
	lib/pixman/demos: Makefile.am Makefile.in 
	lib/pixman/pixman: Makefile.am Makefile.in pixman-bits-image.c 
	                   pixman-conical-gradient.c 
	                   pixman-gradient-walker.c pixman-inlines.h 
	                   pixman-linear-gradient.c pixman-private.h 
	                   pixman-radial-gradient.c 
	lib/pixman/test: Makefile.am Makefile.in 
Added files:
	lib/pixman     : arm-simd-test.S meson.build meson_options.txt 
	                 neon-test.S 
	lib/pixman/demos: meson.build 
	lib/pixman/pixman: meson.build 
	lib/pixman/test: meson.build 

Log message:
Update to pixman 0.38.4. ok jca@ naddy@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/05/11 01:47:56

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/05/11 01:49:02

Modified files:
	distrib/sets/lists/xbase: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/05/11 01:55:05

Removed files:
	lib/libFS      : COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in README 
	                 aclocal.m4 compile config.guess config.h.in 
	                 config.sub configure configure.ac depcomp 
	                 install-sh libfs.pc.in ltmain.sh missing 
	                 mkinstalldirs 
	lib/libFS/doc  : FSlib.txt 
	lib/libFS/include/X11/fonts: FSlib.h 
	lib/libFS/src  : FSClServ.c FSCloseFt.c FSConnServ.c FSErrDis.c 
	                 FSErrHndlr.c FSFlush.c FSFontInfo.c FSFtNames.c 
	                 FSGetCats.c FSListCats.c FSListExt.c FSMisc.c 
	                 FSNextEv.c FSOpenFont.c FSOpenServ.c 
	                 FSQGlyphs.c FSQXExt.c FSQXInfo.c FSQuExt.c 
	                 FSServName.c FSSetCats.c FSSync.c FSSynchro.c 
	                 FSlibInt.c FSlibint.h FSlibos.h Makefile.am 
	                 Makefile.in fs_transport.c 
	lib/libFS/test : FSGetErrorText.c Makefile.am Makefile.in 

Log message:
Remove libFS. Unlinked from the build 2 weeks ago.


CVSROOT:	/cvs
Module name:	ports
Changes by:	matthieu@cvs.openbsd.org	2019/05/11 02:17:36

Modified files:
	www/squid      : Makefile 
Added files:
	www/squid/patches: patch-src_comm_TcpAcceptor_cc 

Log message:
Add a patch to ignore ECONNABORTED in accept(2).

This was causing lockups on my squid cache at work.
Upstreem PR: https://github.com/squid-cache/squid/pull/404
ok sthen@, jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/11 02:18:51

Modified files:
	sys/kern       : vfs_lockf.c 

Log message:
Restore previous behavior of limiting deadlock detection to posix-style
locks.

ok jturner@ visa@

Reported-by: syzbot+f9f13034fd656af6c48f@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/11 04:22:49

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
add a proper "parser" for lockfiles, and a way to scan
through lockdir.

this simplifies all the code that scans existing locks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/11 04:23:57

Modified files:
	infrastructure/lib/DPB: PkgPath.pm PortBuilder.pm 
	infrastructure/lib/DPB/Job: Port.pm 

Log message:
tag the code that writes to lockfiles with #WRITELOCK
as it does so directly (for now)
to identify all patterns


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/11 04:31:27

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
scan_lockdir can create the lockinfo since it contains its filename.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/11 05:31:08

Modified files:
	distrib/special/disklabel: Makefile 

Log message:
Make bsd.rd compile after socppc removal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/11 05:51:00

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
missing field (shouldn't happen too often, as the lockfile is going to vanish)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/05/11 06:05:08

Removed files:
	distrib/sets/lists/xbase: md.socppc 
	distrib/sets/lists/xetc: md.socppc 
	distrib/sets/lists/xfont: md.socppc 
	distrib/sets/lists/xserv: md.socppc 
	distrib/sets/lists/xshare: md.socppc 

Log message:
Remove socppc sets. ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/11 06:05:46

Modified files:
	infrastructure/mk: arch-defines.mk 

Log message:
socppc is no more


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/11 06:14:10

Modified files:
	sbin/disklabel : Makefile 

Log message:
Add missing )


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/11 06:40:40

Modified files:
	www/squid      : Makefile distinfo 
	www/squid/patches: patch-src_comm_TcpAcceptor_cc 
Removed files:
	www/squid/patches: patch-src_enums_h patch-src_store_cc 
	                   patch-src_store_swapout_cc 

Log message:
update to squid-4.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/11 06:47:22

Modified files:
	audio          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	audio/festival : Makefile 
	audio/festival/arctic: Makefile Makefile.inc 
	audio/festival/arctic/festvox_cmu_us_awb_arctic_hts: Makefile 
	                                                     distinfo 
	audio/festival/arctic/festvox_cmu_us_awb_arctic_hts/pkg: DESCR 
	                                                         PLIST 
	audio/festival/arctic/festvox_cmu_us_bdl_arctic_hts: Makefile 
	                                                     distinfo 
	audio/festival/arctic/festvox_cmu_us_bdl_arctic_hts/pkg: DESCR 
	                                                         PLIST 
	audio/festival/arctic/festvox_cmu_us_jmk_arctic_hts: Makefile 
	                                                     distinfo 
	audio/festival/arctic/festvox_cmu_us_jmk_arctic_hts/pkg: DESCR 
	                                                         PLIST 
	audio/festival/arctic/festvox_cmu_us_slt_arctic_hts: Makefile 
	                                                     distinfo 
	audio/festival/arctic/festvox_cmu_us_slt_arctic_hts/pkg: DESCR 
	                                                         PLIST 
	audio/festival/arctic/festvox_cstr_us_awb_arctic_multisyn: 
	                                                           Makefile 
	                                                           distinfo 
	audio/festival/arctic/festvox_cstr_us_awb_arctic_multisyn/pkg: 
	                                                               DESCR 
	                                                               PLIST 
	audio/festival/arctic/festvox_cstr_us_jmk_arctic_multisyn: 
	                                                           Makefile 
	                                                           distinfo 
	audio/festival/arctic/festvox_cstr_us_jmk_arctic_multisyn/pkg: 
	                                                               DESCR 
	                                                               PLIST 
	audio/festival/core: Makefile distinfo 
	audio/festival/core/files: Makefile OpenBSD.mak sndio.cc 
	                           sndio_audio.mak 
	audio/festival/core/patches: 
	                             ogi-patch-festival_src_modules_OGIcommon_OGI_Macro_h 
	                             ogi-patch-festival_src_modules_OGIcommon_OGI_TimeWarp_cc 
	                             ogi-patch-festival_src_modules_OGIcommon_OGI_Wave_h 
	                             ogi-patch-festival_src_modules_OGIcommon_OGI_file_h 
	                             ogi-patch-festival_src_modules_OGIdbase_OGIdbUnits_cc 
	                             ogi-patch-festival_src_modules_OGIdbase_OGIresLPC_db_cc 
	                             ogi-patch-festival_src_modules_OGIdbase_OGIunitsel_diphone_cc 
	                             patch-festival_config_config_in 
	                             patch-festival_config_modules_Makefile 
	                             patch-festival_config_project_mak 
	                             patch-festival_doc_Makefile 
	                             patch-festival_examples_text2wave_sh 
	                             patch-festival_lib_init_scm 
	                             patch-festival_lib_voices_scm 
	                             patch-festival_src_arch_festival_Makefile 
	                             patch-festival_src_modules_MultiSyn_EST_JoinCostCache_h 
	                             patch-festival_src_modules_clunits_clunits_h 
	                             patch-speech_tools_audio_Makefile 
	                             patch-speech_tools_audio_audioP_h 
	                             patch-speech_tools_audio_gen_audio_cc 
	                             patch-speech_tools_config_compilers_gcc_defaults_mak 
	                             patch-speech_tools_config_config_in 
	                             patch-speech_tools_config_modules_Makefile 
	                             patch-speech_tools_include_EST_Chunk_h 
	                             patch-speech_tools_include_EST_String_h 
	                             patch-speech_tools_include_EST_audio_h 
	                             patch-speech_tools_include_EST_simplestats_h 
	                             patch-speech_tools_include_ling_class_EST_Item_h 
	                             patch-speech_tools_lib_siod_init_scm 
	                             patch-speech_tools_ling_class_item_feats_cc 
	                             patch-speech_tools_stats_EST_DProbDist_cc 
	audio/festival/core/pkg: DESCR PFRAG.ogi PLIST 
	audio/festival/festlex: Makefile Makefile.inc 
	audio/festival/festlex/festlex_CMU: Makefile distinfo 
	audio/festival/festlex/festlex_CMU/pkg: DESCR PLIST 
	audio/festival/festlex/festlex_OALD: Makefile distinfo 
	audio/festival/festlex/festlex_OALD/pkg: DESCR PLIST 
	audio/festival/festlex/festlex_POSLEX: Makefile distinfo 
	audio/festival/festlex/festlex_POSLEX/pkg: DESCR PLIST 
	audio/festival/festvox: Makefile Makefile.inc 
	audio/festival/festvox/festvox_don: Makefile distinfo 
	audio/festival/festvox/festvox_don/pkg: DESCR PLIST 
	audio/festival/festvox/festvox_ellpc11k: Makefile distinfo 
	audio/festival/festvox/festvox_ellpc11k/pkg: DESCR PLIST 
	audio/festival/festvox/festvox_kallpc16k: Makefile distinfo 
	audio/festival/festvox/festvox_kallpc16k/pkg: DESCR PLIST 
	audio/festival/festvox/festvox_kedlpc16k: Makefile distinfo 
	audio/festival/festvox/festvox_kedlpc16k/pkg: DESCR PLIST 
	audio/festival/festvox/festvox_rablpc16k: Makefile distinfo 
	audio/festival/festvox/festvox_rablpc16k/pkg: DESCR PLIST 
	audio/festival/ogi: Makefile Makefile.inc 
	audio/festival/ogi/OGIlexicon: Makefile distinfo 
	audio/festival/ogi/OGIlexicon/pkg: DESCR PLIST 
	audio/festival/ogi/voice_aec_di: Makefile distinfo 
	audio/festival/ogi/voice_aec_di/pkg: DESCR PLIST 
	audio/festival/ogi/voice_jph_di: Makefile distinfo 
	audio/festival/ogi/voice_jph_di/pkg: DESCR PLIST 
	audio/festival/ogi/voice_mwm_di: Makefile distinfo 
	audio/festival/ogi/voice_mwm_di/pkg: DESCR PLIST 
	audio/festival/ogi/voice_tll_di: Makefile distinfo 
	audio/festival/ogi/voice_tll_di/pkg: DESCR PLIST 

Log message:
Remove festival, broken with clang and not updated since years.

Last user of COMPILER=base-gcc.  ok naddy@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/11 06:47:42

Modified files:
	www/squid      : Tag: OPENBSD_6_5 Makefile 
Added files:
	www/squid/patches: Tag: OPENBSD_6_5 
	                   patch-src_comm_TcpAcceptor_cc 

Log message:
MFC matthieu@'s patch for ECONNABORTED lockups
https://github.com/squid-cache/squid/pull/404


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/11 07:05:25

Modified files:
	lib/libcrypto/arch/alpha: Makefile.inc 
	lib/libcrypto/arch/arm: Makefile.inc 
	lib/libcrypto/arch/hppa: Makefile.inc 
	lib/libcrypto/arch/mips64: Makefile.inc 
	lib/libcrypto/arch/powerpc: Makefile.inc 
	lib/libcrypto/arch/sparc: Makefile.inc 
	lib/libcrypto/arch/sparc64: Makefile.inc 

Log message:
Remove commented out rc5 bits


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/11 07:13:47

Modified files:
	usr.sbin/tcpdump: print-bgp.c 

Log message:
Support extended shutdown communications in tcpdump as well.
OK sthen@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/11 07:49:14

ports/misc/osinfo/osinfo-db/files

Update of /cvs/ports/misc/osinfo/osinfo-db/files
In directory cvs.openbsd.org:/tmp/cvs-serv47036/files

Log Message:
Directory /cvs/ports/misc/osinfo/osinfo-db/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/11 07:51:26

Modified files:
	misc/osinfo/osinfo-db: Makefile 
	misc/osinfo/osinfo-db/pkg: PLIST 
Added files:
	misc/osinfo/osinfo-db/files: openbsd-6.5.xml 

Log message:
Add OpenBSD 6.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/11 08:17:51

Modified files:
	plan9/drawterm/patches: patch-Make_openbsd 

Log message:
socppc is gone


CVSROOT:	/cvs
Module name:	src
Changes by:	abieber@cvs.openbsd.org	2019/05/11 08:19:16

Modified files:
	share/man/man4 : pckbd.4 ukbd.4 
	sys/dev/pckbc  : wskbdmap_mfii.c 
	sys/dev/wscons : wsksymdef.h 

Log message:
Add the colemak keyboard layout.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	abieber@cvs.openbsd.org	2019/05/11 08:20:17

Modified files:
	sys/dev/usb    : ukbdmap.c 

Log message:
Regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/11 08:39:13

Modified files:
	sys/dev/pci/drm/include/linux: workqueue.h irq_work.h 

Log message:
move irq_work bits into irq_work header


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/11 08:43:27

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : fusbtc.c 

Log message:
Add fusbtc(4) to support the Fairchild FUSB302 USB Type-C controller.
A Type-C controller has multiple tasks.  Even though the orientation
of the plug doesn't matter for the user, it matters for the hardware.
To be able to know how to route the SuperSpeed pins you need to know
which way the plug is connected.  Also you need to know if you're a
sink/source or device/host.  To get the first connection, you toggle
between the modes until you find a connection.  In case you see that
a sink is connected, you can turn on USB Vbus to power the sink.

This driver explicitly does not implement USB's Type-C state machine,
but if we get more and more of these controllers it might be worth
doing.  Also there's no support for Power Delivery messages yet.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/11 08:51:25

Modified files:
	security/libfprint: Makefile distinfo 
	security/libfprint/pkg: PLIST 
Added files:
	security/libfprint/patches: patch-libfprint_poll_c 
Removed files:
	security/libfprint/patches: patch-libfprint_fp_internal_h 

Log message:
Update to libfprint-0.8.2.

ok robert@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/11 08:52:00

Modified files:
	sysutils/fprintd: Makefile distinfo 
	sysutils/fprintd/pkg: PLIST 

Log message:
Update to fprintd-0.8.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/11 08:56:12

Modified files:
	sys/dev/fdt    : rkgpio.c 

Log message:
Implement interrupt controller functionality in the Rockchip
GPIO driver.  This allows us to use the fusbtc(4) interrupt
on the RockPro64.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/11 08:57:23

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm Ruby.pm 

Log message:
Provide a set_pkgname helper for portgen internals


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2019/05/11 08:59:52

Modified files:
	sys/dev/acpi   : acpi.c 

Log message:
Fix incorrect error message.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/11 09:09:06

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm Utils.pm 
	infrastructure/lib/OpenBSD/PortGen/Port: CPAN.pm PyPI.pm Ruby.pm 

Log message:
In portgen, keep the existing port name if we can find it

OK kmos@, cwen@ as part of a larger diff


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/11 09:10:59

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 

Log message:
Have portgen start with the existing port if we can find it

This lets us update the PLIST instead of regenerating from scratch.

OK cwen@ kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/11 09:12:58

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 

Log message:
Use the old Makefile for portgen template if it exists

This means that updates to ports don't discard work done already.

OK kmos@ cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/11 09:16:33

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 

Log message:
Avoid expanding portgen CVS keyword that shouldn't be expanded


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/11 09:31:13

Modified files:
	infrastructure/lib/DPB: Core.pm Distfile.pm Engine.pm Job.pm 
	                        Locks.pm PkgPath.pm PortBuilder.pm 
	                        State.pm 
	infrastructure/lib/DPB/Job: Port.pm 
	infrastructure/lib/DPB/SubEngine: Build.pm 

Log message:
quite a few lock-related changes, mostly internal
- create a proper writelock object, so that we can pinpoint where we
lock to it
- accordingly, new write_parent interface to deal with writing parent
to a lock
- pass the Logger through to lockinfo, so we log any errors anyhow
- properly deal with stale hostlocks
- categorize lockfile names
- tweak the find_dependencies interface to be less bizarre
- tweak find_tag as well, so that Job/Port can log accurate info for
still_untainted.
- have jobs get an explicit cleanup_after_fork interface, so in addition
to the signal handlers, port jobs also lose their fd on the lock


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/11 09:31:32

Modified files:
	devel/acpica   : Makefile distinfo 

Log message:
update to acpica-20190509


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/11 09:44:23

Modified files:
	share/man/man4 : mvpinctrl.4 

Log message:
Remove Rockchip from the manpage since it's just a leftover from
the original manpage used to create this one.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/11 09:47:58

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : mvuart.4 

Log message:
Add a manpage for mvuart(4).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/11 09:49:00

Modified files:
	audio/squeezelite: Makefile distinfo 
	audio/squeezelite/pkg: PLIST 

Log message:
update to squeezelite-1.9.2.1145, install manpage


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/11 09:55:52

Modified files:
	lib/libcrypto/curve25519: curve25519-generic.c curve25519.c 
	                          curve25519.h curve25519_internal.h 

Log message:
$OpenBSD$


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/11 10:00:13

Modified files:
	share/man/man4 : Makefile iic.4 
Added files:
	share/man/man4 : fusbtc.4 

Log message:
Add a manpage for fusbtc(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/11 10:30:23

Modified files:
	sbin/iked      : config.c iked.c iked.conf.5 iked.h ikev2.c 
	                 ikev2.h ikev2_msg.c ikev2_pld.c parse.y types.h 
	regress/sbin/iked/parser: common.c test_parser_fuzz.c 

Log message:
Add support for IKEv2 Message Fragmentation as defined in RFC 7383.

ok sthen@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	abieber@cvs.openbsd.org	2019/05/11 10:30:32

Modified files:
	xserver/config : wscons.c 

Log message:
Enable colemak

OK matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/11 10:47:02

Modified files:
	sys/net        : route.c rtsock.c 

Log message:
Make rt_mpls_set() be more strict in what it accepts. Also ensure that
the RTF_MPLS can't be toggled without rt_mpls_set() being called. While
RTF_MPLS is part of RTF_FMASK it should be excluded from the flags and mask
when they are applied to the route since toggling it requires a call to
rt_mpls_set().
OK bluhm@

Reported-by: syzbot+86344a9e31c27aa6f15b@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/11 10:56:47

Modified files:
	sys/lib/libsa  : printf.c snprintf.c 

Log message:
we have never built without %b support


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/11 11:13:59

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/dev/pci/drm/include/linux: dma-fence-array.h 

Log message:
implement dma_fence_array


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/05/11 11:16:21

Modified files:
	sys/netinet    : ip_ipsp.c 

Log message:
unbreak the build without IPSEC.
ok claudio@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/11 11:17:53

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 
	infrastructure/lib/OpenBSD/PortGen/Port: CPAN.pm PyPI.pm 

Log message:
Default port names to lowercase in portgen

OK kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/05/11 11:45:59

Modified files:
	sys/kern       : kern_rwlock.c 

Log message:
make rw-lock adaptive

OK visa@, OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/11 11:46:02

Modified files:
	share/man/man3 : intro.3 
	lib/libutil    : Makefile Symbols.map shlib_version 
	usr.bin/ldap   : Makefile aldap.h 
	usr.sbin/ldapd : Makefile aldap.h 
	usr.sbin/ldapctl: Makefile 
	usr.sbin/snmpd : Makefile snmpd.h traphandler.c util.c 
	usr.sbin/snmpctl: Makefile snmpclient.c 
	usr.sbin/ypldap: Makefile aldap.h 
Added files:
	lib/libutil    : ber.3 ber.c ber.h 
Removed files:
	usr.bin/ldap   : ber.c ber.h 
	usr.sbin/ldapd : ber.c ber.h 
	usr.sbin/snmpd : ber.3 ber.c ber.h 
	usr.sbin/ypldap: ber.c ber.h 

Log message:
The BER API is currently used by ldap, ldapd, ldapctl, ypldap, snmpd, and
snmpctl. Separate copies of ber.[ch] have existed and been maintained in sync
in ldap, ldapd, ypldap and snmpd.

This commit moves the BER API into /usr/lib/libutil. All current consumers
already link libutil. ldapd and snmpd regress passes, and release builds.

With help from tb@ and guenther@.

ok deraadt@, tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/11 11:48:35

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/11 12:10:45

Modified files:
	sys/net        : if_trunk.c 

Log message:
A trunk(4) usually stays up when the link state of one of its members
changes. While we do get RTM_IFINFO messages for the (physical) member
interfaces there is no indication that something changed from the
trunk(4) interface.
It is helpful to get this information in userland from the trunk so that
userland daemons do not need to track interface membership by themselves.
OK phessler


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/11 12:16:42

Modified files:
	net            : Makefile 
Removed files:
	net/proxy-suite: Makefile distinfo 
	net/proxy-suite/pkg: DESCR PLIST 

Log message:
Remove proxy-suite

Last release is from 2005. Suggested by previous maintainer.
ok solene@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/11 12:19:03

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register proxy-suite removal


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/11 12:33:43

Modified files:
	x11/mate/atril : Makefile distinfo 
	x11/mate/caja  : Makefile distinfo 
	x11/mate/caja/pkg: PLIST 
	x11/mate/caja-extensions/pkg: PLIST 
	x11/mate/calc  : Makefile distinfo 
	x11/mate/calc/pkg: PLIST 
	x11/mate/control-center: Makefile distinfo 
	x11/mate/control-center/pkg: PLIST 
	x11/mate/desktop/pkg: PLIST 
	x11/mate/engrampa: Makefile distinfo 
	x11/mate/eom   : Makefile distinfo 
	x11/mate/eom/pkg: PLIST 
	x11/mate/icon-theme: Makefile distinfo 
	x11/mate/icon-theme/pkg: PLIST 
	x11/mate/marco : Makefile distinfo 
	x11/mate/marco/pkg: PLIST 
	x11/mate/media : Makefile distinfo 
	x11/mate/media/pkg: PLIST 
	x11/mate/panel : Makefile distinfo 
	x11/mate/power-manager: Makefile distinfo 
	x11/mate/session-manager: Makefile distinfo 
	x11/mate/session-manager/pkg: PLIST 
	x11/mate/system-monitor: Makefile distinfo 
	x11/mate/system-monitor/pkg: PLIST 
	x11/mate/terminal: Makefile distinfo 
	x11/mate/terminal/pkg: PLIST 
	x11/mate/utils : Makefile distinfo 
	x11/mate/utils/pkg: PLIST 
Added files:
	x11/mate/control-center/patches: 
	                                 patch-capplets_about-me_mate-about-me_c 
Removed files:
	x11/mate/utils/patches: patch-gsearchtool_help_Makefile_in 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/11 13:11:19

Modified files:
	distrib/miniroot: install.sub 

Log message:
Repair and improve v6 default route selection.

Should fix autoinstalls, suppress pointless questions, allow section
of 'none' via a number, etc.

Issues first reported by reyk@

Testing & ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/11 13:14:41

Modified files:
	sys/arch/amd64/stand/efi32: Makefile efiboot.c eficall.h 
	                            exec_i386.c self_reloc.c 
	sys/arch/amd64/stand/efi64: Makefile efiboot.c eficall.h 
	                            exec_i386.c self_reloc.c 
Removed files:
	sys/arch/amd64/stand/efi32: ldscript.amd64 start_amd64.S 
	sys/arch/amd64/stand/efi64: ldscript.i386 start_i386.S 

Log message:
Further cleanup of efi32/64.

Removes some code and files not needed by efi32 and efi64.

ok guenther


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2019/05/11 13:17:56

Modified files:
	usr.sbin/acpidump: acpidump.c 

Log message:
Make acpidump match the kernel's acpi_loadtables() behavior by
preferring XSDT over RSDT.

Thanks to kettenis@ who pointed out the mismatch.

ok guenther@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/11 13:36:27

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 
	infrastructure/lib/OpenBSD/PortGen/Port: CPAN.pm PyPI.pm Ruby.pm 

Log message:
Move portgen notifications to the end of the run

OK kmos@, cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/11 13:48:06

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 

Log message:
Don't let portgen overwite a port already in mystuff

OK kmos@, requested and OK cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/11 13:55:15

Modified files:
	usr.sbin/vmd   : config.c parse.y vm.c vmd.c vmd.h vmm.c 

Log message:
track the state of the vm (running, paused, etc) using a single bitfield instead of
a handful of separate variables. this will makes it easier for vmd to report
and check on the individual vm states

no functional change intended

ok ccardenas@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/11 13:58:02

Modified files:
	usr.sbin/vmd   : vmd.h 

Log message:
add missing comment about VM_STATE_SHUTDOWN; as discussed with ccardenas@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/11 13:59:26

Modified files:
	sys/kern       : exec_elf.c 

Log message:
wxneeded binaries on wxallowed filesystems were refused execution.  We have
encountered a wxneeded binary that attempts correct operation when started
on a nowxallowed filesystem (it tries mprotect with RWX, notices ENOTSUP
and acts in a different way).  So permit execution (but of course don't
allow W^X violating mappings)
ok sthen kettenis robert


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/11 13:59:32

Modified files:
	usr.sbin/vmd   : vm.c vmd.c 

Log message:
vm_dump_header allocated space for a signature but it was never set;
set it to VMM_HV_SIGNATURE and check for it upon restoring a vm image

ok mlarkin@ pd@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/11 14:02:00

Modified files:
	sys/uvm        : uvm_mmap.c 

Log message:
move the noise about W^X mapping failure inside the sysctl kern.wxabort
knob, since we found a proram which tests RWX mapping then changes execution
behaviour to non-W^X.
(that program is chrome, as v8 is heading towards W^X compliance with
mprotect RW/RX swaps, and also has jitless components in developent.)
ok sthen kettenis robert


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/11 14:18:18

Modified files:
	lang/gawk      : Makefile distinfo 
	lang/gawk/pkg  : PLIST 

Log message:
Update to gawk-5.0.0
Improved by me from a diff from Stephen Gregoratto
ok cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/11 14:24:55

Modified files:
	sbin/bioctl    : bioctl.c 

Log message:
Kill a couple of superfluous "return;" statements
at the end of void functions.

First one pointed out by Andrey Sokolov via bugs@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/11 14:31:53

Modified files:
	sys/dev        : softraid_raid5.c 

Log message:
Kill an unused done: label and the associated superfluous "return;"
statement at the end of a void function. All inside #if 0, so
no effect on generated code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/11 14:36:47

Modified files:
	www/chromium   : Makefile 
	www/chromium/files: chrome 

Log message:
remove the check for a wxallowed filesystem


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/11 14:37:14

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-build_config_compiler_BUILD_gn 
	                      patch-net_BUILD_gn 
	                      patch-net_base_network_change_notifier_cc 
Added files:
	www/chromium/patches: 
	                      patch-chrome_browser_plugins_plugin_info_host_impl_cc 
	                      patch-chrome_browser_ui_views_hung_renderer_view_cc 
	                      patch-components_autofill_core_browser_personal_data_manager_cc 
	                      patch-components_discardable_memory_service_discardable_shared_memory_manager_cc 
	                      patch-google_apis_gcm_engine_heartbeat_manager_cc 
	                      patch-net_base_network_change_notifier_posix_cc 
	                      patch-services_video_capture_broadcasting_receiver_cc 

Log message:
just the regular round of OS_BSD define additions for linux code


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/11 14:43:31

Added files:
	geo/merkaartor/patches: 
	                        patch-src_ImportExport_ImportExportGdal_h 

Log message:
Fix build with upcoming GDAL 3.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/11 15:02:35

Modified files:
	libexec/ld.so  : loader.c resolve.h 

Log message:
Prune visited leaves when walking dependencies to call init functions in
topological sort order, reducing it to O(n) from O(2^n) (ouch!)

diff from Nathanael Rensen (nathanael(at)list.polymorpheus.com)
Much testing and pleading by robert@ and ajacoutot@
ok drahn@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/11 15:28:08

Modified files:
	regress/sys/kern/realpath: realpathtest.c 

Log message:
let's check /bin/c++


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/11 15:32:36

Modified files:
	textproc/p5-XML-XPath: Makefile distinfo 
	textproc/p5-XML-XPath/pkg: DESCR 

Log message:
p5-XML-XPath: update to 1.44
Changelog:
https://metacpan.org/source/MANWAR/XML-XPath-1.44/Changes

tweaks and OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/11 15:39:28

Modified files:
	converters/luastruct: Makefile distinfo 

Log message:
update to luastruct-0.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/11 15:42:50

Modified files:
	cad/gtkwave    : Makefile distinfo 

Log message:
update to gtkwave-3.3.100


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/11 15:58:00

Modified files:
	devel/py-serial: Makefile distinfo 
	devel/py-serial/pkg: PLIST 
Added files:
	devel/py-serial/patches: patch-test_test_pty_py 

Log message:
Update devel/py-serial 2.7 -> 3.4

Update tested by folks in different scenarios.

Initial version by Olivier. Modified by me to re-add new HOMEPAGE
and replace eliaborate do-test dance with MODPY_PYTEST.

OK Daniel Winters (maintainer) Martin Reindl bket@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/11 16:09:48

Modified files:
	sys/arch/amd64/stand/boot: conf.c 

Log message:
whitespace removal


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/11 16:12:18

Modified files:
	sys/arch/amd64/stand/cdboot: conf.c 

Log message:
whitespace removal


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/11 16:13:26

Modified files:
	sys/arch/amd64/stand/pxeboot: conf.c 

Log message:
whitespace removal


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/11 16:42:10

Modified files:
	www/p5-XML-Atom-SimpleFeed: Makefile distinfo 

Log message:
p5-XML-Atom-SimpleFeed: update to 0.902
Changelog:
https://metacpan.org/source/ARISTOTLE/XML-Atom-SimpleFeed-0.902/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/11 17:07:46

Modified files:
	usr.sbin/vmd   : vmd.h vmd.c 
	usr.sbin/vmctl : vmctl.h vmctl.c 

Log message:
report vm state through 'vmctl status'; whereas previously this would display the state of
the vcpu (which is why it got removed), it now actually reports the correct state
(running, stopped, disabled, paused, etc)

ok ccardenas@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/11 17:27:08

Modified files:
	sys/net80211   : ieee80211_node.c 

Log message:
Show driver name on net80211 scan debug lines.
ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/11 17:36:40

Modified files:
	sys/net        : if.c 

Log message:
Correct a check in if_isconnected().

Fix a regression introduced by the bridge(4) refactoring.

Found by and ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/11 17:52:17

Modified files:
	games/pig      : pig.6 

Log message:
add an example to the man page. discovered by mlarkin


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/11 18:09:59

Modified files:
	lib/libcrypto/lhash: lhash.c 

Log message:
Stop the eyebleed in here and just use calloc


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/11 18:49:30

Modified files:
	share/man/man4 : Makefile usb.4 
Added files:
	share/man/man4 : ucrcom.4 

Log message:
add missing ucrcom page


CVSROOT:	/cvs
Module name:	www
Changes by:	jca@cvs.openbsd.org	2019/05/11 19:24:28

Modified files:
	faq            : upgrade65.html 

Log message:
samba AD DC support also broken on arm64

Confirmed by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/11 19:43:29

Modified files:
	textproc/itstool: Makefile distinfo 

Log message:
update to itstool-2.0.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/11 19:45:09

Modified files:
	sysutils/ncdu  : Makefile distinfo 

Log message:
update to ncdu-1.14


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/11 19:49:17

Modified files:
	net/py-zmq     : Makefile distinfo 

Log message:
update to py-zmq-18.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/05/11 20:08:13

Modified files:
	telephony/libosip2: Makefile 

Log message:
Drop maintainership


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/05/11 20:08:29

Modified files:
	telephony/siproxd: Makefile 

Log message:
Drop maintainership


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/11 20:21:13

Modified files:
	sys/dev/acpi   : acpi.c 

Log message:
Add support for mapping ACPI PM registers using the "extended" gasio
representation from the FADT.  Mostly fixes the Lanner NCA-1510.

ok lteo@, mlarkin@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/11 20:46:48

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/11 21:17:17

Modified files:
	productivity/gnucash: Makefile 
Added files:
	productivity/gnucash/patches: 
	                              patch-gnucash_register_register-gnome_gnucash-style_c 

Log message:
Use after free in gnucash__sheet_style_destroy (from upstream).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/11 22:04:12

Modified files:
	devel/glib2/patches: patch-meson_build 

Log message:
Link to issue URL.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/12 00:07:36

Modified files:
	games/pig      : pig.6 

Log message:
eaktway eviouspray;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/12 00:09:59

Modified files:
	share/man/man4 : usb.4 

Log message:
sort;


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/05/12 00:21:19

Modified files:
	databases/pgmodeler: Makefile distinfo 
	databases/pgmodeler/pkg: PLIST 

Log message:
Update to pgModeler 0.9.1


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/12 01:27:08

Modified files:
	usr.bin/tmux   : cmd-display-menu.c menu.c tmux.h 

Log message:
Remove menu_create_from_items, I thought I would use it for some later
work but I don't need it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 01:28:59

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
reverse doas env into env doas  for a tighter doas.conf

This requires that you allow env variables
TRUSTED_PKG_PATH and TERM in your doas.conf,
or ports install will stop working

also full path to touch

prompted by cwen@ initial touch patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 01:43:54

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
remove CACHE_PACKAGE_COOKIE (and only CACHE_PACKAGE_COOKIE) as _pfetch

problem noticed by cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 01:46:35

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
use ${PKG_ADD} directly in FETCH_PACKAGES, so we can enforce -I -x,
so working pkg_add is by default silent.

Remove the redirections to /dev/null.
When it fails, people generally want to see how it fails.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 01:50:00

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
thinko, noticed by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/12 02:00:45

Modified files:
	devel/proj     : Makefile distinfo 
	devel/proj/pkg : PLIST 

Log message:
Major update to PROJ 6.0.0.

See https://github.com/OSGeo/proj.4/releases/tag/6.0.0 for the details.
This contains an API break, and some next port updates will deal with it.

Went into some bulk builds, all tests pass. Now is the right time to put
it in to chase potential runtime regressions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/12 02:02:14

Modified files:
	devel/geotiff  : Makefile distinfo 
	devel/geotiff/pkg: PLIST 

Log message:
Update to geotiff 1.5.1.

Now depends on PROJ>=6, as it stops shipping the share/epsg_csv files
and now relies on the sqlite db shipped by PROJ.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/12 02:03:50

Modified files:
	geo/py-proj    : Makefile distinfo 
	geo/py-proj/pkg: PLIST 

Log message:
Update to py-proj 2.1.3, compatible with PROJ 6.

ok benoit@ (MAINTAINER) on a previous version


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/12 02:07:33

Modified files:
	geo/gdal       : Makefile distinfo 
	geo/gdal/patches: patch-swig_python_setup_py 
	geo/gdal/pkg   : PLIST-main PLIST-python 

Log message:
Major update to gdal 3.0.0.

See https://www.osgeo.org/foundation-news/gdal-3-0-0-is-released/

Depends on PROJ>=6 as its been updated to use the major changes that
happened there per https://trac.osgeo.org/gdal/wiki/rfc73_proj6_wkt2_srsbarn

Various betas/rcs went into some bulk builds without issues. Now is the
right time to put it in to chase potential runtime regressions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/12 02:09:53

Modified files:
	geo/py-fiona   : Makefile 

Log message:
Temporarly mark BROKEN, it builds fine with gdal 3 but will break at
runtime as it uses a removed API, per
https://github.com/Toblerity/Fiona/issues/745


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/12 02:22:18

Modified files:
	databases/sqlite3: Makefile distinfo 

Log message:
Update to sqlite 3.28.

Cf https://www.sqlite.org/releaselog/3_28_0.html
Will be a requirement for gecko 68 per #1544443

Went into a bulk build.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/05/12 02:34:26

Modified files:
	driver         : Makefile 

Log message:
Unlink a number of old video drivers from the build.

The corresponding hardware is out of date, barely useable
with modern systems and their code is not maintained.
ok sthen@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/05/12 02:34:56

Modified files:
	distrib/sets/lists/xserv: md.amd64 md.i386 md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/12 02:56:10

Modified files:
	share/man/man4 : fusbtc.4 

Log message:
new sentence, new line;


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 02:57:03

Modified files:
	infrastructure/lib/DPB: Vars.pm 

Log message:
hijack DPB::Job->cleanup_after_fork
since it cleans up more.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/12 02:58:09

Modified files:
	usr.bin/tmux   : cmd-send-keys.c key-bindings.c menu.c 
	                 mode-tree.c tmux.h window-buffer.c 
	                 window-client.c window-tree.c 

Log message:
Add simple menus to tree, client, buffer modes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/12 04:09:21

Modified files:
	www/py-genshi  : Makefile distinfo 
	www/py-genshi/pkg: PLIST 

Log message:
update to Genshi-0.7.2

while here, switch HOMEPAGE to https and use pipy


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 04:28:22

Modified files:
	infrastructure/lib/DPB: Vars.pm 

Log message:
that fork can use a cleanup_after_fork too


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 04:37:04

Modified files:
	infrastructure/bin: dpb 
	infrastructure/lib/DPB: Core.pm 

Log message:
on premature exit, try to kill our existing children by sending them
the proper signal and waiting for a bit.

Some scaffolding left (verbose) to allow more precise debugging


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 05:20:57

Modified files:
	infrastructure/lib/DPB/Job: Port.pm 

Log message:
wakemeup can contain the lock_order


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/05/12 05:27:09

Modified files:
	usr.sbin/ripd  : printconf.c 

Log message:
fix typo

OK claudio@ deraadt@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/12 05:37:15

Modified files:
	driver/xf86-video-ati/src: radeon_glamor.c 

Log message:
Revert the local change to disable glamor accel on r600 to
northern island radeons.

When this was done radeondrm was still based on linux 3.8 and Mesa was
13.0.6 without libLLVM.  Now we have a radeondrm based on linux 4.19 and
Mesa 18.3.5 built against libLLVM.

This also makes DRI3 be on by default for these parts.

discussed with kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/12 05:53:06

Modified files:
	app/xenodm/config: GiveConsole TakeConsole 

Log message:
chown the first drm render node in addition to the primary drm device
ok matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/12 05:59:49

Modified files:
	net/bitcoin    : Makefile distinfo 
	net/bitcoin/patches: patch-configure_ac patch-src_wallet_db_cpp 
	net/bitcoin/pkg: PLIST 

Log message:
Update bitcoin to 0.18.0.

Upstream changlog:

https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-0.18.0.md

Notable port changes:

- Disable BIP70, form changlog:

"A new --disable-bip70 option may be passed to ./configure to prevent
Bitcoin-Qt from being built with support for the BIP70 payment protocol
or from linking libssl. As the payment protocol has exposed Bitcoin Core
to libssl vulnerabilities in the past, builders who don't need BIP70
support are encouraged to use this option to reduce their exposure to
future vulnerabilities."

- Major lib bump: libbitcoinconsensus
- WANTLIB png clean up
- devel/protobuf is not more needed with disabled BIP70


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 06:12:53

Modified files:
	infrastructure/lib/DPB: Engine.pm PortBuilder.pm SubEngine.pm 
	                        External.pm 
	infrastructure/lib/DPB/Job: Port.pm 
	infrastructure/lib/DPB/SubEngine: Build.pm 

Log message:
new socket command: wipe fullpkgpath
locate lock, run clean on the appropriate host,
THEN remove lock and affinity information.
(this creates a temporary core that is not tracked)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/12 06:20:30

Modified files:
	share/man/man1 : dpb.1 

Log message:
document existing command status, and new command wipe
for EXTERNAL CONTROL


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/12 06:49:52

Modified files:
	lib/libc/time  : localtime.c private.h strftime.c strptime.c 
	                 wcsftime.c 

Log message:
Unifdef TM_GMTOFF TM_ZONE USG_COMPAT ALTZONE to make the code more readable.
No binary change when compiled with -g0.
Note that wcsftime.c did not even compile without TM_ZONE.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/12 07:18:58

Modified files:
	sys/sys        : proc.h 

Log message:
Document which fields are protected by the SCHED_LOCK().

ok tedu@, guenther@, ians@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/12 07:20:15

Modified files:
	x11/mate/desktop: Makefile 

Log message:
Missed bump.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/12 07:22:58

Modified files:
	net/litecoin   : Makefile distinfo 
	net/litecoin/patches: patch-configure_ac patch-src_wallet_db_cpp 

Log message:
Update litecoin to 0.17.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/12 07:36:34

Modified files:
	net/libvncserver: Makefile distinfo 
	net/libvncserver/pkg: PLIST 
Added files:
	net/libvncserver/patches: patch-CMakeLists_txt 
	                          patch-libvncclient_sasl_c 

Log message:
Update libvncserver to 0.9.12

Notable Changes:
- Move from GNU autotools to cmake.
- Take the same cmake configure args from  Net and FreeBSD (more or less)
- Add patch to avoid links with shared libs
- bump SHARED_LIBS

Tested by Tracey Emery. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 07:39:46

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
try to avoid thinko, give me a fullpkgpath getter
mark that "cleaned" is (more or less) finished


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/12 08:04:11

Modified files:
	productivity/tryton: Makefile 

Log message:
hook 5.2 serie of tryton

ok aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 08:09:11

Modified files:
	infrastructure/lib/DPB: External.pm Locks.pm PortBuilder.pm 
	infrastructure/lib/DPB/Job: Port.pm 
	infrastructure/lib/DPB/SubEngine: Build.pm 

Log message:
rename "finished" to "errored" so it has clearer semantics

modify the PortBuilder -> Job::Port interface so that differences
are obvious.

tweak wipe to avoid wiping what we're currently actually running,
and also clean the "right" flavor in case we gave a wrong pkgpath name.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/12 08:56:24

Modified files:
	lib/libdrm     : xf86drm.c 

Log message:
open correct render node in libdrm

drm render nodes have the same major as drm primary devices but offset
the minor by a base of 128.

I expected the name of the device to have numbering starting at 0 when
these non-linux codepaths were added (before we had render nodes).


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2019/05/12 08:57:30

Modified files:
	distrib/syspatch: diff.sh 

Log message:
use readlink(1) on each file that we think is different to ensure that
only the resolved path is included

ok ajacoutot@, tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/12 09:02:05

Modified files:
	devel/p5-Test-MockObject: Makefile distinfo 

Log message:
p5-Test-MockObject: update to 1.20180705
Changelog:
https://metacpan.org/changes/release/CHROMATIC/Test-MockObject-1.20180705

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/12 09:06:58

Modified files:
	etc/etc.amd64  : fbtab 
	etc/etc.arm64  : fbtab 
	etc/etc.i386   : fbtab 
	etc/etc.loongson: fbtab 
	etc/etc.macppc : fbtab 
	etc/etc.sparc64: fbtab 

Log message:
Add first drm render node to list of devices to change when logging in
on ttyC0.  While here add drm0 to loongson and add the complete set of
wscons and drm devices to arm64.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/12 09:11:01

Modified files:
	devel/p5-Test-NoTabs: Makefile distinfo 

Log message:
update p5-Test-NoTabs to 2.02
Changelog:
https://metacpan.org/changes/release/ETHER/Test-NoTabs-2.02

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/05/12 09:17:26

Log message:
    Import audio/libcdio-paranoia.
    
    This is part of the effort to update our very old libcdio port.
    
    In newer versions of libcdio, the cdparanoia bits were split off into
    a separate package. This new port is exactly that.
    
    Tested and OK cwen@, thanks!
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20190512
    
    N ports/audio/libcdio-paranoia/distinfo
    N ports/audio/libcdio-paranoia/Makefile
    N ports/audio/libcdio-paranoia/pkg/DESCR
    N ports/audio/libcdio-paranoia/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/05/12 09:26:07

Modified files:
	audio/aqualung : Makefile 
	audio/audacious-plugins: Makefile 
	audio/cantata  : Makefile 
	audio/cmus     : Makefile 
	audio/libcdio  : Makefile distinfo 
	audio/libcdio/pkg: PLIST 
	audio/mpd      : Makefile 
	graphics/vcdimager: Makefile distinfo 
	multimedia/mpv : Makefile 
Added files:
	audio/libcdio/patches: patch-configure 
Removed files:
	audio/libcdio/files: openbsd.c 
	audio/libcdio/patches: patch-config_h_in patch-configure_ac 
	                       patch-include_cdio_device_h 
	                       patch-lib_driver_Makefile_in 
	                       patch-lib_driver_cdio_private_h 
	                       patch-lib_driver_device_c 

Log message:
Update audio/libcdio to version 2.1.0.

Also fix fallout.

I've been working with upstream to have the NetBSD driver work on both
NetBSD *and* OpenBSD, and here it is.

Thanks to upstream for helping, particularly Rocky Bernstein and Thomas
Schmitt!

Tested and OK cwen@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2019/05/12 09:30:18

Modified files:
	distrib/syspatch: bsd.syspatch.mk 

Log message:
exit early if the errata name is invalid to avoid building a syspatch
that cannot be installed


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/12 09:43:45

Modified files:
	editors/TeXmacs: Makefile distinfo 
	editors/TeXmacs/patches: patch-src_Plugins_Qt_qt_gui_cpp 
	editors/TeXmacs/pkg: PLIST 
Added files:
	editors/TeXmacs/patches: patch-CMakeLists_txt 
	                         patch-misc_CMakeLists_txt 
Removed files:
	editors/TeXmacs/patches: patch-Makefile_in patch-aclocal_m4 
	                         patch-configure_in 
	                         patch-src_Plugins_Pdf_PDFWriter_PDFDocumentHandler_cpp 
	                         patch-src_Plugins_Unix_unix_sys_utils_cpp 
	                         patch-src_System_Link_pipe_link_cpp 

Log message:
Update TeXmacs to 1.99.9

Upstream switched form Qt4 to Qt5 and from autotools to CMake.
Added Nam Nguyen as maintainer. Thank you for taking care of this!

Initial diff from me, tweaked and newer diff from jca@. OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/12 09:52:46

Modified files:
	lib/libcrypto/evp: e_aes.c 

Log message:
Revert the other hunk of r1.36 as well: in the case of CCM, ccm.key is
assigned from aesni_ccm_init_key() via CRYPTO_ccm128_init(), so it needs
to be copied over...

Pointed out by Guido Vranken.

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/12 09:52:52

Modified files:
	sys/dev/acpi   : acpi.c 

Log message:
Make sure the extended PM register descriptions actually exist before
using them.  Fixes machines with ancient ACPI 1.0 (such as recent
hypervisors).

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/12 09:52:53

Modified files:
	graphics/orthanc/server: Makefile 

Log message:
no need to escape the question mark in MASTER_SITES anymore \?

prompted by espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/12 09:53:55

Modified files:
	sysutils/borgmatic: Makefile distinfo 
	sysutils/borgmatic/pkg: PLIST 

Log message:
update to borgmatic-1.3.3

from Tom Murphy


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/12 09:56:31

Modified files:
	lib/libcrypto/asn1: t_crl.c 

Log message:
Fix signed overflow in X509_CRL_print().

fixes oss-fuzz #14558

ok beck jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/12 09:56:45

Modified files:
	multimedia/gstreamer1: Makefile.inc 
	multimedia/gstreamer1/mm: Makefile 

Log message:
Pick the appropriate compiler throughout the gstreamer1 directory:
* clang architectures use base-clang
* non-clang architectures use ports-gcc for the mm port, base-gcc otherwise
* powerpc uses ports-gcc for all ports

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/12 09:56:56

Modified files:
	lib/libz       : zconf.h zlib.h 
	sys/lib/libz   : zconf.h zlib.h 

Log message:
Add ZLIB_CONST

Introduced in zlib-1.2.5.2, used by a few ports.  ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/12 10:07:04

Modified files:
	multimedia/synfig: Makefile 
	textproc/mupdf : Makefile 
	textproc/mupdf/patches: patch-source_fitz_compress_c 
	geo/pdal       : Makefile 
Removed files:
	multimedia/synfig/patches: patch-src_synfig_zstreambuf_cpp 
	geo/pdal/patches: patch-vendor_arbiter_arbiter_hpp 

Log message:
Drop z_const patches and unbreak geo/pdal on ports-gcc

Note: needs zlib headers with the ZLIB_CONST addition


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/12 10:10:08

Added files:
	distrib/hppa/ramdisk: list 
Removed files:
	distrib/hppa/ramdisk: list.local 

Log message:
The list + list.local approach is only needed if an architecture builds
multiple bsd.rd.  hppa builds one.  Fold into one file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/12 10:15:29

Modified files:
	security/p5-Net_SSLeay: Makefile distinfo 
Removed files:
	security/p5-Net_SSLeay/patches: patch-SSLeay_xs 
	                                patch-t_local_33_x509_create_cert_t 

Log message:
update p5-Net-SSLeay to 1.88


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/12 10:24:04

Modified files:
	devel/glib2/patches: patch-glib_gfileutils_c patch-glib_gutils_c 

Log message:
Add link to merge requests.


CVSROOT:	/cvs
Module name:	src
Changes by:	akoshibe@cvs.openbsd.org	2019/05/12 10:24:44

Modified files:
	sys/net        : if_switch.c 

Log message:
Unused switch_port variable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/12 10:29:44

Modified files:
	comms/owx      : Makefile 
	x11/xcalib     : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/12 10:33:48

Modified files:
	x11/iwidgets   : Makefile 

Log message:
Remove maintainer whose address bounces


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/12 10:36:30

Modified files:
	sys/arch/arm64/dev: agintc.c 

Log message:
Between the broken GIC-500 on the RK3399 and differences in the secure mode
configuration done by TF-A between boards we have to shift the priorities
that we use for both the architected ICC_PMR_EL1 register and the
memory mapped priority registers on the GIC in different ways.  Make this
explicit in the code and try to handle all the cases we care about.
This includes QEMU and RK3399 boards that still use the TF-A version
provided by Rockchip.

Seems to make the rockpro64 run stable with a GENERIC kernel.

ok drahn@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 10:37:52

Modified files:
	infrastructure/lib/DPB: Locks.pm 

Log message:
lock parsing errors should not happen, put them in debug.log along with other
generic debug info.


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/05/12 10:38:02

Modified files:
	sys/net        : if.c if_bridge.c if_tun.c switchctl.c 

Log message:
pushing NET_LOCK() further down from if_clone_{create,destroy}()

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/12 10:38:14

Modified files:
	share/man/man1 : dpb.1 

Log message:
document log reading errors


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/12 10:38:16

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 

Log message:
Avoid configuring ports without trying to find depends in portgen

Especially python setup.py ports that try to download depends themselves.

OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/12 10:40:55

Modified files:
	devel/catch2   : Makefile distinfo 

Log message:
Update catach2 to 2.7.2

Switch from py2 to py3 at build time.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/12 10:53:21

Modified files:
	converters     : Makefile 
Removed files:
	converters/py-amf: Makefile distinfo 
	converters/py-amf/pkg: DESCR PLIST 

Log message:
Remove py-amf

It was used by multimedia/yle-dl but it switched to py-mini-amf.
Suggested by maintainer Timo Myyra


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/12 10:54:07

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register py-amf removal


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/12 10:55:11

Modified files:
	share/man/man7 : hostname.7 

Log message:
Delete documentation of the former HOSTALIASES features
which was removed in libc/asr/asr.c rev. 1.50 in 2015.
Smaller version of a patch
posted by Hiltjo Posthuma <hiltjo at codemadness dot org>.
No objection was raised when shown on tech@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/12 11:08:14

Modified files:
	share/man/man4 : drm.4 

Log message:
mention render node device files


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/12 11:30:56

Modified files:
	astro/kstars   : Makefile distinfo 

Log message:
Update kstars to 3.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 11:42:14

Modified files:
	lib/libutil    : ber.c 

Log message:
In long form encoding, explicitly prohibit an initial length octet of 0xff
which is reserved for future use.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/12 11:44:25

Modified files:
	regress/sys/kern/sigprof: Makefile 

Log message:
Remove redundant settings.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 11:50:32

Modified files:
	lib/libutil    : ber.c 

Log message:
Enforce minimal number of octets for tag > 30.

"sure" claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/12 11:58:20

Modified files:
	security/nss   : Makefile distinfo 
Added files:
	security/nss/patches: patch-nss_lib_freebl_crypto_primitives_c 

Log message:
Update to nss 3.44, will be a requirement for gecko 68.

See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.44_release_notes
Add a patch from FreeBSD via https://bugzilla.mozilla.org/show_bug.cgi?id=1551041
to fix the build on big-endian.

thanks to cwen@ for testing on macppc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/12 11:58:45

Modified files:
	security/p5-IO-Socket-SSL: Makefile distinfo 
Removed files:
	security/p5-IO-Socket-SSL/patches: patch-lib_IO_Socket_SSL_pm 

Log message:
update p5-IO-Socket-SSL to 2.066


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 12:11:51

Modified files:
	lib/libutil    : ber.c 

Log message:
Fail early if a (universal) primitive type identifies as constructed, or if a
boolean has a contents length other than 1.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/12 12:12:38

Modified files:
	sbin/ifconfig  : ifconfig.8 
	sys/dev/ic     : if_wi.c 
	sys/net80211   : ieee80211_input.c ieee80211_ioctl.c 
	                 ieee80211_ioctl.h ieee80211_output.c 
	                 ieee80211_var.h 

Log message:
Fix 'ifconfig nwflags; These flags ended up overlapping with other flags
in ieee80211com's ic_flags because we haven't been paying attention to
them (they're not in the same place in the code and hence easy to miss).
Move them to a dedicated variable to avoid this problem in the future.

Add a new 'stayauth' nwflag which can be set to let net80211 ignore
deauth frames. This can be useful when deauth frames are being
persistently spoofed by an attacker. Idea from beck@

ok beck@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/12 12:16:33

Modified files:
	usr.bin/tmux   : cmd-show-options.c mode-tree.c options.c 
	                 server-client.c style.c window-copy.c 

Log message:
Fix some indentation and dead assignments.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/12 12:18:30

Modified files:
	usr.bin/tmux   : cmd-show-options.c 

Log message:
Oops, removed too much in last change.


CVSROOT:	/cvs
Module name:	src
Changes by:	tim@cvs.openbsd.org	2019/05/12 12:52:44

Modified files:
	etc/rc.d       : nsd 

Log message:
Stop generating keys for nsd-control(8). These are unused since nsd was
switched to using a local control socket by default.

OK florian@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 13:29:41

Modified files:
	lib/libutil    : ber.3 

Log message:
Mention #include of <sys/types.h> in synopsis.

Discussed with claudio@ and tedu@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/12 13:34:07

Modified files:
	devel/pycharm  : Makefile distinfo 

Log message:
Update pycharm to 2019.1.2


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/12 13:43:34

Modified files:
	sys/kern       : vfs_lockf.c 

Log message:
no need to store the wmesg passed to rwsleep() as a static variable anymore


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/12 13:53:22

Modified files:
	sys/net        : bridgectl.c if_bridge.c if_bridge.h 

Log message:
Switch the list of span interfaces and interfaces to SMR.

This removes the KERNEL_LOCK() around the list iteration in bridge_enqueue().

Since the NET_LOCK() isn't protecting any data structure, release it early
in all the code paths coming from the Network Stack to prevent possible
deadlock situations with smr_barrier().

bridge_input() is still KERNEL_LOCK()ed as well as bridge_filterrule().

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/12 14:12:25

Modified files:
	sys/dev/pci/drm/include/linux: interrupt.h 

Log message:
remove unused STUB definition


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 14:13:08

Modified files:
	lib/libutil    : ber.c 

Log message:
Enforce smallest number of contents octets for int (and enum).

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 14:19:37

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Test mandatory use of minimal contents octets for int and enum.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/12 14:23:33

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Dependency.pm 
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Improve complex dependency version understaning in portgen

While here, improve python test dependency detection.

OK cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 14:25:10

Modified files:
	lib/libutil    : ber.c 

Log message:
Enable support for the writting of BITSTRING by treating it as an OCTETSTRING.

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/12 14:40:20

Modified files:
	infrastructure/bin: check-lib-depends 

Log message:
I wouldn't put PORTSDIR_PATH in my environment instead of
/etc/mk.conf, but... why not ?

allow passing it thru, solving naddy@'s problem


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/05/12 14:44:39

Modified files:
	distrib/special/ftp: Makefile 
	distrib/special/ftp-ssl: Makefile 
	usr.bin/ftp    : Makefile ftp.1 ftp.c main.c util.c 
Added files:
	usr.bin/ftp    : cmd.c file.c ftp.h http.c progressmeter.c url.c 
	                 xmalloc.c xmalloc.h 
Removed files:
	usr.bin/ftp    : cmds.c cmds.h cmdtab.c complete.c cookie.c 
	                 domacro.c extern.h fetch.c ftp_var.h list.c 
	                 pathnames.h ruserpass.c small.c small.h 
	                 stringlist.c stringlist.h 

Log message:
Move us from old ftp(1) to Sunil's new ftp(1). The necessary modifications
have been made to make it behave. Any new misbehaviors can be fixed in tree.

OK florian@ deraadt@ "Have you committed ftp yet?"


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 14:55:09

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Add test cases for enum, and an additional test for null.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 14:56:11

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Remove a now obsolete comment about BITSTRING.


CVSROOT:	/cvs
Module name:	src
Changes by:	pd@cvs.openbsd.org	2019/05/12 14:56:34

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: vmmvar.h 
	usr.sbin/vmd   : vm.c 

Log message:
vmm: add a x86 page table walker

Add a first cut of x86 page table walker to vmd(8) and vmm(4).  This function is
not used right now but is a building block for future features like HPET, OUTSB
and INSB emulation, nested virtualisation support, etc.

With help from Mike Larkin

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/12 14:58:19

Modified files:
	usr.bin/ftp    : Makefile cmd.c file.c ftp.1 ftp.c ftp.h http.c 
	                 main.c progressmeter.c url.c util.c 

Log message:
add rcs ids


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/12 15:01:46

Modified files:
	usr.sbin/pppd  : Makefile 

Log message:
remove .PATH. this was used in previous eras to build bpf compiler stuff,
that's all used via libpcap now.
found by deraadt ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/12 15:03:17

Modified files:
	usr.bin/ftp    : ftp.1 

Log message:
It will show up in 6.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/12 15:27:47

Modified files:
	sys/arch/amd64/include: frameasm.h 

Log message:
s/availible/available/


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/12 15:28:50

Modified files:
	x11/gnome/gdm  : Makefile 
	x11/gnome/gdm/patches: patch-common_gdm-address_c 
	                       patch-data_Init_in 
	                       patch-data_PostSession_in 
	                       patch-data_PreSession_in 
	x11/gnome/gdm/pkg: gdm.rc 

Log message:
Merge the recent changes from GiveConsole/TakeConsole.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/12 15:30:48

Modified files:
	usr.bin/ftp    : main.c 

Log message:
Repair ftp -o - and thus pkg_add: print informational messages on stderr

ok florian@ espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/12 15:49:52

Modified files:
	usr.bin/ftp    : main.c 

Log message:
zap confusing unneeded parameters
okay jca@, jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/05/12 15:56:27

Modified files:
	usr.bin/ftp    : progressmeter.c 

Log message:
Make the "xx bytes received in y time" message go to the right place
by using the login_info() function the other messages use.

OK florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/12 15:56:55

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/patches: patch-client_CMakeLists_txt 
	                           patch-cmake_install_macros_cmake 
	                           patch-cmake_mysql_version_cmake 
	                           patch-scripts_CMakeLists_txt 
	                           patch-scripts_mysql_install_db_sh 
	                           patch-scripts_mysqld_safe_sh 
	                           patch-sql_CMakeLists_txt 
	                           patch-storage_oqgraph_CMakeLists_txt 
	                           patch-tests_CMakeLists_txt 
	databases/mariadb/pkg: PLIST-main PLIST-server PLIST-tests 
Added files:
	databases/mariadb/patches: patch-client_mysqladmin_cc 
	                           patch-libmariadb_libmariadb_CMakeLists_txt 
	                           patch-libmariadb_libmariadb_ma_charset_c 
	                           patch-libmariadb_mariadb_config_mariadb_config_c_in 
	                           patch-libmariadb_unittest_libmariadb_CMakeLists_txt 
	                           patch-man_mysqladmin_1 
	                           patch-scripts_mysql_config_sh 
Removed files:
	databases/mariadb/patches: patch-libmysql_CMakeLists_txt 

Log message:
Major upgrade to mariadb-10.2.23

Some config options have changed or have been removed, check your config
file.  Also make sure to use mysql_upgrade.

Update effort started by jeremy@, continued by sthen@ and me.  Delayed
for some time because of lack of atomic builtins on lots of our base-gcc
platforms.  Since we now use ports-gcc to build mariadb, this is not
a problem any more.

This update brings in libiconv and changes the name of the library.
Stuart kindly proposed to handle the WANTLIB syncing.

Test reports for the server from jcs@ and sthen@.
ok sthen@, "go ahead" Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/12 16:00:52

Modified files:
	devel/spice-protocol: Makefile 
	devel/spice-protocol/patches: patch-spice_macros_h 

Log message:
Fix gcc version check to unbreak on base-gcc platforms

The __builtin_bswap* functions have only been introduced in gcc-4.5, not
gcc-4.0.  ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/12 16:03:53

Modified files:
	devel/glib2    : Makefile 
	devel/glib2/patches: patch-meson_build 

Log message:
Tweak types detection, make gint64 and int64_t match on 64 bits base-gcc archs.

Fixes www/webkitgtk4 on sparc64.  Help and ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 16:12:16

Modified files:
	regress/lib/libutil/ber: Makefile 

Log message:
Use .OBJDIR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/12 16:15:57

Modified files:
	multimedia/yle-dl: Makefile distinfo 
	multimedia/yle-dl/pkg: PLIST 
Removed files:
	multimedia/yle-dl/patches: patch-setup_py 

Log message:
update to yle-dl-20190502, from maintainer Timo Myyr��


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/12 16:17:25

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Add an enum test. Modify some output.


CVSROOT:	/cvs
Module name:	www
Changes by:	naddy@cvs.openbsd.org	2019/05/12 16:18:16

Modified files:
	.              : 65.html 

Log message:
powerpc package count


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/12 16:23:38

Modified files:
	sys/arch/amd64/amd64: locore.S machdep.c 
	sys/arch/amd64/include: cpu.h 

Log message:
Delete cpu_idle_{enter,leave}_fcn() as unused.  Add RETGUARD checks to
cpu_idle_cycle()

ok mpi@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/12 16:25:45

Log message:
    Import devel/p5-forks
    
    OK cwen
    
    The forks.pm module is a drop-in replacement for threads.pm.  It has the
    same syntax as the threads.pm module (it even takes over its namespace) but
    has some significant differences:
    
    - you do _not_ need a special (threaded) version of Perl
    - it is _much_ more economic with memory usage on OS's that support COW
    - it is more efficient in the startup of threads
    - it is slightly less efficient in the stopping of threads
    - it is less efficient in inter-thread communication
    
    If for nothing else, it allows you to use the Perl threading model in
    non-threaded Perl builds and in older versions of Perl (5.6.0 and
    higher are supported).
    
    Status:
    
    Vendor Tag:	kn
    Release Tags:	kn_20190513
    
    N ports/devel/p5-forks/Makefile
    N ports/devel/p5-forks/distinfo
    N ports/devel/p5-forks/pkg/DESCR
    N ports/devel/p5-forks/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/12 16:28:08

Modified files:
	devel          : Makefile 

Log message:
+ p5-forks


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/12 16:46:58

Modified files:
	devel/meson    : Makefile 
	devel/meson/patches: patch-run_unittests_py 

Log message:
Adapt to our different pkg-config(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/12 16:48:03

Modified files:
	usr.bin/ftp    : http.c 

Log message:
Fix double free by nulling out pointers after free.

from florian, ok jca


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/12 17:32:42

Modified files:
	libexec/ld.so  : loader.c 

Log message:
Indentation fix


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/12 18:07:05

Modified files:
	gnu/llvm/tools/lld/ELF: Driver.cpp 

Log message:
Add support for -znoretpolineplt and make -zretpolineplt the default.
Affects i386 and amd64 only.

ok deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/12 18:21:29

Modified files:
	infrastructure/lib/OpenBSD/PortGen: License.pm 

Log message:
Adding ISC license to the list of "good" licenses.

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/12 19:30:05

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 

Log message:
portgen: bring back camel-cased port names for Perl

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/12 20:09:15

Modified files:
	x11/mate/caja-extensions: Makefile 

Log message:
bump pkg, missed in previous commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/12 20:11:10

Modified files:
	devel/meson/patches: patch-run_unittests_py 

Log message:
Merged upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/12 20:25:16

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Use the same heuristic as the installer to find a proper prefetch area for the
sets instead of hardcoding /home. This leads the way to a knob for manually
choosing a sets directory if we want that.

Create /auto_upgrade.conf that will get picked up by the installer for the
unattended upgrade mode.

Similar inputs from naddy@ and kn@
ok florian@ kmos@ kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/12 20:26:42

Modified files:
	distrib/miniroot: install.sub 

Log message:
Fix usage() (missing '-x').
Adapt to recent sysupgrade(8) change

ok florian@ kmos@ kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/12 20:51:54

ports/databases/mariadb/files

Update of /cvs/ports/databases/mariadb/files
In directory cvs.openbsd.org:/tmp/cvs-serv58996/files

Log Message:
Directory /cvs/ports/databases/mariadb/files added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/12 20:54:54

Modified files:
	regress/lib/libc/open_memstream: open_memstreamtest.c 

Log message:
The call to fseek(fp, -1, SEEK_END) also sets the reported size to
this value.  To match the expectation of the test again, move this
line before the the code that sets the final position.
OK yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/12 21:13:29

Modified files:
	sys/arch/arm64/include: armreg.h 

Log message:
Add the needed ICC_PMR_EL1 register bit defines for the previous
commit to unbreak the build.

from kettenis@
ok drahn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pamela@cvs.openbsd.org	2019/05/12 21:25:18

Modified files:
	www/py-bottle  : Makefile distinfo 

Log message:
Update www/py-bottle to 0.12.16
based on diff from wen heping, I added tests
OK jca phessler


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/12 21:53:22

Modified files:
	databases/mariadb: Makefile 

Log message:
Zap a stray backslash


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2019/05/12 22:02:31

Modified files:
	net/pbgpp      : Makefile distinfo 
	net/pbgpp/patches: patch-pbgpp_Application_Handler_py 
	net/pbgpp/pkg  : PLIST 

Log message:
update pbgpp to latest version

set NO_TESTS because the tests require a configured service, which has also
been previously forcibly disabled.

OK pamela@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/12 22:18:39

Removed files:
	net/libvncserver/patches: patch-Makefile_am 

Log message:
Unbreak, patch should have been deleted in the update to 0.9.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/12 22:33:41

Log message:
    Import t-prot 3.4
    
    t-prot (TOFU Protection) is a filter which improves the readability of
    email messages and Usenet posts by hiding some of their annoying parts.
    The annoyances it handles include mailing list footers, signatures,
    TOFU, sequences of blank lines, and repeated punctuation. TOFU is an
    acronym that stands for "Text oben, Fullquote unten", a German reference
    to the practice of adding just a few lines of original text and quoting
    a complete message below them.
    
    OK kmos@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190512
    
    N ports/mail/t-prot/Makefile
    N ports/mail/t-prot/distinfo
    N ports/mail/t-prot/pkg/DESCR
    N ports/mail/t-prot/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/12 22:34:38

Modified files:
	mail           : Makefile 

Log message:
+t-prot


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/13 00:04:55

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
Mention introduction of *_conceal.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/05/13 01:24:50

Modified files:
	usr.sbin/snmpd : snmpe.c 

Log message:
According to RFC3414 section 4 applications should be able to discover the
snmpEngineID by sending a noAuthNoPriv request. Move the seclevel check to
after the usm_decode phase, so we can reply with the mandatory
usmStatsUnknownEngineIDs instead of usmStatsUnsupportedSecLevels.

This brings us one step closer to using p5-Net-SNMP with seclevel enc.

OK tb@, rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/05/13 01:33:23

Modified files:
	usr.sbin/snmpd : usm.c 

Log message:
According to RFC3414 section 4 applications should be able to discover the
snmpEngineBoots and snmpEngineTime by sending an AuthPriv request with the
requested values set to zero and with a valid user.

Move the engine_boots and engine_time down after the user check and remove
the 0-check, so we can reply with the appropriate usmStatsNotInTimeWindows.

This allows us to use p5-Net-SNMP against snmpd with seclevel enc.

OK rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/13 02:56:07

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Fix column width for copy mode commands.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/13 03:00:22

Modified files:
	www/py-genshi/pkg: PLIST 

Log message:
unbreak py-genshi

PLIST for py-genshi isn't the same than py3-genshi.
diff from sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/13 03:54:07

Modified files:
	usr.sbin/relayd: relay.c relay_http.c relayd.h util.c 

Log message:
Fix filter rules with "forward to" statement in persistent connections.

OK bentley@ mikeb@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/13 04:00:29

Modified files:
	regress/lib/libutil: Makefile 

Log message:
Hookup ber regress.

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/13 05:01:10

Modified files:
	net/arp-scan   : Makefile distinfo 

Log message:
update mac-vendor db


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/13 06:05:04

Modified files:
	lib/libcrypto  : Tag: OPENBSD_6_5 opensslv.h 

Log message:
LibreSSL 2.9.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/13 06:25:49

Modified files:
	devel/p5-Test-Spelling: Makefile distinfo 

Log message:
p5-Test-Spelling: update to 0.22
Changelog:
https://metacpan.org/release/CAPOEIRAB/Test-Spelling-0.22

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/13 06:28:02

Modified files:
	devel/p5-File-Copy-Recursive: Makefile distinfo 

Log message:
p5-File-Copy-Recursive: update to 0.44
Changelog:
https://metacpan.org/source/DMUEY/File-Copy-Recursive-0.44/Changes

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	abieber@cvs.openbsd.org	2019/05/13 06:31:56

Modified files:
	sys/arch/sgi/hpc: wskbdmap_sgi.c 

Log message:
regen (missed this when I did the colemak update)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/13 06:33:58

Modified files:
	devel/p5-Carp-Assert-More: Makefile distinfo 

Log message:
p5-Carp-Assert-More: update to 1.16
Changelog:
https://metacpan.org/source/PETDANCE/Carp-Assert-More-1.16/Changes

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/13 06:37:59

Modified files:
	devel/p5-Test-WWW-Mechanize: Makefile distinfo 

Log message:
p5-Test-WWW-Mechanize: update to 1.52
Changelog:
https://metacpan.org/source/PETDANCE/Test-WWW-Mechanize-1.52/Changes

tweaks and OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/13 06:40:14

Modified files:
	devel/p5-Test-URI: Makefile distinfo 

Log message:
p5-Test-URI: update to 1.082
Changelog:
https://metacpan.org/changes/release/BDFOY/Test-URI-1.082

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/13 06:42:18

Modified files:
	textproc/p5-Pod-Tests: Makefile distinfo 
	textproc/p5-Pod-Tests/pkg: DESCR 

Log message:
p5-Pod-Tests: update to 1.20
Changelog:
https://metacpan.org/changes/release/ETHER/Pod-Tests-1.20

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/05/13 06:58:58

Modified files:
	lang/sbcl      : Makefile distinfo 
	lang/sbcl/pkg  : PLIST 
Removed files:
	lang/sbcl/patches: patch-src_compiler_generic_genesis_lisp 
	                   patch-src_compiler_x86_parms_lisp 
	                   patch-src_runtime_Config_x86-openbsd 
	                   patch-src_runtime_run-program_c 
	                   patch-tests_run-compiler_sh 

Log message:
Update to sbcl-1.5.2

From maintainer joshe@
Re-enable -threads flavor


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/05/13 07:47:36

Modified files:
	usr.sbin/bgpd  : rde_update.c 

Log message:
fix export default-route.

OK claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 07:59:38

Modified files:
	audio/mpd      : Makefile 

Log message:
Unbreak: missed bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/13 08:10:36

Log message:
    Bring back tidy as it is now maintained.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	abieber
    Release Tags:	abieber_20190513
    
    C ports/www/tidy/Makefile
    C ports/www/tidy/distinfo
    C ports/www/tidy/pkg/DESCR
    C ports/www/tidy/pkg/PLIST
    
    4 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jabieber:yesterday -jabieber ports/www/tidy

CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/13 08:11:20

Modified files:
	lib/libc/net   : resolver.3 

Log message:
explicitly mention that RES_NOALIASES has no effect;
jmc@ noticed that the text wasn't completely clear;
OK jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/13 08:27:23

Added files:
	www/tidy       : Makefile distinfo 
	www/tidy/pkg   : DESCR PLIST 

Log message:
Bring back tidy as it is now maintained.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/13 08:30:17

Modified files:
	www/tidyp      : Makefile 
	www/tidyp/pkg  : PLIST 

Log message:
Bump REVISION for tidyp (we have tidy again):

- remove tidy symlink
- remove conflict marker

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/13 08:31:48

Modified files:
	www            : Makefile 

Log message:
+ tidy


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/13 09:08:50

Log message:
    import wireguard-go-0.0.20190409
    
    wireguard-go is a userland implementation of WireGuard in Go; WireGuard
    ia simple yet fast modern VPN.
    
    based on the initial port by bentley@
    ok sthen@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20191305
    
    N ports/net/wireguard-go/Makefile
    N ports/net/wireguard-go/distinfo
    N ports/net/wireguard-go/pkg/README
    N ports/net/wireguard-go/pkg/PLIST
    N ports/net/wireguard-go/pkg/DESCR
    N ports/net/wireguard-go/pkg/wireguard_go.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/13 09:10:30

Log message:
    import wireguard-tools-0.0.20190406
    
    WireGuard is an extremely simple yet fast and modern VPN that utilizes
    state-of-the-art cryptography.
    
    based on the initial port by bentley@
    ok sthen@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20191305
    
    N ports/net/wireguard-tools/Makefile
    N ports/net/wireguard-tools/distinfo
    N ports/net/wireguard-tools/pkg/PLIST
    N ports/net/wireguard-tools/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/13 09:12:07

Modified files:
	net            : Makefile 

Log message:
+wireguard-{go,tools}


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/13 09:19:16

Modified files:
	usr.sbin/relayd: relay_http.c 

Log message:
Add Connection: close when switching to "unlimited" reading mode.

Ask the server to close the connection after the request since we
don't read any further request headers.  This fixes an issue with
OPTIONS and optional body, as well as similar cases.

Reported and tested by Rivo Nurges

OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 09:30:05

Modified files:
	net/wireguard-go: Makefile 
	net/wireguard-go/pkg: DESCR 

Log message:
Typo.

ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	pd@cvs.openbsd.org	2019/05/13 09:40:34

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: vmmvar.h 
	sys/dev/pv     : pvbus.c pvclock.c pvreg.h 

Log message:
vmm: add host side pvclock

Emulate kvm pvclock in vmm(4).  Compatible with pvclock(4) in OpenBSD.  Linux
does not attach to this (yet).

Fixes by reyk@ and tested extensively by reyk@, tb@ and phessler@

ok mlarkin@ phessler@ reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/13 10:04:49

Modified files:
	usr.bin/ftp    : ftp.c 

Log message:
ephermal -> ephemeral

From Hiltjo Posthuma


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/13 10:23:15

Modified files:
	sys/dev/pci/drm/include/linux: idr.h 

Log message:
add idr_is_empty()


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/13 10:46:23

Modified files:
	graphics/fswebcam: Makefile 
	mail/p5-Email-Received: Makefile 
	sysutils/firmware/acx: Makefile 
	sysutils/firmware/bwi: Makefile 
	sysutils/firmware/malo: Makefile 
	sysutils/firmware/pgt: Makefile 
	sysutils/firmware/upgt: Makefile 
	sysutils/firmware/uvideo: Makefile 
	sysutils/stan  : Makefile 
	sysutils/sunxi-tools: Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/13 11:00:12

Modified files:
	usr.bin/sort   : coll.c coll.h sort.1 sort.c 

Log message:
Delete tentacles of LC_NUMERIC support.
Our libc doesn't support that now and won't in the future.
Minus ~90 lines of code, no functional change.
OK tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/13 11:15:40

Modified files:
	security/aircrack-ng: Makefile 
Added files:
	security/aircrack-ng/patches: patch-src_aircrack-osdep_openbsd_c 

Log message:
Unbreak on sparc64, where <machine/intr.h> can't be included from userland

ok benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/13 11:18:10

Modified files:
	lib/libc/gen   : nlist.c 

Log message:
The fd used by nlist() isn't application visible, so mark it close-on-exec
to avoid leaking it

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/13 11:31:51

Modified files:
	sys/kern       : kern_descrip.c 

Log message:
dup2(n,n) would rlimit check before handling the n==n shortcut,
and incorrectly return EBADF when n>curlim.
ok millert guenther tedu


CVSROOT:	/cvs
Module name:	ports
Changes by:	ian@cvs.openbsd.org	2019/05/13 11:52:59

Modified files:
	textproc/idiff : Makefile distinfo 
Removed files:
	textproc/idiff/patches: patch-idiff_1 patch-idiff_c 
	                        patch-testdata1 patch-testdata2 

Log message:
Upgrade idiff to 1.1; incorporates patches. Help & OK kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/13 12:06:44

Modified files:
	devel/ectags   : Makefile 
	devel/py-appdirs: Makefile 
	devel/py-astroid: Makefile 
	devel/py-babel : Makefile 
	devel/py-backports: Makefile 
	devel/py-backports-functools-lru-cache: Makefile 
	devel/py-backports-shutil-get-terminal-size: Makefile 
	devel/py-backports-ssl-match-hostname: Makefile 
	devel/py-cairocffi: Makefile 
	devel/py-codestyle: Makefile 
	devel/py-configparser: Makefile 
	devel/py-country: Makefile 
	devel/py-dateutil: Makefile 
	devel/py-decorator: Makefile 
	devel/py-entrypoints: Makefile 
	devel/py-enum34: Makefile 
	devel/py-funcsigs: Makefile 
	devel/py-hypothesis: Makefile 
	devel/py-ipython_genutils: Makefile 
	devel/py-isort : Makefile 
	devel/py-lazy-object-proxy: Makefile 
	devel/py-logilab-common: Makefile 
	devel/py-nbconvert: Makefile 
	devel/py-nbformat: Makefile 
	devel/py-nose-warnings-filters: Makefile 
	devel/py-parsing: Makefile 
	devel/py-path.py: Makefile 
	devel/py-pathlib: Makefile 
	devel/py-pexpect: Makefile 
	devel/py-pluggy: Makefile 
	devel/py-setuptools_scm: Makefile 
	devel/py-simplejson: Makefile 
	devel/py-six   : Makefile 
	devel/py-spark-parser: Makefile 
	devel/py-test  : Makefile 
	devel/py-test-benchmark: Makefile 
	devel/py-test-cov: Makefile 
	devel/py-test-expect: Makefile 
	devel/py-test-httpbin: Makefile 
	devel/py-test-mock: Makefile 
	devel/py-test-runner: Makefile 
	devel/py-testpath: Makefile 
	devel/py-traitlets: Makefile 
	devel/py-tz    : Makefile 
	devel/py-uncompyle6: Makefile 
	devel/py-wrapt : Makefile 
	devel/py-xdis  : Makefile 
	devel/pylint   : Makefile 

Log message:
Remove shadchin@ as maintainer per his request

Other categories will follow shortly


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/13 12:14:05

Modified files:
	sys/net        : if_bridge.c 

Log message:
Deal with the case where bridge_getbif() can return NULL.

Since `bif' are removed from the interface list before calling smr_barrier()
and the hash queue is cleaned up afterward, it is possible to find an ifidx
with bridge_rtlookup() that won't match to any `bif'.

Fix a panic reported by Hrvoje Popovski, ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/13 12:20:13

Modified files:
	sys/net        : bridgestp.c 

Log message:
Do not check for IFF_RUNNING inside bstp_initialization().

This allows to set such flag after completing the initialization of a
bridge and still have bstp_tick() be scheduled from the begining.

Fix a regression reported by and ok markus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/13 12:21:30

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-base_BUILD_gn 
	                      patch-base_debug_debugger_posix_cc 
	                      patch-base_process_process_posix_cc 
Added files:
	www/chromium/patches: patch-base_base_paths_posix_cc 

Log message:
fix the sysctl(2) call for testing if we are running inside gdb
and make the best effort for figuring out our own exectuable name
and fall back to a hardcoded value if that fails


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/13 12:58:48

Modified files:
	net/p5-Net-DNS-Resolver-Programmable: Makefile distinfo 
	net/p5-Net-DNS-Resolver-Programmable/pkg: PLIST 

Log message:
p5-Net-DNS-Resolver-Programmable: update to 0.09
Changelog:
https://metacpan.org/source/BIGPRESH/Net-DNS-Resolver-Programmable-0.009/CHANGES

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/13 13:03:54

Modified files:
	audio/libcue   : Makefile 
	databases/py-pickleshare: Makefile 
	editors/texmaker: Makefile 
	graphics/djview4: Makefile 
	graphics/djvulibre: Makefile 
	graphics/py-cycler: Makefile 
	graphics/py-imagesize: Makefile 
	math/py-bottleneck: Makefile 
	math/py-mpmath : Makefile 
	math/py-numexpr: Makefile 
	math/py-patsy  : Makefile 
	math/py-sympy  : Makefile 
	net/py-msgpack : Makefile 
	net/py-socks   : Makefile 
	shells/py-qtconsole: Makefile 
	textproc/py-alabaster: Makefile 
	textproc/py-chardet: Makefile 
	textproc/py-cssselect: Makefile 
	textproc/py-jellyfish: Makefile 
	textproc/py-mistune: Makefile 
	textproc/py-nltk: Makefile 
	textproc/py-numpydoc: Makefile 
	textproc/py-pandocfilters: Makefile 
	textproc/py-snowballstemmer: Makefile 
	textproc/py-sphinx_rtd_theme: Makefile 
	textproc/py-stemmer: Makefile 
	textproc/py-webencodings: Makefile 
	www/jupyter-notebook: Makefile 
	www/py-bleach  : Makefile 
	www/py-httpbin : Makefile 
	www/py-httplib2: Makefile 
	www/py-terminado: Makefile 
	x11/py-qtawesome: Makefile 

Log message:
Remove shadchin@ as maintainer per his request


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/13 13:04:45

Modified files:
	databases/py-psycopg2: Makefile 

Log message:
Take maintainership


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/13 13:21:32

Modified files:
	sys/kern       : exec_elf.c kern_exit.c kern_sig.c tty.c 
	sys/nfs        : nfs_socket.c 
	sys/sys        : proc.h signalvar.h sysctl.h 

Log message:
When killing a process, the signal is handled by any thread that
does not block the signal.  If all threads block the signal, we
delivered it to the main thread.  This does not conform to POSIX.
If any thread unblocks the signal, it should be delivered immediately
to this thread.
Mark such signals pending at the process instead of a single thread.
Then any thread can handle it later.
OK kettenis@ guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 13:28:28

Modified files:
	x11/gtk+2      : Makefile 
	x11/gtk+2/patches: patch-gtk_gtkmountoperation-x11_c 
	x11/gtk+3      : Makefile 
	x11/gtk+4      : Makefile 
Added files:
	x11/gtk+3/patches: patch-gtk_gtkmountoperation-x11_c 
	x11/gtk+4/patches: patch-gtk_gtkmountoperation-x11_c 

Log message:
Fix a long standing bug in pid_get_parent on OpenBSD where kp wasn't properly
allocated and the function could randomly fail.
Already merged upstream.

with robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/13 13:40:22

Log message:
    Test the interaction of signals with multiple posix threads.  It
    covers blocking with signal mask, killing process or thread, invoking
    handler or waiting for signal.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190513
    
    N src/regress/sys/kern/sigpthread/README
    N src/regress/sys/kern/sigpthread/sigpthread.c
    N src/regress/sys/kern/sigpthread/Makefile
    N src/regress/sys/kern/sigpthread/LICENSE
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/13 13:42:28

Modified files:
	regress/sys/kern: Makefile 

Log message:
Link regress sigpthread to build.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/13 14:00:33

Modified files:
	lib/libc/include: namespace.h 
Added files:
	lib/libc/include: DETAILS 

Log message:
Move 'how this works' details from namespace.h to DETAILS


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/13 14:07:02

Modified files:
	usr.bin/tmux   : format.c 

Log message:
Always include Lock in the menu.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/13 14:07:15

Modified files:
	infrastructure/bin: portcheck 

Log message:
Whine if somebody sets PKG_ARCH=* and there are files in the plist matching
*.so.*, *.so, or *.a. Probably most likely to do this by mistake with p5-*
things if copying too much from an existing port, or some multipackages
cases. ok afresh1@ kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/13 14:10:23

Modified files:
	usr.bin/tmux   : attributes.c grid.c input.c tmux.1 tmux.h 
	                 tty-term.c tty.c 

Log message:
Add support for overline (SGR 53), from Ricardo Banffy.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/13 14:24:14

Modified files:
	devel/glib2    : Makefile 
Removed files:
	devel/glib2/patches: patch-glib_gutils_c 

Log message:
remove the check for non-existent XDG directories as
they are going to be moved to gtk+3

ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 14:28:20

Modified files:
	www/tidy       : Makefile 

Log message:
Unbreak: missing BDEP on textproc/libxslt (xsltproc)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/13 14:37:41

Modified files:
	x11/gtk+3      : Makefile 
	x11/gtk+3/patches: patch-gtk_gtkplacessidebar_c 
Added files:
	x11/gtk+3/patches: patch-gtk_gtkfilechooserwidget_c 

Log message:
check if the XDG directories exist before showing them on the sidebar

ok ajatoctou@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/13 14:39:07

Modified files:
	infrastructure/bin: update-patches 

Log message:
prevent update-patches from mangling files in case of permission errors


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/13 14:47:19

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
KERN_PFSTATUS is not handled by sysctl so warn about it if requested but
ignore if sysctl -a is used.
OK bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	drahn@cvs.openbsd.org	2019/05/13 14:55:22

Modified files:
	sys/arch/arm64/arm64: intr.c 
	sys/arch/arm64/dev: agintc.c 

Log message:
Move idepth tracking out of interrupt controller into common layer.
'looks good' kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:04:44

Modified files:
	x11/gtk+3/patches: patch-gtk_gtkfilechooserwidget_c 
	                   patch-gtk_gtkplacessidebar_c 
	x11/gtk+4      : Makefile 
Added files:
	x11/gtk+4/patches: patch-gtk_gtkfilechooserwidget_c 
	                   patch-gtk_gtkplacessidebar_c 

Log message:
Merge unveil patches from gtk+3 and tweak/add comment:
unveil(2): check if the XDG directories exist before showing them on the
sidebar


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/13 15:13:04

Modified files:
	usr.sbin/bgpd  : rde_update.c 

Log message:
Don't use a hardcoded list of how attribute are dumped and instead move
to a loop-switch construct in up_generate_attr().  This way attributes
are always dumped in ascending order as suggested by the RFC and adding
special attributes is simpler than in the current way.
The MP attributes are a special case since those are handled at a later
stage of creating UPDATE messages.
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:20:00

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.147.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:20:11

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.147.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:20:24

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.157.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:25:29

Modified files:
	x11/nagstamon  : Makefile distinfo 

Log message:
Update to nagstamon-3.2.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/13 15:27:59

Modified files:
	sys/arch/alpha/dev: sgmap_common.c 
	sys/arch/alpha/include: bus.h 
	sys/arch/alpha/isa: isadma_bounce.c 

Log message:
free(9) sizes.

From miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/13 15:29:28

Modified files:
	sys/dev/pci    : sv.c 

Log message:
free(9) sizes.

From Jan Klemkow, ok tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:31:11

Modified files:
	x11/rdesktop   : Makefile distinfo 

Log message:
SECURITY update to rdesktop-1.8.5.
This is a security release to address various buffer overflow and overrun
issues in the rdesktop protocol handling.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:31:18

Modified files:
	x11/rdesktop   : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
SECURITY update to rdesktop-1.8.5.
This is a security release to address various buffer overflow and overrun
issues in the rdesktop protocol handling.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:35:25

Modified files:
	x11/wxSVG      : Makefile distinfo 

Log message:
Update to wxsvg-1.5.16.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 15:35:55

Modified files:
	x11/wmweather  : Makefile distinfo 
Added files:
	x11/wmweather/patches: patch-src_wmweather_c 

Log message:
Update to wmweather-2.4.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/13 15:44:14

Modified files:
	sys/dev/pci/drm/include/linux: preempt.h 

Log message:
add in_irq() in_interrupt() in_task()

in_irq() uses ci_idepth on archs that have it
in_interrupt() is the same as in_irq() for now, linux has in_irq() for
hard interrupt context and in_interrupt() is also for soft interrupt
and nmi context.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/13 15:47:10

Modified files:
	regress/sys/kern/realpath: realpathtest.c 

Log message:
Document our currently incosnsistent behaviour and our current
sins which have been judged by Dr Posix as sinful...


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/13 15:50:50

Modified files:
	sys/dev/pci/drm/i915: intel_guc_ct.c 

Log message:
enable in_irq() based check


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/13 16:01:56

src/distrib/special/tee

Update of /cvs/src/distrib/special/tee
In directory cvs.openbsd.org:/tmp/cvs-serv16552/tee

Log Message:
Directory /cvs/src/distrib/special/tee added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/13 16:06:00

Modified files:
	www/varnish    : Makefile 

Log message:
Fix build with py-docutils installed

Revision 1.42 switched to using Python 3, but Varnish's build prefers
Python 2 versions of various tools if found at configure time, so pass
explicit --with-* arguments to pin the selection.

Spotted by espie
OK gonzalo espie


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/13 16:06:29

Modified files:
	lang/node      : Makefile distinfo 

Log message:
Bump node to 10.15.3

Changelog: https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V10.md#10.15.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/13 16:08:11

Modified files:
	www/kibana     : Makefile 
	www/kibana/patches: patch-package_json 

Log message:
Bump REVISION and patches to handle node 10.15.3 update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/13 16:11:20

Log message:
    Import edbrowse a command-line editor / web browser
    
    OK afresh1@
    
    Status:
    
    Vendor Tag:	abieber
    Release Tags:	abieber_20190513
    
    N ports/www/edbrowse/Makefile
    N ports/www/edbrowse/distinfo
    N ports/www/edbrowse/patches/patch-src_http_c
    N ports/www/edbrowse/patches/patch-CMakeLists_txt
    N ports/www/edbrowse/pkg/DESCR
    N ports/www/edbrowse/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/13 16:12:01

Modified files:
	www            : Makefile 

Log message:
+edbrowse


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 16:14:02

Modified files:
	devel/liblouis : Makefile distinfo 
	devel/liblouis/pkg: PLIST 

Log message:
Update to liblouis-3.9.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 16:15:13

Modified files:
	audio/cantata  : Makefile distinfo 

Log message:
Update to cantata-2.3.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 16:20:12

Modified files:
	devel/p5-Glib-Object-Introspection: Makefile distinfo 

Log message:
Update to p5-Glib-Object-Introspection-0.047.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/13 16:25:27

Modified files:
	lib/libc       : shlib_version 

Log message:
Add missing word in comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 16:26:37

Modified files:
	devel/liblouis : Makefile 

Log message:
No need for MODPY_ADJ_FILES.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/13 16:34:30

Modified files:
	devel/pygame   : Makefile 

Log message:
https HOMEPAGE


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/13 16:36:01

Modified files:
	lib/libtls     : tls_server.c 

Log message:
Acquire mutex before incrementing the refcount. Fixes COV-186144

ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/13 16:41:55

Modified files:
	devel/coccinelle: Makefile 

Log message:
BROKEN on sparc64 since the update to 1.0.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/13 16:45:57

Modified files:
	chinese/libpinyin: Makefile 

Log message:
As with all C++ ports, set COMPILER to base-clang ports-gcc

This requires a C++11 compiler, as spotted on sparc64.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 16:47:45

Modified files:
	x11/gnome/librsvg: Makefile distinfo 

Log message:
Update to librsvg-2.44.14.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/13 16:48:30

Modified files:
	lib/libssl     : t1_enc.c 

Log message:
Remove unused pad check, which is handled by tls1_cbc_remove_padding() now.

Fixes COV-174858

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/13 16:55:27

Modified files:
	sys/kern       : init_sysent.c kern_pledge.c syscalls.c 
	                 syscalls.master vfs_getcwd.c vfs_lookup.c 
	                 vfs_syscalls.c 
	sys/sys        : namei.h syscall.h syscallargs.h 

Log message:
Add a kernel implementation of realpath() as __realpath().

We want this so that we can stop allowing readlink() on traversed
vnodes in unveil().

This includes all the kernel side and the system call.
This is not yet used in libc for realpath, so nothing calls this yet.
The libc wrapper will be committed later.

Testing by many, and ports build by naddy@

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/13 16:58:52

Modified files:
	sys/dev/acpi   : tpm.c 

Log message:
print a newline for attach. from f holop


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/13 17:13:24

Modified files:
	sbin/unwind    : parse.y printconf.c unwind.c unwind.h 

Log message:
Remove strict mode for now, it is in the way.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/13 17:18:22

Modified files:
	distrib/alpha/miniroot: list 
	distrib/amd64/common: list 
	distrib/arm64/ramdisk: list 
	distrib/armv7/ramdisk: list 
	distrib/hppa/ramdisk: list 
	distrib/i386/common: list 
	distrib/landisk/ramdisk: list 
	distrib/loongson/ramdisk: list 
	distrib/luna88k/ramdisk: list 
	distrib/macppc/ramdisk: list 
	distrib/miniroot: install.sub list 
	distrib/octeon/ramdisk: list 
	distrib/ramdisk: list 
	distrib/sgi/ramdisk: list 
	distrib/sparc64/miniroot: list 
	distrib/sparc64/ramdisk: list 
	distrib/sparc64/ramdiskB: list 
	distrib/special: Makefile 
Added files:
	distrib/special/tee: Makefile 

Log message:
Add tee(1) to the ramdisk filesystem and use it to provide both a
moving progress bar during auto upgrade/install and a clean log
afterwards.  ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	sunil@cvs.openbsd.org	2019/05/13 20:30:00

Modified files:
	usr.bin/ftp    : http.c 

Log message:
tls_write(3): Handle short writes.

Ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	sunil@cvs.openbsd.org	2019/05/13 20:32:08

Modified files:
	usr.bin/ftp    : main.c 

Log message:
Remove an unused and leftover label.


CVSROOT:	/cvs
Module name:	src
Changes by:	sunil@cvs.openbsd.org	2019/05/13 21:16:55

Modified files:
	usr.bin/ctfdump: Makefile ctfdump.c elf.c 

Log message:
Use elf(3) api instead of an ad-hoc elf parser.

Ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	sunil@cvs.openbsd.org	2019/05/13 21:20:12

Removed files:
	usr.bin/ctfdump: elf.c 

Log message:
Remove leftover elf.c


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/13 21:27:43

Modified files:
	sys/kern       : kern_smr.c 

Log message:
Add lock order checking for smr_barrier(9). This is similar to the
checking done in taskq_barrier(9) and timeout_barrier(9).

OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/13 23:07:24

Modified files:
	editors/abiword: Makefile distinfo 
	editors/abiword/patches: patch-src_af_xap_xp_xap_Dialog_cpp 
	editors/abiword/pkg: PLIST 
Removed files:
	editors/abiword/patches: patch-src_wp_ap_gtk_ap_UnixApp_cpp 

Log message:
Upgrade to the newest git commit (still broken).


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/13 23:48:58

Modified files:
	regress/lib/libcrypto/botan: Makefile 

Log message:
Use propper regress target to integrate better into test framework.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/13 23:58:36

Modified files:
	usr.bin/ftp    : http.c 

Log message:
Enable TLSv1.0 and TLSv1.1

Like the old ftp.  Discussed with at least with tedu@ "We should match
existing behavior at least for now"


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/14 00:05:45

Modified files:
	usr.sbin/vmd   : parse.y vm.conf.5 

Log message:
Add support for `boot device' to vm.conf grammar which is the `-B device'
counterpart from vmctl.

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/05/14 01:01:33

Log message:
    import ghidra, a software reverse engineering.
    ok and inputs sthen@ bentley@
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20190514
    
    N ports/security/ghidra/Makefile
    N ports/security/ghidra/distinfo
    N ports/security/ghidra/patches/patch-support_launch_sh
    N ports/security/ghidra/pkg/PLIST
    N ports/security/ghidra/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/05/14 01:06:34

Modified files:
	security       : Makefile 

Log message:
+     SUBDIR += ghidra


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/14 01:37:50

Modified files:
	usr.bin/tmux   : layout-set.c 

Log message:
Fix sizing of main-vertical and main-horizontal layouts, GitHub issue 1736.


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/05/14 01:59:54

Modified files:
	lang/sbcl/patches: patch-src_runtime_Config_generic-openbsd 

Log message:
Add a forgotten patch change

thanks aja@ for spotting it
sorry for the noise


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/14 03:26:09

Modified files:
	devel/p5-Time-Duration: Makefile distinfo 

Log message:
Update to p5-Time-Duration-1.21.

from Wen Heping, tweaks and ok afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/14 03:28:56

Modified files:
	devel/p5-Time-Duration-Parse: Makefile distinfo 

Log message:
Update to p5-Time-Duration-Parse-0.15.

from Wen Heping, ok afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/05/14 06:08:54

Modified files:
	usr.sbin/smtpd : smtp_client.c 

Log message:
fix typos in log messages


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/14 06:47:17

Modified files:
	share/man/man4 : inet6.4 
	usr.bin/ssh    : ssh_config.5 sshd_config.5 
	usr.sbin/vmctl : vmctl.8 
	usr.sbin/vmd   : vm.conf.5 

Log message:
Delete some .Sx macros that were used in a wrong way.
Part of a patch from Stephen Gregoratto <dev at sgregoratto dot me>.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/14 06:55:54

Modified files:
	share/man/man9 : syscall.9 

Log message:
minor wording improvement from Stephen Gregoratto


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/14 07:17:09

Modified files:
	share/man/man9 : syscall.9 

Log message:
minor macro cleanup


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/14 07:44:25

Modified files:
	usr.sbin/config: config.8 main.c misc.c misc.h ukcutil.c 

Log message:
allow specifying a cmdfile instead of trying to pipe in commands for -ef.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/14 07:44:45

Modified files:
	sys/dev        : kcov.c 

Log message:
armv7 and arm64 also have ci_idepth
ok anton@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/14 07:47:42

Log message:
    Import devel/p5-Ref-Util-XS
    
    Ref::Util::XS is an XS implementation for Ref::Util,
    a set of utility functions for checking references.
    
    WWW: http://search.cpan.org/dist/Ref-Util-XS/
    
    Proposed by Wen Heping, who takes MAINTAINER. Additional tweaks
    by afresh1@ and me.
    
    OK afresh1@
    
    Status:
    
    Vendor Tag:	cwen
    Release Tags:	cwen_20190514
    
    N ports/devel/p5-Ref-Util-XS/Makefile
    N ports/devel/p5-Ref-Util-XS/distinfo
    N ports/devel/p5-Ref-Util-XS/pkg/DESCR
    N ports/devel/p5-Ref-Util-XS/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/14 07:49:27

Modified files:
	devel          : Makefile 

Log message:
+p5-Ref-Util-XS


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/14 08:27:49

Modified files:
	distrib/miniroot: install.sub 
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Revert my recent sysupgrade changes; it broke unattended upgrades for
espie@. Need to look deeper.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/14 08:30:23

Log message:
    Import devel/p5-Ref-Util
    
    Ref::Util introduces several functions to help identify
    references in a faster and smarter way.
    
    WWW: http://search.cpan.org/dist/Ref-Util
    
    Proposed by Wen Heping, who takes MAINTAINER. Additional tweaks
    by afresh1@ and me.
    
    OK afresh1@
    
    Status:
    
    Vendor Tag:	cwen
    Release Tags:	cwen_20190514
    
    N ports/devel/p5-Ref-Util/Makefile
    N ports/devel/p5-Ref-Util/distinfo
    N ports/devel/p5-Ref-Util/pkg/DESCR
    N ports/devel/p5-Ref-Util/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/14 08:31:43

Modified files:
	devel          : Makefile 

Log message:
+p5-Ref-Util


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/14 08:46:34

Modified files:
	x11/gtk+2      : Makefile 
	x11/gtk+2/patches: patch-gtk_gtkmountoperation-x11_c 
	x11/gtk+3      : Makefile 
	x11/gtk+3/patches: patch-gtk_gtkmountoperation-x11_c 
	x11/gtk+4      : Makefile 
	x11/gtk+4/patches: patch-gtk_gtkmountoperation-x11_c 

Log message:
Prevent potential leak of kp.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/14 08:51:31

Modified files:
	sbin/unwind    : captiveportal.c frontend.c resolver.c unwind.c 
	                 unwind.h 

Log message:
Move common config passing code into a function.
OK pamela


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/14 08:59:56

Modified files:
	infrastructure/mk: bsd.port.mk gnu.port.mk 

Log message:
Introduce CONFIGURE_STYLE=autoreconf.
This runs autoreconf (or a command of your choice, like autogen.sh)
at the gen stage.  It implies "gnu".
ok espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/14 09:00:01

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 
	infrastructure/lib/OpenBSD/PortGen/Port: CPAN.pm PyPI.pm 

Log message:
Improve EXTRACT_SUFX detection in portgen

OK cwen@ kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/14 09:00:37

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
document CONFIGURE_STYLE=autoreconf; ok espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/14 09:03:18

Modified files:
	net/wireguard-tools: Makefile 
	net/wireguard-tools/pkg: PLIST 
Added files:
	net/wireguard-tools/pkg: README 

Log message:
- add README with quick instructions on setting up an OpenBSD<->OpenBSD tunnel
- take maintainership

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/14 09:03:52

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
Update youtube-dl to 2019.05.11

Maintainer timeout

OK naddy@, kn@ and successful test by schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	jan@cvs.openbsd.org	2019/05/14 09:19:07

Modified files:
	sys/dev/ic     : aic7xxx_seeprom.c aic7xxx.c 

Log message:
Add free(9) sizes to ahc(4)

From Miod
OK tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/14 09:40:45

Modified files:
	lib/libcrypto/evp: e_des3.c 

Log message:
Correct missing test to determine if length is in bytes or in bits.
Issue found by Guido Vranken <guidovranken@gmail.com>
ok tedu@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/14 09:44:56

Modified files:
	graphics/graphene: Makefile 

Log message:
Update to graphene-1.9.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/14 09:45:59

Modified files:
	graphics/graphene: Makefile 

Log message:
Oops revert, committed from the wrong tree.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/14 09:50:39

Modified files:
	graphics/graphene: Makefile distinfo 

Log message:
Really upgrade to graphene-1.9.2 this time...


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/14 10:28:23

Modified files:
	devel/bison    : Makefile distinfo 
	devel/bison/pkg: PLIST 
Removed files:
	devel/bison/patches: patch-lib_local_mk patch-src_local_mk 

Log message:
Update to bison-3.3.2

Bulk build test and ok ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/14 10:43:26

Modified files:
	regress/lib/libpthread: Makefile.inc 
	regress/lib/libpthread/pthread_specific: Makefile 
	regress/lib/libpthread/stdarg: Makefile 
	share/man/man5 : bsd.regress.mk.5 
	share/mk       : bsd.regress.mk 

Log message:
Remove the REGRESS_MAXTIME feature from regress framework.  The
timeout based on CPU seconds is pretty useless, most hanging tests
sleep and do not spin.  The timeout could not be distinguished from
failure.  Only 3 tests used it.
OK anton@ schwarze@ cheloha@ otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/05/14 10:47:30

Modified files:
	usr.sbin/bgpctl: bgpctl.c 

Log message:
make "bgpctl sh rib detail *out*" look less confusing
ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/05/14 10:49:05

Modified files:
	misc/memcached : Makefile distinfo 
	misc/memcached/patches: patch-configure patch-memcached_c 
	misc/memcached/pkg: PLIST 

Log message:
Update to 1.5.14
Initial diff from David Carlier with tweaks by me and sthen@
enable tls per sthen@ proposal
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/14 11:20:34

Modified files:
	devel/riscv-elf/gcc: Makefile 
Added files:
	devel/riscv-elf/gcc/patches: patch-gcc_tree-vect-stmts_c 

Log message:
Fix build with ports-gcc

/usr/ports/pobj/riscv-elf-gcc-8.1.0/gcc-8.1.0/gcc/tree-vect-stmts.c:3748:14: error: converting to 'bool' from 'std::nullptr_t' requires direct-initialization [-fpermissive]


CVSROOT:	/cvs
Module name:	ports
Changes by:	claudio@cvs.openbsd.org	2019/05/14 11:21:31

Log message:
    Prometheus exporter for hardware and OS metrics exposed by *NIX kernels,
    written in Go with pluggable metric collectors.
    OK sthen@
    
    Status:
    
    Vendor Tag:	claudio
    Release Tags:	claudio_20190514
    
    U ports/sysutils/node_exporter/Makefile
    U ports/sysutils/node_exporter/distinfo
    U ports/sysutils/node_exporter/patches/patch-Makefile_common
    U ports/sysutils/node_exporter/pkg/DESCR
    U ports/sysutils/node_exporter/pkg/PLIST
    U ports/sysutils/node_exporter/pkg/node_exporter.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/14 11:36:23

Modified files:
	lang/elixir    : Makefile distinfo 

Log message:
update to elixir-1.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/14 11:57:20

Modified files:
	net/samba      : Makefile distinfo 

Log message:
SECURITY update to samba-4.8.12

Fixes:
o  CVE-2018-16860 (Samba AD DC S4U2Self/S4U2Proxy unkeyed checksum)

Release notes:
https://www.samba.org/samba/history/samba-4.8.12.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/14 11:58:07

Modified files:
	net/samba      : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
SECURITY update to samba-4.8.12

Fixes:
o  CVE-2018-16860 (Samba AD DC S4U2Self/S4U2Proxy unkeyed checksum)

Release notes:
https://www.samba.org/samba/history/samba-4.8.12.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/14 11:59:56

Modified files:
	net/samba      : Tag: OPENBSD_6_4 Makefile distinfo 

Log message:
SECURITY update to samba-4.8.12

Fixes:
o  CVE-2018-16860 (Samba AD DC S4U2Self/S4U2Proxy unkeyed checksum)

Release notes:
https://www.samba.org/samba/history/samba-4.8.12.html


CVSROOT:	/cvs
Module name:	www
Changes by:	phessler@cvs.openbsd.org	2019/05/14 12:03:51

Modified files:
	.              : events.html 
Added files:
	papers         : bhyvecon-ottawa-2019.pdf 

Log message:
add my slides for my talk at bhyvecon ottawa


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/14 12:25:31

Modified files:
	usr.bin/ftp    : main.c 

Log message:
-v forces verbose mode even if stdin is not a terminal
Found the hard way by bluhm
Debugged with deraadt & bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/14 12:27:37

Modified files:
	usr.bin/ftp    : ftp.1 

Log message:
Document -v


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/14 12:51:07

Modified files:
	usr.bin/ftp    : http.c progressmeter.c 

Log message:
do not intermingle direct io (write), and potentially buffered io (stdio)
against the same outputs
ok kmos florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	claudio@cvs.openbsd.org	2019/05/14 12:55:53

Modified files:
	sysutils       : Makefile 

Log message:
Add node_exporter reminded by jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/14 14:04:14

Modified files:
	sysutils/firmware: Makefile.inc 

Log message:
Don't set a default MASTER_SITES if download points at github


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/14 14:20:17

Modified files:
	lang/php       : Makefile.inc 
	lang/php/7.1   : Makefile 
	lang/php/7.2   : Makefile 
	lang/php/7.3   : Makefile 
Removed files:
	lang/php/7.1/patches: patch-ext_tidy_config_m4 
	                      patch-ext_tidy_tidy_c 
	lang/php/7.2/patches: patch-ext_tidy_config_m4 
	                      patch-ext_tidy_tidy_c 

Log message:
switch from tidyp to tidy(-html5)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/05/14 14:34:15

Modified files:
	sysutils/firmware/intel: Makefile distinfo 
	sysutils/firmware/intel/pkg: PLIST 

Log message:
update intel microcode to 20190514

changes VERW instruction to clear CPU buffer

https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00233.html
https://www.intel.com/content/dam/www/public/us/en/documents/corporate-information/SA00233-microcode-update-guidance_05132019.pdf
https://software.intel.com/security-software-guidance/insights/deep-dive-intel-analysis-microarchitectural-data-sampling

take MAINTAINER as suggested by patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/14 14:40:43

Modified files:
	sysutils/firmware/intel: Makefile 

Log message:
bump REVISION as the packages I had built didn't have the changed maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/14 14:48:45

Modified files:
	regress/sys/dev/kcov: Makefile kcov.c 

Log message:
test different buffer sizes


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2019/05/14 15:10:03

Modified files:
	net/tor        : Makefile distinfo 
	net/tor/patches: patch-configure_ac 

Log message:
Update to new major release Tor 0.4.0.5.  For a full changelog, see:
https://lists.torproject.org/pipermail/tor-announce/2019-May/000178.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/14 15:27:51

Modified files:
	www/pelican    : Makefile 

Log message:
Take maintainership

Previous maintainer asked to be dropped


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/14 15:28:53

Modified files:
	net/p5-Net-Netmask: Makefile distinfo 

Log message:
p5-Net-Netmask: update to 1.9104
Changelog:
https://metacpan.org/changes/release/JMASLAK/Net-Netmask-1.9104

OK steven@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/14 15:31:04

Modified files:
	net/p5-Net-SMTPS: Makefile distinfo 

Log message:
p5-Net-SMTPS: update to 0.09
Changelog:
https://metacpan.org/source/TOMO/Net-SMTPS-0.09/Changes

OK steven@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/14 15:33:55

Modified files:
	net/p5-Net-SSH2: Makefile distinfo 

Log message:
p5-Net-SSH2: update to 0.70
Changelog:
https://metacpan.org/source/SALVA/Net-SSH2-0.70/Changes

OK steven@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/14 15:36:37

Modified files:
	net/p5-Net-Telnet-Cisco: Makefile distinfo 
	net/p5-Net-Telnet-Cisco/pkg: DESCR 

Log message:
p5-Net-Telnet-Cisco: update to 1.11
Changelog:
https://metacpan.org/source/VINSWORLD/Net-Telnet-Cisco-1.11/Changes

OK steven@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/14 15:41:11

Modified files:
	sys/dev/ic     : athn.c 

Log message:
Fix athn(4) 9280 1T2R devices; broken since my noisefloor calib commit
Problem reported and fix tested by Stephane Guedon
ok jca@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/05/14 17:43:31

Modified files:
	lang/janet     : Makefile distinfo 
	lang/janet/patches: patch-Makefile 
	lang/janet/pkg : PLIST 

Log message:
Update janet to 0.5.0

Reintroduce the shared lib with some more install work. Initial diff from
Fred <openbsd at crowsons dot net> with tweaks from me.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/14 21:11:52

Modified files:
	lib/libutil    : Makefile 
Added files:
	lib/libutil    : ber_add_string.3 ber_get_string.3 ber_oid_cmp.3 
	                 ber_read_elements.3 ber_set_header.3 
Removed files:
	lib/libutil    : ber.3 

Log message:
Split ber.3 into logical parts. Further tweaking will be done in tree.

Discussed with and ok jmc@, schwarze@, claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/14 21:12:50

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/14 21:16:16

Modified files:
	sys/arch/mips64/mips64: trap.c 

Log message:
Drop redundant pmap_proc_iflush() call. The needed instruction cache
invalidation is done by mips64 pmap when the branch emulation page is
made executable.

Originally, the pmap_proc_iflush() call was necessary. The instruction
cache invalidation was added in pmap_protect() after the FPU emulation
was introduced.

OK miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/14 21:17:20

Modified files:
	sys/arch/mips64/mips64: trap.c 

Log message:
Reduce branch emulation page access protection during setup. The setup
stage does not need execute access, so map the page initially with
read-write protection.

OK miod@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/14 22:43:32

Modified files:
	usr.bin/ssh    : sshconnect2.c 

Log message:
When doing the fork+exec'ing for ssh-keysign, rearrange the socket
into fd3, so as to not mistakenly leak other fd forward accidentally.
ok djm


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/05/14 23:02:43

Modified files:
	usr.sbin/smtpd : smtpc.c 

Log message:
normalize newlines when reading the message

spotted by martijn@

ok martijn@ gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/15 00:10:24

Modified files:
	lang/rust      : Makefile distinfo 

Log message:
update lang/rust to 1.34.2

Announce: https://blog.rust-lang.org/2019/05/14/Rust-1.34.2.html
Security advisory for the standard library: https://blog.rust-lang.org/2019/05/13/Security-advisory.html

In short, starting with 1.34.0, you can "safely" cast a type to the wrong
type by using Error::type_id function in the standard library. As it
could result out of bounds reads/writes/etc it is considered as security
issue.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/15 00:12:19

Modified files:
	sys/uvm        : uvm_amap.c uvm_amap.h 

Log message:
free size for amap; ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/15 00:36:29

Modified files:
	audio/qsynth   : Makefile distinfo 

Log message:
simple update to 0.5.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/15 00:42:17

Modified files:
	devel/ruby-activesupport: Makefile distinfo 
	devel/ruby-activesupport/pkg: PLIST 

Log message:
simple update  5.2.2->5.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/05/15 00:44:23

Modified files:
	mail/postfwd   : Makefile distinfo 
	mail/postfwd/pkg: PLIST 
Added files:
	mail/postfwd/patches: patch-sbin_postfwd3 
	mail/postfwd/pkg: postfwd3.rc 
Removed files:
	mail/postfwd/patches: patch-sbin_postfwd2 

Log message:
Update to 2.02 and add a postfwd3 rc script
postfwd3 is still considered beta software


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/15 00:52:33

Modified files:
	sys/arch/amd64/include: loadfile_machdep.h 
	sys/arch/amd64/stand/boot: Makefile conf.c 
	sys/arch/amd64/stand/cdboot: Makefile conf.c 
	sys/arch/amd64/stand/libsa: exec_i386.c 
	sys/arch/amd64/stand/pxeboot: Makefile conf.c 
Added files:
	sys/arch/amd64/stand/libsa: run_amd64.S 

Log message:
Add support to the BIOS bootloader for random kernel base VA

This diff adds support to be able to load a randomly linked kernel VA
(subject to some range restrictions). This change has been in snaps for
a few days without any fallout.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/15 00:54:10

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Rework tx path to allow using up to 13 segments per packet, so we don't
have to defrag everything.  While working on this I discovered both of
the tx doorbells can be rung once per mcx_start() call, rather than once
per packet.  dlg@ helped a lot by making me read the documentation again.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/15 00:56:36

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
remove some use of uninitialized values pointed out by jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/15 01:03:58

Modified files:
	devel/ruby-cri : Makefile distinfo 

Log message:
simple update 2.15.3 -> 2.15.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/15 01:04:47

Modified files:
	www/ruby-multipart-post: Makefile distinfo 
	www/ruby-multipart-post/pkg: PLIST 

Log message:
Simple update 2.0.0 -> 2.1.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/15 01:07:44

Modified files:
	sysutils/ruby-r10k: Makefile distinfo 
	sysutils/ruby-r10k/pkg: PLIST 

Log message:
Update to 3.2.0

while there, install r10k tool without GEM_BIN_SUFFIX, this bothers me
every time when the default ruby version gets updated


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/15 02:18:34

Modified files:
	textproc/solr  : Makefile distinfo 
	textproc/solr/patches: patch-bin_solr patch-bin_solr_in_sh 
	textproc/solr/pkg: PLIST 

Log message:
update to solr-8.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/15 02:19:13

Modified files:
	mail/rspamd    : Makefile distinfo 
	mail/rspamd/pkg: PLIST 

Log message:
update to rspamd-1.9.3


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 03:07:47

Modified files:
	usr.bin/sort   : bwstring.c bwstring.h file.c sort.1 sort.c 

Log message:
Cleanup:
Delete handling of LC_COLLATE (which has no effect)
and delete support for non-ASCII single-byte encodings,
allowing to replace the condition byte_sort == 1
with sort_mb_cur_max == 1.
Since none of our single-byte character and string functions are
locale dependent, also zap inspection of LC_CTYPE while here.

For know, keep the code supporting multi-byte encodings
even though it is very ugly, it cannot be reached right now,
and we have no plans to enable it any time soon.

OK millert@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/15 03:13:16

Modified files:
	lib/libssl     : ssl_cert.c ssl_ciphers.c ssl_lib.c 

Log message:
s3 is never NULL since s2 (formerly used for SSLv2) does not exist, so there is
no need to check for it. Fixes COV-165788, identified with help from Alex
Bumstead.

ok jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 03:33:34

Modified files:
	usr.bin/sort   : bwstring.c 

Log message:
re-indent bwscoll() after previous commit; no binary change


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 03:49:32

Modified files:
	lib/libutil    : ber_read_elements.3 

Log message:
delete some duplicate words


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/15 05:50:38

Modified files:
	multimedia/mkvtoolnix: Makefile 

Log message:
Fix RCS Id


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/15 05:52:23

Modified files:
	net/strongswan : Makefile 
	net/strongswan/pkg: PLIST 
Added files:
	net/strongswan/pkg: PFRAG.aesni 

Log message:
strongswan: build with AES-NI support only on x86, fragment PLIST.
This should unbreak the build on all !x86 platforms.
Originally tested on macppc, and on aarch64 by sthen@ (thanks!)

OK sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/05/15 05:53:22

Modified files:
	usr.bin/ftp    : ftp.1 main.c 

Log message:
Add the -m flag to the ftp.1 man page.

Adjust the usage message of ftp(1) to reflect its two operating modes
and list missing flags.

OK florian@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/05/15 05:56:19

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
do not use CRLF when passing data lines to filters.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/05/15 06:04:43

Modified files:
	lang/python    : python.port.mk 
	audio/beets    : Makefile 
	audio/py-discogs-client: Makefile 
	biology/py-biopython: Makefile 
	converters/py-mini-amf: Makefile 
	databases/barman: Makefile 
	databases/py-flask-sqlalchemy: Makefile 
	databases/py-influxdb: Makefile 
	databases/py-pgsql: Makefile 
	databases/py-sqlobject: Makefile 
	devel/bpython  : Makefile 
	devel/bzr      : Makefile 
	devel/cvs2svn  : Makefile 
	devel/flake8   : Makefile 
	devel/git-cvs  : Makefile 
	devel/mercurial: Makefile 
	devel/meson    : Makefile 
	devel/pudb     : Makefile 
	devel/py-SOAPpy: Makefile 
	devel/py-arrow : Makefile 
	devel/py-astroid: Makefile 
	devel/py-babel : Makefile 
	devel/py-binaryornot: Makefile 
	devel/py-binplist: Makefile 
	devel/py-buildslave: Makefile 
	devel/py-cairocffi: Makefile 
	devel/py-cffi  : Makefile 
	devel/py-click-log: Makefile 
	devel/py-doit  : Makefile 
	devel/py-dulwich: Makefile 
	devel/py-execnet: Makefile 
	devel/py-fasteners: Makefile 
	devel/py-freezegun: Makefile 
	devel/py-gevent: Makefile 
	devel/py-hachoir-metadata: Makefile 
	devel/py-html5lib: Makefile 
	devel/py-icalendar: Makefile 
	devel/py-intervaltree: Makefile 
	devel/py-ipykernel: Makefile 
	devel/py-jedi  : Makefile 
	devel/py-jsonschema: Makefile 
	devel/py-jupyter_client: Makefile 
	devel/py-jupyter_core: Makefile 
	devel/py-logilab-common: Makefile 
	devel/py-mock  : Makefile 
	devel/py-modulegraph: Makefile 
	devel/py-more-itertools: Makefile 
	devel/py-nbconvert: Makefile 
	devel/py-nbformat: Makefile 
	devel/py-nbval : Makefile 
	devel/py-nosexcover: Makefile 
	devel/py-objgraph: Makefile 
	devel/py-pexpect: Makefile 
	devel/py-prompt_toolkit: Makefile 
	devel/py-protocols: Makefile 
	devel/py-ruledispatch: Makefile 
	devel/py-test-xdist: Makefile 
	devel/py-test  : Makefile 
	devel/py-testpath: Makefile 
	devel/py-testtools: Makefile 
	devel/py-texscythe: Makefile 
	devel/py-tox   : Makefile 
	devel/py-traitlets: Makefile 
	devel/py-wurlitzer: Makefile 
	devel/py-yamllint: Makefile 
	devel/pylint   : Makefile 
	devel/src      : Makefile 
	editors/py-neovim: Makefile 
	geo/mapproxy   : Makefile 
	geo/py-fiona   : Makefile 
	geo/py-owslib  : Makefile 
	geo/py-planet  : Makefile 
	geo/py-rasterio: Makefile 
	graphics/py-matplotlib: Makefile 
	graphics/py-qrcode: Makefile 
	graphics/pycha : Makefile 
	lang/pcbasic   : Makefile 
	mail/mailpile  : Makefile 
	mail/py-milter : Makefile 
	math/py-affine : Makefile 
	math/py-bottleneck: Makefile 
	math/py-numexpr: Makefile 
	math/py-pandas : Makefile 
	math/py-patsy  : Makefile 
	math/py-snuggs : Makefile 
	math/py-sympy  : Makefile 
	multimedia/py-chromecast: Makefile 
	multimedia/streamlink: Makefile 
	multimedia/yle-dl: Makefile 
	net/aggregate6 : Makefile 
	net/blaeu      : Makefile 
	net/poezio     : Makefile 
	net/py-aiodns  : Makefile 
	net/py-boto3   : Makefile 
	net/py-botocore: Makefile 
	net/py-oauth2  : Makefile 
	net/py-ripe.atlas.cousteau: Makefile 
	net/py-ripe.atlas.sagan: Makefile 
	net/py-ripe.atlas.tools: Makefile 
	net/py-slixmpp : Makefile 
	net/py-tld     : Makefile 
	net/py-xmpp    : Makefile 
	print/py-relatorio: Makefile 
	print/py-reportlab: Makefile 
	productivity/khal: Makefile 
	productivity/vdirsyncer: Makefile 
	security/ROPgadget: Makefile 
	security/fierce: Makefile 
	security/floss : Makefile 
	security/plaso : Makefile 
	security/py-M2Crypto: Makefile 
	security/py-artifacts: Makefile 
	security/py-axolotl: Makefile 
	security/py-dfwinreg: Makefile 
	security/py-miasm: Makefile 
	security/py-oauthlib: Makefile 
	security/py-paramiko: Makefile 
	security/py-rsa: Makefile 
	security/py-service_identity: Makefile 
	security/py-viv_utils: Makefile 
	security/wapiti: Makefile 
	shells/fish    : Makefile 
	shells/py-qtconsole: Makefile 
	sysutils/aws-shell: Makefile 
	sysutils/borgbackup: Makefile 
	sysutils/diffoscope: Makefile 
	sysutils/fabric: Makefile 
	sysutils/google-compute-engine: Makefile 
	sysutils/py-augeas: Makefile 
	sysutils/py-croniter: Makefile 
	sysutils/tarsnapper: Makefile 
	textproc/py-black: Makefile 
	textproc/py-commonmark: Makefile 
	textproc/py-m2r: Makefile 
	textproc/py-nltk: Makefile 
	textproc/py-numpydoc: Makefile 
	textproc/py-ofxparse: Makefile 
	textproc/py-pyRFC3339: Makefile 
	textproc/py-ruamel.yaml: Makefile 
	www/jupyter-notebook: Makefile 
	www/pelican    : Makefile 
	www/py-aiohttp : Makefile 
	www/py-beaker  : Makefile 
	www/py-bleach  : Makefile 
	www/py-feedgenerator: Makefile 
	www/py-flask   : Makefile 
	www/py-frozen-flask: Makefile 
	www/py-httpie  : Makefile 
	www/py-httplib2: Makefile 
	www/py-jinja2  : Makefile 
	www/py-mako    : Makefile 
	www/py-paste-deploy: Makefile 
	www/py-paste-script: Makefile 
	www/py-paste   : Makefile 
	www/py-pylons  : Makefile 
	www/py-repoze-profile: Makefile 
	www/py-requests-mock: Makefile 
	www/py-requests-oauthlib: Makefile 
	www/py-requests: Makefile 
	www/py-terminado: Makefile 
	www/py-tornado : Makefile 
	www/py-weberror: Makefile 
	www/py-webhelpers: Makefile 
	www/py-webtest : Makefile 
	www/py-yarl    : Makefile 
	www/tootstream : Makefile 
	www/weboob     : Makefile 

Log message:
Add RUN_DEPENDS to TEST_DEPENDS automatically for ports using the
lang/python port module. I've not yet come up with a port that
would not need this and one can always set MODPY_TESTDEP to "no"
to prevent the module from touching TEST_DEPENDS.

Idea from afresh1 who pointed out the cpan module already does this.

aja "I support this move."

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jan@cvs.openbsd.org	2019/05/15 06:17:18

Modified files:
	sys/dev        : softraid.c 

Log message:
Fix free(9) sizes in softraid(4)

OK tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/15 06:43:24

Modified files:
	productivity/tryton: Makefile.inc 
	productivity/tryton/5.0/trytond: Makefile 
	productivity/tryton/5.2/trytond: Makefile 

Log message:
RUN_DEPENDS is automatically added to TEST_DEPENDS now.

Now need to add it explicitly.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/05/15 06:59:42

Modified files:
	.              : hackathons.html 

Log message:
extra developer showed up


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/15 07:34:58

Modified files:
	www/p5-HTTP-Headers-Fast: Makefile distinfo 

Log message:
p5-HTTP-Headers-Fast: update to 0.22
Changelog:
https://metacpan.org/source/TOKUHIROM/HTTP-Headers-Fast-0.22/Changes

tweaks and OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/15 07:37:32

Modified files:
	audio/timidity : Makefile distinfo 
	audio/timidity/pkg: PLIST 
Added files:
	audio/timidity/patches: patch-TiMidity++-2_15_0_configure_in 
	                        patch-TiMidity++-2_15_0_timidity_Makefile_am 
	                        patch-TiMidity++-2_15_0_timidity_common_c 
	                        patch-TiMidity++-2_15_0_timidity_freq_c 
	                        patch-TiMidity++-2_15_0_timidity_mfi_c 
	                        patch-TiMidity++-2_15_0_timidity_output_c 
Removed files:
	audio/timidity/patches: patch-TiMidity++-2_13_2_configure_in 
	                        patch-TiMidity++-2_13_2_interface_xaw_i_c 
	                        patch-TiMidity++-2_13_2_timidity_Makefile_am 
	                        patch-TiMidity++-2_13_2_timidity_common_c 
	                        patch-TiMidity++-2_13_2_timidity_freq_c 
	                        patch-TiMidity++-2_13_2_timidity_mfi_c 
	                        patch-TiMidity++-2_13_2_timidity_output_c 
	                        patch-TiMidity++-2_13_2_timidity_sun_a_c 
	audio/timidity/pkg: PFRAG.xaw 

Log message:
Update to timidity-2.15.0, which brings in lots of bug fixes over the 15
years since 2.13.2 was released.
ok ratchov@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/15 07:42:40

Modified files:
	usr.bin/ftp    : cmd.c ftp.h main.c progressmeter.c 

Log message:
Display "bytes received" like the csrg ftp used to when the progressbar
is disabled.
Difference pointed out by deraadt
OK kurtm, sunil


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/15 07:44:18

Modified files:
	usr.sbin/ocspcheck: ocspcheck.c 

Log message:
check result of ftruncate() as we do write() below

ok beck@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/15 07:51:08

Modified files:
	infrastructure/bin: dpb 
	infrastructure/lib/DPB: Trace.pm 

Log message:
get trace to cleanup its children as well (pass them an INT signal)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/15 07:53:17

Modified files:
	infrastructure/lib/DPB: Host.pm External.pm 
	infrastructure/lib/DPB/PortBuilder: Rebuild.pm 

Log message:
stop lying, we are not creating a new host.
incidentally: wipe can't wipe locks from a different
configuration with a host that's not actually running.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/15 07:55:47

Modified files:
	infrastructure/lib/DPB: External.pm 

Log message:
more user input validation: dead hosts can't wipe


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 09:36:59

Modified files:
	usr.bin/ktrace : ktrace.1 
	usr.bin/kdump  : kdump.1 kdump.c 

Log message:
improve wrong markup and poor wording regarding the -t argument
that was spotted by deraadt@;
OK deraadt@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 09:59:24

Modified files:
	games/caesar   : caesar.c 

Log message:
patch from <tleguern at bouledef dot eu> to support backward rotation,
hoping to save somebody's life from the Leather Goddesses of Phobos


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 10:58:56

Modified files:
	lib/libc/stdlib: qsort.3 

Log message:
delete two stray blank lines


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/15 11:21:33

Modified files:
	devel/libsoup  : Makefile distinfo 

Log message:
Update to libsoup-2.66.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/15 11:22:16

Modified files:
	editors/featherpad: Makefile distinfo 
	editors/featherpad/pkg: PLIST 

Log message:
Update to featherpad-0.10.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/15 11:37:19

Modified files:
	lang/kona      : Makefile distinfo 

Log message:
Update to kona-3.2.0.20190514


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/15 11:39:41

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190507


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/15 12:02:19

Modified files:
	databases/ruby-hiera-eyaml-gpg: Makefile distinfo 

Log message:
Update to 0.7.3


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 12:06:09

Modified files:
	usr.bin/less   : cmdbuf.c 

Log message:
UTF-8 cleanup in the function cmd_putstr().
This function is only ever called with constant ASCII string arguments,
so actually it doesn't need any UTF-8 handling whatsoever.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 12:18:08

Modified files:
	usr.bin/less   : charset.c cvt.c funcs.h 

Log message:
Clean up all major UTF-8 issues in cvt.c.
This also allows to delete the buggy, now unused function put_wchar().
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/15 12:18:21

Modified files:
	lib/libutil    : ber_get_string.3 ber_read_elements.3 

Log message:
Consistently make errno a .Vt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 12:25:29

Modified files:
	lib/libutil    : ber_add_string.3 

Log message:
add substantial amounts of missing information;
OK rob@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/15 12:40:56

Modified files:
	multimedia/py-chromecast: Makefile distinfo 

Log message:
Update to py3-chromecast-3.2.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/15 12:42:30

Modified files:
	lib/libutil    : getmaxpartitions.3 getrawpartition.3 

Log message:
sort SEE ALSO;


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/15 12:53:03

Modified files:
	regress/lib/libpthread/malloc_duel: malloc_duel.c 

Log message:
Turn the 2 thread duel into a 11 thread melee.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/15 12:57:19

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.148.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/15 12:57:31

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.148.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/15 12:57:47

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.158.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/15 12:59:43

Modified files:
	textproc/libxslt: Makefile distinfo 

Log message:
update to libxslt-1.1.33

tested in a bulk by aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/15 13:00:47

Modified files:
	share/man/man3 : intro.3 

Log message:
listing all the libutil pages is getting cumbersome, and providing little
benefit - remove it;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/15 13:01:58

Modified files:
	share/man/man1 : register-plist.1 

Log message:
new sentence, new line;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/15 13:04:38

Modified files:
	sysutils/exoscale-cli: Makefile distinfo 

Log message:
Update to exoscale-cli-1.3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/15 13:05:53

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-246.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 13:06:01

Modified files:
	usr.bin/less   : charset.h cmdbuf.c cvt.c line.c 

Log message:
trivial replacement of the home-grown IS_ASCII_OCTET()
with the standard isascii(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/15 13:09:05

Modified files:
	x11/gnome/gedit-plugins: Makefile distinfo 
	x11/gnome/gedit-plugins/pkg: PLIST 

Log message:
update to gedit-plugins-3.32.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/15 13:13:07

Modified files:
	x11/gnome/gedit: Makefile distinfo 

Log message:
update to gedit-3.32.2


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/05/15 13:25:15

Modified files:
	lib/libssl     : Tag: OPENBSD_6_5 ssl_tlsext.c 

Log message:
In DTLS, use_srtp is part of the extended server hello while in TLSv1.3,
it is an encrypted extension.  Include it in the server hello for now.
This will have to be revisited once TLSv1.3 gets there. Fixes SRTP
negotiation.

Problem found by two rust-openssl regress failures reported by mikeb.

with & ok beck

OpenBSD 6.5 errata 002


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/15 13:25:53

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Fix dragging when in view mode rather than copy mode, GitHub issue 1740
from Brad Town.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/15 13:36:20

Modified files:
	usr.bin/less   : charset.c funcs.h 

Log message:
trivial patch to at least make the buggy functions control_char()
and get_wchar() static for now - until they can be deleted


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/05/15 14:27:42

Modified files:
	distrib/miniroot: trimcerts.awk 

Log message:
add copyright grant, requested by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/15 14:59:17

Modified files:
	sys/dev/acpi   : tpm.c 

Log message:
if \n is added in attach, then tpm_init() should skip it.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/15 15:05:56

Modified files:
	regress/sys/kern/unveil: syscalls.c 

Log message:
Add a regression test for path discovery outside of unveil() which
we should eventually fix


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/15 15:18:40

Modified files:
	sys/dev/acpi   : tpm.c 

Log message:
revert previous, since it makes jmc's machine print an extra newline.
several printfs here seem to have mismatched newlines?


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/15 15:25:50

Modified files:
	sys/kern       : kern_malloc.c 

Log message:
rework the zero warning slightly, and more completely disable until we're
more ready to deal with the noise.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/05/15 15:28:21

Modified files:
	sys/dev/acpi   : tpm.c 

Log message:
unrevert, i missed deraadt's commit with the proper fix
noticed by deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/15 16:06:06

Modified files:
	devel/boehm-gc : Makefile 

Log message:
- use https
- this is heavily MD; add a comment making clear that updates to this
need testing on more than just amd64


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/15 17:08:12

Modified files:
	devel/p5-Array-Diff: Makefile distinfo 

Log message:
p5-Array-Diff: update to 0.09
Changelog:
https://metacpan.org/source/NEILB/Array-Diff-0.09/Changes

Original diff from Wen Heping, tweaks from afresh1@, reminded
by Julien Dhaille.

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/15 17:24:32

Modified files:
	devel/p5-Test-Time: Makefile 

Log message:
p5-Test-Time: add MAINTAINER

Julien Dhaille <julien ! dhaille () gmail ! com>, who took care
of the last update for this module, takes MAINTAINER-ship. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/15 19:14:08

Modified files:
	sys/dev/pci    : dwiic_pci.c 

Log message:
Attach two dwiic-pci devices that didn't work before. That problem seems
to have been resolved sometime in the past few months, and attaching
the devices now makes the trackpad and trackpoint on the Dell Precision
7520 work properly.

ok jcs


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/15 21:12:29

Modified files:
	geo/pdal       : Makefile 

Log message:
This picks up libexecinfo if installed.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/15 22:24:14

Modified files:
	sys/uvm        : uvm_map.c 

Log message:
Handle a bit more work without taking the kernel lock.  This should avoid
taking the kernel lock on when operating on the kernel_map when called from
all kernel memory allocation interfaces.

ok visa@, mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/15 22:33:07

Log message:
    Import devel/p5-File-Share 0.25
    
    File::Share is a dropin replacement for File::ShareDir. It supports
    the dist_dir and dist_file functions, except these functions have
    been enhanced to understand when the developer's local ./share/
    directory should be used.  CVS:
    
    From wen heping <wenheping2000 () hotmail ! com> (MAINTAINER)
    OK and tweaks from cwen@
    ----------------------------------------------------------------------
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190515
    
    N ports/devel/p5-File-Share/Makefile
    N ports/devel/p5-File-Share/distinfo
    N ports/devel/p5-File-Share/pkg/DESCR
    N ports/devel/p5-File-Share/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/15 22:33:35

Modified files:
	devel          : Makefile 

Log message:
+p5-File-Share


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/05/15 23:00:00

Modified files:
	usr.sbin/snmpd : mps.c smi.c snmpd.h 

Log message:
Allow arbitrary oids to be specified for the getnext request, instead of
oids needing to be part of the snmpd loaded tree.

This is in line with RFC3416.

OK gerhard@ who apparently has the exact same diff in his repo.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/15 23:24:13

Modified files:
	regress/lib/libpthread: Makefile 

Log message:
enable malloc_duel; "tests want to run" bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/05/15 23:49:22

Modified files:
	usr.sbin/ospfd : ospfd.c ospfd.h parse.y 

Log message:
Do not change router-id on reload if unspecified.

OK remi@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/16 00:23:15

Modified files:
	usr.bin/wall   : ttymsg.c 

Log message:
unveil "w" on ttys was too strict, introducing a failure condition
that non-root walls would not stat() tty permissions.  Pointed out
by Anton Borowka.  The stat is intentional to check for biff-compatible
g+w bit, Correct stat+open TOCTOU into open+fstat, which means the
unveil is correct.  (once again, application of unveil has exposed
a minor TOCTOU).
ok guenther martijn


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/16 00:41:47

Modified files:
	usr.sbin/vmctl : vmctl.c 

Log message:
treat vms that are disabled in vm.conf the same as any other vm that's stopped
"disabled" in this context might imply it being broken or otherwise unusable

prompted by and ok mlarkin@


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2019/05/16 01:30:05

Modified files:
	opensmtpd      : list.html 

Log message:
add link to archives

From: Sergey Bronnikov <estetus@gmail.com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/05/16 01:58:50

Modified files:
	textproc/uncrustify: Makefile distinfo 

Log message:
update uncrustify to 0.69.0.
ok benoit@.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/05/16 02:47:27

Modified files:
	usr.bin/ssh    : ssh-pkcs11-helper.c 

Log message:
Move a variable declaration to the block where it's used to make things
a little tidier for -portable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/16 03:36:05

Modified files:
	textproc/libxml: Makefile distinfo 

Log message:
update to libxml2-2.9.9

tested in a bulk by aja@, thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/05/16 03:37:00

Modified files:
	security/yara  : Makefile.inc 
	security/yara/main: distinfo 
	security/yara/python: Makefile distinfo 

Log message:
update yara to 3.10.0.
ok benoit@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/16 04:07:34

Modified files:
	sysutils/firmware: Tag: OPENBSD_6_5 Makefile.inc 

Log message:
MFC make MASTER_SITES conditional on !GH_ACCOUNT


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/16 04:07:46

Modified files:
	sysutils/firmware: Tag: OPENBSD_6_4 Makefile.inc 

Log message:
MFC make MASTER_SITES conditional on !GH_ACCOUNT


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/16 04:10:23

Modified files:
	sysutils/firmware/intel: Tag: OPENBSD_6_5 Makefile distinfo 
	sysutils/firmware/intel/pkg: Tag: OPENBSD_6_5 PLIST 

Log message:
MFC new intel microcode


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/16 04:10:36

Modified files:
	sysutils/firmware/intel: Tag: OPENBSD_6_4 Makefile distinfo 
	sysutils/firmware/intel/pkg: Tag: OPENBSD_6_4 PLIST 

Log message:
MFC new intel microcode


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/16 05:37:40

Modified files:
	www/weboob     : Makefile distinfo 
	www/weboob/pkg : PLIST 

Log message:
update weboob to 1.5

and switch port to py3 only


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/16 05:39:19

Modified files:
	math/netcdf    : Makefile distinfo 
	math/netcdf/pkg: PLIST 
Removed files:
	math/netcdf/patches: patch-libdispatch_dfile_c 
	                     patch-libdispatch_dparallel_c 

Log message:
update to netcdf-4.7.0

from martin@ (MAINTAINER) with a tweak by me


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/16 06:44:18

Modified files:
	distrib/special/ftp: Makefile 
	distrib/special/ftp-ssl: Makefile 
	usr.bin/ftp    : Makefile ftp.1 ftp.c main.c util.c 
Added files:
	usr.bin/ftp    : cmds.c cmds.h cmdtab.c complete.c cookie.c 
	                 domacro.c extern.h fetch.c ftp_var.h list.c 
	                 pathnames.h ruserpass.c small.c small.h 
	                 stringlist.c stringlist.h 
Removed files:
	usr.bin/ftp    : cmd.c file.c ftp.h http.c progressmeter.c url.c 
	                 xmalloc.c xmalloc.h 

Log message:
Revert suni'ls ftp rewrite for now.
We are juggling too many things at the moment and we can't deal with
the differences in behaviour right now.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/16 07:35:17

Modified files:
	lib/libc/gen   : err.3 glob.3 psignal.3 
	lib/libc/stdio : perror.3 
	lib/libc/string: strerror.3 strsignal.3 
	lib/libc/time  : strftime.3 strptime.3 

Log message:
More consistently put remarks about the less useful LC_* categoties,
i.e. those other than LC_CTYPE, into the CAVEATS section, and
standardize wording somewhat.
OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/16 07:52:47

Modified files:
	sys/kern       : kern_smr.c 
	sys/sys        : sched.h 

Log message:
Remove incorrect optimization. The current logic for skipping idle CPUs
does not establish strong enough ordering between CPUs. Consequently,
smr_grace_wait() might incorrectly skip a CPU and invoke an SMR
callback too early.

Prompted by haesbaert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 08:06:05

Modified files:
	graphics/ffmpeg: Makefile 

Log message:
- libass already pulls in iconv so add iconv support to
FFmpeg to enable character set conversion for subtitles.
- Add libxml2 to enable the DASH demuxer.
- Since libxml2 pulls in xz then add xz to FFmpeg for LZMA
support for the TIFF decoder.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/16 08:08:53

Modified files:
	www/kore       : Makefile distinfo 

Log message:
Update kore to 3.3.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/16 08:36:58

Modified files:
	usr.sbin/sensorsd: sensorsd.c 

Log message:
unveil code was unaware of -f option.
From Anton Borowka.
ok sthen


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/16 09:21:40

Modified files:
	.              : events.html 

Log message:
add video link for the recent vmm talk


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 09:28:32

Modified files:
	security/heimdal: Makefile distinfo 
	security/heimdal/pkg: PLIST-main 
Removed files:
	security/heimdal/patches: patch-lib_kadm5_init_s_c 
	                          patch-lib_roken_rand_c 

Log message:
SECURITY update to heimdal-7.6.0.
- CVE-2018-16860 Heimdal KDC: Reject PA-S4U2Self with unkeyed checksum
- CVE-2019-12098: krb5: always confirm PA-PKINIT-KX for anon PKINIT


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 09:28:51

Modified files:
	security/heimdal: Tag: OPENBSD_6_5 Makefile 
Added files:
	security/heimdal/patches: Tag: OPENBSD_6_5 patch-kdc_krb5tgs_c 
	                          patch-lib_krb5_init_creds_pw_c 
	                          patch-lib_krb5_krb5_locl_h 
	                          patch-lib_krb5_pkinit_c 

Log message:
Backport SECURITY fixes for:
- CVE-2018-16860 Heimdal KDC: Reject PA-S4U2Self with unkeyed checksum
- CVE-2019-12098: krb5: always confirm PA-PKINIT-KX for anon PKINIT


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/16 09:35:46

Modified files:
	net/p5-Net-IP-XS: Makefile distinfo 

Log message:
p5-Net-IP-XS: update to 0.21
Changelog:
https://metacpan.org/source/TOMHRR/Net-IP-XS-0.21/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/16 09:38:07

Modified files:
	textproc/p5-Text-Diff-HTML: Makefile distinfo 

Log message:
p5-Text-Diff-HTML: update to 0.08
Changelog:
https://metacpan.org/changes/release/TIMK/Text-Diff-HTML-0.08

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/16 09:38:56

Modified files:
	gnu/llvm/tools/clang/docs/CommandGuide: clang.rst 
	gnu/usr.bin/clang/clang: clang.1 Makefile 
	distrib/sets/lists/comp: clang.amd64 clang.arm64 clang.armv7 
	                         clang.i386 clang.loongson clang.macppc 
	                         clang.octeon clang.sgi clang.sparc64 

Log message:
Stop using the moribund MLINKS bsd.man.mk feature for clang(1).
Patch clang.rst such that "gmake -f Makefile.sphinx man" keeps working.
Using input from jsg@; OK patrick@; "no worries" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/16 09:39:49

Modified files:
	textproc/p5-Text-Format: Makefile distinfo 

Log message:
p5-Text-Format: update to 0.61
Changelog:
https://metacpan.org/source/SHLOMIF/Text-Format-0.61/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/16 09:41:59

Modified files:
	textproc/p5-Text-Reflow: Makefile distinfo 
	textproc/p5-Text-Reflow/pkg: DESCR PLIST 

Log message:
p5-Text-Reflow: update to 1.17
Changelog:
https://metacpan.org/source/MWARD/Text-Reflow-1.17/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/16 09:55:47

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Reset python3 FLAVOR in portgen

When python ports move from python 2 + 3 to only a single version
or the other way we need to reset some values for that to take
effect.

go with it, cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/16 10:00:08

Modified files:
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Have portgen attach MODPY_FLAVOR only if dependency has python3 flavor

go with it, cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/16 10:01:10

Modified files:
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Clean up PyPI get_deps method in portgen

Should be no functional change


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/16 10:07:06

Modified files:
	net/osrtspproxy/patches: patch-librtsp_rtspprot_cpp 
Added files:
	net/osrtspproxy/patches: patch-libapp_Avl_h patch-libapp_types_h 

Log message:
Remove the min and max defines to make it compile with ports gcc.
reported, tested, OK cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/16 10:18:55

Modified files:
	distrib/sets/lists/man: mi 
	gnu/usr.bin/perl: Makefile.bsd-wrapper1 

Log message:
Stop using the moribund MLINKS bsd.man.mk feature for Perl manuals.
It was only used in a very unsystematic way for a small minority
of Perl manual pages anyway, and using it consistently would entail
unsustainable maintenance workload.
Using input from afresh1@ espie@ and Grinnz#p5p;
OK afresh1@ espie@ jmc@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 10:24:48

Modified files:
	www            : Makefile 

Log message:
Unbreak sqlports, there's no more weboob,python3.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/16 10:57:16

Modified files:
	.              : errata64.html errata65.html 

Log message:
release srtp errata


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/05/16 11:12:03

Modified files:
	.              : errata64.html 

Log message:
Only 6.5 is affected by the srtp issue.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/16 11:39:21

Modified files:
	lib/libutil    : ber_get_string.3 ber_read_elements.3 

Log message:
Correct errno markup. Noticed by schwarze.

Discussed with schwarze and jmc. ok schwarze


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/16 12:12:54

Modified files:
	productivity/tryton/5.0/account: Makefile distinfo 
	productivity/tryton/5.0/account_eu: Makefile distinfo 
	productivity/tryton/5.0/account_invoice: Makefile distinfo 
	productivity/tryton/5.0/account_statement: Makefile distinfo 
	productivity/tryton/5.0/product_cost_fifo: Makefile distinfo 
	productivity/tryton/5.0/production_work_timesheet: Makefile 
	                                                   distinfo 
	productivity/tryton/5.0/sao: Makefile distinfo 
	productivity/tryton/5.0/tryton: Makefile distinfo 

Log message:
update tryton 5.0 serie: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/16 12:15:40

Modified files:
	lang/python    : python.port.mk 

Log message:
set MODPY_TESTDEP dependent to NO_TEST.

it will avoid populate TEST_DEPENDS when the port has explicitly declared there is no test.

ok kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/16 13:47:49

Modified files:
	www/kore       : Makefile 
	www/kore/pkg   : PLIST 

Log message:
Add a curl FLAVOR to Kore, and regen PLIST.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 14:19:32

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/patches: patch-Makefile_in 

Log message:
Update to cups-filters-1.22.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 14:21:41

Modified files:
	x11/gnome/seahorse: Makefile distinfo 

Log message:
Update to seahorse-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 14:27:00

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.150.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 14:27:13

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.150.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 14:27:28

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.160.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 14:43:09

Modified files:
	x11/gtk+2      : Makefile 
	x11/gtk+2/patches: patch-gtk_gtkmountoperation-x11_c 
	x11/gtk+3      : Makefile 
	x11/gtk+3/patches: patch-gtk_gtkmountoperation-x11_c 
	x11/gtk+4      : Makefile 
	x11/gtk+4/patches: patch-gtk_gtkmountoperation-x11_c 

Log message:
Make sure kp is properly initialized.


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/05/16 15:07:33

Modified files:
	usr.sbin/ospfctl: parser.c parser.h 

Log message:
Accept address and number format for "ospfctl show database area XXX".

OK denis@ benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/16 15:11:47

Modified files:
	textproc/p5-Text-SimpleTable: Makefile distinfo 

Log message:
p5-Text-SimpleTable: update to 2.07
Changelog:
https://metacpan.org/source/MRAMBERG/Text-SimpleTable-2.07/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/16 15:12:33

Modified files:
	lib/libutil    : ber.c 

Log message:
Add XXX to a comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/16 15:16:04

Modified files:
	usr.sbin/vmd   : loadfile.h loadfile_elf.c 

Log message:
Unbreak vmctl start foo -b /bsd -d disk.img -cL
Define a local definition of LOADADDR() instead of pulling in
machine/loadfile_machdep.h. vmd -b requires the addresses to be masked
and the new bootloader no longer does that.
OK pd@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/05/16 19:05:20

Modified files:
	sys/dev/ic     : athn.c athnreg.h 

Log message:
For AR9271, use correct clock control register and add a macro to access it.

ok stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/16 21:29:37

Log message:
    Add devel/p5-Test-EOL 2.00
    
    This module checks the correct line endings in your project.
    
    From wen heping <wenheping2000 () hotmail ! com> (MAINTAINER)
    looks good cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190516
    
    N ports/devel/p5-Test-EOL/Makefile
    N ports/devel/p5-Test-EOL/distinfo
    N ports/devel/p5-Test-EOL/pkg/DESCR
    N ports/devel/p5-Test-EOL/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/16 21:30:18

Modified files:
	devel          : Makefile 

Log message:
+p5-Test-EOL


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 21:31:26

Modified files:
	textproc/libical: Makefile distinfo 
	textproc/libical/patches: patch-CMakeLists_txt 
	textproc/libical/pkg: PLIST-glib PLIST-main 

Log message:
Update to libical-3.0.5.
- bulk tested


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/16 21:33:21

Modified files:
	www            : Makefile 

Log message:
Hook up the curl FLAVOR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/05/16 21:40:00

Modified files:
	www/p5-Apache-LogFormat-Compiler: Makefile distinfo 

Log message:
Update www/p5-Apache-LogFormat-Compiler to 0.35

From wen heping <wenheping2000 () hotmail ! com>
tweaks and OK cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/16 21:53:08

Modified files:
	sys/kern       : kern_smr.c subr_xxx.c 

Log message:
Add SMR_ASSERT_NONCRITICAL() in assertwaitok(). This eases debugging
because now the error is detected before context switch.

The sleep code path eventually calls assertwaitok() in mi_switch(),
so the assertwaitok() in the SMR barrier function is somewhat redundant
and can be removed.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/16 23:47:31

Modified files:
	usr.bin/tmux   : cmd-new-session.c 

Log message:
Initialize default size variables, from Thomas Adam.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/16 23:48:26

Modified files:
	usr.bin/tmux   : tty-acs.c 

Log message:
Change a couple of ACS characters to be more sensible and add a few
missing ones, reported by Ricardo Banffy.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/17 00:47:10

Modified files:
	usr.sbin/tcpdump: print-gre.c 

Log message:
handle ERSPAN type I

type I and II share their GRE protocol, but you tell them apart by
checking if a sequence number is used. type I does not use a sequence
number and contains a bare ethernet frame. type II contains a
sequence number and a shim header that is already handled by the
code.

tested with a Dell S5048F-ON and an encapsulated remote port mirror setup.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/17 01:12:33

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Implement mcx_down() and use it to unwind unsuccessful mcx_up() attempts.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/17 04:04:13

Modified files:
	infrastructure/lib/OpenBSD: ReverseSubst.pm 

Log message:
put empty_backsubst into its own function.

fix buglet: call adjust anyhow (from afresh1@)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/17 04:24:18

Modified files:
	infrastructure/bin: update-plist 

Log message:
make code clearer, do not declare a 2nd local i.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/17 06:11:31

Modified files:
	x11/gtk+2/patches: patch-gtk_gtkmountoperation-x11_c 
	x11/gtk+3/patches: patch-gtk_gtkmountoperation-x11_c 
	x11/gtk+4/patches: patch-gtk_gtkmountoperation-x11_c 

Log message:
Merged upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/05/17 06:21:08

Modified files:
	plan9/drawterm : Makefile distinfo 

Log message:
Update to drawterm-20170319 (5c953ddd29fa) from maintainer Stanley Lieber


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/05/17 06:42:45

Modified files:
	security/opendnssec: Makefile distinfo 

Log message:
Update opendnssec 2.1.3 -> 2.1.4
Announcement: https://www.opendnssec.org/2019/05/opendnssec-2-1-4/


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 06:52:46

Modified files:
	net/isc-bind   : Makefile distinfo 
	net/isc-bind/patches: patch-lib_isc_unix_socket_c 
Removed files:
	net/isc-bind/patches: patch-bin_named_client_c 
	                      patch-bin_named_include_named_interfacemgr_h 
	                      patch-bin_named_interfacemgr_c 

Log message:
update to BIND 9.11.7


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/05/17 07:05:48

Modified files:
	build          : mirrors.dat 

Log message:
readd mirror.internode.on.net in Adelaide, they have switched from aarnet as upstream and now have usable files


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/05/17 07:06:28

Modified files:
	.              : ftp.html ftplist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/17 07:27:03

Modified files:
	lang/python    : python.port.mk 

Log message:
It's well-known that update-plist has a hard time on py2/py3 ports
when run outside the py3 flavor, so gently remind the porters.

okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 07:31:29

Modified files:
	devel/libmagic : Makefile distinfo 

Log message:
update to libmagic (file) 5.37


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 07:35:49

Modified files:
	audio/py-acoustid: Makefile distinfo 
	audio/py-acoustid/pkg: PLIST 

Log message:
update to py-acoustid 1.1.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 07:42:00

Modified files:
	audio/beets    : Makefile distinfo 
	audio/beets/pkg: PLIST 

Log message:
update to beets-1.4.8


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/17 08:40:59

Modified files:
	lib/libutil    : ber_get_string.3 

Log message:
add various missing information
and remove the lie that these functions would set errno;
tweaks and OK jmc@; OK rob@ on the previous version


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/17 08:47:03

Modified files:
	gnu/usr.bin/binutils-2.17: Makefile.bsd-wrapper 

Log message:
stop using the moribund MLINKS bsd.man.mk feature;
no functional change intended;
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/17 08:50:41

Modified files:
	gnu/usr.bin/clang/lld: Makefile 

Log message:
stop using the moribund MLINKS bsd.man.mk feature;
no functional change intended;
OK patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 09:39:59

Modified files:
	net/putty      : Makefile 
	net/putty/pkg  : PLIST-gui PLIST-main 

Log message:
net/putty packaging change: move pageant to gui, it's linked against X11 libs.
add a comment in case this can be moved back in a future update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 10:19:41

Modified files:
	audio/jack     : Makefile 
	audio/pms      : Makefile 
	audio/xmcd     : Makefile 
	cad/gnucap     : Makefile 
	chinese/cless  : Makefile 
	comms/c3270    : Makefile 
	comms/pilot-link: Makefile 
	comms/qodem    : Makefile 
	databases/postgresql-previous: Makefile 
	databases/repmgr: Makefile 
	devel/ald      : Makefile 
	devel/avrdude  : Makefile 
	devel/libslang : Makefile 
	devel/libxsvf  : Makefile 
	devel/mspdebug : Makefile 
	devel/p5-Curses: Makefile 
	devel/p5-Term-ReadLine-Gnu: Makefile 
	devel/remake   : Makefile 
	devel/stfl     : Makefile 
	editors/jed    : Makefile 
	editors/jove   : Makefile 
	editors/le     : Makefile 
	editors/nvi    : Makefile 
	editors/uemacs : Makefile 
	editors/zile   : Makefile 
	education/gtypist: Makefile 
	emulators/bochs: Makefile 
	games/clines   : Makefile 
	games/cpat     : Makefile 
	games/dungeon  : Makefile 
	games/eliot    : Makefile 
	games/moria    : Makefile 
	games/nethack/3.4: Makefile 
	games/netris   : Makefile 
	games/omega    : Makefile 
	games/slash-em : Makefile 
	games/slash    : Makefile 
	games/stone-soup: Makefile 
	games/xlife    : Makefile 
	graphics/libcaca: Makefile 
	graphics/s10sh : Makefile 
	korean/hanterm-xf: Makefile 
	lang/datalog   : Makefile 
	lang/ghc       : Makefile 
	lang/scm       : Makefile 
	lang/swi-prolog: Makefile 
	mail/elm       : Makefile 
	mail/lumail    : Makefile 
	mail/metamail  : Makefile 
	mail/nmzmail   : Makefile 
	math/aamath    : Makefile 
	math/foma      : Makefile 
	math/pspp      : Makefile 
	math/sc        : Makefile 
	math/wcalc     : Makefile 
	misc/dvtm      : Makefile 
	misc/lifelines : Makefile 
	misc/most      : Makefile 
	multimedia/gstreamer-0.10/plugins-good: Makefile 
	multimedia/vitunes: Makefile 
	net/cftp       : Makefile 
	net/gopher     : Makefile 
	net/irrtoolset : Makefile 
	net/mcabber    : Makefile 
	net/mosh       : Makefile 
	net/ntp        : Makefile 
	net/pidgin     : Makefile 
	net/pktstat    : Makefile 
	net/rtorrent   : Makefile 
	net/tinyfugue  : Makefile 
	net/trafshow   : Makefile 
	net/ysmv7      : Makefile 
	news/nn        : Makefile 
	plan9/rc       : Makefile 
	productivity/siag: Makefile 
	productivity/tdl: Makefile 
	productivity/tudu: Makefile 
	security/gnupg : Makefile 
	security/nfsshell: Makefile 
	shells/nsh     : Makefile 
	sysutils/shmux : Makefile 
	sysutils/testdisk: Makefile 
	textproc/aspell/core: Makefile 
	textproc/hgrep : Makefile 
	textproc/ispell: Makefile 
	textproc/wdiff : Makefile 
	www/canto      : Makefile 
	x11/fvwm2      : Makefile 

Log message:
update curses WANTLIB entries following the change in base libraries to use soname


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 10:45:30

Modified files:
	audio/audacity : Makefile 
	audio/parlatype: Makefile 
	audio/rhythmbox: Makefile 
	devel/codeblocks: Makefile 
	devel/ddd      : Makefile 
	devel/geany    : Makefile 
	devel/harfbuzz : Makefile 
	devel/jdk/11   : Makefile 
	devel/pango    : Makefile 
	devel/rapidsvn : Makefile 
	devel/sdl2-image: Makefile 
	editors/emacs  : Makefile 
	editors/libreoffice: Makefile 
	emulators/hatari: Makefile 
	emulators/mgba : Makefile 
	emulators/snes9x: Makefile 
	emulators/vbam : Makefile 
	games/hyperrogue: Makefile 
	games/manaplus : Makefile 
	games/megaglest/base: Makefile 
	games/openclonk: Makefile 
	games/scorched3d: Makefile 
	games/scummvm-tools: Makefile 
	games/spacehulk: Makefile 
	games/supertux : Makefile 
	geo/gpx-viewer : Makefile 
	geo/mapserver  : Makefile 
	geo/spatialite/gis: Makefile 
	geo/spatialite/gui: Makefile 
	geo/spatialite/librewms: Makefile 
	graphics/GraphicsMagick: Makefile 
	graphics/clutter/clutter-gst: Makefile 
	graphics/clutter/cogl: Makefile 
	graphics/darktable: Makefile 
	graphics/digikam-kde4: Makefile 
	graphics/gdk-pixbuf2: Makefile 
	graphics/hugin : Makefile 
	graphics/inkscape: Makefile 
	graphics/ipe   : Makefile 
	graphics/krita : Makefile 
	graphics/libgphoto2: Makefile 
	graphics/netpbm: Makefile 
	graphics/opencv: Makefile 
	graphics/opencv2: Makefile 
	graphics/p5-Imager: Makefile 
	graphics/piglit: Makefile 
	graphics/tesseract/tesseract: Makefile 
	mail/claws-mail: Makefile 
	math/R         : Makefile 
	misc/m17n/lib  : Makefile 
	multimedia/gstreamer1/plugins-good: Makefile 
	multimedia/synfig: Makefile 
	net/amule      : Makefile 
	net/filezilla  : Makefile 
	print/poppler  : Makefile 
	print/texlive/base: Makefile 
	sysutils/bacula: Makefile 
	www/chromium   : Makefile 
	www/iridium    : Makefile 
	www/webkitgtk4 : Makefile 
	x11/gnome/aisleriot: Makefile 
	x11/gnome/gcr  : Makefile 
	x11/gnome/libgnomekbd: Makefile 
	x11/gnustep/gui: Makefile 
	x11/gtk3mm     : Makefile 
	x11/gtksourceview4: Makefile 
	x11/jgmenu     : Makefile 
	x11/kde-applications/gwenview: Makefile 
	x11/mate/atril : Makefile 
	x11/mate/caja  : Makefile 
	x11/mate/caja-extensions: Makefile 
	x11/mate/control-center: Makefile 
	x11/mate/desktop: Makefile 
	x11/mate/engrampa: Makefile 
	x11/mate/libmatekbd: Makefile 
	x11/mate/libmateweather: Makefile 
	x11/mate/marco : Makefile 
	x11/mate/notification-daemon: Makefile 
	x11/mate/panel : Makefile 
	x11/mate/pluma : Makefile 
	x11/mate/polkit: Makefile 
	x11/mate/power-manager: Makefile 
	x11/mate/screensaver: Makefile 
	x11/mate/session-manager: Makefile 
	x11/mate/settings-daemon: Makefile 
	x11/mate/system-monitor: Makefile 
	x11/mate/terminal: Makefile 
	x11/virt-viewer: Makefile 
	x11/wxWidgets  : Makefile 
	x11/xfce4/thunar: Makefile 
	x11/xfce4/xfce4-pulseaudio: Makefile 
	x11/xfce4/xfce4-taskmanager: Makefile 
	x11/xfce4/xfce4-weather: Makefile 
	x11/xfce4/xfce4-xkb: Makefile 
	x11/xfce4/xfdashboard: Makefile 

Log message:
set png16 WANTLIB entries back to png following the change in soname
part done by portbump, part by hand (it is easily confused)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 10:50:48

Modified files:
	www/honk       : Makefile 

Log message:
totally missing LIB_DEPENDS/WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 10:53:07

Modified files:
	security/hydra : Makefile 

Log message:
missing libgcrypt dep; "NOT REACHABLE"


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/17 10:53:23

Modified files:
	www/webkitgtk4 : Tag: OPENBSD_6_5 Makefile distinfo 
	www/webkitgtk4/patches: Tag: OPENBSD_6_5 
	                        patch-Source_cmake_WebKitCompilerFlags_cmake 
	                        patch-Source_cmake_WebKitFeatures_cmake 
	www/webkitgtk4/pkg: Tag: OPENBSD_6_5 PLIST 
Removed files:
	www/webkitgtk4/patches: Tag: OPENBSD_6_5 
	                        patch-Source_cmake_FindSSE2_cmake 

Log message:
SECURITY update to webkitgtk4-2.24.2.
- CVE-2019-8595, CVE-2019-8607, CVE-2019-8615


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/17 10:56:21

Modified files:
	www/webkitgtk4 : Makefile distinfo 
	www/webkitgtk4/patches: 
	                        patch-Source_cmake_WebKitCompilerFlags_cmake 
	                        patch-Source_cmake_WebKitFeatures_cmake 
	www/webkitgtk4/pkg: PLIST 
Removed files:
	www/webkitgtk4/patches: patch-Source_cmake_FindSSE2_cmake 

Log message:
SECURITY update to webkitgtk4-2.24.2.
- CVE-2019-8595, CVE-2019-8607, CVE-2019-8615


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/17 11:01:08

Modified files:
	math/arpack    : Makefile 
	math/arpack/pkg: PLIST 

Log message:
* Always build shared libs with -fPIC, never -fpic.  Fixes build on aarch64.
* Do not build the profiling library.
* No test target available.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/17 11:24:20

Modified files:
	multimedia/dav1d: Makefile distinfo 
Removed files:
	multimedia/dav1d/patches: patch-src_itx_tmpl_c patch-src_lib_c 
	                          patch-src_thread_h 
	                          patch-src_win32_thread_c 

Log message:
Update to dav1d-0.3.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/17 11:26:29

Modified files:
	x11/gnome/todo : Makefile 

Log message:
Sync WANTLIB.

prodded by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/17 11:42:15

Modified files:
	math/cblas     : Makefile 

Log message:
Always build shared libs with -fPIC, never -fpic.  Fixes aarch64.


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2019/05/17 11:45:57

Modified files:
	.              : events.html 
Added files:
	papers         : bsdcan2019_unwind.pdf 

Log message:
add my bsdcan slides


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/17 13:07:16

Modified files:
	sys/arch/amd64/amd64: cpu.c genassym.cf identcpu.c locore.S 
	                      mainbus.c vmm.c vmm_support.S 
	sys/arch/amd64/conf: Makefile.amd64 files.amd64 
	sys/arch/amd64/include: codepatch.h cpu.h specialreg.h vmmvar.h 
Added files:
	sys/arch/amd64/amd64: mds.S 

Log message:
Mitigate Intel's Microarchitectural Data Sampling vulnerability.
If the CPU has the new VERW behavior than that is used, otherwise
use the proper sequence from Intel's "Deep Dive" doc is used in the
return-to-userspace and enter-VMM-guest paths.  The enter-C3-idle
path is not mitigated because it's only a problem when SMT/HT is
enabled: mitigating everything when that's enabled would be a _huge_
set of changes that we see no point in doing.

Update vmm(4) to pass through the MSR bits so that guests can apply
the optimal mitigation.

VMM help and specific feedback from mlarkin@
vendor-portability help from jsg@ and kettenis@
ok kettenis@ mlarkin@ deraadt@ jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/17 13:07:47

Modified files:
	sys/arch/amd64/include: cpu_full.h 

Log message:
Oops, forgot to include a copyright year when originally added


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/17 13:14:08

Modified files:
	games/pingus   : Makefile 
Added files:
	games/pingus/patches: patch-src_pingus_screens_demo_session_cpp 

Log message:
pingus: fix the build with ports-gcc by adding a missing header
While here, move HOMEPAGE to https.

OK bentley@


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2019/05/17 13:14:37

Modified files:
	.              : events.html 
Added files:
	papers         : bsdcan2019-accessible-openbsd-laptop.pdf 

Log message:
add slides for my bsdcan 2019 talk


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/17 14:01:59

Modified files:
	devel/harfbuzz : Makefile 

Log message:
Bring back lost WANTLIB from the png16 ->png change.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/17 14:08:38

Modified files:
	regress/sys/kern: Makefile 

Log message:
Add realpath to regress


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/17 14:23:24

Modified files:
	devel/p5-Term-Encoding: Makefile distinfo 

Log message:
p5-Term-Encoding: update to 0.03
Changelog:
https://metacpan.org/release/MIYAGAWA/Term-Encoding-0.03

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/17 14:41:54

Modified files:
	databases/sqlports: Makefile 
	databases/sqlports/files: Inserter.pm Sql.pm Var.pm mksqlitedb 

Log message:
create indices for all fullpkgpaths in secondary tables, this ought
to speed up some requests at least a little bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/17 14:42:44

Modified files:
	sbin/dhclient  : kroute.c 

Log message:
Don't put dhclient into a loop when interface-mtu is present
in a lease.

dhclient.c r1.634 made every RTM_IFINFO restart the DHCP protocol
and obtain a new/renewed lease. If the lease contained
interface-mtu the interface MTU was set. An RTM_IFINFO is
generated every time an interface MTU is set.

So only set the interface MTU if it is different from the
existing MTU. Fix using %d to print an unsigned value in passing.

Noticed and fix inmproved & tested by Bj??rn Ketelaars while
usihg the wifi on Dutch Railways.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/17 15:06:08

Modified files:
	textproc/p5-Text-Table: Makefile distinfo 

Log message:
p5-Text-Table: update to 1.133
Changelog:
https://metacpan.org/source/SHLOMIF/Text-Table-1.133/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/17 15:10:47

Modified files:
	textproc/p5-Text-WordDiff: Makefile distinfo 
	textproc/p5-Text-WordDiff/pkg: DESCR 

Log message:
p5-Text-WordDiff: update to 0.09
Changelog:
https://metacpan.org/source/TIMK/Text-WordDiff-0.09/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/05/17 15:49:43

Modified files:
	www/gitea      : Makefile distinfo 
	www/gitea/patches: patch-custom_conf_app_ini_sample 
	www/gitea/pkg  : PLIST 

Log message:
Update gitea 1.7.6 -> 1.8.1
Take maintainership, ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 16:51:05

Modified files:
	x11/fvwm2      : Makefile 

Log message:
unbork fvwm2 WANTLIB; portbump -W/-w considered harmful


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 16:52:26

Modified files:
	textproc/ispell: Makefile 

Log message:
unbork ispell WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/17 18:18:19

Modified files:
	devel/py-twisted: Makefile 
	graphics/xzgv  : Makefile 
	mail/mblaze    : Makefile 

Log message:
Remove maintainers per their requests


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/05/17 18:20:59

Modified files:
	sysutils/rancid: Makefile distinfo 
	sysutils/rancid/pkg: PLIST 

Log message:
Update rancid 3.8 -> 3.9
Changelog: https://www.shrubbery.net/rancid/CHANGES
Update maintainer's e-mail address


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/17 18:33:52

Modified files:
	lang/python    : python.port.mk 

Log message:
check that FLAVORS is defined before using it in .if; problem with "make
plist" following prior commit reported by juanfra@ with devel/mercurial.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/17 19:26:36

Modified files:
	textproc/p5-XML-RSS: Makefile distinfo 
	textproc/p5-XML-RSS/pkg: PLIST 

Log message:
p5-XML-RSS: update to 1.60
Changelog:
https://metacpan.org/source/SHLOMIF/XML-RSS-1.60/Changes

tweaks and OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/17 19:34:20

Modified files:
	devel/p5-Term-ProgressBar: Makefile distinfo 
	devel/p5-Term-ProgressBar/pkg: PLIST 

Log message:
p5-Term-ProgressBar: update to 2.22
Changelog:
https://metacpan.org/source/MANWAR/Term-ProgressBar-2.22/Changes

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/18 06:13:34

Modified files:
	audio/audacity : Makefile 
	audio/jack     : Makefile 
	audio/mp3blaster: Makefile 
	audio/swh-plugins: Makefile 
	audio/timidity : Makefile 
	cad/tkgate     : Makefile 
	devel/cjose    : Makefile 
	emulators/nestopia: Makefile 
	games/angband  : Makefile 
	games/liblcf   : Makefile 
	games/numptyphysics: Makefile 
	games/zangband : Makefile 
	graphics/tesseract/tesseract: Makefile 
	mail/abook     : Makefile 
	math/libqalculate: Makefile 
	multimedia/minidlna: Makefile 
	multimedia/motion: Makefile 
	net/seafile/libsearpc: Makefile 
	net/seafile/seafile: Makefile 
	security/aircrack-ng: Makefile 
	security/pcsc-cyberjack: Makefile 
	textproc/hunspell: Makefile 
	x11/gnome/menus: Makefile 
	x11/mate/menus : Makefile 

Log message:
switch to CONFIGURE_STYLE=autoreconf


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/05/18 06:59:32

Modified files:
	sys/net        : bpf.c bpfdesc.h 

Log message:
BPF: remove redundant reference counting of filedescriptors

OK visa@, OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/18 07:32:19

Modified files:
	devel/kdiff3   : Makefile distinfo 
	devel/kdiff3/pkg: PLIST 
Removed files:
	devel/kdiff3/patches: patch-src-QT4_kdiff3_pro 
	                      patch-src-QT4_optiondialog_cpp 

Log message:
Update kdiff3 to 1.8

This update get rid of Qt3 and switch to the modern KDE framework 5.

Tweak and OK kn@


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/05/18 07:52:58

Modified files:
	.              : want.html 

Log message:
I'm looking for a umb(4) device for my X270 to make the integration with
the rest of the network stack better.


CVSROOT:	/cvs
Module name:	src
Changes by:	tim@cvs.openbsd.org	2019/05/18 08:02:27

Modified files:
	sys/dev        : softraid.c 

Log message:
Correct free size. Fixes a panic when detaching crypto volumes.

OK jan@, "yes please" tedu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/18 08:48:15

Modified files:
	x11/xfce4/thunar: Makefile distinfo 
	x11/xfce4/thunar/pkg: PLIST 

Log message:
Bugfix update to thunar 1.6.17


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/18 08:49:35

Modified files:
	x11/xfce4/tumbler: Makefile distinfo 

Log message:
Update to tumbler 0.2.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/18 09:00:41

Modified files:
	games/nethack/3.6: Makefile distinfo 
	games/nethack/3.6/files: x-config 
	games/nethack/3.6/patches: patch-include_system_h 
	                           patch-include_tcap_h 
	                           patch-include_unixconf_h 
	                           patch-src_files_c patch-src_hacklib_c 
	                           patch-sys_share_unixtty_c 
	                           patch-sys_unix_Makefile_src 
	                           patch-sys_unix_Makefile_top 
	                           patch-win_tty_termcap_c 
	games/nethack/3.6/pkg: PLIST 
Removed files:
	games/nethack/3.6/patches: patch-util_makedefs_c 

Log message:
update to 3.6.2

took me a while to get to it, because I had to check for compatibility,
and the build system is still... unique.

Save files from 3.6.0 will still work, so the directories stay the same.


CVSROOT:	/cvs
Module name:	www
Changes by:	bluhm@cvs.openbsd.org	2019/05/18 09:15:09

Modified files:
	.              : events.html 
Added files:
	papers         : bsdcan2019-perform-slides.pdf 

Log message:
Add slides "Measuring Performance on OpenBSD" at BSDCan 2019.


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2019/05/18 09:23:55

www/papers/bsdcan2019-unveil

Update of /cvs/www/papers/bsdcan2019-unveil
In directory cvs.openbsd.org:/tmp/cvs-serv73730/bsdcan2019-unveil

Log Message:
Directory /cvs/www/papers/bsdcan2019-unveil added to the repository


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2019/05/18 09:24:40

Added files:
	papers/bsdcan2019-unveil: index.html mgp00001.html 
	                          mgp00001.idx.jpg mgp00001.jpg 
	                          mgp00001.txt mgp00002.html 
	                          mgp00002.idx.jpg mgp00002.jpg 
	                          mgp00002.txt mgp00003.html 
	                          mgp00003.idx.jpg mgp00003.jpg 
	                          mgp00003.txt mgp00004.html 
	                          mgp00004.idx.jpg mgp00004.jpg 
	                          mgp00004.txt mgp00005.html 
	                          mgp00005.idx.jpg mgp00005.jpg 
	                          mgp00005.txt mgp00006.html 
	                          mgp00006.idx.jpg mgp00006.jpg 
	                          mgp00006.txt mgp00007.html 
	                          mgp00007.idx.jpg mgp00007.jpg 
	                          mgp00007.txt mgp00008.html 
	                          mgp00008.idx.jpg mgp00008.jpg 
	                          mgp00008.txt mgp00009.html 
	                          mgp00009.idx.jpg mgp00009.jpg 
	                          mgp00009.txt mgp00010.html 
	                          mgp00010.idx.jpg mgp00010.jpg 
	                          mgp00010.txt mgp00011.html 
	                          mgp00011.idx.jpg mgp00011.jpg 
	                          mgp00011.txt mgp00012.html 
	                          mgp00012.idx.jpg mgp00012.jpg 
	                          mgp00012.txt mgp00013.html 
	                          mgp00013.idx.jpg mgp00013.jpg 
	                          mgp00013.txt mgp00014.html 
	                          mgp00014.idx.jpg mgp00014.jpg 
	                          mgp00014.txt mgp00015.html 
	                          mgp00015.idx.jpg mgp00015.jpg 
	                          mgp00015.txt mgp00016.html 
	                          mgp00016.idx.jpg mgp00016.jpg 
	                          mgp00016.txt mgp00017.html 
	                          mgp00017.idx.jpg mgp00017.jpg 
	                          mgp00017.txt mgp00018.html 
	                          mgp00018.idx.jpg mgp00018.jpg 
	                          mgp00018.txt mgp00019.html 
	                          mgp00019.idx.jpg mgp00019.jpg 
	                          mgp00019.txt mgp00020.html 
	                          mgp00020.idx.jpg mgp00020.jpg 
	                          mgp00020.txt mgp00021.html 
	                          mgp00021.idx.jpg mgp00021.jpg 
	                          mgp00021.txt mgp00022.html 
	                          mgp00022.idx.jpg mgp00022.jpg 
	                          mgp00022.txt mgp00023.html 
	                          mgp00023.idx.jpg mgp00023.jpg 
	                          mgp00023.txt mgp00024.html 
	                          mgp00024.idx.jpg mgp00024.jpg 
	                          mgp00024.txt mgp00025.html 
	                          mgp00025.idx.jpg mgp00025.jpg 
	                          mgp00025.txt mgp00026.html 
	                          mgp00026.idx.jpg mgp00026.jpg 
	                          mgp00026.txt mgp00027.html 
	                          mgp00027.idx.jpg mgp00027.jpg 
	                          mgp00027.txt mgp00028.html 
	                          mgp00028.idx.jpg mgp00028.jpg 
	                          mgp00028.txt mgp00029.html 
	                          mgp00029.idx.jpg mgp00029.jpg 
	                          mgp00029.txt mgp00030.html 
	                          mgp00030.idx.jpg mgp00030.jpg 
	                          mgp00030.txt mgp00031.html 
	                          mgp00031.idx.jpg mgp00031.jpg 
	                          mgp00031.txt mgp00032.html 
	                          mgp00032.idx.jpg mgp00032.jpg 
	                          mgp00032.txt 

Log message:
Add my bsdcan2019 unveil talk


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2019/05/18 09:45:43

Modified files:
	.              : events.html 

Log message:
Add my bsdcan talk and tutorial


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2019/05/18 09:46:29

Modified files:
	.              : events.html 

Log message:
fix oopsie


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/18 09:57:22

Modified files:
	sys/arch/octeon/octeon: machdep.c 

Log message:
Add parsing for standard boot options.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/05/18 10:05:27

Modified files:
	lang/jruby/patches: patch-jruby-launcher_argparser_cpp 
	                    patch-jruby-launcher_unixlauncher_cpp 
Added files:
	lang/jruby/patches: patch-jffi_build_xml 
	                    patch-jffi_src_main_java_com_kenai_jffi_ObjectBuffer_java 
	                    patch-jffi_version_xml 
Removed files:
	lang/jruby/patches: patch-jffi_jni_GNUmakefile 
	                    patch-jruby-launcher_Makefile 
	                    patch-jruby-launcher_inc_Makefile-conf_mk 

Log message:
Prepare JRuby for Java 11

Keep using Java 8, but add necessary patches and update jffi and
jruby-launcher dependencies so that Java 11 could be used.  The JRuby
team still recommends the use of Java 8 for JRuby, though that will
be changing in the future.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/18 10:53:39

Modified files:
	bin/md5        : md5.c 

Log message:
freezero() is of no use here, the computed digest is not a secret.
ok millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2019/05/18 12:11:10

Log message:
    import Math::GMPz
    perl interface to the GMP library's integer (mpz) functions
    
    test, tweaks and ok cwen@
    
    Status:
    
    Vendor Tag:	steven
    Release Tags:	steven-20190518
    
    N ports/math/p5-Math-GMPz/Makefile
    N ports/math/p5-Math-GMPz/distinfo
    N ports/math/p5-Math-GMPz/patches/patch-Makefile_PL
    N ports/math/p5-Math-GMPz/patches/patch-Random_Makefile_PL
    N ports/math/p5-Math-GMPz/pkg/DESCR
    N ports/math/p5-Math-GMPz/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/18 12:11:46

Modified files:
	sys/arch/amd64/amd64: cpu.c 

Log message:
Both FreeBSD and I appear to have been confused by intel's deep-dive doc:
the RDCL_NO bit of the ARCH_CAPA msr only indicates one of the MDS
subissues is mitigated; only the MDS_NO bit indicates they're all
mitigated.

ok jsg@ mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2019/05/18 12:12:22

Log message:
    import Math::GMPf
    perl interface to the GMP library's floating point (mpf) functions
    
    test, tweaks and ok cwen@
    
    Status:
    
    Vendor Tag:	steven
    Release Tags:	steven-20190518
    
    N ports/math/p5-Math-GMPf/Makefile
    N ports/math/p5-Math-GMPf/distinfo
    N ports/math/p5-Math-GMPf/patches/patch-Makefile_PL
    N ports/math/p5-Math-GMPf/patches/patch-Random_Makefile_PL
    N ports/math/p5-Math-GMPf/pkg/DESCR
    N ports/math/p5-Math-GMPf/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2019/05/18 12:13:15

Modified files:
	math           : Makefile 

Log message:
+p5-Math-GMPf
+p5-Math-GMPz


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/18 12:45:53

Modified files:
	usr.sbin/ldapd : modify.c 

Log message:
Fix LDAP RFC reference in comment. Also noticed by martijn.

ok guenther@, claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/18 12:53:48

Modified files:
	infrastructure/bin: update-plist 
	infrastructure/lib/OpenBSD: ReverseSubst.pm 

Log message:
implement two new related options, -c and -I (documentation to follow)

tweak the actual plist writer to do two passes:

first pass actually determines object names, and second pass
does the writing.

That way, the first pass can create "canonical" names where
${MODPY_PYCACHE} vanishes, and the second pass can sprinkle
@comment in front of the duplicate dirs.

okay afresh1@


CVSROOT:	/cvs
Module name:	www
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/18 12:54:31

Modified files:
	.              : events.html 
Added files:
	papers         : bsdcan2019-syspatch.pdf 

Log message:
Add my BSDCan 2019 syspatch slides.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/18 12:54:39

Modified files:
	share/man/man1 : update-plist.1 

Log message:
document -c and -I. Use compact literal for the examples, so that the
description is not too lax.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/18 12:56:45

Modified files:
	lang/python    : python.port.mk 

Log message:
make use of new update-plist options (make sure your update-plist is current!)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/18 13:02:05

Modified files:
	x11/dbus       : Makefile distinfo 
	x11/dbus/patches: patch-dbus_dbus-sysdeps-util-unix_c 

Log message:
Update to dbus-1.12.14.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/18 13:38:26

Modified files:
	games/tetris   : scores.c tetris.c tetris.h 

Log message:
Unveil tetris.

ok brynet@, tedu@


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/05/18 14:12:31

Modified files:
	.              : events.html 
Added files:
	papers         : bsdcan2019-tls13.pdf 

Log message:
add my slides on the tls 1.3 state machine


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/18 15:14:10

Modified files:
	usr.bin/tmux   : cmd-queue.c control.c tmux.h 

Log message:
Move the single command flag (CMD_CONTROL) into the shared flags.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/18 15:35:22

Modified files:
	databases/sqlports: Makefile 
	databases/sqlports/files: Sql.pm mksqlitedb 
	databases/sqlports/pkg: PLIST-main 
Added files:
	databases/sqlports/files/scripts: rebuild-sqlports-cache 

Log message:
Add a denormalized table that instantiates the main ports view.

So, Portsq is a snapshot of Ports... dirty but fast.

I had mixed feelings about this.
There's also a script to resync the table.

Grows the db by about 50% (+25MB)

Discussed with sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/18 16:24:51

Modified files:
	infrastructure/lib/DPB: Core.pm 

Log message:
the jobs we start usually live in their own process groups.
So check that, and killpg when applicable


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/18 17:27:20

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.151.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/18 17:27:36

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.151.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/18 17:27:57

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.161.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/18 17:30:21

Modified files:
	www/libsass    : Makefile 

Log message:
libsass: fix runtime on macppc (at least) by changing COMPILER to
ports-gcc for all !base-clang arches.

OK jca@ jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/18 17:31:43

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.11.14.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/18 17:38:39

Modified files:
	share/man/man1 : update-plist.1 

Log message:
unneeded escape, as noticed by jmc@ who can't commit right now


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/18 17:38:53

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-postgresql: Makefile distinfo 
	sysutils/terraform/provider-rundeck: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/18 17:57:16

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.23.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/18 23:53:08

Modified files:
	inputmethods/cellwriter: Makefile distinfo 

Log message:
Update to cellwriter-1.3.6.

ok Vasily Mikhaylichenko (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/19 01:12:55

Modified files:
	emulators/mgba : Makefile 
	emulators/mgba/patches: patch-src_platform_sdl_main_c 

Log message:
Add prot_exec to the pledge promise in all circumstances.

mesa/llvmpipe now calls llvm::sys::Memory::protectMappedMemory() deep
in the bowels of swrast_dri.so.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/19 02:10:55

Modified files:
	sys/kern       : subr_witness.c 

Log message:
include uvm.h -> uvm_extern.h; ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/19 02:27:30

Modified files:
	infrastructure/lib/DPB: Trace.pm 

Log message:
I'm such a doofus, explicitly pass 0 parameters to cleanup,
explicitly 0 parameters to cleanup, otherwise we inherit those from parent.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/19 02:48:59

Modified files:
	infrastructure/bin: pkg_outdated 

Log message:
cosmetic tweak


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/19 02:55:27

Modified files:
	sys/dev        : kcov.c 

Log message:
During fuzzing, one or many fuzzing processes are often stuck waiting on
memory from the subproc malloc subsystem which is exhausted. Attempt to
circumvent such scenarios by allocation the kcov coverage buffer using
km_alloc() instead.

With help from kettenis@ and ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/19 03:34:59

Modified files:
	regress/sys/dev/kcov: kcov.c 

Log message:
pass a context struct to each test function in order to reduce future churn


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/05/19 04:20:12

Modified files:
	net/p5-Net-Whois-Raw: Makefile distinfo 

Log message:
Bugfix update to 2.99021


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/19 05:26:25

Modified files:
	devel/libcoap  : Makefile 
	editors/abiword: Makefile 
	geo/pgpointcloud: Makefile 
	graphics/agg   : Makefile 
	graphics/iec16022: Makefile 
	graphics/libpgf: Makefile 
	graphics/openjpeg: Makefile 
	multimedia/atomicparsley: Makefile 
	net/libmesode  : Makefile 
	net/mac-telnet : Makefile 
	net/nfdump     : Makefile 
	net/ntopng     : Makefile 
	security/p11-kit: Makefile 
	telephony/asterisk-g729: Makefile 
	www/fcgi-cgi   : Makefile 
	www/varnish    : Makefile 

Log message:
switch to CONFIGURE_STYLE=autoreconf


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/19 06:41:42

Modified files:
	infrastructure/lib/DPB/Job: Port.pm 

Log message:
style tweaks, no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/05/19 06:44:55

Modified files:
	usr.bin/aucat  : aucat.c 

Log message:
Fix integer overflow in block size calculation.

Fixes truncation of contents of files with rate above 64kHz
generate in off-line mode (i.e. -n option).


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/19 07:14:56

Modified files:
	www/varnish    : Makefile 

Log message:
Configure with debug symbols if DEBUG is set

OK gonzalo


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/19 08:02:46

Modified files:
	inputmethods/uim: Makefile 
	inputmethods/uim/pkg: PLIST-main 

Log message:
Add misc/m17n/lib support. Otherwise it may be found during a bulk and
dpb will junk it.
Regen WANTLIB/DEPENDS while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/19 08:18:48

Modified files:
	sysutils/borgmatic: Makefile distinfo 
	sysutils/borgmatic/pkg: PLIST 
Added files:
	sysutils/borgmatic/patches: patch-setup_py 

Log message:
update borgmatic to 1.3.5

works with the recent borgbackup update.
relax colorama dependency version requirement.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/19 08:25:10

Modified files:
	print/brlaser  : Makefile distinfo 

Log message:
Update to brlaser-5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/05/19 08:47:59

Modified files:
	devel/jd-gui   : Makefile distinfo 

Log message:
update jd-gui to 1.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/19 08:52:24

Modified files:
	devel/py-colorama: Makefile distinfo 
	devel/py-colorama/pkg: PLIST 

Log message:
Update to py-colorama-0.3.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/19 08:52:36

Modified files:
	sysutils/awscli: Makefile 

Log message:
Depends on py-colorama-0.3.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/19 09:01:25

Modified files:
	print/qpdf     : Makefile distinfo 

Log message:
Update to qpdf-8.4.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/19 09:30:21

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
clarify that later flags modify earlier flags;
triggered by a question from Jan Stary <hans at stare dot cz> on misc@;
OK otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/19 09:46:27

ports/www/varnish/files

Update of /cvs/ports/www/varnish/files
In directory cvs.openbsd.org:/tmp/cvs-serv55740/files

Log Message:
Directory /cvs/ports/www/varnish/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/19 11:34:18

Modified files:
	infrastructure/lib/DPB: Core.pm Job.pm 
	infrastructure/lib/DPB/Job: Port.pm 

Log message:
kill the whole pg each time.

figuring things better doesn't work, and it seems to do exactly
what's required in each case.

do that for stuck jobs as well

fix a long standing oddity where stuck jobs wouldn't log but spew
error messages instead.


CVSROOT:	/cvs
Module name:	www
Changes by:	beck@cvs.openbsd.org	2019/05/19 11:47:48

Modified files:
	papers/bsdcan2019-unveil: mgp00001.idx.jpg mgp00001.jpg 
	                          mgp00003.idx.jpg mgp00003.jpg 
	                          mgp00026.idx.jpg mgp00026.jpg 

Log message:
Re-generate


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/05/19 11:48:42

Modified files:
	lang/racket-minimal: Makefile distinfo 
	lang/racket-minimal/pkg: PLIST 

Log message:
Update to racket 7.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/19 12:09:52

Modified files:
	x11/xfce4/xfce4-statusnotifier: Makefile 

Log message:
Fix WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/19 13:13:47

Modified files:
	archivers/libtar: Makefile 
	audio/schismtracker: Makefile 
	audio/wavpack  : Makefile 
	comms/libhidapi: Makefile 
	comms/tlf      : Makefile 
	converters/libytnef: Makefile 
	databases/mdbtools: Makefile 
	devel/gsoap    : Makefile 
	devel/gtkparasite: Makefile 
	devel/libinotify: Makefile 
	devel/liblognorm: Makefile 
	devel/ode      : Makefile 
	devel/protobuf-c: Makefile 
	devel/sdl2-gfx : Makefile 
	games/abuse    : Makefile 
	games/chocolate-doom: Makefile 
	games/liberalcrimesquad: Makefile 
	games/manaplus : Makefile 
	games/xmoto    : Makefile 
	geo/osm-gps-map: Makefile 
	graphics/viewnior: Makefile 
	mail/mu        : Makefile 
	multimedia/transcode: Makefile 
	net/ike-scan   : Makefile 
	print/gtklp    : Makefile 
	print/libpaper : Makefile 
	print/muttprint: Makefile 
	print/ptouch-driver: Makefile 
	security/hashdeep: Makefile 
	security/libpwquality: Makefile 
	security/opensc: Makefile 
	sysutils/exfat-fuse: Makefile 
	sysutils/riemann-c-client: Makefile 
	sysutils/usbutils: Makefile 
	textproc/enchant: Makefile 
	textproc/iksemel: Makefile 
	www/libsass    : Makefile 
	www/sassc      : Makefile 
	x11/x11vnc     : Makefile 
	x11/xclip      : Makefile 

Log message:
switch to CONFIGURE_STYLE=autoreconf


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/19 13:37:09

Modified files:
	www/nginx      : Makefile 

Log message:
Build the stream module with ssl support

ok robert@ (maintainer), jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/19 13:44:53

Modified files:
	net/wireguard-go: Makefile 

Log message:
take maintainership for wireguard-go too; ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2019/05/19 13:47:41

Modified files:
	share/man/man1 : update-plist.1 

Log message:
It uses hw.ncpuonline since r1.170

ok espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/19 13:58:52

Modified files:
	databases/p5-Data-RandomPerson: Makefile 
	devel/hs-cereal: Makefile 
	devel/hs-dlist : Makefile 
	devel/hs-primitive: Makefile 
	devel/hs-unix-compat: Makefile 
	devel/p5-MooseX-ConfigFromFile: Makefile 
	devel/p5-MooseX-Getopt: Makefile 
	devel/p5-MooseX-Role-WithOverloading: Makefile 
	devel/p5-MooseX-Types-Common: Makefile 
	devel/p5-Test-SubCalls: Makefile 
	mail/bmf       : Makefile 
	mail/greyscanner: Makefile 
	math/p5-Algorithm-Combinatorics: Makefile 
	net/bitlbee-facebook: Makefile 
	textproc/hs-bytestring-show: Makefile 
	textproc/hs-xml: Makefile 
	textproc/p5-Catalyst-Plugin-Markdown: Makefile 
	textproc/p5-Text-DoubleMetaphone: Makefile 
	www/p5-Apache-Session-Memcached: Makefile 
	www/p5-Catalyst-Plugin-Cache-Memcached: Makefile 
	www/p5-Catalyst-Plugin-PageCache: Makefile 

Log message:
Remove maintainers whose addresses bounce


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/19 15:07:18

Modified files:
	devel/p5-Term-ReadLine-Gnu: Makefile distinfo 
	devel/p5-Term-ReadLine-Gnu/pkg: PLIST 

Log message:
p5-Term-ReadLine-Gnu: update to 1.36
Changelog:
https://metacpan.org/source/HAYASHI/Term-ReadLine-Gnu-1.36/Changes

tweaks and OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/19 15:10:50

Modified files:
	devel/p5-Term-Shell: Makefile distinfo 

Log message:
p5-Term-Shell: update to 0.11
Changelog:
https://metacpan.org/changes/release/SHLOMIF/Term-Shell-0.11

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/19 15:13:26

Modified files:
	devel/p5-Term-Size: Makefile distinfo 
	devel/p5-Term-Size/pkg: PLIST 

Log message:
p5-Term-Size: update to 0.209
Changelog:
https://metacpan.org/source/FERREIRA/Term-Size-0.209/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/19 15:26:03

Modified files:
	infrastructure/lib/DPB/Job: Port.pm 

Log message:
TaskFactory works better with a hint
noticed by kili@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/05/19 18:20:36

Modified files:
	usr.bin/ssh    : ssh-keygen.1 sshkey.c 

Log message:
When signing certificates with an RSA key, default to using the
rsa-sha2-512 signature algorithm. Certificates signed by RSA keys
will therefore be incompatible with OpenSSH < 7.2 unless the default
is overridden.

Document the ability of the ssh-keygen -t flag to override the
signature algorithm when signing certificates, and the new default.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/05/19 18:25:55

Modified files:
	usr.bin/ssh    : auth2-pubkey.c 

Log message:
embiggen format buffer size for certificate serial number so
that it will fit a full 64 bit integer. bz#3012 from Manoel Domingues
Junior


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2019/05/19 20:11:22

Modified files:
	games/tetris   : scores.c 

Log message:
Remove unused variables; no binary change.

From Jake Champlin


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/19 20:28:19

Modified files:
	www/py-requests: Makefile distinfo 

Log message:
Update to py-requests-2.22.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/19 20:30:22

Modified files:
	www/py-requests: Makefile 

Log message:
Slight reordering


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/05/19 22:26:41

Log message:
    This is FAudio, an XAudio reimplementation that focuses solely on developing
    fully accurate DirectX Audio runtime libraries for the FNA project, including
    XAudio2, X3DAudio, XAPO, and XACT3.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190519
    
    N ports/audio/faudio/Makefile
    N ports/audio/faudio/distinfo
    N ports/audio/faudio/pkg/DESCR
    N ports/audio/faudio/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/05/19 22:29:51

Modified files:
	audio          : Makefile 

Log message:
+faudio


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/19 22:47:02

Modified files:
	audio/fluidsynth: Makefile 
	devel/droplet  : Makefile 
	devel/libuv    : Makefile 
	devel/universal-ctags: Makefile 
	devel/valgrind : Makefile 
	emulators/x48  : Makefile 
	games/qstat    : Makefile 
	geo/libpostal  : Makefile 
	graphics/geeqie: Makefile 
	graphics/mypaint-brushes: Makefile 
	inputmethods/scim-chewing: Makefile 
	mail/libetpan  : Makefile 
	net/bitcoin    : Makefile 
	net/litecoin   : Makefile 
	net/mlvpn      : Makefile 
	net/rsnapshot  : Makefile 
	security/fwbuilder: Makefile 
	security/yara/main: Makefile 
	sysutils/simple-mtpfs: Makefile 
	sysutils/tmate : Makefile 
	telephony/libzrtp: Makefile 
	textproc/liblrdf: Makefile 
	www/gumbo      : Makefile 
	x11/tilda      : Makefile 
	x11/xpad       : Makefile 

Log message:
switch to CONFIGURE_STYLE=autoreconf


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/19 23:35:46

Modified files:
	usr.bin/tmux   : input.c 

Log message:
Fix the color space parameter in RGB SGR, from Brad Town.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/20 00:01:59

Modified files:
	usr.bin/ssh    : ssh-keygen.1 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/20 00:04:45

Modified files:
	lib/libcrypto/man: RSA_set_method.3 
	lib/libssl/man : SSL_CTX_set_cipher_list.3 
	                 SSL_CTX_use_certificate.3 

Log message:
*an* RSA;


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/05/20 01:04:13

Modified files:
	usr.sbin/smtpd : parse.y 

Log message:
rev 1.219 of the file was a fix to an LMTP issue that was misunderstood. we
fixed the root cause in mda_variables.c months ago independantely but we're
still carrying this diff which is not only unnecessary now, but is also the
cause of a bug with mailer-daemons going through an LMTP mda.

issue reported by otto@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 02:15:31

Modified files:
	net/wireguard-go: Makefile 

Log message:
ONLY_FOR_ARCHS=amd64; go's zerrors_openbsd_*.go files only define EPROTO
for amd64, not i386/arm.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 02:45:11

Modified files:
	net/net-snmp   : Makefile 
Added files:
	net/net-snmp/patches: patch-snmplib_snmp_logging_c 

Log message:
add patch, 'Avoid off-by-one error when logging "" to a file'
from net-snmp upstream via Fabian Raetz


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 04:31:23

Modified files:
	databases/mariadb: Makefile 

Log message:
MariaDB port tweaks from Brad;

For libmariadb don't try to pick up cURL and use external zlib.
For the CONNECT engine don't try to pick up Mongo.

(plus small comment/ONLY_FOR_ARCHS tweaks and s/do-regress/do-test/)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/20 05:34:37

Modified files:
	usr.bin/tmux   : cmd-list.c 

Log message:
Add a helper to allocate a cmd_list.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/20 05:46:06

Modified files:
	usr.bin/tmux   : cmd-command-prompt.c cmd-confirm-before.c 
	                 cmd-display-panes.c cmd-queue.c menu.c 
	                 server-client.c server.c tmux.h 

Log message:
Replace the various identical error callbacks with a single one in cmd-queue.c.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/20 05:46:38

Modified files:
	textproc/highlight: Makefile distinfo 
	textproc/highlight/patches: patch-man_highlight_1 
	textproc/highlight/pkg: PLIST 

Log message:
Update to highlight-3.51.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/20 06:28:29

Modified files:
	misc/osinfo/osinfo-db: Makefile 

Log message:
Merged upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/20 07:23:33

Modified files:
	usr.bin/tmux   : cfg.c cmd-source-file.c tmux.h 

Log message:
Fix ordering of source-file with multiple files and add flags to load_cfg.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 07:23:45

Modified files:
	net/librenms   : Makefile 
	mail/roundcubemail: Makefile 
	mail/rcube-contextmenu: Makefile 
	mail/rcube-dkimstatus: Makefile 
	mail/rcube-dovecot_ident: Makefile 
	mail/rcube-ldapAliasSync: Makefile 
	mail/rcube-markasjunk2: Makefile 
	mail/rcube-sieverules: Makefile 
	mail/rcube-sieverules/pkg: DESCR 
	mail/rcube-yubikey-plugin: Makefile 

Log message:
- switch librenms, roundcube and related ports to php 7.3

- mention in rcube-sieverules/pkg/DESCR that it's unmaintained upstream
(suggest using the bundled Managesieve plugin instead)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 07:24:20

Modified files:
	www/composer   : Makefile distinfo 

Log message:
update to composer-1.8.5, switch to MODPHP_VERSION=7.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/05/20 07:36:33

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_4 Makefile 

Log message:
Force the PHP version to 7.1 which is the minimum required by
Nextcloud, spotted by matthieu@ by the hard way.

Discussed with sthen@

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2019/05/20 08:59:05

Modified files:
	lang/gcc/8     : Makefile 
	lang/gcc/8/patches: patch-gcc_config_aarch64_openbsd_h 
	                    patch-gcc_config_alpha_openbsd_h 
	                    patch-gcc_config_arm_openbsd_h 
	                    patch-gcc_config_i386_openbsdelf_h 
	                    patch-gcc_config_mips_openbsd_h 
	                    patch-gcc_config_pa_pa-openbsd_h 
	                    patch-gcc_config_sparc_openbsd64_h 

Log message:
Adjust gcc specs to not pass -dynamic-linker to ld if -shared is given on
the command line.  This resulted in shared libraries with an .interp section,
confusing plist generation tools.

Discussed with espie@, guenther@ and kettenis@; initial patch from espie@.

ok espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/20 08:59:37

Modified files:
	security/nss   : Makefile 
	security/nss/pkg: DESCR 

Log message:
Stop mentioning SSLv2 and SSLv3

ok landry@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2019/05/20 09:12:28

Modified files:
	devel/libexecinfo: Makefile 
	devel/libexecinfo/patches: patch-examples_Makefile 
	                           patch-libbacktrace_Makefile 
	                           patch-libbacktrace_backtrace_3 
	devel/libexecinfo/pkg: PLIST 

Log message:
Delete the needless MLINKS because the feature will soon be removed
from base.  Instead, add the missing .Nm macros to the NAME section
of the manual page.  Delete the misleading MANDIR variable and
regenate the patches while here.  Bump.
OK sthen@ marco@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/20 09:28:29

Modified files:
	net/openconnect: Makefile distinfo 

Log message:
Update to openconnect-8.03.

Fairly minor update. Announcement, which includes details, can be found
at
http://lists.infradead.org/pipermail/openconnect-devel/2019-May/005358.html

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 09:55:14

Modified files:
	databases/mdbtools: Makefile 

Log message:
sync wantlib


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 09:58:15

Modified files:
	devel/boost    : Makefile 

Log message:
boost-md needs LIB_DEPENDS/WANTLIB on -main


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 09:59:30

Modified files:
	graphics/pecl-imagick: Makefile distinfo 

Log message:
update to pecl-imagick-3.4.4, sync wantlib


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 10:59:12

Modified files:
	textproc/p5-PerlIO-utf8_strict: Makefile 

Log message:
WANTLIB+=c


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/20 11:04:24

Modified files:
	usr.sbin/vmd   : vmd.c 

Log message:
drop fatalx calls when claiming a new vm id; otherwise it's possible
to crash vmd and take all other vms with it. this required a little
shuffling to get the error value reported back to the caller to
handle the error properly.

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/20 11:16:56

Modified files:
	devel/py-r2pipe: Makefile distinfo 
	devel/py-r2pipe/pkg: PLIST 

Log message:
update to r2pipe-1.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/20 11:47:39

Modified files:
	net/wireguard-go: Makefile distinfo 

Log message:
update to wireguard-go-0.0.20190517


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/20 12:16:59

Modified files:
	sys/kern       : kern_tc.c 

Log message:
kern.timecounter.choices: Don't offer the dummy counter as an option.

The dummy counter is a stopgap during boot.  It is not useful after a
real timecounter is attached and started and there is no reason to return
to using it.

So don't even offer it to the admin.  This is easy: never add it to the
timecounter list.  It will effectively cease to exist after the first real
timecounter is actived in tc_init().

In principle this means that we can have an empty timecounter list so we
need to check for that case in sysctl_tc_choice().

"I don't mind" mpi@, ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/05/20 13:38:55

Modified files:
	emulators/xroar: Makefile distinfo 

Log message:
Update to xroar 0.35.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/20 14:02:27

Modified files:
	www/varnish    : Makefile 
	www/varnish/pkg: PLIST varnishd.rc 
Added files:
	www/varnish/files: varnishreload varnishreload.1 

Log message:
Add varnishreload script

varnishreload(1) is a simple script that reloads Varnish's active VCL
without restarting the server.  See the manual for more details.

This enables reload in our rc(8) script.

OK gonzalo


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 14:52:36

Modified files:
	audio/fluidsynth: Makefile 
	audio/herrie   : Makefile 
	audio/mikmod   : Makefile 
	audio/mp3blaster: Makefile 
	audio/nap      : Makefile 
	audio/ocp      : Makefile 
	comms/colrdx   : Makefile 
	comms/lcdproc  : Makefile 
	comms/tlf      : Makefile 
	databases/sqlite: Makefile 
	databases/sqsh : Makefile 
	devel/arm-elf/gdb: Makefile 
	devel/arm-none-eabi/gdb: Makefile 
	devel/avr/gdb  : Makefile 
	devel/cscope   : Makefile 
	devel/cunit    : Makefile 
	devel/gdb      : Makefile 
	devel/msp430/gdb: Makefile 
	devel/ruby-ncurses: Makefile 
	devel/simulavr : Makefile 
	editors/beav   : Makefile 
	editors/bvi    : Makefile 
	editors/dhex   : Makefile 
	editors/hexcurse: Makefile 
	editors/hnb    : Makefile 
	editors/ht     : Makefile 
	editors/se     : Makefile 
	editors/traditional-vi: Makefile 
	editors/tweak  : Makefile 
	editors/xwpe   : Makefile 
	education/dvorak7min: Makefile 
	education/epte : Makefile 
	emulators/x48  : Makefile 
	games/bastet   : Makefile 
	games/bluemoon : Makefile 
	games/braincurses: Makefile 
	games/cgames   : Makefile 
	games/cmatrix  : Makefile 
	games/gnugo    : Makefile 
	games/sl       : Makefile 
	games/vitetris : Makefile 
	games/vms-empire: Makefile 
	games/zangband : Makefile 
	games/ztrack   : Makefile 
	graphics/aalib : Makefile 
	japanese/less  : Makefile 
	lang/apl       : Makefile 
	lang/librep    : Makefile 
	lang/pfe       : Makefile 
	math/freemat   : Makefile 
	math/libqalculate: Makefile 
	math/mathomatic: Makefile 
	math/pari      : Makefile 
	misc/ccze      : Makefile 
	misc/clex      : Makefile 
	misc/gnuwatch  : Makefile 
	multimedia/xine-ui: Makefile 
	net/argus-clients: Makefile 
	net/dnstop     : Makefile 
	net/ekg        : Makefile 
	net/epic4      : Makefile 
	net/freetalk   : Makefile 
	net/honeyd     : Makefile 
	net/mtr        : Makefile 
	net/ncftp      : Makefile 
	net/nload      : Makefile 
	net/silc-client: Makefile 
	net/slurm      : Makefile 
	net/spectrum-tools: Makefile 
	net/tn5250     : Makefile 
	net/yafc       : Makefile 
	net/yaz        : Makefile 
	net/ytalk      : Makefile 
	productivity/devtodo: Makefile 
	security/ikeman: Makefile 
	security/zkt   : Makefile 
	sysutils/dtpstree: Makefile 
	sysutils/ipmitool: Makefile 
	sysutils/libstatgrab: Makefile 
	sysutils/lookat: Makefile 
	sysutils/multitail: Makefile 
	sysutils/tmate : Makefile 
	sysutils/whowatch: Makefile 
	textproc/sablotron: Makefile 
	textproc/urlview: Makefile 
	www/retawq     : Makefile 
	x11/xrestop    : Makefile 

Log message:
another batch of ncurses->curses WANTLIB updates, skipping any
that have gettext LIB/RUN_DEPENDS to avoid conflicts for naddy's
multipackaging work


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/20 15:36:54

Modified files:
	devel/check    : Makefile distinfo 
	devel/check/patches: patch-Makefile_in patch-doc_Makefile_in 

Log message:
update to check-0.12.0, from Peter Ezetta, plus shared lib minor bump from
me due to new exported functions


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/20 16:15:31

Modified files:
	archivers/gcpio: Makefile 
	archivers/gshar+gunshar: Makefile 
	archivers/gtar : Makefile 
	astro/celestia : Makefile 
	astro/gcal     : Makefile 
	astro/kstars   : Makefile 
	audio/ario     : Makefile 
	audio/audacious: Makefile 
	audio/audacious-plugins: Makefile 
	audio/audacity : Makefile 
	audio/clementine: Makefile 
	audio/exaile   : Makefile 
	audio/fluidsynth: Makefile 
	audio/grip     : Makefile 
	audio/herrie   : Makefile 
	audio/libgpod  : Makefile 
	audio/libofa   : Makefile 
	audio/madplay  : Makefile 
	audio/moc      : Makefile 
	audio/mp3info  : Makefile 
	audio/ncmpc    : Makefile 
	audio/normalize: Makefile 
	audio/picard   : Makefile 
	audio/quodlibet: Makefile 
	audio/radiotray: Makefile 
	audio/solfege  : Makefile 
	audio/sonata   : Makefile 
	audio/timidity : Makefile 
	audio/vorbis-tools: Makefile 
	cad/kicad      : Makefile 
	cad/klogic     : Makefile 
	cad/openscad   : Makefile 
	comms/amtterm  : Makefile 
	comms/fldigi   : Makefile 
	comms/gammu    : Makefile 
	comms/minicom  : Makefile 
	comms/scmxx    : Makefile 
	converters/dos2unix: Makefile 
	converters/recode: Makefile 
	databases/gdbm : Makefile 
	databases/kdb  : Makefile 
	databases/kexi : Makefile 
	devel          : Makefile 
	devel/autogen  : Makefile 
	devel/bison    : Makefile 
	devel/cflow    : Makefile 
	devel/cpp-hocon: Makefile 
	devel/doc++    : Makefile 
	devel/gettext  : Makefile distinfo 
	devel/gettext/patches: patch-gettext-runtime_intl_dcigettext_c 
	                       patch-gettext-runtime_intl_relocatable_c 
	devel/gindent  : Makefile 
	devel/git      : Makefile 
	devel/git-cola : Makefile 
	devel/glib2    : Makefile 
	devel/gmake    : Makefile 
	devel/gwenhywfar: Makefile 
	devel/id-utils : Makefile 
	devel/iso-codes: Makefile 
	devel/kdevelop : Makefile 
	devel/kdiff3   : Makefile 
	devel/kf5/baloo: Makefile 
	devel/kf5/frameworkintegration: Makefile 
	devel/kf5/kactivities: Makefile 
	devel/kf5/kbookmarks: Makefile 
	devel/kf5/kcmutils: Makefile 
	devel/kf5/kconfigwidgets: Makefile 
	devel/kf5/kdeclarative: Makefile 
	devel/kf5/kdelibs4support: Makefile 
	devel/kf5/kdesignerplugin: Makefile 
	devel/kf5/kdesu: Makefile 
	devel/kf5/kdewebkit: Makefile 
	devel/kf5/kdoctools: Makefile 
	devel/kf5/kfilemetadata: Makefile 
	devel/kf5/kholidays: Makefile 
	devel/kf5/khtml: Makefile 
	devel/kf5/ki18n: Makefile 
	devel/kf5/kiconthemes: Makefile 
	devel/kf5/kinit: Makefile 
	devel/kf5/kio  : Makefile 
	devel/kf5/kirigami2: Makefile 
	devel/kf5/kjs  : Makefile 
	devel/kf5/kjsembed: Makefile 
	devel/kf5/kmediaplayer: Makefile 
	devel/kf5/knewstuff: Makefile 
	devel/kf5/knotifyconfig: Makefile 
	devel/kf5/kpackage: Makefile 
	devel/kf5/kparts: Makefile 
	devel/kf5/kpeople: Makefile 
	devel/kf5/kpty : Makefile 
	devel/kf5/kross: Makefile 
	devel/kf5/krunner: Makefile 
	devel/kf5/kservice: Makefile 
	devel/kf5/ktexteditor: Makefile 
	devel/kf5/ktextwidgets: Makefile 
	devel/kf5/kunitconversion: Makefile 
	devel/kf5/kwallet: Makefile 
	devel/kf5/kxmlgui: Makefile 
	devel/kf5/kxmlrpcclient: Makefile 
	devel/kf5/plasma-framework: Makefile 
	devel/kf5/purpose: Makefile 
	devel/kreport  : Makefile 
	devel/leatherman: Makefile 
	devel/libconfuse: Makefile 
	devel/libftdi1 : Makefile 
	devel/libidn   : Makefile 
	devel/mercurial: Makefile 
	devel/monotone : Makefile 
	devel/p5-Locale-gettext: Makefile 
	devel/p5-libintl: Makefile 
	devel/popt     : Makefile 
	devel/quilt    : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	devel/rapidsvn : Makefile 
	devel/subversion: Makefile 
	devel/xdg-user-dirs: Makefile 
	editors/calligra: Makefile 
	editors/cooledit: Makefile 
	editors/kile   : Makefile 
	editors/kile-kde4: Makefile 
	editors/libreoffice: Makefile 
	editors/nano   : Makefile 
	editors/neovim : Makefile 
	editors/tea    : Makefile 
	editors/vim    : Makefile 
	editors/xemacs21/stable: Makefile 
	education/gtypist: Makefile 
	emulators/dolphin: Makefile 
	emulators/fs-uae: Makefile 
	emulators/gnusim8085: Makefile 
	emulators/mednafen: Makefile 
	emulators/qemu : Makefile 
	emulators/vbam : Makefile 
	emulators/vice : Makefile 
	games/blobwars : Makefile 
	games/cataclysm-dda: Makefile 
	games/chroma   : Makefile 
	games/chromium-bsu: Makefile 
	games/colobot/colobot: Makefile 
	games/freeciv  : Makefile 
	games/freedink/game: Makefile 
	games/frozen-bubble: Makefile 
	games/gamine   : Makefile 
	games/gnubg    : Makefile 
	games/gnuchess : Makefile 
	games/godot    : Makefile 
	games/grhino   : Makefile 
	games/heroes   : Makefile 
	games/jumpnbump: Makefile 
	games/lincity  : Makefile 
	games/lincity-ng: Makefile 
	games/manaplus : Makefile 
	games/minetest : Makefile 
	games/neverball: Makefile 
	games/pushover : Makefile 
	games/returntotheroots: Makefile 
	games/sumwars  : Makefile 
	games/tornado  : Makefile 
	games/trader   : Makefile 
	games/tuxpaint : Makefile 
	games/tuxpaint-config: Makefile 
	games/typespeed: Makefile 
	games/ufoai/base: Makefile 
	games/unknown-horizons: Makefile 
	games/valyriatear: Makefile 
	games/warmux   : Makefile 
	games/wesnoth  : Makefile 
	games/widelands: Makefile 
	games/xblast   : Makefile 
	games/xbubble  : Makefile 
	games/xinvaders: Makefile 
	games/zaz      : Makefile 
	geo/foxtrotgps : Makefile 
	geo/postgis    : Makefile 
	graphics/barcode: Makefile 
	graphics/birdfont: Makefile 
	graphics/darktable: Makefile 
	graphics/dibuja: Makefile 
	graphics/digikam: Makefile 
	graphics/digikam-kde4: Makefile 
	graphics/exiv2 : Makefile 
	graphics/gimp/deskew: Makefile 
	graphics/hugin : Makefile 
	graphics/icoutils: Makefile 
	graphics/inkscape: Makefile 
	graphics/krita : Makefile 
	graphics/libexif: Makefile 
	graphics/mirage: Makefile 
	graphics/mtpaint: Makefile 
	graphics/pdf2djvu: Makefile 
	graphics/rawstudio: Makefile 
	graphics/sane-backends: Makefile 
	graphics/ufraw : Makefile 
	graphics/xaos  : Makefile 
	infrastructure/mk: bsd.port.mk 
	inputmethods/fcitx: Makefile 
	inputmethods/fcitx-anthy: Makefile 
	inputmethods/fcitx-chewing: Makefile 
	inputmethods/fcitx-pinyin: Makefile 
	inputmethods/fcitx-qt5: Makefile 
	inputmethods/fcitx-tables: Makefile 
	inputmethods/scim-qtimm: Makefile 
	japanese/gwaei : Makefile 
	japanese/kanatest: Makefile 
	japanese/kanjipad: Makefile 
	japanese/kasumi: Makefile 
	korean/libhangul: Makefile 
	lang/clisp     : Makefile 
	lang/gawk      : Makefile 
	lang/gnucobol  : Makefile 
	lang/guile     : Makefile 
	lang/guile2    : Makefile 
	lang/mono      : Makefile 
	lang/parrot    : Makefile 
	lang/php       : Makefile.inc 
	lang/php/7.1   : Makefile 
	lang/php/7.2   : Makefile 
	lang/php/7.3   : Makefile 
	lang/python    : Makefile.inc 
	lang/python/2.7: Makefile 
	lang/python/3.6: Makefile 
	lang/python/3.7: Makefile 
	mail/abook     : Makefile 
	mail/alpine    : Makefile 
	mail/courier-authlib: Makefile 
	mail/courier-imap: Makefile 
	mail/fetchmail : Makefile 
	mail/kopano/core: Makefile 
	mail/libspf2   : Makefile 
	mail/mutt      : Makefile 
	mail/neomutt   : Makefile 
	mail/rspamd    : Makefile 
	mail/sympa     : Makefile 
	mail/tnef      : Makefile 
	math/galculator: Makefile 
	math/gnuplot   : Makefile 
	math/plplot    : Makefile 
	math/pspp      : Makefile 
	misc/dialog    : Makefile 
	misc/findutils : Makefile 
	misc/gnugetopt : Makefile 
	misc/lifelines : Makefile 
	misc/m17n/db   : Makefile 
	misc/m17n/lib  : Makefile 
	misc/magicpoint: Makefile 
	misc/osinfo/libosinfo: Makefile 
	misc/osinfo/osinfo-db-tools: Makefile 
	misc/pdmenu    : Makefile 
	misc/rpm       : Makefile 
	misc/uniutils  : Makefile 
	multimedia/devede: Makefile 
	multimedia/dvdstyler: Makefile 
	multimedia/gnome-twitch: Makefile 
	multimedia/gstreamer-0.10/core: Makefile 
	multimedia/gstreamer-0.10/plugins-good: Makefile 
	multimedia/gstreamer1: Makefile.inc 
	multimedia/imagination: Makefile 
	multimedia/kguitar: Makefile 
	multimedia/lives: Makefile 
	multimedia/minidlna: Makefile 
	multimedia/mkvtoolnix: Makefile 
	multimedia/oggconvert: Makefile 
	multimedia/phonon-backend/vlc: Makefile 
	multimedia/synfig: Makefile 
	multimedia/xine-lib: Makefile 
	net/amule      : Makefile 
	net/ap-utils   : Makefile 
	net/axel       : Makefile 
	net/bitlbee    : Makefile 
	net/dico       : Makefile 
	net/etherape   : Makefile 
	net/filezilla  : Makefile 
	net/gajim      : Makefile 
	net/gpodder    : Makefile 
	net/gtk-gnutella: Makefile 
	net/hexchat    : Makefile 
	net/jnettop    : Makefile 
	net/knot       : Makefile 
	net/konversation: Makefile 
	net/ktorrent   : Makefile 
	net/lftp       : Makefile 
	net/libktorrent: Makefile 
	net/libkvkontakte: Makefile 
	net/libpsl     : Makefile 
	net/mac-telnet : Makefile 
	net/mcabber    : Makefile 
	net/mldonkey   : Makefile 
	net/monitoring-plugins: Makefile 
	net/openconnect: Makefile 
	net/pavuk      : Makefile 
	net/putty      : Makefile 
	net/samba      : Makefile 
	net/spectrum   : Makefile 
	net/tclcurl    : Makefile 
	net/tcpreen    : Makefile 
	net/telegram-purple: Makefile 
	net/transmission: Makefile 
	net/weechat    : Makefile 
	net/weex       : Makefile 
	net/wget       : Makefile 
	net/wol        : Makefile 
	net/xmlrpc-epi : Makefile 
	news/slrn      : Makefile 
	news/tin       : Makefile 
	news/yencode   : Makefile 
	print/a2ps     : Makefile 
	print/enscript : Makefile 
	print/fontforge: Makefile 
	print/gtklp    : Makefile 
	print/libspectre: Makefile 
	print/lilypond : Makefile 
	print/lss      : Makefile 
	print/pdfshuffler: Makefile 
	print/poppler  : Makefile 
	print/texinfo  : Makefile 
	print/xournal  : Makefile 
	productivity/aqbanking: Makefile 
	productivity/calcurse: Makefile 
	productivity/gtg: Makefile 
	productivity/kmymoney: Makefile 
	productivity/libkfbapi: Makefile 
	productivity/mcds: Makefile 
	productivity/osmo: Makefile 
	productivity/rednotebook: Makefile 
	security/ccrypt: Makefile 
	security/encfs : Makefile 
	security/fwknop: Makefile 
	security/gnupg : Makefile 
	security/gnupg2: Makefile 
	security/gpa   : Makefile 
	security/gpgme : Makefile 
	security/libbde: Makefile 
	security/libewf: Makefile 
	security/libgpg-error: Makefile 
	security/libgsasl: Makefile 
	security/libksba: Makefile 
	security/libpwquality: Makefile 
	security/mcrypt: Makefile 
	security/p11-kit: Makefile 
	security/steghide: Makefile 
	security/sudo  : Makefile 
	security/yubico/yubico-c-client: Makefile 
	shells/bash    : Makefile 
	shells/fish    : Makefile 
	shells/yash    : Makefile 
	sysutils/bacula: Makefile 
	sysutils/consolekit: Makefile 
	sysutils/coreutils: Makefile 
	sysutils/dfc   : Makefile 
	sysutils/direvent: Makefile 
	sysutils/dsh   : Makefile 
	sysutils/dwdiff: Makefile 
	sysutils/e2fsprogs: Makefile 
	sysutils/facter: Makefile 
	sysutils/freeipmi: Makefile 
	sysutils/ggrep : Makefile 
	sysutils/gkrellm/gkrellm: Makefile 
	sysutils/krename: Makefile 
	sysutils/libesedb: Makefile 
	sysutils/libevt: Makefile 
	sysutils/libevtx: Makefile 
	sysutils/libfsntfs: Makefile 
	sysutils/libfvde: Makefile 
	sysutils/libfwsi: Makefile 
	sysutils/liblnk: Makefile 
	sysutils/libmsiecf: Makefile 
	sysutils/libolecf: Makefile 
	sysutils/libqcow: Makefile 
	sysutils/libregf: Makefile 
	sysutils/libscca: Makefile 
	sysutils/libsigscan: Makefile 
	sysutils/libsmraw: Makefile 
	sysutils/libvhdi: Makefile 
	sysutils/libvmdk: Makefile 
	sysutils/libvshadow: Makefile 
	sysutils/libvslvm: Makefile 
	sysutils/modlogan: Makefile 
	sysutils/nut   : Makefile 
	sysutils/simple-mtpfs: Makefile 
	sysutils/tpb   : Makefile 
	telephony/asterisk: Makefile 
	telephony/coturn: Makefile 
	tests/portbump/t10: Makefile 
	textproc/aspell/core: Makefile 
	textproc/calibre: Makefile 
	textproc/gdiff : Makefile 
	textproc/gsed  : Makefile 
	textproc/gtranslator: Makefile 
	textproc/hunspell: Makefile 
	textproc/intltool: Makefile 
	textproc/libnxml: Makefile 
	textproc/namazu: Makefile 
	textproc/nfoview: Makefile 
	textproc/opensp: Makefile 
	textproc/pinfo : Makefile 
	textproc/py-polib: Makefile 
	textproc/texi2html: Makefile 
	textproc/tre   : Makefile 
	textproc/txt2tags: Makefile 
	textproc/wdiff : Makefile 
	textproc/zathura/core: Makefile 
	www/aria2      : Makefile 
	www/goaccess   : Makefile 
	www/llgal      : Makefile 
	www/midori     : Makefile 
	www/mono-xsp   : Makefile 
	www/newsboat   : Makefile 
	www/p5-WWW-Curl: Makefile 
	www/pecl-pecl_http: Makefile 
	www/sarg       : Makefile 
	www/snownews   : Makefile 
	www/squid      : Makefile 
	www/surf       : Makefile 
	www/uget       : Makefile 
	www/w3m        : Makefile 
	www/webkitgtk4 : Makefile 
	x11/Xdialog    : Makefile 
	x11/arandr     : Makefile 
	x11/dunst      : Makefile 
	x11/ede/desktop: Makefile 
	x11/emelfm2    : Makefile 
	x11/girara     : Makefile 
	x11/gtk2-murrine-engine: Makefile 
	x11/icewm      : Makefile 
	x11/ion        : Makefile 
	x11/isomaster  : Makefile 
	x11/jwm        : Makefile 
	x11/kde/i18n3  : Makefile.inc 
	x11/kde-applications: kde-applications.port.mk 
	x11/kde4/cantor: Makefile 
	x11/kde4/l10n  : Makefile.inc 
	x11/kde4/poxml : Makefile 
	x11/kde4/sdk-thumbnailers: Makefile 
	x11/kde4/workspace: Makefile 
	x11/keynav     : Makefile 
	x11/klavaro    : Makefile 
	x11/krusader   : Makefile 
	x11/lablgtk2   : Makefile 
	x11/libdbusmenu: Makefile 
	x11/libgdiplus : Makefile 
	x11/lxappearance: Makefile 
	x11/lxrandr    : Makefile 
	x11/mlterm     : Makefile 
	x11/nitrogen   : Makefile 
	x11/obconf     : Makefile 
	x11/openbox    : Makefile 
	x11/p5-Gtk2-ImageView: Makefile 
	x11/parcellite : Makefile 
	x11/py-kiwi    : Makefile 
	x11/qt5/qtbase : Makefile 
	x11/remmina    : Makefile 
	x11/rep-gtk    : Makefile 
	x11/rox-filer  : Makefile 
	x11/roxterm    : Makefile 
	x11/rxvt-unicode: Makefile 
	x11/sakura     : Makefile 
	x11/sawfish    : Makefile 
	x11/sisctrl    : Makefile 
	x11/tangerine-icon-theme: Makefile 
	x11/tellico    : Makefile 
	x11/thewidgetfactory: Makefile 
	x11/tilda      : Makefile 
	x11/tint2      : Makefile 
	x11/uwm        : Makefile 
	x11/vlc        : Makefile 
	x11/wbar       : Makefile 
	x11/windowmaker: Makefile 
	x11/winwrangler: Makefile 
	x11/wmclockmon : Makefile 
	x11/wmctrl     : Makefile 
	x11/wmfishtime : Makefile 
	x11/xarchive   : Makefile 
	x11/xarchiver  : Makefile 
	x11/xplanet    : Makefile 
	x11/xtraceroute: Makefile 
	x11/yad        : Makefile 
	x11/yakuake    : Makefile 
Added files:
	devel/gettext/patches: 
	                       patch-gettext-tools_gnulib-lib_Makefile_in 
	                       patch-gettext-tools_src_Makefile_in 
	devel/gettext/pkg: DESCR-runtime DESCR-textstyle DESCR-tools 
	                   PLIST-runtime PLIST-textstyle PLIST-tools 
Removed files:
	devel/gettext/patches: patch-gettext-runtime_intl_localcharset_c 
	devel/gettext/pkg: DESCR PLIST 
	devel/gettext-tools: Makefile distinfo 
	devel/gettext-tools/patches: patch-gettext-tools_configure 
	                             patch-gettext-tools_gnulib-lib_Makefile_in 
	                             patch-gettext-tools_src_Makefile_in 
	                             patch-gettext-tools_tests_lang-c++ 
	devel/gettext-tools/pkg: DESCR PLIST 

Log message:
Update gettext to 0.20.1.

Follow the upstream recommendations for packagers and switch to
multi-packages:
devel/gettext       -> devel/gettext,-runtime
devel/gettext-tools -> devel/gettext,-tools
(new)                  devel/gettext,-textstyle


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/20 17:45:48

Modified files:
	devel/gettext  : Makefile 
Added files:
	devel/gettext/patches: patch-gettext-tools_src_msgmerge_c 

Log message:
Fix behaviour of msgmerge --for-msgfmt on PO files with no translations.
From upstream git.


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2019/05/20 20:42:15

Modified files:
	libressl       : index.html releases.html 

Log message:
LibreSSL 2.9.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/05/21 00:20:24

Modified files:
	www/nextcloud  : Makefile 
	www/nextcloud/pkg: PLIST README 

Log message:
Update for Nextcloud to 16.0.1.

We switch to PHP 7.3 and a simpler/better httpd.conf example.

Thanks to stsp@ and Bruno Fl��ckiger.

OK stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/21 00:38:44

Modified files:
	usr.sbin/smtpd : ssl.c 

Log message:
Use malloc_ and calloc_conceal() to allocate memory for sensitive,
private key data. We leave the corresponding freezero() calls since
the code might be ported to a system not having the conceal functions.
This also makes sure the stdio bufer is concealed.  And zap a
redundant free(buf); ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/05/21 00:53:33

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_5 Makefile 
	www/nextcloud/pkg: Tag: OPENBSD_6_5 PLIST README 

Log message:
Update for Nextcloud to 16.0.1

Better/simpler httpd.conf example and we switch to PHP 7.3


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/21 01:01:14

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Fix a couple of Ta from Alphonse Mariya.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/21 02:03:43

Modified files:
	usr.bin/mandoc : mandoc.c 

Log message:
Do not print the style message "missing date" when the date is given
as "$Mdocdate$" without an actual date.  That is the canonical way to
write a new manual page and not bad style at all.
Misleading message reported by kn@ on tech@.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/21 02:30:35

Modified files:
	sys/kern       : kern_time.c 

Log message:
Fix uninitialized return code in adjfreq(2); CID 1480285
ok mlarkin, otto (who both had the same diff)


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/21 03:19:25

Modified files:
	sys/dev/ic     : sili.c 

Log message:
Fix free(9) with wrong pointer in sili(4) attach error path; CID 1480295
ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/21 03:20:41

Modified files:
	sys/dev/usb    : xhci.c 

Log message:
Fix NULL check with wrong pointer in xhci_event_xfer_isoc(); CID 1480287
ok ratchov@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/21 03:23:40

Modified files:
	sys/net80211   : ieee80211.c 

Log message:
Fix out-of-bounds array access in ieee80211_setbasicrates(); CID 1479607
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/05/21 03:24:58

Modified files:
	usr.bin/vi/common: options.c options_f.c 
	usr.bin/vi/docs/USD.doc/vi.man: vi.1 
	usr.bin/vi/include: com_extern.h 

Log message:
Also apply stricter pledge when secure mode is set via rc file or command.

Pointed out by jesper <at> ifconfig <dot> se

OK brynet@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/21 03:34:30

Modified files:
	comms/minicom  : Makefile 
	games/chroma   : Makefile 
	games/gnuchess : Makefile 
	games/tornado  : Makefile 
	lang/clisp     : Makefile 
	lang/guile     : Makefile 
	mail/alpine    : Makefile 
	math/gnuplot   : Makefile 
	net/ap-utils   : Makefile 
	net/jnettop    : Makefile 
	print/texinfo  : Makefile 

Log message:
more ncurses->curses


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/21 03:41:52

Modified files:
	graphics/gimp/stable: Makefile 

Log message:
sync wantlib


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/21 04:08:03

Modified files:
	textproc/zathura/core: Makefile 
	textproc/zathura/plugins/cb: Makefile 
	textproc/zathura/plugins/djvu: Makefile 
	textproc/zathura/plugins/mupdf: Makefile 
	textproc/zathura/plugins/poppler: Makefile 
	textproc/zathura/plugins/ps: Makefile 
	graphics/gthumb: Makefile 
	games/pioneers : Makefile 
	multimedia/gnome-twitch: Makefile 
	emulators/fceux: Makefile 
	x11/xfce4/xfce4-time-out: Makefile 

Log message:
sync wantlib


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/21 04:08:13

Modified files:
	sys/net        : if_bpe.c 

Log message:
don't fall through SIOCSVNETID into SIOCGVNETID; CID 1480290

the cid was via jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/21 04:11:10

Modified files:
	sys/net        : if_bpe.c 

Log message:
init sc_rxhprio properly instead of sc_txhprio twice; CID 1480289

the cid thing was via jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/21 06:30:07

Modified files:
	lib/libutil    : ber_add_string.3 ber_get_string.3 ber_oid_cmp.3 
	                 ber_read_elements.3 ber_set_header.3 

Log message:
Cleanup some residual markup from the ber.3 days.

ok jmc@, schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/21 06:40:22

Modified files:
	x11/mate/control-center: Makefile 

Log message:
add dependency on accountsservice


CVSROOT:	/cvs
Module name:	www
Changes by:	rob@cvs.openbsd.org	2019/05/21 06:40:25

Modified files:
	.              : 66.html 

Log message:
Mention BER move to libutil.

ok schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/21 07:29:44

Modified files:
	lib/libutil    : ber.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2019/05/21 07:33:15

Modified files:
	databases/postgresql: Tag: OPENBSD_6_5 Makefile distinfo 
	databases/postgresql/pkg: Tag: OPENBSD_6_5 PLIST-docs 

Log message:
Bugfix update to 11.3
ok jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/21 09:39:57

Modified files:
	x11/vlc        : Makefile 

Log message:
needs gettext,-tools


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/21 10:51:12

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/mozilla-firefox/patches: 
	                             patch-security_manager_pki_resources_content_exceptionDialog_js 
	www/mozilla-firefox/pkg: PLIST 
	www/firefox-i18n: Makefile.inc distinfo 
Added files:
	www/mozilla-firefox/patches: patch-storage_mozStorageService_cpp 
Removed files:
	www/mozilla-firefox/patches: patch-config_rules_mk 

Log message:
Update to firefox 67.0.

See https://www.mozilla.org/en-US/firefox/67.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-13/

Add patch to relax sqlite runtime-check for SECURE_DELETE.
Add BDEP on nasm for bundled dav1d (reminded by naddy@)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/21 10:52:23

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Update to firefox-esr 60.7.0.

See https://www.mozilla.org/en-US/firefox/60.7.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-14/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/21 10:54:20

Modified files:
	www/firefox-esr: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: update to firefox-esr 60.7.0.

See https://www.mozilla.org/en-US/firefox/60.7.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-14/

6.5 amd64 & i386 pkgs at the usual spot.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/21 11:09:06

Modified files:
	regress/usr.bin/make: Makefile 

Log message:
while writing new code, I just figured out I fucked up


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/21 11:10:49

Modified files:
	usr.bin/make   : engine.c 

Log message:
fix very stupid bug.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/21 11:21:02

Modified files:
	usr.bin/make   : str.c 

Log message:
document brk_string slightly better
remove the comment about .MAKE, since that's only true when called from
main, and explain about the other parameters


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/21 13:07:17

Added files:
	regress/usr.bin/make: mk43 

Log message:
forgot to add the testcase sorry


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/21 13:35:55

Modified files:
	devel/py-parsing: Makefile distinfo 
	devel/py-parsing/pkg: PLIST 

Log message:
- update to py-parsing-2.4.0
- stop installing the html docs, they're no longer bundled with the release. besides they
can now be found on https://pyparsing-docs.readthedocs.io/


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/05/21 14:15:06

Modified files:
	regress/libexec/ld.so/link-order/test: Makefile 

Log message:
Avoid rm(1) prompt and show out in clean target

Errornously running regress and clean as different users may lead to
interactive conformation being hidden and a seemingly stalled target.

Force remove files and keep standard out/error as is to make the clean
target non-interatively, actually complete and show helpful errors.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/21 14:57:10

Modified files:
	sys/dev/wscons : wsmux.c 

Log message:
A problem fixed in wskbd is also present in wsmux. Repeating the
previous commit message:

In wsmuxclose(), use the same logic as in wsmuxopen() to determine if
the device was opened in write-only mode. Relying on me_evar being NULL
does not work if the wsmux device was opened first followed attaching it
to another wsmux. Closing the wsmux device first at this stage would
cause the wscons_event queue inherited from the parent wsmux to be
freed. This in turn could cause a panic if an ioctl(WSMUXIO_INJECTEVENT)
command is issued on parent wsmux device.

ok mpi@ visa@

Reported-by: syzbot+f6c2ed7901eb4b970720@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/21 15:21:23

Modified files:
	inputmethods/fcitx: Makefile 

Log message:
bump after gettext dependency change


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:08

src/sys/dev/pci/drm/amd

Update of /cvs/src/sys/dev/pci/drm/amd
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:08

src/sys/dev/pci/drm/amd/acp

Update of /cvs/src/sys/dev/pci/drm/amd/acp
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/acp

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/acp added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:08

src/sys/dev/pci/drm/amd/acp/include

Update of /cvs/src/sys/dev/pci/drm/amd/acp/include
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/acp/include

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/acp/include added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:08

src/sys/dev/pci/drm/amd/amdgpu

Update of /cvs/src/sys/dev/pci/drm/amd/amdgpu
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/amdgpu

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/amdgpu added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:08

src/sys/dev/pci/drm/amd/amdkfd

Update of /cvs/src/sys/dev/pci/drm/amd/amdkfd
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/amdkfd

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/amdkfd added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display

Update of /cvs/src/sys/dev/pci/drm/amd/display
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/amdgpu_dm

Update of /cvs/src/sys/dev/pci/drm/amd/display/amdgpu_dm
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/amdgpu_dm

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/amdgpu_dm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/basics

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/basics
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/basics

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/basics added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/bios

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/bios
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/bios

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/bios added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/bios/dce110

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/bios/dce110
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/bios/dce110

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/bios/dce110 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/bios/dce112

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/bios/dce112
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/bios/dce112

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/bios/dce112 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/bios/dce80

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/bios/dce80
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/bios/dce80

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/bios/dce80 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/calcs

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/calcs
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/calcs

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/calcs added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/core

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/core
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/core

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/core added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/dce

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/dce
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/dce

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/dce added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/dce100

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/dce100
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/dce100

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/dce100 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/dce110

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/dce110
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/dce110

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/dce110 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/dce112

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/dce112
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/dce112

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/dce112 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/dce120

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/dce120
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/dce120

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/dce120 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/dce80

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/dce80
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/dce80

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/dce80 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/dcn10

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/dcn10
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/dcn10

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/dcn10 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:09

src/sys/dev/pci/drm/amd/display/dc/dml

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/dml
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/dml

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/dml added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/gpio

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/gpio

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/gpio/dce110

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/dce110
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/gpio/dce110

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/dce110 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/gpio/dce120

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/dce120
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/gpio/dce120

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/dce120 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/gpio/dce80

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/dce80
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/gpio/dce80

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/dce80 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/gpio/dcn10

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/dcn10
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/gpio/dcn10

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/dcn10 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/gpio/diagnostics

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/diagnostics
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/gpio/diagnostics

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/gpio/diagnostics added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/i2caux

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/i2caux

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/i2caux/dce100

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce100
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/i2caux/dce100

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce100 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/i2caux/dce110

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce110
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/i2caux/dce110

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce110 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/i2caux/dce112

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce112
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/i2caux/dce112

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce112 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/i2caux/dce120

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce120
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/i2caux/dce120

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce120 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/i2caux/dce80

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce80
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/i2caux/dce80

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dce80 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/i2caux/dcn10

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dcn10
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/i2caux/dcn10

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/dcn10 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/i2caux/diagnostics

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/diagnostics
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/i2caux/diagnostics

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/i2caux/diagnostics added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/inc

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/inc
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/inc

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/inc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/inc/hw

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/inc/hw
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/inc/hw

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/inc/hw added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:10

src/sys/dev/pci/drm/amd/display/dc/irq

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/irq
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/irq

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/irq added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/dc/irq/dce110

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/irq/dce110
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/irq/dce110

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/irq/dce110 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/dc/irq/dce120

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/irq/dce120
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/irq/dce120

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/irq/dce120 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/dc/irq/dce80

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/irq/dce80
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/irq/dce80

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/irq/dce80 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/dc/irq/dcn10

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/irq/dcn10
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/irq/dcn10

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/irq/dcn10 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/dc/virtual

Update of /cvs/src/sys/dev/pci/drm/amd/display/dc/virtual
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/dc/virtual

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/dc/virtual added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/include

Update of /cvs/src/sys/dev/pci/drm/amd/display/include
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/include

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/include added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/modules

Update of /cvs/src/sys/dev/pci/drm/amd/display/modules
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/modules

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/modules added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/modules/color

Update of /cvs/src/sys/dev/pci/drm/amd/display/modules/color
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/modules/color

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/modules/color added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/modules/freesync

Update of /cvs/src/sys/dev/pci/drm/amd/display/modules/freesync
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/modules/freesync

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/modules/freesync added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/modules/inc

Update of /cvs/src/sys/dev/pci/drm/amd/display/modules/inc
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/modules/inc

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/modules/inc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/display/modules/stats

Update of /cvs/src/sys/dev/pci/drm/amd/display/modules/stats
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/display/modules/stats

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/display/modules/stats added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/include

Update of /cvs/src/sys/dev/pci/drm/amd/include
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/include/asic_reg

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/include/asic_reg/athub

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/athub
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/athub

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/athub added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/include/asic_reg/bif

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/bif
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/bif

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/bif added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/include/asic_reg/dce

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/dce
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/dce

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/dce added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/include/asic_reg/dcn

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/dcn
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/dcn

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/dcn added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:11

src/sys/dev/pci/drm/amd/include/asic_reg/df

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/df
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/df

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/df added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/gc

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/gc
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/gc

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/gc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/gca

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/gca
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/gca

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/gca added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/gmc

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/gmc
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/gmc

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/gmc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/hdp

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/hdp
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/hdp

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/hdp added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/mmhub

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/mmhub
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/mmhub

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/mmhub added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/mp

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/mp
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/mp

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/mp added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/nbif

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/nbif
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/nbif

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/nbif added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/nbio

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/nbio
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/nbio

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/nbio added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/oss

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/oss
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/oss

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/oss added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/sdma0

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/sdma0
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/sdma0

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/sdma0 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/sdma1

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/sdma1
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/sdma1

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/sdma1 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/smu

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/smu
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/smu

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/smu added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/smuio

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/smuio
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/smuio

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/smuio added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/thm

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/thm
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/thm

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/thm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/umc

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/umc
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/umc

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/umc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/uvd

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/uvd
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/uvd

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/uvd added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/vce

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/vce
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/vce

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/vce added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:12

src/sys/dev/pci/drm/amd/include/asic_reg/vcn

Update of /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/vcn
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/asic_reg/vcn

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/asic_reg/vcn added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/gfx

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/gfx
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/gfx

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/gfx added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/sdma0

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/sdma0
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/sdma0

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/sdma0 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/sdma1

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/sdma1
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/sdma1

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/sdma1 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/smuio

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/smuio
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/smuio

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/smuio added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/thm

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/thm
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/thm

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/thm added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/uvd

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/uvd
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/uvd

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/uvd added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/vce

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/vce
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/vce

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/vce added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/vcn

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/vcn
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/vcn

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/vcn added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/ivsrcid/vmc

Update of /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/vmc
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/ivsrcid/vmc

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/ivsrcid/vmc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/include/linux

Update of /cvs/src/sys/dev/pci/drm/amd/include/linux
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/include/linux

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/include/linux added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/lib

Update of /cvs/src/sys/dev/pci/drm/amd/lib
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/lib

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/powerplay

Update of /cvs/src/sys/dev/pci/drm/amd/powerplay
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/powerplay

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/powerplay added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/powerplay/hwmgr

Update of /cvs/src/sys/dev/pci/drm/amd/powerplay/hwmgr
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/powerplay/hwmgr

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/powerplay/hwmgr added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:13

src/sys/dev/pci/drm/amd/powerplay/inc

Update of /cvs/src/sys/dev/pci/drm/amd/powerplay/inc
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/powerplay/inc

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/powerplay/inc added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:14

src/sys/dev/pci/drm/amd/powerplay/inc/vega12

Update of /cvs/src/sys/dev/pci/drm/amd/powerplay/inc/vega12
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/powerplay/inc/vega12

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/powerplay/inc/vega12 added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:14

src/sys/dev/pci/drm/amd/powerplay/smumgr

Update of /cvs/src/sys/dev/pci/drm/amd/powerplay/smumgr
In directory cvs.openbsd.org:/tmp/cvs-serv55375/amd/powerplay/smumgr

Log Message:
Directory /cvs/src/sys/dev/pci/drm/amd/powerplay/smumgr added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 15:40:14

src/sys/dev/pci/drm/scheduler

Update of /cvs/src/sys/dev/pci/drm/scheduler
In directory cvs.openbsd.org:/tmp/cvs-serv55375/scheduler

Log Message:
Directory /cvs/src/sys/dev/pci/drm/scheduler added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 16:40:14

Modified files:
	sys/arch/amd64/conf: GENERIC Makefile.amd64 
	sys/dev/pci/drm: files.drm 
	sys/dev/pci/drm/include/linux: kconfig.h 
Added files:
	sys/dev/pci/drm/amd/acp: acp_hw.c 
	sys/dev/pci/drm/amd/acp/include: acp_gfx_if.h 
	sys/dev/pci/drm/amd/amdgpu: ObjectID.h amdgpu.h amdgpu_acp.c 
	                            amdgpu_acp.h amdgpu_acpi.c 
	                            amdgpu_afmt.c amdgpu_amdkfd.c 
	                            amdgpu_amdkfd.h 
	                            amdgpu_amdkfd_fence.c 
	                            amdgpu_amdkfd_gfx_v7.c 
	                            amdgpu_amdkfd_gfx_v8.c 
	                            amdgpu_amdkfd_gfx_v9.c 
	                            amdgpu_amdkfd_gpuvm.c amdgpu_atom.c 
	                            amdgpu_atombios.c amdgpu_atombios.h 
	                            amdgpu_atombios_crtc.c 
	                            amdgpu_atombios_dp.c 
	                            amdgpu_atombios_encoders.c 
	                            amdgpu_atombios_i2c.c 
	                            amdgpu_atomfirmware.c 
	                            amdgpu_atomfirmware.h 
	                            amdgpu_benchmark.c amdgpu_bios.c 
	                            amdgpu_bo_list.c amdgpu_bo_list.h 
	                            amdgpu_cgs.c amdgpu_ci_dpm.c 
	                            amdgpu_ci_smc.c amdgpu_cik.c 
	                            amdgpu_cik_sdma.c 
	                            amdgpu_connectors.c 
	                            amdgpu_connectors.h amdgpu_cs.c 
	                            amdgpu_ctx.c amdgpu_debugfs.c 
	                            amdgpu_debugfs.h amdgpu_device.c 
	                            amdgpu_display.c amdgpu_display.h 
	                            amdgpu_dpm.c amdgpu_dpm.h 
	                            amdgpu_drv.c amdgpu_drv.h 
	                            amdgpu_encoders.c amdgpu_fb.c 
	                            amdgpu_fence.c amdgpu_gart.c 
	                            amdgpu_gart.h amdgpu_gds.h 
	                            amdgpu_gem.c amdgpu_gfx.c 
	                            amdgpu_gfx.h amdgpu_gmc.h 
	                            amdgpu_gtt_mgr.c amdgpu_i2c.c 
	                            amdgpu_i2c.h amdgpu_ib.c 
	                            amdgpu_ids.c amdgpu_ids.h 
	                            amdgpu_ih.c amdgpu_ih.h 
	                            amdgpu_ioc32.c amdgpu_irq.c 
	                            amdgpu_irq.h amdgpu_job.c 
	                            amdgpu_job.h amdgpu_kms.c 
	                            amdgpu_kv_dpm.c amdgpu_kv_smc.c 
	                            amdgpu_mn.c amdgpu_mn.h 
	                            amdgpu_mode.h amdgpu_object.c 
	                            amdgpu_object.h amdgpu_pll.c 
	                            amdgpu_pll.h amdgpu_pm.c amdgpu_pm.h 
	                            amdgpu_prime.c amdgpu_psp.c 
	                            amdgpu_psp.h amdgpu_queue_mgr.c 
	                            amdgpu_ring.c amdgpu_ring.h 
	                            amdgpu_sa.c amdgpu_sched.c 
	                            amdgpu_sched.h amdgpu_si.c 
	                            amdgpu_si_dma.c amdgpu_si_dpm.c 
	                            amdgpu_si_smc.c amdgpu_sync.c 
	                            amdgpu_sync.h amdgpu_test.c 
	                            amdgpu_trace.h amdgpu_trace_points.c 
	                            amdgpu_ttm.c amdgpu_ttm.h 
	                            amdgpu_ucode.c amdgpu_ucode.h 
	                            amdgpu_uvd.c amdgpu_uvd.h 
	                            amdgpu_uvd_v4_2.c amdgpu_vce.c 
	                            amdgpu_vce.h amdgpu_vce_v2_0.c 
	                            amdgpu_vcn.c amdgpu_vcn.h 
	                            amdgpu_vf_error.c amdgpu_vf_error.h 
	                            amdgpu_virt.c amdgpu_virt.h 
	                            amdgpu_vm.c amdgpu_vm.h 
	                            amdgpu_vram_mgr.c atom.h 
	                            atombios_crtc.h atombios_dp.h 
	                            atombios_encoders.h atombios_i2c.h 
	                            ci_dpm.h cik.h cik_dpm.h cik_ih.c 
	                            cik_ih.h cik_sdma.h cikd.h 
	                            clearstate_ci.h clearstate_defs.h 
	                            clearstate_gfx9.h clearstate_si.h 
	                            clearstate_vi.h cz_ih.c cz_ih.h 
	                            dce_v10_0.c dce_v10_0.h dce_v11_0.c 
	                            dce_v11_0.h dce_v6_0.c dce_v6_0.h 
	                            dce_v8_0.c dce_v8_0.h dce_virtual.c 
	                            dce_virtual.h df_v1_7.c df_v1_7.h 
	                            df_v3_6.c df_v3_6.h emu_soc.c 
	                            gfx_v6_0.c gfx_v6_0.h gfx_v7_0.c 
	                            gfx_v7_0.h gfx_v8_0.c gfx_v8_0.h 
	                            gfx_v9_0.c gfx_v9_0.h gfxhub_v1_0.c 
	                            gfxhub_v1_0.h gmc_v6_0.c gmc_v6_0.h 
	                            gmc_v7_0.c gmc_v7_0.h gmc_v8_0.c 
	                            gmc_v8_0.h gmc_v9_0.c gmc_v9_0.h 
	                            iceland_ih.c iceland_ih.h 
	                            iceland_sdma_pkt_open.h kv_dpm.h 
	                            mmhub_v1_0.c mmhub_v1_0.h 
	                            mmsch_v1_0.h mxgpu_ai.c mxgpu_ai.h 
	                            mxgpu_vi.c mxgpu_vi.h nbio_v6_1.c 
	                            nbio_v6_1.h nbio_v7_0.c nbio_v7_0.h 
	                            ppsmc.h psp_gfx_if.h psp_v10_0.c 
	                            psp_v10_0.h psp_v3_1.c psp_v3_1.h 
	                            r600_dpm.h sdma_v2_4.c sdma_v2_4.h 
	                            sdma_v3_0.c sdma_v3_0.h sdma_v4_0.c 
	                            sdma_v4_0.h si.h si_dma.h si_dpm.h 
	                            si_enums.h si_ih.c si_ih.h sid.h 
	                            sislands_smc.h soc15.c soc15.h 
	                            soc15_common.h soc15d.h tonga_ih.c 
	                            tonga_ih.h tonga_sdma_pkt_open.h 
	                            uvd_v4_2.h uvd_v5_0.c uvd_v5_0.h 
	                            uvd_v6_0.c uvd_v6_0.h uvd_v7_0.c 
	                            uvd_v7_0.h vce_v2_0.h vce_v3_0.c 
	                            vce_v3_0.h vce_v4_0.c vce_v4_0.h 
	                            vcn_v1_0.c vcn_v1_0.h vega10_ih.c 
	                            vega10_ih.h vega10_reg_init.c 
	                            vega10_sdma_pkt_open.h 
	                            vega20_reg_init.c vi.c vi.h vi_dpm.h 
	                            vid.h 
	sys/dev/pci/drm/amd/amdkfd: cik_event_interrupt.c cik_int.h 
	                            cik_regs.h cwsr_trap_handler.h 
	                            cwsr_trap_handler_gfx8.asm 
	                            cwsr_trap_handler_gfx9.asm 
	                            kfd_chardev.c kfd_crat.c kfd_crat.h 
	                            kfd_dbgdev.c kfd_dbgdev.h 
	                            kfd_dbgmgr.c kfd_dbgmgr.h 
	                            kfd_debugfs.c kfd_device.c 
	                            kfd_device_queue_manager.c 
	                            kfd_device_queue_manager.h 
	                            kfd_device_queue_manager_cik.c 
	                            kfd_device_queue_manager_v9.c 
	                            kfd_device_queue_manager_vi.c 
	                            kfd_doorbell.c kfd_events.c 
	                            kfd_events.h kfd_flat_memory.c 
	                            kfd_int_process_v9.c kfd_interrupt.c 
	                            kfd_iommu.c kfd_iommu.h 
	                            kfd_kernel_queue.c 
	                            kfd_kernel_queue.h 
	                            kfd_kernel_queue_cik.c 
	                            kfd_kernel_queue_v9.c 
	                            kfd_kernel_queue_vi.c kfd_module.c 
	                            kfd_mqd_manager.c kfd_mqd_manager.h 
	                            kfd_mqd_manager_cik.c 
	                            kfd_mqd_manager_v9.c 
	                            kfd_mqd_manager_vi.c 
	                            kfd_packet_manager.c kfd_pasid.c 
	                            kfd_pm4_headers.h 
	                            kfd_pm4_headers_ai.h 
	                            kfd_pm4_headers_diq.h 
	                            kfd_pm4_headers_vi.h 
	                            kfd_pm4_opcodes.h kfd_priv.h 
	                            kfd_process.c 
	                            kfd_process_queue_manager.c 
	                            kfd_queue.c kfd_topology.c 
	                            kfd_topology.h soc15_int.h 
	sys/dev/pci/drm/amd/display: TODO 
	sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm.c amdgpu_dm.h 
	                                       amdgpu_dm_color.c 
	                                       amdgpu_dm_crc.c 
	                                       amdgpu_dm_debugfs.c 
	                                       amdgpu_dm_debugfs.h 
	                                       amdgpu_dm_helpers.c 
	                                       amdgpu_dm_irq.c 
	                                       amdgpu_dm_irq.h 
	                                       amdgpu_dm_mst_types.c 
	                                       amdgpu_dm_mst_types.h 
	                                       amdgpu_dm_pp_smu.c 
	                                       amdgpu_dm_services.c 
	sys/dev/pci/drm/amd/display/dc: dc.h dc_bios_types.h 
	                                dc_ddc_types.h dc_dp_types.h 
	                                dc_helper.c dc_hw_types.h 
	                                dc_link.h dc_stream.h dc_types.h 
	                                dm_helpers.h dm_pp_smu.h 
	                                dm_services.h 
	                                dm_services_types.h irq_types.h 
	                                os_types.h 
	sys/dev/pci/drm/amd/display/dc/basics: amdgpu_vector.c 
	                                       conversion.c conversion.h 
	                                       fixpt31_32.c 
	                                       log_helpers.c logger.h 
	sys/dev/pci/drm/amd/display/dc/bios: bios_parser.c bios_parser.h 
	                                     bios_parser2.c 
	                                     bios_parser2.h 
	                                     bios_parser_common.c 
	                                     bios_parser_common.h 
	                                     bios_parser_helper.c 
	                                     bios_parser_helper.h 
	                                     bios_parser_interface.c 
	                                     bios_parser_types_internal.h 
	                                     bios_parser_types_internal2.h 
	                                     command_table.c 
	                                     command_table.h 
	                                     command_table2.c 
	                                     command_table2.h 
	                                     command_table_helper.c 
	                                     command_table_helper.h 
	                                     command_table_helper2.c 
	                                     command_table_helper2.h 
	                                     command_table_helper_struct.h 
	sys/dev/pci/drm/amd/display/dc/bios/dce110: 
	                                            command_table_helper_dce110.c 
	                                            command_table_helper_dce110.h 
	sys/dev/pci/drm/amd/display/dc/bios/dce112: 
	                                            command_table_helper2_dce112.c 
	                                            command_table_helper2_dce112.h 
	                                            command_table_helper_dce112.c 
	                                            command_table_helper_dce112.h 
	sys/dev/pci/drm/amd/display/dc/bios/dce80: 
	                                           command_table_helper_dce80.c 
	                                           command_table_helper_dce80.h 
	sys/dev/pci/drm/amd/display/dc/calcs: bw_fixed.c calcs_logger.h 
	                                      custom_float.c dce_calcs.c 
	                                      dcn_calc_auto.c 
	                                      dcn_calc_auto.h 
	                                      dcn_calc_math.c 
	                                      dcn_calc_math.h 
	                                      dcn_calcs.c 
	sys/dev/pci/drm/amd/display/dc/core: amdgpu_dc.c dc_debug.c 
	                                     dc_hw_sequencer.c dc_link.c 
	                                     dc_link_ddc.c dc_link_dp.c 
	                                     dc_link_hwss.c 
	                                     dc_resource.c dc_sink.c 
	                                     dc_stream.c dc_surface.c 
	sys/dev/pci/drm/amd/display/dc/dce: dce_abm.c dce_abm.h 
	                                    dce_audio.c dce_audio.h 
	                                    dce_aux.c dce_aux.h 
	                                    dce_clock_source.c 
	                                    dce_clock_source.h 
	                                    dce_clocks.c dce_clocks.h 
	                                    dce_dmcu.c dce_dmcu.h 
	                                    dce_hwseq.c dce_hwseq.h 
	                                    dce_ipp.c dce_ipp.h 
	                                    dce_link_encoder.c 
	                                    dce_link_encoder.h 
	                                    dce_mem_input.c 
	                                    dce_mem_input.h dce_opp.c 
	                                    dce_opp.h dce_scl_filters.c 
	                                    dce_stream_encoder.c 
	                                    dce_stream_encoder.h 
	                                    dce_transform.c 
	                                    dce_transform.h 
	sys/dev/pci/drm/amd/display/dc/dce100: dce100_hw_sequencer.c 
	                                       dce100_hw_sequencer.h 
	                                       dce100_resource.c 
	                                       dce100_resource.h 
	sys/dev/pci/drm/amd/display/dc/dce110: dce110_compressor.c 
	                                       dce110_compressor.h 
	                                       dce110_hw_sequencer.c 
	                                       dce110_hw_sequencer.h 
	                                       dce110_mem_input_v.c 
	                                       dce110_mem_input_v.h 
	                                       dce110_opp_csc_v.c 
	                                       dce110_opp_regamma_v.c 
	                                       dce110_opp_v.c 
	                                       dce110_opp_v.h 
	                                       dce110_resource.c 
	                                       dce110_resource.h 
	                                       dce110_timing_generator.c 
	                                       dce110_timing_generator.h 
	                                       dce110_timing_generator_v.c 
	                                       dce110_timing_generator_v.h 
	                                       dce110_transform_v.c 
	                                       dce110_transform_v.h 
	sys/dev/pci/drm/amd/display/dc/dce112: dce112_compressor.c 
	                                       dce112_compressor.h 
	                                       dce112_hw_sequencer.c 
	                                       dce112_hw_sequencer.h 
	                                       dce112_resource.c 
	                                       dce112_resource.h 
	sys/dev/pci/drm/amd/display/dc/dce120: dce120_hw_sequencer.c 
	                                       dce120_hw_sequencer.h 
	                                       dce120_resource.c 
	                                       dce120_resource.h 
	                                       dce120_timing_generator.c 
	                                       dce120_timing_generator.h 
	sys/dev/pci/drm/amd/display/dc/dce80: dce80_hw_sequencer.c 
	                                      dce80_hw_sequencer.h 
	                                      dce80_resource.c 
	                                      dce80_resource.h 
	                                      dce80_timing_generator.c 
	                                      dce80_timing_generator.h 
	sys/dev/pci/drm/amd/display/dc/dcn10: dcn10_cm_common.c 
	                                      dcn10_cm_common.h 
	                                      dcn10_dpp.c dcn10_dpp.h 
	                                      dcn10_dpp_cm.c 
	                                      dcn10_dpp_dscl.c 
	                                      dcn10_hubbub.c 
	                                      dcn10_hubbub.h 
	                                      dcn10_hubp.c dcn10_hubp.h 
	                                      dcn10_hw_sequencer.c 
	                                      dcn10_hw_sequencer.h 
	                                      dcn10_ipp.c dcn10_ipp.h 
	                                      dcn10_link_encoder.c 
	                                      dcn10_link_encoder.h 
	                                      dcn10_mpc.c dcn10_mpc.h 
	                                      dcn10_opp.c dcn10_opp.h 
	                                      dcn10_optc.c dcn10_optc.h 
	                                      dcn10_resource.c 
	                                      dcn10_resource.h 
	                                      dcn10_stream_encoder.c 
	                                      dcn10_stream_encoder.h 
	sys/dev/pci/drm/amd/display/dc/dml: dc_features.h 
	                                    display_mode_enums.h 
	                                    display_mode_lib.c 
	                                    display_mode_lib.h 
	                                    display_mode_structs.h 
	                                    display_rq_dlg_helpers.c 
	                                    display_rq_dlg_helpers.h 
	                                    dml1_display_rq_dlg_calc.c 
	                                    dml1_display_rq_dlg_calc.h 
	                                    dml_common_defs.c 
	                                    dml_common_defs.h 
	                                    dml_inline_defs.h 
	                                    dml_logger.h 
	sys/dev/pci/drm/amd/display/dc/gpio: ddc_regs.h gpio_base.c 
	                                     gpio_regs.h gpio_service.c 
	                                     gpio_service.h hpd_regs.h 
	                                     hw_ddc.c hw_ddc.h 
	                                     hw_factory.c hw_factory.h 
	                                     hw_gpio.c hw_gpio.h 
	                                     hw_hpd.c hw_hpd.h 
	                                     hw_translate.c 
	                                     hw_translate.h 
	sys/dev/pci/drm/amd/display/dc/gpio/dce110: hw_factory_dce110.c 
	                                            hw_factory_dce110.h 
	                                            hw_translate_dce110.c 
	                                            hw_translate_dce110.h 
	sys/dev/pci/drm/amd/display/dc/gpio/dce120: hw_factory_dce120.c 
	                                            hw_factory_dce120.h 
	                                            hw_translate_dce120.c 
	                                            hw_translate_dce120.h 
	sys/dev/pci/drm/amd/display/dc/gpio/dce80: hw_factory_dce80.c 
	                                           hw_factory_dce80.h 
	                                           hw_translate_dce80.c 
	                                           hw_translate_dce80.h 
	sys/dev/pci/drm/amd/display/dc/gpio/dcn10: hw_factory_dcn10.c 
	                                           hw_factory_dcn10.h 
	                                           hw_translate_dcn10.c 
	                                           hw_translate_dcn10.h 
	sys/dev/pci/drm/amd/display/dc/gpio/diagnostics: 
	                                                 hw_factory_diag.c 
	                                                 hw_factory_diag.h 
	                                                 hw_translate_diag.c 
	                                                 hw_translate_diag.h 
	sys/dev/pci/drm/amd/display/dc/i2caux: aux_engine.c aux_engine.h 
	                                       engine.h engine_base.c 
	                                       i2c_engine.c i2c_engine.h 
	                                       i2c_generic_hw_engine.c 
	                                       i2c_generic_hw_engine.h 
	                                       i2c_hw_engine.c 
	                                       i2c_hw_engine.h 
	                                       i2c_sw_engine.c 
	                                       i2c_sw_engine.h i2caux.c 
	                                       i2caux.h 
	sys/dev/pci/drm/amd/display/dc/i2caux/dce100: i2caux_dce100.c 
	                                              i2caux_dce100.h 
	sys/dev/pci/drm/amd/display/dc/i2caux/dce110: 
	                                              aux_engine_dce110.c 
	                                              aux_engine_dce110.h 
	                                              i2c_hw_engine_dce110.c 
	                                              i2c_hw_engine_dce110.h 
	                                              i2c_sw_engine_dce110.c 
	                                              i2c_sw_engine_dce110.h 
	                                              i2caux_dce110.c 
	                                              i2caux_dce110.h 
	sys/dev/pci/drm/amd/display/dc/i2caux/dce112: i2caux_dce112.c 
	                                              i2caux_dce112.h 
	sys/dev/pci/drm/amd/display/dc/i2caux/dce120: i2caux_dce120.c 
	                                              i2caux_dce120.h 
	sys/dev/pci/drm/amd/display/dc/i2caux/dce80: 
	                                             i2c_hw_engine_dce80.c 
	                                             i2c_hw_engine_dce80.h 
	                                             i2c_sw_engine_dce80.c 
	                                             i2c_sw_engine_dce80.h 
	                                             i2caux_dce80.c 
	                                             i2caux_dce80.h 
	sys/dev/pci/drm/amd/display/dc/i2caux/dcn10: i2caux_dcn10.c 
	                                             i2caux_dcn10.h 
	sys/dev/pci/drm/amd/display/dc/i2caux/diagnostics: i2caux_diag.c 
	                                                   i2caux_diag.h 
	sys/dev/pci/drm/amd/display/dc/inc: bw_fixed.h clock_source.h 
	                                    compressor.h core_status.h 
	                                    core_types.h custom_float.h 
	                                    dc_link_ddc.h dc_link_dp.h 
	                                    dce_calcs.h dcn_calcs.h 
	                                    hw_sequencer.h link_hwss.h 
	                                    reg_helper.h resource.h 
	sys/dev/pci/drm/amd/display/dc/inc/hw: abm.h audio.h 
	                                       aux_engine.h dchubbub.h 
	                                       display_clock.h dmcu.h 
	                                       dpp.h gpio.h hubp.h 
	                                       hw_shared.h ipp.h 
	                                       link_encoder.h 
	                                       mem_input.h mpc.h opp.h 
	                                       stream_encoder.h 
	                                       timing_generator.h 
	                                       transform.h 
	sys/dev/pci/drm/amd/display/dc/irq: irq_service.c irq_service.h 
	sys/dev/pci/drm/amd/display/dc/irq/dce110: irq_service_dce110.c 
	                                           irq_service_dce110.h 
	sys/dev/pci/drm/amd/display/dc/irq/dce120: irq_service_dce120.c 
	                                           irq_service_dce120.h 
	sys/dev/pci/drm/amd/display/dc/irq/dce80: irq_service_dce80.c 
	                                          irq_service_dce80.h 
	sys/dev/pci/drm/amd/display/dc/irq/dcn10: irq_service_dcn10.c 
	                                          irq_service_dcn10.h 
	sys/dev/pci/drm/amd/display/dc/virtual: virtual_link_encoder.c 
	                                        virtual_link_encoder.h 
	                                        virtual_stream_encoder.c 
	                                        virtual_stream_encoder.h 
	sys/dev/pci/drm/amd/display/include: audio_types.h 
	                                     bios_parser_interface.h 
	                                     bios_parser_types.h 
	                                     dal_asic_id.h dal_types.h 
	                                     ddc_service_types.h 
	                                     dpcd_defs.h fixed31_32.h 
	                                     gpio_interface.h 
	                                     gpio_service_interface.h 
	                                     gpio_types.h 
	                                     grph_object_ctrl_defs.h 
	                                     grph_object_defs.h 
	                                     grph_object_id.h 
	                                     i2caux_interface.h 
	                                     irq_service_interface.h 
	                                     link_service_types.h 
	                                     logger_interface.h 
	                                     logger_types.h 
	                                     set_mode_types.h 
	                                     signal_types.h vector.h 
	sys/dev/pci/drm/amd/display/modules/color: color_gamma.c 
	                                           color_gamma.h 
	                                           luts_1d.h 
	sys/dev/pci/drm/amd/display/modules/freesync: freesync.c 
	sys/dev/pci/drm/amd/display/modules/inc: mod_freesync.h 
	                                         mod_stats.h 
	sys/dev/pci/drm/amd/display/modules/stats: stats.c 
	sys/dev/pci/drm/amd/include: amd_acpi.h amd_pcie.h 
	                             amd_pcie_helpers.h amd_shared.h 
	                             atom-bits.h atom-names.h 
	                             atom-types.h atombios.h 
	                             atomfirmware.h atomfirmwareid.h 
	                             cgs_common.h cik_structs.h 
	                             displayobject.h dm_pp_interface.h 
	                             kgd_kfd_interface.h 
	                             kgd_pp_interface.h pptable.h 
	                             soc15_hw_ip.h soc15_ih_clientid.h 
	                             v9_structs.h vega10_enum.h 
	                             vega10_ip_offset.h 
	                             vega20_ip_offset.h vi_structs.h 
	sys/dev/pci/drm/amd/include/asic_reg/athub: athub_1_0_offset.h 
	                                            athub_1_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/bif: bif_3_0_d.h 
	                                          bif_3_0_sh_mask.h 
	                                          bif_4_1_d.h 
	                                          bif_4_1_sh_mask.h 
	                                          bif_5_0_d.h 
	                                          bif_5_0_enum.h 
	                                          bif_5_0_sh_mask.h 
	                                          bif_5_1_d.h 
	                                          bif_5_1_enum.h 
	                                          bif_5_1_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/dce: dce_10_0_d.h 
	                                          dce_10_0_enum.h 
	                                          dce_10_0_sh_mask.h 
	                                          dce_11_0_d.h 
	                                          dce_11_0_enum.h 
	                                          dce_11_0_sh_mask.h 
	                                          dce_11_2_d.h 
	                                          dce_11_2_enum.h 
	                                          dce_11_2_sh_mask.h 
	                                          dce_12_0_offset.h 
	                                          dce_12_0_sh_mask.h 
	                                          dce_6_0_d.h 
	                                          dce_6_0_sh_mask.h 
	                                          dce_8_0_d.h 
	                                          dce_8_0_enum.h 
	                                          dce_8_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/dcn: dcn_1_0_offset.h 
	                                          dcn_1_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/df: df_1_7_default.h 
	                                         df_1_7_offset.h 
	                                         df_1_7_sh_mask.h 
	                                         df_3_6_default.h 
	                                         df_3_6_offset.h 
	                                         df_3_6_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/gc: gc_9_0_default.h 
	                                         gc_9_0_offset.h 
	                                         gc_9_0_sh_mask.h 
	                                         gc_9_1_offset.h 
	                                         gc_9_1_sh_mask.h 
	                                         gc_9_2_1_offset.h 
	                                         gc_9_2_1_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/gca: gfx_6_0_d.h 
	                                          gfx_6_0_sh_mask.h 
	                                          gfx_7_0_d.h 
	                                          gfx_7_2_d.h 
	                                          gfx_7_2_enum.h 
	                                          gfx_7_2_sh_mask.h 
	                                          gfx_8_0_d.h 
	                                          gfx_8_0_enum.h 
	                                          gfx_8_0_sh_mask.h 
	                                          gfx_8_1_d.h 
	                                          gfx_8_1_enum.h 
	                                          gfx_8_1_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/gmc: gmc_6_0_d.h 
	                                          gmc_6_0_sh_mask.h 
	                                          gmc_7_0_d.h 
	                                          gmc_7_0_sh_mask.h 
	                                          gmc_7_1_d.h 
	                                          gmc_7_1_sh_mask.h 
	                                          gmc_8_1_d.h 
	                                          gmc_8_1_enum.h 
	                                          gmc_8_1_sh_mask.h 
	                                          gmc_8_2_d.h 
	                                          gmc_8_2_enum.h 
	                                          gmc_8_2_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/hdp: hdp_4_0_offset.h 
	                                          hdp_4_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/mmhub: mmhub_1_0_default.h 
	                                            mmhub_1_0_offset.h 
	                                            mmhub_1_0_sh_mask.h 
	                                            mmhub_9_1_offset.h 
	                                            mmhub_9_1_sh_mask.h 
	                                            mmhub_9_3_0_offset.h 
	                                            mmhub_9_3_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/mp: mp_10_0_default.h 
	                                         mp_10_0_offset.h 
	                                         mp_10_0_sh_mask.h 
	                                         mp_9_0_offset.h 
	                                         mp_9_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/nbif: nbif_6_1_offset.h 
	                                           nbif_6_1_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/nbio: nbio_6_1_default.h 
	                                           nbio_6_1_offset.h 
	                                           nbio_6_1_sh_mask.h 
	                                           nbio_7_0_default.h 
	                                           nbio_7_0_offset.h 
	                                           nbio_7_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/oss: oss_1_0_d.h 
	                                          oss_1_0_sh_mask.h 
	                                          oss_2_0_d.h 
	                                          oss_2_0_sh_mask.h 
	                                          oss_2_4_d.h 
	                                          oss_2_4_enum.h 
	                                          oss_2_4_sh_mask.h 
	                                          oss_3_0_1_d.h 
	                                          oss_3_0_1_enum.h 
	                                          oss_3_0_1_sh_mask.h 
	                                          oss_3_0_d.h 
	                                          oss_3_0_enum.h 
	                                          oss_3_0_sh_mask.h 
	                                          osssys_4_0_1_offset.h 
	                                          osssys_4_0_1_sh_mask.h 
	                                          osssys_4_0_offset.h 
	                                          osssys_4_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/sdma0: sdma0_4_0_default.h 
	                                            sdma0_4_0_offset.h 
	                                            sdma0_4_0_sh_mask.h 
	                                            sdma0_4_1_default.h 
	                                            sdma0_4_1_offset.h 
	                                            sdma0_4_1_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/sdma1: sdma1_4_0_default.h 
	                                            sdma1_4_0_offset.h 
	                                            sdma1_4_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/smu: smu_6_0_d.h 
	                                          smu_6_0_sh_mask.h 
	                                          smu_7_0_0_d.h 
	                                          smu_7_0_0_sh_mask.h 
	                                          smu_7_0_1_d.h 
	                                          smu_7_0_1_sh_mask.h 
	                                          smu_7_1_0_d.h 
	                                          smu_7_1_0_enum.h 
	                                          smu_7_1_0_sh_mask.h 
	                                          smu_7_1_1_d.h 
	                                          smu_7_1_1_enum.h 
	                                          smu_7_1_1_sh_mask.h 
	                                          smu_7_1_2_d.h 
	                                          smu_7_1_2_enum.h 
	                                          smu_7_1_2_sh_mask.h 
	                                          smu_7_1_3_d.h 
	                                          smu_7_1_3_enum.h 
	                                          smu_7_1_3_sh_mask.h 
	                                          smu_8_0_d.h 
	                                          smu_8_0_enum.h 
	                                          smu_8_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/smuio: smuio_9_0_offset.h 
	                                            smuio_9_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/thm: thm_10_0_default.h 
	                                          thm_10_0_offset.h 
	                                          thm_10_0_sh_mask.h 
	                                          thm_9_0_default.h 
	                                          thm_9_0_offset.h 
	                                          thm_9_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/umc: umc_6_0_default.h 
	                                          umc_6_0_offset.h 
	                                          umc_6_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/uvd: uvd_4_0_d.h 
	                                          uvd_4_0_sh_mask.h 
	                                          uvd_4_2_d.h 
	                                          uvd_4_2_sh_mask.h 
	                                          uvd_5_0_d.h 
	                                          uvd_5_0_enum.h 
	                                          uvd_5_0_sh_mask.h 
	                                          uvd_6_0_d.h 
	                                          uvd_6_0_enum.h 
	                                          uvd_6_0_sh_mask.h 
	                                          uvd_7_0_offset.h 
	                                          uvd_7_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/vce: vce_1_0_d.h 
	                                          vce_1_0_sh_mask.h 
	                                          vce_2_0_d.h 
	                                          vce_2_0_sh_mask.h 
	                                          vce_3_0_d.h 
	                                          vce_3_0_sh_mask.h 
	                                          vce_4_0_default.h 
	                                          vce_4_0_offset.h 
	                                          vce_4_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/asic_reg/vcn: vcn_1_0_offset.h 
	                                          vcn_1_0_sh_mask.h 
	sys/dev/pci/drm/amd/include/ivsrcid: irqsrcs_dcn_1_0.h 
	                                     ivsrcid_vislands30.h 
	sys/dev/pci/drm/amd/include/ivsrcid/gfx: irqsrcs_gfx_9_0.h 
	sys/dev/pci/drm/amd/include/ivsrcid/sdma0: irqsrcs_sdma0_4_0.h 
	sys/dev/pci/drm/amd/include/ivsrcid/sdma1: irqsrcs_sdma1_4_0.h 
	sys/dev/pci/drm/amd/include/ivsrcid/smuio: irqsrcs_smuio_9_0.h 
	sys/dev/pci/drm/amd/include/ivsrcid/thm: irqsrcs_thm_9_0.h 
	sys/dev/pci/drm/amd/include/ivsrcid/uvd: irqsrcs_uvd_7_0.h 
	sys/dev/pci/drm/amd/include/ivsrcid/vce: irqsrcs_vce_4_0.h 
	sys/dev/pci/drm/amd/include/ivsrcid/vcn: irqsrcs_vcn_1_0.h 
	sys/dev/pci/drm/amd/include/ivsrcid/vmc: irqsrcs_vmc_1_0.h 
	sys/dev/pci/drm/amd/include/linux: chash.h 
	sys/dev/pci/drm/amd/lib: chash.c 
	sys/dev/pci/drm/amd/powerplay: amd_powerplay.c 
	sys/dev/pci/drm/amd/powerplay/hwmgr: hardwaremanager.c hwmgr.c 
	                                     hwmgr_ppt.h pp_overdriver.c 
	                                     pp_overdriver.h pp_psm.c 
	                                     pp_psm.h ppatomctrl.c 
	                                     ppatomctrl.h ppatomfwctrl.c 
	                                     ppatomfwctrl.h ppevvmath.h 
	                                     pppcielanes.c pppcielanes.h 
	                                     pptable_v1_0.h 
	                                     process_pptables_v1_0.c 
	                                     process_pptables_v1_0.h 
	                                     processpptables.c 
	                                     processpptables.h 
	                                     smu10_hwmgr.c smu10_hwmgr.h 
	                                     smu10_inc.h 
	                                     smu7_clockpowergating.c 
	                                     smu7_clockpowergating.h 
	                                     smu7_dyn_defaults.h 
	                                     smu7_hwmgr.c smu7_hwmgr.h 
	                                     smu7_powertune.c 
	                                     smu7_powertune.h 
	                                     smu7_thermal.c 
	                                     smu7_thermal.h smu8_hwmgr.c 
	                                     smu8_hwmgr.h smu_helper.c 
	                                     smu_helper.h vega10_hwmgr.c 
	                                     vega10_hwmgr.h vega10_inc.h 
	                                     vega10_powertune.c 
	                                     vega10_powertune.h 
	                                     vega10_pptable.h 
	                                     vega10_processpptables.c 
	                                     vega10_processpptables.h 
	                                     vega10_thermal.c 
	                                     vega10_thermal.h 
	                                     vega12_hwmgr.c 
	                                     vega12_hwmgr.h vega12_inc.h 
	                                     vega12_pptable.h 
	                                     vega12_processpptables.c 
	                                     vega12_processpptables.h 
	                                     vega12_thermal.c 
	                                     vega12_thermal.h 
	sys/dev/pci/drm/amd/powerplay/inc: amd_powerplay.h cz_ppsmc.h 
	                                   fiji_ppsmc.h 
	                                   hardwaremanager.h hwmgr.h 
	                                   polaris10_pwrvirus.h 
	                                   power_state.h pp_debug.h 
	                                   pp_endian.h pp_thermal.h 
	                                   ppinterrupt.h rv_ppsmc.h 
	                                   smu10.h smu10_driver_if.h 
	                                   smu7.h smu71.h 
	                                   smu71_discrete.h smu72.h 
	                                   smu72_discrete.h smu73.h 
	                                   smu73_discrete.h smu74.h 
	                                   smu74_discrete.h smu75.h 
	                                   smu75_discrete.h 
	                                   smu7_common.h smu7_discrete.h 
	                                   smu7_fusion.h smu7_ppsmc.h 
	                                   smu8.h smu8_fusion.h smu9.h 
	                                   smu9_driver_if.h 
	                                   smu_ucode_xfer_cz.h 
	                                   smu_ucode_xfer_vi.h smumgr.h 
	                                   tonga_ppsmc.h vega10_ppsmc.h 
	                                   vega12_ppsmc.h 
	sys/dev/pci/drm/amd/powerplay/inc/vega12: smu9_driver_if.h 
	sys/dev/pci/drm/amd/powerplay/smumgr: ci_smumgr.c ci_smumgr.h 
	                                      fiji_smumgr.c 
	                                      fiji_smumgr.h 
	                                      iceland_smumgr.c 
	                                      iceland_smumgr.h 
	                                      polaris10_smumgr.c 
	                                      polaris10_smumgr.h 
	                                      smu10_smumgr.c 
	                                      smu10_smumgr.h 
	                                      smu7_smumgr.c 
	                                      smu7_smumgr.h 
	                                      smu8_smumgr.c 
	                                      smu8_smumgr.h 
	                                      smu9_smumgr.c 
	                                      smu9_smumgr.h smumgr.c 
	                                      tonga_smumgr.c 
	                                      tonga_smumgr.h 
	                                      vega10_smumgr.c 
	                                      vega10_smumgr.h 
	                                      vega12_smumgr.c 
	                                      vega12_smumgr.h 
	                                      vegam_smumgr.c 
	                                      vegam_smumgr.h 
	sys/dev/pci/drm/scheduler: gpu_scheduler.c gpu_scheduler_trace.h 
	                           sched_fence.c 

Log message:
add amdgpu from linux 4.19.44 for recent AMD Radeon parts

committing now so this can be worked on in tree

Thanks to the OpenBSD Foundation for sponsoring this work and kettenis@
for helping.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 16:55:20

Modified files:
	share/man/man4 : drm.4 

Log message:
Mention amdgpu.  Purposefully leave out an amdgpu .Nm as the xenocara
driver has a manual page with the same name.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/21 17:05:27

Modified files:
	x11/Xdialog    : Makefile 
Added files:
	x11/Xdialog/patches: patch-aclocal_m4 

Log message:
The updated macros included with gettext 0.20 require autoconf >=2.61


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/21 17:57:10

Modified files:
	share/man/man4 : drm.4 

Log message:
sync config lines and mention arch differences


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/05/21 19:00:03

Modified files:
	build          : support.dat 

Log message:
new: Duncan Hart, Melbourne


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/05/21 19:01:43

Modified files:
	.              : support.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/21 19:38:26

Modified files:
	libressl       : openbsd.css 
	openbgpd       : openbsd.css 
	opencvs        : openbsd.css 
	openntpd       : openbsd.css 
	opensmtpd      : openbsd.css 
	openssh        : openbsd.css 

Log message:
sync project css files with the main one


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/21 19:38:39

Modified files:
	libressl       : papers.html 

Log message:
add tb's bsdcan talk


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/21 19:42:22

Modified files:
	.              : anoncvs.html cvsync.html ftp.html groups.html 
	                 support.html 
	build          : groups.skel support.skel 
	build/mirrors  : anoncvs.html.head cvsync.html.head 
	                 ftp.html.head openbgpd-ftp.html.head 
	                 openntpd-portable.html.head 
	                 openssh-ftp.html.head 
	                 openssh-portable.html.head 
	build/openssh  : releasenotes.html.head 
	libressl       : goals.html mail.html patches.html releases.html 
	                 signing.html 
	openbgpd       : ftp.html goals.html mail.html manual.html 
	                 papers.html users.html 
	opencvs        : goals.html manual.html press.html 
	openntpd       : features.html goals.html manual.html 
	                 papers.html portable.html 
	opensmtpd      : donations.html goals.html list.html manual.html 
	                 papers.html portable.html report.html 
	                 security.html 
	openssh        : donations.html features.html ftp.html 
	                 goals.html history.html legacy.html list.html 
	                 manual.html openbsd.html portable.html 
	                 press.html report.html security.html specs.html 
	                 users.html 

Log message:
begin replacing many manual <font> and other coloring tags with a much
simpler reference to the css files. this makes the pages smaller and
easier to manage, and will come in handy later on.

ok bentley


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/21 20:15:23

Modified files:
	.              : hackathons.html 

Log message:
Fix typo: "hackathons attendees" to "hackathon attendees".


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/21 20:19:28

Modified files:
	build          : groups.dat 
	.              : groups.html 

Log message:
Replace ISO-8859-1 character with HTML escape.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/21 20:31:44

Modified files:
	.              : Makefile.cross 

Log message:
Fix malformed conditional after socppc removal.

From Krystian Lewandowski


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/21 20:44:50

Modified files:
	openssh        : legacy.html 

Log message:
replace custom command styling with the cmdbox one used elsewhere


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/21 20:45:27

Modified files:
	.              : events.html 

Log message:
add a reminder to also add libressl/opensmtpd/etc talks to those projects'
presentation list pages


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/22 03:44:48

Modified files:
	geo/traccar    : Makefile distinfo 
	geo/traccar/pkg: PLIST 

Log message:
update to traccar-4.5, from maintainer Renaud Allard

> Please note that if you use MySQL as a database, the configuration file
> has to be changed manually for this update, but MySQL is not the default
> database.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/22 04:29:00

Modified files:
	devel/llvm     : Makefile 

Log message:
Set devel/llvm as a RUN_DEPENDS for lldb, not a LIB_DEPENDS

Since libLLVM-x.so isn't a properly versioned shared library, we can't
use LIB_DEPENDS/WANTLIB to register the dep.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/22 05:03:47

Modified files:
	devel/llvm     : Makefile 

Log message:
Fix LIB_DEPENDS-lldb in some edge cases on ports-gcc archs.

where we need a way to get to gcc-libs/libestdc++.  This happened to
work so far except when it didn't (slight differences between built
and already installed llvm packages, maybe?), as found the hard way by
cwen@.

Our COMPILER support automatically amends WANTLIB and LIB_DEPENDS, so
use those to explicitely set:
- WANTLIB-main and WANTLIB-lldb
- LIB_DEPENDS-main and LIB_DEPENDS-lldb


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/22 05:54:37

Modified files:
	net/etherape   : Makefile 
	news/slrn      : Makefile 
Added files:
	net/etherape/patches: patch-aclocal_m4 
	news/slrn/patches: patch-autoconf_configure_ac 

Log message:
the gettext autoconf macros included with gettext 0.20 depend on an
additional macro file


CVSROOT:	/cvs
Module name:	ports
Changes by:	schwarze@cvs.openbsd.org	2019/05/22 06:56:29

Modified files:
	devel/elftoolchain: Makefile 
	devel/elftoolchain/pkg: PLIST 
Added files:
	devel/elftoolchain/patches: patch-libdwarf_Makefile 
	                            patch-libdwarf_dwarf_add_frame_fde_3 
	                            patch-libdwarf_dwarf_get_fde_list_3 
	                            patch-libdwarf_dwarf_get_ranges_3 
	                            patch-libelf_Makefile 
	                            patch-libelf_elf_open_3 
	                            patch-libelf_gelf_xlatetof_3 
	                            patch-libelftc_Makefile 

Log message:
Remove use of the moribund MLINKS bsd.man.mk feature and bump.
Add a small number of missing .Nm lines to a handful of NAME sections.
That this port used MLINKS in the upstream Makefiles was found
when naddy@ grepped bulk build logs.
OK naddy@.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/22 06:56:31

Modified files:
	sbin/dhclient  : dhclient.c dhcpd.h 

Log message:
Don't get & apply a new lease for an RTM_IFINFO that reports a change
to the MTU of the interface. Such message are generated by the
application of a lease containing interface-mtu, and thus caused a
duplicate lease negotiation and application when that option
was present.

This rapid duplication confused Google Compute Engine.

Noticed and fix tested by Greg Steuck. Also tested by Bj??rn Ketelaars
to make sure Dutch Railways still worked. Thanks!

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/22 09:23:01

Modified files:
	sys/dev/ic     : bwfm.c 

Log message:
If we are SCANning and we want another SCAN, we don't need to purge
all nodes and set the link down, this already happened the first
time we went to SCAN mode.  This brings us in line with the net80211
stack and fixes an incomplete node list during ifconfig(8) scan.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/22 09:23:23

Modified files:
	bin/ksh        : sh.1 

Log message:
mention that using vi command line editing mode requires enabling it;
omission reported by Rudolf Sykora <rsykora at disroot dot org> on misc@;
tweak and OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/22 09:25:25

Modified files:
	sys/dev/ic     : bwfm.c 

Log message:
Print the bwfm(4)'s ethernet address on attach.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/22 09:40:48

Modified files:
	sys/arch/amd64/stand/efiboot: exec_i386.c 

Log message:
Allow loading of bigger ucode.  This implementation uses the UEFI memory
allocation service to allocate a block of memory below 16MB such that there
is no risk of overwriting it when the bootloader moves the kernel in place.
It removes the 128k limit that was previously there.

Based on an earlier diff by patrick@

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/22 10:11:21

Modified files:
	sys/arch/i386/i386: apm.c 

Log message:
i386/amd64 apm(4): Ignore APM_UPDATE_TIME events.

The APM spec defines an APM_UPDATE_TIME event that is meant to cause
the driver to rebase the system's wallclock against the RTC.  The
event itself is apparently caused by occasional blackout periods where
interrupts cannot be delivered, which might cause the system to miss a tick.

The problem is that on systems where these events are frequent this
constantly erodes the system wallclock.  The RTC is not the greatest
clock in the world so these systems are always playing catch-up.

ntpd(8) is a far better clock corrector than rebasing against the RTC,
so it should be safe to simply ignore the event.  We continue to record
the event for userspace listeners, but we do not call inittodr(9) on
receipt of the event.

Linux has ignored the event since v2.6.21:

https://github.com/torvalds/linux/commit/c1d370e167d66b10bca3b602d3740405469383de#diff-d85b9a44da8e5dfb2fb1bcbd304c2a6c

Discovered by jcs@.  Discussed a bit with jcs@, tedu@, deraadt@.  Fix
tested by jcs@.

"I think we should ignore the event" deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/22 10:14:50

Modified files:
	spamd          : index.html 

Log message:
move to css, shorten man page links, clean up formatting


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/22 10:19:21

Modified files:
	usr.sbin/vmctl : vmctl.c 

Log message:
re-order to reported states based on order of significance:
paused takes priority over running; running takes priority over disabled

ok mlarkin@ pd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/05/22 11:03:32

Modified files:
	net/seafile/libsearpc: Makefile distinfo 
	net/seafile/libsearpc/pkg: PLIST 

Log message:
Upstream added new functionality used by CLI client and re-reolled tarball
without increasing version number.
Breakae spotted by Abhinav Tamaskar, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	matthieu@cvs.openbsd.org	2019/05/22 11:43:23

Modified files:
	www/nextcloud  : distinfo 

Log message:
Unbreak by adding the missing distinfo update. ok landry@, gonzalo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/22 12:09:32

Modified files:
	x11/gnome/eog  : Makefile distinfo 

Log message:
update to eog-3.32.2


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/22 12:45:07

Modified files:
	sys/kern       : kern_sysctl.c 

Log message:
Read and assign the integer value only once. With this sysctl_int() will
do word loads and stores and so partial updates should no longer be observed.
With this accessing global variables set by sysctl_int() should be mostly MP
save.
OK dlg@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/22 12:52:14

Modified files:
	sys/dev/wscons : wsevent.c wseventvar.h wskbd.c wsmouse.c 
	                 wsmux.c 

Log message:
A wscons device may only be opened in read/write mode once. However,
after checking for exclusive access, malloc() can sleep in
wsevent_init() opening up for a potential race where more than one
thread may be able open the device. Prevent this by checking if the race
was won after calling malloc().

While here, switch to mallocarray as proposed by both cheloha@ and mpi@

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	matthieu@cvs.openbsd.org	2019/05/22 12:56:12

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_5 distinfo 

Log message:
Unbreak by adding the missing distinfo update. ok landry@, gonzalo@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/22 12:58:31

Modified files:
	usr.bin/tmux   : cmd-show-options.c 

Log message:
Fix crash if window doesn't exist, GitHub issue 1751.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/22 13:13:34

Modified files:
	sys/dev/wscons : wskbd.c wsmouse.c wsmux.c 

Log message:
Cleanup debug macros in wscons. Favor __func__ over spelling out the actual
function name in order to reduce grep noise. Also, some of them where referring
to the wrong function.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/22 13:59:24

Modified files:
	net/strongswan : Makefile distinfo 

Log message:
update to strongswan-5.8.0


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/22 13:59:37

Modified files:
	sys/kern       : kern_tc.c 
	sys/sys        : timetc.h 

Log message:
SLIST-ify the timecounter list.

Call it "tc_list" instead of "timecounters", which is too similar to
the variable "timecounter" for my taste.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/22 14:19:52

Modified files:
	mail/mozilla-thunderbird: Makefile distinfo 
	mail/thunderbird-i18n: Makefile.inc distinfo 

Log message:
Update to thunderbird 60.7.0.

See https://www.thunderbird.net/en-US/thunderbird/60.7.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-15/


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/22 15:01:19

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/pkg: PLIST 

Log message:
Update to glib2-2.60.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/22 15:23:50

Modified files:
	x11/gnome/maps : Makefile distinfo 

Log message:
Update to gnome-maps-3.32.2.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	cwen@cvs.openbsd.org	2019/05/22 15:40:38

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
bsd.port.mk.5: mention additional doas.conf(5) rules that may be used when
PORTS_PRIVSEP=Yes, if the regular user is not allowed to run passwordless
privilegied commands by default, to reduce the amount of time they have
to type their password during ports work.

OK espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/22 17:38:04

Log message:
    import p5-Test-Exit 0.11
    OK cwen@
    
    Comment:
    test whether code exits without terminating testing
    
    Description:
    Test::Exit provides some simple tools for testing code that might
    call exit(), providing you with the status code without exiting the
    test file.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190523
    
    N ports/devel/p5-Test-Exit/Makefile
    N ports/devel/p5-Test-Exit/distinfo
    N ports/devel/p5-Test-Exit/pkg/DESCR
    N ports/devel/p5-Test-Exit/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/22 17:39:32

Modified files:
	devel          : Makefile 

Log message:
+p5-Test-Exit


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/05/22 19:57:19

Modified files:
	sys/dev/pci    : if_alc.c 

Log message:
Formatting fixes.

From Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/22 20:08:34

Modified files:
	lib/libcrypto/x509: x509spki.c 

Log message:
add stdlib.h for reallocarray


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/05/22 20:54:45

Modified files:
	lib/libcrypto  : opensslv.h 

Log message:
bump to LibreSSL 3.0.0

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/22 21:40:43

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_device.c 

Log message:
match radeondrm and switch DRM_INFO message with device id/asic name to
a printf so it shows without DRMDEBUG


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/05/22 23:01:04

Modified files:
	security/py-axolotl: Makefile distinfo 

Log message:
Update to python-axolotl 0.2.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/22 23:03:27

Log message:
    Import Mesa 19.0.5
    
    Status:
    
    Vendor Tag:	mesa
    Release Tags:	mesa-19_0_5
    
    C xenocara/lib/mesa/Makefile.am
    C xenocara/lib/mesa/configure
    C xenocara/lib/mesa/VERSION
    C xenocara/lib/mesa/configure.ac
    U xenocara/lib/mesa/aclocal.m4
    C xenocara/lib/mesa/Makefile.in
    U xenocara/lib/mesa/autogen.sh
    U xenocara/lib/mesa/common.py
    U xenocara/lib/mesa/SConstruct
    U xenocara/lib/mesa/meson.build
    U xenocara/lib/mesa/meson_options.txt
    U xenocara/lib/mesa/install-lib-links.mk
    U xenocara/lib/mesa/install-gallium-links.mk
    U xenocara/lib/mesa/bin/ar-lib
    U xenocara/lib/mesa/bin/compile
    U xenocara/lib/mesa/bin/config.guess
    U xenocara/lib/mesa/bin/config.sub
    U xenocara/lib/mesa/bin/install-sh
    U xenocara/lib/mesa/bin/ltmain.sh
    U xenocara/lib/mesa/bin/missing
    U xenocara/lib/mesa/bin/git_sha1_gen.py
    U xenocara/lib/mesa/bin/meson.build
    U xenocara/lib/mesa/bin/install_megadrivers.py
    U xenocara/lib/mesa/bin/meson_get_version.py
    U xenocara/lib/mesa/bin/depcomp
    U xenocara/lib/mesa/bin/test-driver
    U xenocara/lib/mesa/build-support/conftest.dyn
    U xenocara/lib/mesa/build-support/conftest.map
    U xenocara/lib/mesa/include/c99_alloca.h
    U xenocara/lib/mesa/include/c99_compat.h
    U xenocara/lib/mesa/include/c99_math.h
    U xenocara/lib/mesa/include/no_extern_c.h
    U xenocara/lib/mesa/include/meson.build
    U xenocara/lib/mesa/include/GL/wglext.h
    U xenocara/lib/mesa/include/GL/gl.h
    U xenocara/lib/mesa/include/GL/glext.h
    U xenocara/lib/mesa/include/GL/glcorearb.h
    U xenocara/lib/mesa/include/GL/gl_mangle.h
    U xenocara/lib/mesa/include/GL/glx.h
    U xenocara/lib/mesa/include/GL/glxext.h
    U xenocara/lib/mesa/include/GL/glx_mangle.h
    U xenocara/lib/mesa/include/GL/osmesa.h
    U xenocara/lib/mesa/include/GL/mesa_glinterop.h
    C xenocara/lib/mesa/include/GL/internal/dri_interface.h
    U xenocara/lib/mesa/include/drm-uapi/drm.h
    C xenocara/lib/mesa/include/drm-uapi/drm_fourcc.h
    U xenocara/lib/mesa/include/drm-uapi/drm_mode.h
    U xenocara/lib/mesa/include/drm-uapi/i915_drm.h
    U xenocara/lib/mesa/include/drm-uapi/tegra_drm.h
    U xenocara/lib/mesa/include/drm-uapi/v3d_drm.h
    U xenocara/lib/mesa/include/drm-uapi/vc4_drm.h
    U xenocara/lib/mesa/include/c11/.editorconfig
    U xenocara/lib/mesa/include/c11/threads.h
    U xenocara/lib/mesa/include/c11/threads_posix.h
    U xenocara/lib/mesa/include/c11/threads_win32.h
    U xenocara/lib/mesa/include/D3D9/.editorconfig
    U xenocara/lib/mesa/include/D3D9/d3d9.h
    U xenocara/lib/mesa/include/D3D9/d3d9caps.h
    U xenocara/lib/mesa/include/D3D9/d3d9types.h
    U xenocara/lib/mesa/include/HaikuGL/GLRenderer.h
    U xenocara/lib/mesa/include/HaikuGL/GLView.h
    U xenocara/lib/mesa/include/HaikuGL/OpenGLKit.h
    U xenocara/lib/mesa/include/HaikuGL/README
    U xenocara/lib/mesa/include/pci_ids/i810_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/i915_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/i965_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r200_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r300_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r600_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/radeon_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/radeonsi_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/virtio_gpu_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/vmwgfx_pci_ids.h
    U xenocara/lib/mesa/include/vulkan/.editorconfig
    U xenocara/lib/mesa/include/vulkan/vk_android_native_buffer.h
    U xenocara/lib/mesa/include/vulkan/vk_icd.h
    U xenocara/lib/mesa/include/vulkan/vk_platform.h
    C xenocara/lib/mesa/include/vulkan/vulkan.h
    U xenocara/lib/mesa/include/vulkan/vulkan_android.h
    U xenocara/lib/mesa/include/vulkan/vulkan_core.h
    U xenocara/lib/mesa/include/vulkan/vulkan_fuchsia.h
    U xenocara/lib/mesa/include/vulkan/vulkan_intel.h
    U xenocara/lib/mesa/include/vulkan/vulkan_ios.h
    U xenocara/lib/mesa/include/vulkan/vulkan_macos.h
    U xenocara/lib/mesa/include/vulkan/vulkan_vi.h
    U xenocara/lib/mesa/include/vulkan/vulkan_wayland.h
    U xenocara/lib/mesa/include/vulkan/vulkan_win32.h
    U xenocara/lib/mesa/include/vulkan/vulkan_xcb.h
    U xenocara/lib/mesa/include/vulkan/vulkan_xlib.h
    U xenocara/lib/mesa/include/vulkan/vulkan_xlib_randr.h
    U xenocara/lib/mesa/include/vulkan/vulkan_xlib_xrandr.h
    U xenocara/lib/mesa/include/GLES/egl.h
    U xenocara/lib/mesa/include/GLES/gl.h
    U xenocara/lib/mesa/include/GLES/glext.h
    U xenocara/lib/mesa/include/GLES/glplatform.h
    U xenocara/lib/mesa/include/GLES2/gl2.h
    U xenocara/lib/mesa/include/GLES2/gl2ext.h
    U xenocara/lib/mesa/include/GLES2/gl2platform.h
    U xenocara/lib/mesa/include/GLES3/gl3.h
    U xenocara/lib/mesa/include/GLES3/gl31.h
    U xenocara/lib/mesa/include/GLES3/gl32.h
    U xenocara/lib/mesa/include/GLES3/gl3ext.h
    U xenocara/lib/mesa/include/GLES3/gl3platform.h
    U xenocara/lib/mesa/include/KHR/khrplatform.h
    C xenocara/lib/mesa/include/EGL/eglext.h
    C xenocara/lib/mesa/include/EGL/egl.h
    U xenocara/lib/mesa/include/EGL/eglextchromium.h
    U xenocara/lib/mesa/include/EGL/eglmesaext.h
    U xenocara/lib/mesa/include/EGL/eglplatform.h
    U xenocara/lib/mesa/include/CL/cl.h
    U xenocara/lib/mesa/include/CL/cl.hpp
    U xenocara/lib/mesa/include/CL/cl_d3d10.h
    U xenocara/lib/mesa/include/CL/cl_d3d11.h
    U xenocara/lib/mesa/include/CL/cl_dx9_media_sharing.h
    U xenocara/lib/mesa/include/CL/cl_egl.h
    U xenocara/lib/mesa/include/CL/cl_ext.h
    U xenocara/lib/mesa/include/CL/cl_gl.h
    U xenocara/lib/mesa/include/CL/cl_gl_ext.h
    U xenocara/lib/mesa/include/CL/cl_platform.h
    U xenocara/lib/mesa/include/CL/opencl.h
    U xenocara/lib/mesa/include/d3dadapter/d3dadapter9.h
    U xenocara/lib/mesa/include/d3dadapter/drm.h
    U xenocara/lib/mesa/include/d3dadapter/present.h
    U xenocara/lib/mesa/m4/ax_check_compile_flag.m4
    U xenocara/lib/mesa/m4/ax_check_gnu_make.m4
    U xenocara/lib/mesa/m4/ax_check_python_mako_module.m4
    U xenocara/lib/mesa/m4/ax_gcc_builtin.m4
    U xenocara/lib/mesa/m4/ax_gcc_func_attribute.m4
    U xenocara/lib/mesa/m4/ax_prog_bison.m4
    U xenocara/lib/mesa/m4/ax_prog_flex.m4
    U xenocara/lib/mesa/m4/ax_pthread.m4
    U xenocara/lib/mesa/m4/libtool.m4
    U xenocara/lib/mesa/m4/ltoptions.m4
    U xenocara/lib/mesa/m4/ltsugar.m4
    U xenocara/lib/mesa/m4/ltversion.m4
    U xenocara/lib/mesa/m4/lt~obsolete.m4
    C xenocara/lib/mesa/src/Makefile.am
    C xenocara/lib/mesa/src/Makefile.in
    U xenocara/lib/mesa/src/meson.build
    U xenocara/lib/mesa/src/SConscript
    C xenocara/lib/mesa/src/egl/Makefile.am
    C xenocara/lib/mesa/src/egl/Makefile.in
    U xenocara/lib/mesa/src/egl/Makefile.sources
    C xenocara/lib/mesa/src/egl/g_egldispatchstubs.c
    C xenocara/lib/mesa/src/egl/g_egldispatchstubs.h
    U xenocara/lib/mesa/src/egl/egl-entrypoint-check
    U xenocara/lib/mesa/src/egl/egl-symbols-check
    U xenocara/lib/mesa/src/egl/SConscript
    U xenocara/lib/mesa/src/egl/meson.build
    U xenocara/lib/mesa/src/egl/main/egl.pc.in
    C xenocara/lib/mesa/src/egl/main/eglapi.c
    C xenocara/lib/mesa/src/egl/main/eglapi.h
    U xenocara/lib/mesa/src/egl/main/eglarray.c
    U xenocara/lib/mesa/src/egl/main/eglarray.h
    U xenocara/lib/mesa/src/egl/main/eglconfig.c
    U xenocara/lib/mesa/src/egl/main/eglconfig.h
    C xenocara/lib/mesa/src/egl/main/eglcontext.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.h
    C xenocara/lib/mesa/src/egl/main/eglcurrent.c
    U xenocara/lib/mesa/src/egl/main/eglcurrent.h
    U xenocara/lib/mesa/src/egl/main/egldefines.h
    U xenocara/lib/mesa/src/egl/main/egldevice.c
    U xenocara/lib/mesa/src/egl/main/egldevice.h
    U xenocara/lib/mesa/src/egl/main/egldisplay.c
    C xenocara/lib/mesa/src/egl/main/egldisplay.h
    U xenocara/lib/mesa/src/egl/main/egldriver.c
    U xenocara/lib/mesa/src/egl/main/egldriver.h
    U xenocara/lib/mesa/src/egl/main/eglfallbacks.c
    C xenocara/lib/mesa/src/egl/main/eglglobals.c
    U xenocara/lib/mesa/src/egl/main/eglglobals.h
    U xenocara/lib/mesa/src/egl/main/egl.def
    U xenocara/lib/mesa/src/egl/main/eglimage.c
    U xenocara/lib/mesa/src/egl/main/eglimage.h
    U xenocara/lib/mesa/src/egl/main/egllog.c
    U xenocara/lib/mesa/src/egl/main/egllog.h
    C xenocara/lib/mesa/src/egl/main/eglsurface.c
    U xenocara/lib/mesa/src/egl/main/eglsurface.h
    U xenocara/lib/mesa/src/egl/main/eglsync.c
    U xenocara/lib/mesa/src/egl/main/eglsync.h
    C xenocara/lib/mesa/src/egl/main/eglentrypoint.h
    U xenocara/lib/mesa/src/egl/main/egltypedefs.h
    U xenocara/lib/mesa/src/egl/main/eglglvnd.c
    U xenocara/lib/mesa/src/egl/main/egldispatchstubs.h
    U xenocara/lib/mesa/src/egl/main/egldispatchstubs.c
    U xenocara/lib/mesa/src/egl/main/README.txt
    U xenocara/lib/mesa/src/egl/main/50_mesa.json
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.h
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/Makefile.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.xml
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/meson.build
    C xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2_fallbacks.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_wayland.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_drm.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_surfaceless.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_android.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11_dri3.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11_dri3.h
    U xenocara/lib/mesa/src/egl/drivers/haiku/.editorconfig
    U xenocara/lib/mesa/src/egl/drivers/haiku/egl_haiku.cpp
    C xenocara/lib/mesa/src/egl/generate/gen_egl_dispatch.py
    C xenocara/lib/mesa/src/egl/generate/eglFunctionList.py
    C xenocara/lib/mesa/src/egl/generate/egl.xml
    U xenocara/lib/mesa/src/egl/generate/egl_other.xml
    C xenocara/lib/mesa/src/gbm/Makefile.am
    C xenocara/lib/mesa/src/gbm/Makefile.in
    U xenocara/lib/mesa/src/gbm/Makefile.sources
    C xenocara/lib/mesa/src/gbm/gbm-symbols-check
    U xenocara/lib/mesa/src/gbm/meson.build
    U xenocara/lib/mesa/src/gbm/main/gbm.pc.in
    C xenocara/lib/mesa/src/gbm/main/gbm.h
    U xenocara/lib/mesa/src/gbm/main/backend.c
    U xenocara/lib/mesa/src/gbm/main/backend.h
    C xenocara/lib/mesa/src/gbm/main/gbm.c
    C xenocara/lib/mesa/src/gbm/main/gbmint.h
    C xenocara/lib/mesa/src/gbm/backends/dri/gbm_dri.c
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_driint.h
    C xenocara/lib/mesa/src/mapi/Makefile.am
    C xenocara/lib/mesa/src/mapi/Makefile.in
    U xenocara/lib/mesa/src/mapi/Makefile.sources
    U xenocara/lib/mesa/src/mapi/entry.c
    U xenocara/lib/mesa/src/mapi/entry.h
    U xenocara/lib/mesa/src/mapi/entry_x86-64_tls.h
    U xenocara/lib/mesa/src/mapi/entry_x86_tls.h
    U xenocara/lib/mesa/src/mapi/entry_x86_tsd.h
    U xenocara/lib/mesa/src/mapi/entry_ppc64le_tls.h
    U xenocara/lib/mesa/src/mapi/entry_ppc64le_tsd.h
    U xenocara/lib/mesa/src/mapi/mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/u_current.c
    U xenocara/lib/mesa/src/mapi/u_current.h
    U xenocara/lib/mesa/src/mapi/u_execmem.c
    U xenocara/lib/mesa/src/mapi/u_execmem.h
    U xenocara/lib/mesa/src/mapi/mapi_glapi.c
    U xenocara/lib/mesa/src/mapi/stub.c
    U xenocara/lib/mesa/src/mapi/stub.h
    U xenocara/lib/mesa/src/mapi/table.c
    U xenocara/lib/mesa/src/mapi/table.h
    C xenocara/lib/mesa/src/mapi/mapi_abi.py
    U xenocara/lib/mesa/src/mapi/meson.build
    U xenocara/lib/mesa/src/mapi/es1api/glesv1_cm.pc.in
    C xenocara/lib/mesa/src/mapi/es1api/glapi_mapi_tmp.h
    C xenocara/lib/mesa/src/mapi/es1api/ABI-check
    U xenocara/lib/mesa/src/mapi/es1api/meson.build
    U xenocara/lib/mesa/src/mapi/es2api/glesv2.pc.in
    C xenocara/lib/mesa/src/mapi/es2api/glapi_mapi_tmp.h
    C xenocara/lib/mesa/src/mapi/es2api/ABI-check
    U xenocara/lib/mesa/src/mapi/es2api/meson.build
    C xenocara/lib/mesa/src/mapi/glapi/glapi_mapi_tmp.h
    C xenocara/lib/mesa/src/mapi/glapi/glprocs.h
    C xenocara/lib/mesa/src/mapi/glapi/glapitemp.h
    C xenocara/lib/mesa/src/mapi/glapi/glapitable.h
    C xenocara/lib/mesa/src/mapi/glapi/glapi_x86-64.S
    C xenocara/lib/mesa/src/mapi/glapi/glapi_gentable.c
    C xenocara/lib/mesa/src/mapi/glapi/glapi_x86.S
    C xenocara/lib/mesa/src/mapi/glapi/glapi_sparc.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi_dispatch.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_entrypoint.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_getproc.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_nop.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_priv.h
    U xenocara/lib/mesa/src/mapi/glapi/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/meson.build
    C xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.am
    C xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.in
    C xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.xml
    C xenocara/lib/mesa/src/mapi/glapi/gen/es_EXT.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_es_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_base_instance.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_bindless_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clip_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compressed_texture_pixel_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_variable_group_size.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_debug_output.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_direct_state_access.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gl_spirv.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml
    C xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_texture_sub_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_fp64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_int64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_indirect_parameters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query2.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_invalidate_subdata.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_multi_bind.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sync.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_pipeline_statistics_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_program_interface_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sample_shading.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_subroutine.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_storage_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sparse_buffer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_tessellation_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rg.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_gather.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_view.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_viewport_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_64bit.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_depth_clamp_separate.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_gpu_shader_int64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_type_2_10_10_10_rev.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_object_purgeable.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_external_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_external_objects_fd.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml
    N xenocara/lib/mesa/src/mapi/glapi/gen/EXT_multisampled_render_to_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_integer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_vertex_attrib_64bit.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_window_rectangles.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GREMEDY_string_marker.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/INTEL_performance_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_debug.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_context_flush_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness_es.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/MESA_tile_raster_order.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_conditional_render.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_primitive_restart.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_EGL_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_fixed_point.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_single_precision.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL3x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL4x.xml
    C xenocara/lib/mesa/src/mapi/glapi/gen/gl_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/license.py
    C xenocara/lib/mesa/src/mapi/glapi/gen/static_data.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/typeexpr.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_common.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/apiexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_apitemp.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_enums.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_genexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_gentable.py
    C xenocara/lib/mesa/src/mapi/glapi/gen/gl_marshal.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_marshal_h.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_procs.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_SPARC_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86-64_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_recv.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_send.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_size.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_server_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/marshal_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/remap_helper.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.dtd
    U xenocara/lib/mesa/src/mapi/glapi/gen/meson.build
    U xenocara/lib/mesa/src/mapi/glapi/registry/gl.xml
    U xenocara/lib/mesa/src/mapi/glapi/tests/check_table.cpp
    N xenocara/lib/mesa/src/mapi/new/genCommon.py
    N xenocara/lib/mesa/src/mapi/new/gen_gldispatch_mapi.py
    C xenocara/lib/mesa/src/mapi/shared-glapi/glapi_mapi_tmp.h
    C xenocara/lib/mesa/src/mapi/shared-glapi/SConscript
    U xenocara/lib/mesa/src/mapi/shared-glapi/meson.build
    U xenocara/lib/mesa/src/mapi/shared-glapi/tests/check_table.cpp
    U xenocara/lib/mesa/src/mesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/Makefile.sources
    U xenocara/lib/mesa/src/mesa/gl.pc.in
    U xenocara/lib/mesa/src/mesa/meson.build
    U xenocara/lib/mesa/src/mesa/SConscript
    U xenocara/lib/mesa/src/mesa/main/extensions_table.c
    U xenocara/lib/mesa/src/mesa/main/imports.c
    U xenocara/lib/mesa/src/mesa/main/enums.c
    C xenocara/lib/mesa/src/mesa/main/api_exec.c
    C xenocara/lib/mesa/src/mesa/main/marshal_generated.c
    C xenocara/lib/mesa/src/mesa/main/marshal_generated.h
    C xenocara/lib/mesa/src/mesa/main/dispatch.h
    C xenocara/lib/mesa/src/mesa/main/remap_helper.h
    U xenocara/lib/mesa/src/mesa/main/accum.c
    U xenocara/lib/mesa/src/mesa/main/accum.h
    C xenocara/lib/mesa/src/mesa/main/api_arrayelt.c
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.h
    U xenocara/lib/mesa/src/mesa/main/api_exec.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.c
    U xenocara/lib/mesa/src/mesa/main/api_loopback.h
    U xenocara/lib/mesa/src/mesa/main/arbprogram.c
    U xenocara/lib/mesa/src/mesa/main/arbprogram.h
    C xenocara/lib/mesa/src/mesa/main/arrayobj.c
    C xenocara/lib/mesa/src/mesa/main/arrayobj.h
    U xenocara/lib/mesa/src/mesa/main/atifragshader.c
    U xenocara/lib/mesa/src/mesa/main/atifragshader.h
    C xenocara/lib/mesa/src/mesa/main/attrib.c
    U xenocara/lib/mesa/src/mesa/main/attrib.h
    U xenocara/lib/mesa/src/mesa/main/barrier.c
    U xenocara/lib/mesa/src/mesa/main/barrier.h
    U xenocara/lib/mesa/src/mesa/main/bbox.c
    U xenocara/lib/mesa/src/mesa/main/bbox.h
    U xenocara/lib/mesa/src/mesa/main/blend.c
    U xenocara/lib/mesa/src/mesa/main/blend.h
    U xenocara/lib/mesa/src/mesa/main/blit.c
    U xenocara/lib/mesa/src/mesa/main/blit.h
    U xenocara/lib/mesa/src/mesa/main/bufferobj.c
    U xenocara/lib/mesa/src/mesa/main/bufferobj.h
    U xenocara/lib/mesa/src/mesa/main/buffers.c
    U xenocara/lib/mesa/src/mesa/main/buffers.h
    U xenocara/lib/mesa/src/mesa/main/clear.c
    U xenocara/lib/mesa/src/mesa/main/clear.h
    U xenocara/lib/mesa/src/mesa/main/clip.c
    U xenocara/lib/mesa/src/mesa/main/clip.h
    U xenocara/lib/mesa/src/mesa/main/colormac.h
    U xenocara/lib/mesa/src/mesa/main/colortab.c
    U xenocara/lib/mesa/src/mesa/main/colortab.h
    U xenocara/lib/mesa/src/mesa/main/compute.c
    U xenocara/lib/mesa/src/mesa/main/compute.h
    U xenocara/lib/mesa/src/mesa/main/compiler.h
    U xenocara/lib/mesa/src/mesa/main/condrender.c
    U xenocara/lib/mesa/src/mesa/main/condrender.h
    U xenocara/lib/mesa/src/mesa/main/config.h
    C xenocara/lib/mesa/src/mesa/main/context.c
    U xenocara/lib/mesa/src/mesa/main/conservativeraster.c
    U xenocara/lib/mesa/src/mesa/main/conservativeraster.h
    C xenocara/lib/mesa/src/mesa/main/context.h
    U xenocara/lib/mesa/src/mesa/main/convolve.c
    U xenocara/lib/mesa/src/mesa/main/convolve.h
    U xenocara/lib/mesa/src/mesa/main/copyimage.c
    U xenocara/lib/mesa/src/mesa/main/copyimage.h
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.h
    C xenocara/lib/mesa/src/mesa/main/dd.h
    U xenocara/lib/mesa/src/mesa/main/debug.c
    U xenocara/lib/mesa/src/mesa/main/debug.h
    U xenocara/lib/mesa/src/mesa/main/debug_output.c
    U xenocara/lib/mesa/src/mesa/main/debug_output.h
    U xenocara/lib/mesa/src/mesa/main/depth.c
    U xenocara/lib/mesa/src/mesa/main/depth.h
    C xenocara/lib/mesa/src/mesa/main/dlist.c
    U xenocara/lib/mesa/src/mesa/main/dlist.h
    U xenocara/lib/mesa/src/mesa/main/draw.c
    U xenocara/lib/mesa/src/mesa/main/draw.h
    U xenocara/lib/mesa/src/mesa/main/drawpix.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.h
    U xenocara/lib/mesa/src/mesa/main/drawtex.c
    U xenocara/lib/mesa/src/mesa/main/drawtex.h
    U xenocara/lib/mesa/src/mesa/main/enums.h
    U xenocara/lib/mesa/src/mesa/main/draw_validate.c
    U xenocara/lib/mesa/src/mesa/main/draw_validate.h
    C xenocara/lib/mesa/src/mesa/main/enable.c
    U xenocara/lib/mesa/src/mesa/main/enable.h
    C xenocara/lib/mesa/src/mesa/main/errors.c
    U xenocara/lib/mesa/src/mesa/main/errors.h
    U xenocara/lib/mesa/src/mesa/main/eval.c
    U xenocara/lib/mesa/src/mesa/main/eval.h
    U xenocara/lib/mesa/src/mesa/main/execmem.c
    U xenocara/lib/mesa/src/mesa/main/execmem.h
    U xenocara/lib/mesa/src/mesa/main/extensions.c
    U xenocara/lib/mesa/src/mesa/main/extensions.h
    C xenocara/lib/mesa/src/mesa/main/extensions_table.h
    U xenocara/lib/mesa/src/mesa/main/externalobjects.c
    U xenocara/lib/mesa/src/mesa/main/externalobjects.h
    C xenocara/lib/mesa/src/mesa/main/fbobject.c
    C xenocara/lib/mesa/src/mesa/main/fbobject.h
    U xenocara/lib/mesa/src/mesa/main/feedback.c
    U xenocara/lib/mesa/src/mesa/main/feedback.h
    U xenocara/lib/mesa/src/mesa/main/ff_fragment_shader.cpp
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.c
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.h
    U xenocara/lib/mesa/src/mesa/main/fog.c
    U xenocara/lib/mesa/src/mesa/main/fog.h
    C xenocara/lib/mesa/src/mesa/main/format_fallback.c
    C xenocara/lib/mesa/src/mesa/main/format_info.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.h
    U xenocara/lib/mesa/src/mesa/main/format_unpack.c
    C xenocara/lib/mesa/src/mesa/main/formatquery.c
    U xenocara/lib/mesa/src/mesa/main/formatquery.h
    C xenocara/lib/mesa/src/mesa/main/formats.c
    C xenocara/lib/mesa/src/mesa/main/formats.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.c
    U xenocara/lib/mesa/src/mesa/main/format_utils.h
    C xenocara/lib/mesa/src/mesa/main/framebuffer.c
    U xenocara/lib/mesa/src/mesa/main/framebuffer.h
    C xenocara/lib/mesa/src/mesa/main/get.c
    U xenocara/lib/mesa/src/mesa/main/get.h
    C xenocara/lib/mesa/src/mesa/main/get_hash.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.c
    U xenocara/lib/mesa/src/mesa/main/genmipmap.h
    U xenocara/lib/mesa/src/mesa/main/getstring.c
    C xenocara/lib/mesa/src/mesa/main/glformats.c
    C xenocara/lib/mesa/src/mesa/main/glformats.h
    U xenocara/lib/mesa/src/mesa/main/glspirv.c
    U xenocara/lib/mesa/src/mesa/main/glspirv.h
    C xenocara/lib/mesa/src/mesa/main/glthread.c
    C xenocara/lib/mesa/src/mesa/main/glthread.h
    U xenocara/lib/mesa/src/mesa/main/glheader.h
    U xenocara/lib/mesa/src/mesa/main/hash.c
    U xenocara/lib/mesa/src/mesa/main/hash.h
    U xenocara/lib/mesa/src/mesa/main/hint.c
    U xenocara/lib/mesa/src/mesa/main/hint.h
    U xenocara/lib/mesa/src/mesa/main/histogram.c
    U xenocara/lib/mesa/src/mesa/main/histogram.h
    U xenocara/lib/mesa/src/mesa/main/image.c
    U xenocara/lib/mesa/src/mesa/main/image.h
    U xenocara/lib/mesa/src/mesa/main/imports.h
    U xenocara/lib/mesa/src/mesa/main/light.c
    U xenocara/lib/mesa/src/mesa/main/light.h
    U xenocara/lib/mesa/src/mesa/main/lines.c
    U xenocara/lib/mesa/src/mesa/main/lines.h
    U xenocara/lib/mesa/src/mesa/main/macros.h
    C xenocara/lib/mesa/src/mesa/main/marshal.c
    U xenocara/lib/mesa/src/mesa/main/marshal.h
    U xenocara/lib/mesa/src/mesa/main/matrix.c
    U xenocara/lib/mesa/src/mesa/main/matrix.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.c
    U xenocara/lib/mesa/src/mesa/main/mipmap.h
    U xenocara/lib/mesa/src/mesa/main/mm.c
    U xenocara/lib/mesa/src/mesa/main/mm.h
    U xenocara/lib/mesa/src/mesa/main/menums.h
    C xenocara/lib/mesa/src/mesa/main/mtypes.h
    U xenocara/lib/mesa/src/mesa/main/multisample.c
    U xenocara/lib/mesa/src/mesa/main/multisample.h
    U xenocara/lib/mesa/src/mesa/main/objectlabel.c
    U xenocara/lib/mesa/src/mesa/main/objectlabel.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.c
    U xenocara/lib/mesa/src/mesa/main/objectpurge.h
    U xenocara/lib/mesa/src/mesa/main/pack.c
    U xenocara/lib/mesa/src/mesa/main/pack.h
    U xenocara/lib/mesa/src/mesa/main/pbo.c
    U xenocara/lib/mesa/src/mesa/main/pbo.h
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.c
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.h
    U xenocara/lib/mesa/src/mesa/main/performance_query.c
    U xenocara/lib/mesa/src/mesa/main/performance_query.h
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.c
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.h
    U xenocara/lib/mesa/src/mesa/main/pixel.c
    U xenocara/lib/mesa/src/mesa/main/pixel.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.c
    U xenocara/lib/mesa/src/mesa/main/pixelstore.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.c
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.h
    U xenocara/lib/mesa/src/mesa/main/points.c
    U xenocara/lib/mesa/src/mesa/main/points.h
    U xenocara/lib/mesa/src/mesa/main/polygon.c
    U xenocara/lib/mesa/src/mesa/main/polygon.h
    U xenocara/lib/mesa/src/mesa/main/program_binary.c
    U xenocara/lib/mesa/src/mesa/main/program_binary.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.c
    U xenocara/lib/mesa/src/mesa/main/program_resource.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.c
    U xenocara/lib/mesa/src/mesa/main/querymatrix.h
    C xenocara/lib/mesa/src/mesa/main/queryobj.c
    U xenocara/lib/mesa/src/mesa/main/queryobj.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.c
    U xenocara/lib/mesa/src/mesa/main/rastpos.h
    U xenocara/lib/mesa/src/mesa/main/readpix.c
    U xenocara/lib/mesa/src/mesa/main/readpix.h
    U xenocara/lib/mesa/src/mesa/main/remap.c
    U xenocara/lib/mesa/src/mesa/main/remap.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.c
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.h
    U xenocara/lib/mesa/src/mesa/main/robustness.c
    U xenocara/lib/mesa/src/mesa/main/samplerobj.c
    U xenocara/lib/mesa/src/mesa/main/samplerobj.h
    U xenocara/lib/mesa/src/mesa/main/scissor.c
    U xenocara/lib/mesa/src/mesa/main/scissor.h
    U xenocara/lib/mesa/src/mesa/main/shaderapi.c
    U xenocara/lib/mesa/src/mesa/main/shaderapi.h
    U xenocara/lib/mesa/src/mesa/main/shaderimage.c
    U xenocara/lib/mesa/src/mesa/main/shaderimage.h
    U xenocara/lib/mesa/src/mesa/main/shaderobj.c
    C xenocara/lib/mesa/src/mesa/main/shaderobj.h
    U xenocara/lib/mesa/src/mesa/main/shader_query.cpp
    U xenocara/lib/mesa/src/mesa/main/shared.c
    U xenocara/lib/mesa/src/mesa/main/shared.h
    U xenocara/lib/mesa/src/mesa/main/state.c
    U xenocara/lib/mesa/src/mesa/main/state.h
    U xenocara/lib/mesa/src/mesa/main/stencil.c
    U xenocara/lib/mesa/src/mesa/main/stencil.h
    U xenocara/lib/mesa/src/mesa/main/syncobj.c
    U xenocara/lib/mesa/src/mesa/main/syncobj.h
    C xenocara/lib/mesa/src/mesa/main/texcompress.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_astc.cpp
    U xenocara/lib/mesa/src/mesa/main/texcompress_astc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.h
    U xenocara/lib/mesa/src/mesa/main/texcompress.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/texenv.c
    U xenocara/lib/mesa/src/mesa/main/texenv.h
    U xenocara/lib/mesa/src/mesa/main/texenvprogram.h
    U xenocara/lib/mesa/src/mesa/main/texformat.c
    U xenocara/lib/mesa/src/mesa/main/texformat.h
    U xenocara/lib/mesa/src/mesa/main/texgen.c
    U xenocara/lib/mesa/src/mesa/main/texgen.h
    U xenocara/lib/mesa/src/mesa/main/texgetimage.c
    U xenocara/lib/mesa/src/mesa/main/texgetimage.h
    C xenocara/lib/mesa/src/mesa/main/teximage.c
    U xenocara/lib/mesa/src/mesa/main/teximage.h
    U xenocara/lib/mesa/src/mesa/main/texobj.c
    U xenocara/lib/mesa/src/mesa/main/texobj.h
    U xenocara/lib/mesa/src/mesa/main/texparam.c
    U xenocara/lib/mesa/src/mesa/main/texparam.h
    U xenocara/lib/mesa/src/mesa/main/texstate.c
    U xenocara/lib/mesa/src/mesa/main/texstate.h
    U xenocara/lib/mesa/src/mesa/main/texstorage.c
    U xenocara/lib/mesa/src/mesa/main/texstorage.h
    U xenocara/lib/mesa/src/mesa/main/texstore.c
    U xenocara/lib/mesa/src/mesa/main/texstore.h
    U xenocara/lib/mesa/src/mesa/main/texturebindless.c
    U xenocara/lib/mesa/src/mesa/main/texturebindless.h
    U xenocara/lib/mesa/src/mesa/main/textureview.c
    U xenocara/lib/mesa/src/mesa/main/textureview.h
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.h
    U xenocara/lib/mesa/src/mesa/main/vdpau.c
    U xenocara/lib/mesa/src/mesa/main/uniform_query.cpp
    U xenocara/lib/mesa/src/mesa/main/uniforms.c
    U xenocara/lib/mesa/src/mesa/main/uniforms.h
    C xenocara/lib/mesa/src/mesa/main/varray.c
    C xenocara/lib/mesa/src/mesa/main/varray.h
    U xenocara/lib/mesa/src/mesa/main/vdpau.h
    C xenocara/lib/mesa/src/mesa/main/version.c
    U xenocara/lib/mesa/src/mesa/main/version.h
    U xenocara/lib/mesa/src/mesa/main/viewport.c
    U xenocara/lib/mesa/src/mesa/main/viewport.h
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.h
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.c
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.h
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.c
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.h
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.h
    U xenocara/lib/mesa/src/mesa/main/meson.build
    U xenocara/lib/mesa/src/mesa/main/format_fallback.py
    U xenocara/lib/mesa/src/mesa/main/format_info.py
    U xenocara/lib/mesa/src/mesa/main/format_pack.py
    U xenocara/lib/mesa/src/mesa/main/format_parser.py
    U xenocara/lib/mesa/src/mesa/main/format_unpack.py
    U xenocara/lib/mesa/src/mesa/main/formats.csv
    C xenocara/lib/mesa/src/mesa/main/get_hash_generator.py
    C xenocara/lib/mesa/src/mesa/main/get_hash_params.py
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.am
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.in
    U xenocara/lib/mesa/src/mesa/main/tests/enum_strings.cpp
    C xenocara/lib/mesa/src/mesa/main/tests/dispatch_sanity.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_formats.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_extensions.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/program_state_string.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/stubs.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/meson.build
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.c
    U xenocara/lib/mesa/src/mesa/program/symbol_table.c
    U xenocara/lib/mesa/src/mesa/program/dummy_errors.c
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.c
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.h
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.cpp
    U xenocara/lib/mesa/src/mesa/program/ir_to_mesa.h
    U xenocara/lib/mesa/src/mesa/program/lex.yy.c
    U xenocara/lib/mesa/src/mesa/program/prog_cache.c
    U xenocara/lib/mesa/src/mesa/program/prog_cache.h
    U xenocara/lib/mesa/src/mesa/program/prog_execute.c
    U xenocara/lib/mesa/src/mesa/program/prog_execute.h
    U xenocara/lib/mesa/src/mesa/program/prog_instruction.c
    U xenocara/lib/mesa/src/mesa/program/prog_instruction.h
    U xenocara/lib/mesa/src/mesa/program/prog_noise.c
    U xenocara/lib/mesa/src/mesa/program/prog_noise.h
    U xenocara/lib/mesa/src/mesa/program/prog_opt_constant_fold.c
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.c
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.h
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.h
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.h
    U xenocara/lib/mesa/src/mesa/program/prog_print.c
    U xenocara/lib/mesa/src/mesa/program/prog_print.h
    U xenocara/lib/mesa/src/mesa/program/program.c
    U xenocara/lib/mesa/src/mesa/program/program.h
    U xenocara/lib/mesa/src/mesa/program/programopt.c
    U xenocara/lib/mesa/src/mesa/program/programopt.h
    U xenocara/lib/mesa/src/mesa/program/program_parse_extra.c
    C xenocara/lib/mesa/src/mesa/program/program_parse.tab.c
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.h
    U xenocara/lib/mesa/src/mesa/program/program_parser.h
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.h
    U xenocara/lib/mesa/src/mesa/program/symbol_table.h
    C xenocara/lib/mesa/src/mesa/program/prog_to_nir.c
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.h
    U xenocara/lib/mesa/src/mesa/program/meson.build
    U xenocara/lib/mesa/src/mesa/program/program_lexer.l
    U xenocara/lib/mesa/src/mesa/program/program_parse.y
    U xenocara/lib/mesa/src/mesa/drivers/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_generate_mipmap.c
    C xenocara/lib/mesa/src/mesa/drivers/common/meta.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxapi.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxheader.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/xfonts.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesaP.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/fakeglx.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxapi.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xfonts.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_api.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_buffer.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_dd.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa_x.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_line.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/x11/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/dri.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/dri_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/dri_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/megadriver_stub.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texblend.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_vtbl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_fragprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_vtbl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_render.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_syncobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/meson.build
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.am
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.in
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_binding_tables.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_bufmgr.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_bufmgr.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compute.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_conditional_render.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_curbe.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_defines.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_disk_cache.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_formatquery.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_generate_mipmap.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_surface_state.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_link.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_misc_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_multisample_state.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_uniforms.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_object_purgeable.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_pipe_control.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_pipe_control.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_query.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_query.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_query_mdapi.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_query_metrics.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program_binary.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program_cache.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reset.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_structs.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_surface_formats.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sync.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tes.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tes_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_surface_state.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen4_blorp_exec.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_constant_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_urb.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_l3_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_multisample_state.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_sol.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_copy_image.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_extensions.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_image.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_read.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/libdrm_macros.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_metrics.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_metrics.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/genX_blorp_exec.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/genX_state_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_hsw.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_bdw.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_chv.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_sklgt2.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_sklgt3.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_bxt.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_kblgt2.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_kblgt3.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_glk.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_cflgt2.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_cflgt3.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_cnl.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_local.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_render.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv01_2d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_m2mf.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_render_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_swtnl_t.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_vbo_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_cmdbuf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_fragshader.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_verts.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast_priv.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.def
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/meson.build
    U xenocara/lib/mesa/src/mesa/math/m_debug.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_clip.c
    U xenocara/lib/mesa/src/mesa/math/m_debug_norm.c
    U xenocara/lib/mesa/src/mesa/math/m_debug_util.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_eval.c
    U xenocara/lib/mesa/src/mesa/math/m_eval.h
    U xenocara/lib/mesa/src/mesa/math/m_matrix.c
    U xenocara/lib/mesa/src/mesa/math/m_matrix.h
    U xenocara/lib/mesa/src/mesa/math/m_trans_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_translate.c
    U xenocara/lib/mesa/src/mesa/math/m_translate.h
    U xenocara/lib/mesa/src/mesa/math/m_vector.c
    U xenocara/lib/mesa/src/mesa/math/m_vector.h
    U xenocara/lib/mesa/src/mesa/math/m_clip_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_copy_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_dotprod_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_norm_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_xform.h
    U xenocara/lib/mesa/src/mesa/math/m_xform_tmp.h
    U xenocara/lib/mesa/src/mesa/sparc/sparc.c
    U xenocara/lib/mesa/src/mesa/sparc/sparc.h
    U xenocara/lib/mesa/src/mesa/sparc/sparc_clip.S
    U xenocara/lib/mesa/src/mesa/sparc/sparc_matrix.h
    U xenocara/lib/mesa/src/mesa/sparc/norm.S
    U xenocara/lib/mesa/src/mesa/sparc/xform.S
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_atom_array.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_atomicbuf.c
    C xenocara/lib/mesa/src/mesa/state_tracker/st_atom_blend.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_clip.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_depth.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_framebuffer.c
    C xenocara/lib/mesa/src/mesa/state_tracker/st_atom.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_list.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_image.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_msaa.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_pixeltransfer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_rasterizer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_sampler.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_stipple.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_storagebuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_tess.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_viewport.c
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bitmap.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bitmap.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bitmap_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_blit.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_blit.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.c
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_memoryobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_msaa.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_memoryobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_msaa.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_perfmon.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_perfmon.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_semaphoreobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_semaphoreobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_syncobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_syncobj.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_context.c
    C xenocara/lib/mesa/src/mesa/state_tracker/st_context.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_draw.c
    C xenocara/lib/mesa/src/mesa/state_tracker/st_draw_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_format.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gl_api.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp
    C xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
    C xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_array_merge.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_array_merge.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_private.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_private.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_temprename.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_temprename.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_manager.c
    C xenocara/lib/mesa/src/mesa/state_tracker/st_manager.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_builtin.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_tex_src_plane.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_uniforms_to_ubo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_shader_cache.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_shader_cache.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.h
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/Makefile.am
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/Makefile.in
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/st_tests_common.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/st_tests_common.h
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/test_glsl_to_tgsi_array_merge.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/test_glsl_to_tgsi_lifetime.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/meson.build
    U xenocara/lib/mesa/src/mesa/swrast/s_aaline.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aaline.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aalinetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aatritemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.c
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.h
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.c
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.h
    U xenocara/lib/mesa/src/mesa/swrast/s_bitmap.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.h
    U xenocara/lib/mesa/src/mesa/swrast/s_blit.c
    U xenocara/lib/mesa/src/mesa/swrast/s_chan.h
    U xenocara/lib/mesa/src/mesa/swrast/s_clear.c
    U xenocara/lib/mesa/src/mesa/swrast/s_context.c
    U xenocara/lib/mesa/src/mesa/swrast/s_context.h
    U xenocara/lib/mesa/src/mesa/swrast/s_copypix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.c
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.h
    U xenocara/lib/mesa/src/mesa/swrast/s_drawpix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.c
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.h
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.c
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.h
    U xenocara/lib/mesa/src/mesa/swrast/s_linetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.c
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.h
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.c
    U xenocara/lib/mesa/src/mesa/swrast/s_points.h
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.c
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.h
    U xenocara/lib/mesa/src/mesa/swrast/s_span.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.h
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.c
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.h
    U xenocara/lib/mesa/src/mesa/swrast/NOTES
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch_tmp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texrender.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texture.c
    U xenocara/lib/mesa/src/mesa/swrast/s_triangle.c
    U xenocara/lib/mesa/src/mesa/swrast/s_triangle.h
    U xenocara/lib/mesa/src/mesa/swrast/s_tritemp.h
    U xenocara/lib/mesa/src/mesa/swrast/swrast.h
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.c
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_tritmp.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_vb.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/swrast_setup.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_context.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_context.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_triangle.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_triangle.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/NOTES
    U xenocara/lib/mesa/src/mesa/tnl/t_context.c
    U xenocara/lib/mesa/src/mesa/tnl/t_context.h
    C xenocara/lib/mesa/src/mesa/tnl/t_draw.c
    U xenocara/lib/mesa/src/mesa/tnl/tnl.h
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.h
    U xenocara/lib/mesa/src/mesa/tnl/t_rebase.c
    U xenocara/lib/mesa/src/mesa/tnl/t_rebase.h
    U xenocara/lib/mesa/src/mesa/tnl/t_split.c
    U xenocara/lib/mesa/src/mesa/tnl/t_split_copy.c
    U xenocara/lib/mesa/src/mesa/tnl/t_split.h
    U xenocara/lib/mesa/src/mesa/tnl/t_split_inplace.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_cliptmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_fog.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_light.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_lighttmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_normals.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_points.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_program.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_render.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_rendertmp.h
    U xenocara/lib/mesa/src/mesa/tnl/NOTES
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texgen.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texmat.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_generic.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_sse.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib_tmp.h
    C xenocara/lib/mesa/src/mesa/vbo/vbo_context.c
    C xenocara/lib/mesa/src/mesa/vbo/vbo_exec_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.c
    C xenocara/lib/mesa/src/mesa/vbo/vbo_exec_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_eval.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_minmax_index.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_private.h
    C xenocara/lib/mesa/src/mesa/vbo/vbo_save_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.c
    C xenocara/lib/mesa/src/mesa/vbo/vbo_save_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.h
    C xenocara/lib/mesa/src/mesa/vbo/vbo_save_loopback.c
    U xenocara/lib/mesa/src/mesa/x86/common_x86.c
    U xenocara/lib/mesa/src/mesa/x86/x86_xform.c
    U xenocara/lib/mesa/src/mesa/x86/3dnow.c
    U xenocara/lib/mesa/src/mesa/x86/sse.c
    U xenocara/lib/mesa/src/mesa/x86/assyntax.h
    U xenocara/lib/mesa/src/mesa/x86/clip_args.h
    U xenocara/lib/mesa/src/mesa/x86/norm_args.h
    U xenocara/lib/mesa/src/mesa/x86/xform_args.h
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.h
    U xenocara/lib/mesa/src/mesa/x86/common_x86_features.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/x86_cliptest.S
    U xenocara/lib/mesa/src/mesa/x86/mmx.h
    U xenocara/lib/mesa/src/mesa/x86/mmx_blend.S
    U xenocara/lib/mesa/src/mesa/x86/mmx_blendtmp.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/sse.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/sse_normal.S
    U xenocara/lib/mesa/src/mesa/x86/read_rgba_span_x86.S
    U xenocara/lib/mesa/src/mesa/x86/gen_matypes.c
    U xenocara/lib/mesa/src/mesa/x86/rtasm/x86sse.c
    U xenocara/lib/mesa/src/mesa/x86/rtasm/x86sse.h
    U xenocara/lib/mesa/src/mesa/x86-64/x86-64.c
    U xenocara/lib/mesa/src/mesa/x86-64/x86-64.h
    U xenocara/lib/mesa/src/mesa/x86-64/xform4.S
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_dmatmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_dmatmp2.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_triemit.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_tritmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_unfilled.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_vertex.h
    U xenocara/lib/mesa/src/vulkan/Makefile.am
    U xenocara/lib/mesa/src/vulkan/Makefile.in
    U xenocara/lib/mesa/src/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/vulkan/meson.build
    C xenocara/lib/mesa/src/vulkan/registry/vk.xml
    U xenocara/lib/mesa/src/vulkan/util/vk_alloc.h
    U xenocara/lib/mesa/src/vulkan/util/vk_debug_report.c
    U xenocara/lib/mesa/src/vulkan/util/vk_debug_report.h
    C xenocara/lib/mesa/src/vulkan/util/vk_util.c
    U xenocara/lib/mesa/src/vulkan/util/vk_util.h
    C xenocara/lib/mesa/src/vulkan/util/vk_enum_to_str.c
    C xenocara/lib/mesa/src/vulkan/util/vk_enum_to_str.h
    C xenocara/lib/mesa/src/vulkan/util/gen_enum_to_str.py
    U xenocara/lib/mesa/src/vulkan/util/meson.build
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_private.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_queue.h
    C xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_display.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_display.h
    C xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.h
    U xenocara/lib/mesa/src/vulkan/wsi/meson.build
    U xenocara/lib/mesa/src/getopt/.editorconfig
    U xenocara/lib/mesa/src/getopt/SConscript
    U xenocara/lib/mesa/src/getopt/getopt.h
    U xenocara/lib/mesa/src/getopt/getopt_long.c
    U xenocara/lib/mesa/src/hgl/.editorconfig
    U xenocara/lib/mesa/src/hgl/GLDispatcher.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.h
    U xenocara/lib/mesa/src/hgl/GLRenderer.cpp
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.cpp
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.h
    U xenocara/lib/mesa/src/hgl/GLView.cpp
    U xenocara/lib/mesa/src/hgl/SConscript
    U xenocara/lib/mesa/src/hgl/meson.build
    U xenocara/lib/mesa/src/gtest/Makefile.am
    U xenocara/lib/mesa/src/gtest/Makefile.in
    U xenocara/lib/mesa/src/gtest/meson.build
    U xenocara/lib/mesa/src/gtest/src/gtest-all.cc
    U xenocara/lib/mesa/src/gtest/src/gtest_main.cc
    U xenocara/lib/mesa/src/gtest/src/gtest.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-death-test.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-filepath.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-internal-inl.h
    U xenocara/lib/mesa/src/gtest/src/gtest-port.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-printers.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-test-part.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-typed-test.cc
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-death-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-message.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-printers.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-spi.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-test-part.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-typed-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_pred_impl.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_prod.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-death-test-internal.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-filepath.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-internal.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-linked_ptr.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-util-generated.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-util-generated.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-util.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-port-arch.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-port.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-string.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-tuple.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-tuple.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-type-util.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-type-util.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest-port.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest-printers.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest.h
    U xenocara/lib/mesa/src/util/Makefile.am
    C xenocara/lib/mesa/src/util/Makefile.in
    C xenocara/lib/mesa/src/util/Makefile.sources
    U xenocara/lib/mesa/src/util/bigmath.h
    U xenocara/lib/mesa/src/util/bitscan.c
    U xenocara/lib/mesa/src/util/bitscan.h
    U xenocara/lib/mesa/src/util/bitset.h
    U xenocara/lib/mesa/src/util/build_id.c
    U xenocara/lib/mesa/src/util/build_id.h
    U xenocara/lib/mesa/src/util/crc32.c
    U xenocara/lib/mesa/src/util/crc32.h
    U xenocara/lib/mesa/src/util/debug.c
    U xenocara/lib/mesa/src/util/debug.h
    U xenocara/lib/mesa/src/util/disk_cache.c
    U xenocara/lib/mesa/src/util/disk_cache.h
    U xenocara/lib/mesa/src/util/fast_idiv_by_const.c
    U xenocara/lib/mesa/src/util/fast_idiv_by_const.h
    U xenocara/lib/mesa/src/util/format_r11g11b10f.h
    U xenocara/lib/mesa/src/util/format_rgb9e5.h
    U xenocara/lib/mesa/src/util/format_srgb.h
    U xenocara/lib/mesa/src/util/futex.h
    U xenocara/lib/mesa/src/util/list.h
    U xenocara/lib/mesa/src/util/half_float.c
    U xenocara/lib/mesa/src/util/half_float.h
    C xenocara/lib/mesa/src/util/hash_table.c
    C xenocara/lib/mesa/src/util/hash_table.h
    U xenocara/lib/mesa/src/util/macros.h
    U xenocara/lib/mesa/src/util/mesa-sha1.c
    U xenocara/lib/mesa/src/util/mesa-sha1.h
    U xenocara/lib/mesa/src/util/os_time.c
    U xenocara/lib/mesa/src/util/os_time.h
    U xenocara/lib/mesa/src/util/os_misc.c
    U xenocara/lib/mesa/src/util/os_misc.h
    U xenocara/lib/mesa/src/util/u_process.c
    U xenocara/lib/mesa/src/util/u_process.h
    C xenocara/lib/mesa/src/util/ralloc.c
    U xenocara/lib/mesa/src/util/ralloc.h
    U xenocara/lib/mesa/src/util/rand_xor.c
    U xenocara/lib/mesa/src/util/rand_xor.h
    U xenocara/lib/mesa/src/util/rb_tree.c
    U xenocara/lib/mesa/src/util/rb_tree.h
    U xenocara/lib/mesa/src/util/register_allocate.c
    U xenocara/lib/mesa/src/util/register_allocate.h
    U xenocara/lib/mesa/src/util/rgtc.c
    U xenocara/lib/mesa/src/util/rgtc.h
    U xenocara/lib/mesa/src/util/rounding.h
    C xenocara/lib/mesa/src/util/set.c
    U xenocara/lib/mesa/src/util/set.h
    U xenocara/lib/mesa/src/util/simple_list.h
    U xenocara/lib/mesa/src/util/simple_mtx.h
    C xenocara/lib/mesa/src/util/slab.c
    U xenocara/lib/mesa/src/util/slab.h
    U xenocara/lib/mesa/src/util/string_buffer.c
    U xenocara/lib/mesa/src/util/string_buffer.h
    U xenocara/lib/mesa/src/util/strndup.h
    U xenocara/lib/mesa/src/util/strtod.c
    U xenocara/lib/mesa/src/util/strtod.h
    U xenocara/lib/mesa/src/util/texcompress_rgtc_tmp.h
    U xenocara/lib/mesa/src/util/u_atomic.c
    U xenocara/lib/mesa/src/util/u_atomic.h
    U xenocara/lib/mesa/src/util/u_dynarray.h
    U xenocara/lib/mesa/src/util/u_endian.h
    U xenocara/lib/mesa/src/util/u_math.c
    U xenocara/lib/mesa/src/util/u_math.h
    U xenocara/lib/mesa/src/util/u_queue.c
    U xenocara/lib/mesa/src/util/u_queue.h
    U xenocara/lib/mesa/src/util/u_string.h
    U xenocara/lib/mesa/src/util/u_thread.h
    U xenocara/lib/mesa/src/util/u_vector.c
    U xenocara/lib/mesa/src/util/u_vector.h
    U xenocara/lib/mesa/src/util/vma.c
    U xenocara/lib/mesa/src/util/u_debug.c
    U xenocara/lib/mesa/src/util/u_debug.h
    C xenocara/lib/mesa/src/util/u_cpu_detect.c
    U xenocara/lib/mesa/src/util/u_cpu_detect.h
    N xenocara/lib/mesa/src/util/os_memory_aligned.h
    N xenocara/lib/mesa/src/util/os_memory_debug.h
    N xenocara/lib/mesa/src/util/os_memory_stdc.h
    N xenocara/lib/mesa/src/util/os_memory.h
    N xenocara/lib/mesa/src/util/u_memory.h
    U xenocara/lib/mesa/src/util/vma.h
    U xenocara/lib/mesa/src/util/format_srgb.c
    U xenocara/lib/mesa/src/util/xmlconfig.c
    U xenocara/lib/mesa/src/util/xmlconfig.h
    U xenocara/lib/mesa/src/util/mesa-sha1_test.c
    U xenocara/lib/mesa/src/util/roundeven_test.c
    U xenocara/lib/mesa/src/util/u_atomic_test.c
    U xenocara/lib/mesa/src/util/00-mesa-defaults.conf
    U xenocara/lib/mesa/src/util/format_srgb.py
    U xenocara/lib/mesa/src/util/merge_driinfo.py
    U xenocara/lib/mesa/src/util/SConscript
    U xenocara/lib/mesa/src/util/xmlpool.h
    U xenocara/lib/mesa/src/util/meson.build
    U xenocara/lib/mesa/src/util/sha1/sha1.c
    U xenocara/lib/mesa/src/util/sha1/sha1.h
    U xenocara/lib/mesa/src/util/sha1/README
    U xenocara/lib/mesa/src/util/xmlpool/Makefile.am
    U xenocara/lib/mesa/src/util/xmlpool/Makefile.in
    U xenocara/lib/mesa/src/util/xmlpool/gen_xmlpool.py
    U xenocara/lib/mesa/src/util/xmlpool/options.h
    U xenocara/lib/mesa/src/util/xmlpool/t_options.h
    U xenocara/lib/mesa/src/util/xmlpool/ca.po
    U xenocara/lib/mesa/src/util/xmlpool/de.po
    U xenocara/lib/mesa/src/util/xmlpool/es.po
    U xenocara/lib/mesa/src/util/xmlpool/nl.po
    U xenocara/lib/mesa/src/util/xmlpool/fr.po
    U xenocara/lib/mesa/src/util/xmlpool/sv.po
    U xenocara/lib/mesa/src/util/xmlpool/ca.gmo
    U xenocara/lib/mesa/src/util/xmlpool/de.gmo
    U xenocara/lib/mesa/src/util/xmlpool/es.gmo
    U xenocara/lib/mesa/src/util/xmlpool/nl.gmo
    U xenocara/lib/mesa/src/util/xmlpool/fr.gmo
    U xenocara/lib/mesa/src/util/xmlpool/sv.gmo
    U xenocara/lib/mesa/src/util/xmlpool/SConscript
    U xenocara/lib/mesa/src/util/xmlpool/meson.build
    U xenocara/lib/mesa/src/util/xmlpool/LINGUAS
    U xenocara/lib/mesa/src/util/xmlpool/POTFILES
    U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const/Makefile.am
    U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const/Makefile.in
    U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const/fast_idiv_by_const_test.cpp
    U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const/meson.build
    U xenocara/lib/mesa/src/util/tests/hash_table/Makefile.am
    U xenocara/lib/mesa/src/util/tests/hash_table/Makefile.in
    U xenocara/lib/mesa/src/util/tests/hash_table/clear.c
    U xenocara/lib/mesa/src/util/tests/hash_table/collision.c
    U xenocara/lib/mesa/src/util/tests/hash_table/delete_and_lookup.c
    U xenocara/lib/mesa/src/util/tests/hash_table/delete_management.c
    U xenocara/lib/mesa/src/util/tests/hash_table/destroy_callback.c
    U xenocara/lib/mesa/src/util/tests/hash_table/insert_and_lookup.c
    U xenocara/lib/mesa/src/util/tests/hash_table/insert_many.c
    U xenocara/lib/mesa/src/util/tests/hash_table/null_destroy.c
    U xenocara/lib/mesa/src/util/tests/hash_table/random_entry.c
    U xenocara/lib/mesa/src/util/tests/hash_table/remove_key.c
    U xenocara/lib/mesa/src/util/tests/hash_table/remove_null.c
    U xenocara/lib/mesa/src/util/tests/hash_table/replacement.c
    U xenocara/lib/mesa/src/util/tests/hash_table/meson.build
    U xenocara/lib/mesa/src/util/tests/string_buffer/Makefile.am
    U xenocara/lib/mesa/src/util/tests/string_buffer/Makefile.in
    U xenocara/lib/mesa/src/util/tests/string_buffer/string_buffer_test.cpp
    U xenocara/lib/mesa/src/util/tests/string_buffer/meson.build
    U xenocara/lib/mesa/src/util/tests/set/Makefile.am
    U xenocara/lib/mesa/src/util/tests/set/Makefile.in
    U xenocara/lib/mesa/src/util/tests/set/set_test.cpp
    U xenocara/lib/mesa/src/util/tests/set/meson.build
    U xenocara/lib/mesa/src/util/tests/vma/Makefile.am
    U xenocara/lib/mesa/src/util/tests/vma/Makefile.in
    U xenocara/lib/mesa/src/util/tests/vma/vma_random_test.cpp
    U xenocara/lib/mesa/src/util/tests/vma/meson.build
    U xenocara/lib/mesa/src/glx/indirect.c
    U xenocara/lib/mesa/src/glx/indirect.h
    U xenocara/lib/mesa/src/glx/indirect_init.c
    U xenocara/lib/mesa/src/glx/indirect_size.h
    U xenocara/lib/mesa/src/glx/indirect_size.c
    C xenocara/lib/mesa/src/glx/Makefile.am
    C xenocara/lib/mesa/src/glx/Makefile.in
    U xenocara/lib/mesa/src/glx/clientattrib.c
    U xenocara/lib/mesa/src/glx/clientinfo.c
    U xenocara/lib/mesa/src/glx/compsize.c
    U xenocara/lib/mesa/src/glx/create_context.c
    U xenocara/lib/mesa/src/glx/eval.c
    U xenocara/lib/mesa/src/glx/glxclient.h
    C xenocara/lib/mesa/src/glx/glxcmds.c
    U xenocara/lib/mesa/src/glx/glxconfig.c
    U xenocara/lib/mesa/src/glx/glxconfig.h
    U xenocara/lib/mesa/src/glx/glxcurrent.c
    U xenocara/lib/mesa/src/glx/glx_error.c
    U xenocara/lib/mesa/src/glx/glx_error.h
    U xenocara/lib/mesa/src/glx/glxext.c
    U xenocara/lib/mesa/src/glx/glxextensions.c
    U xenocara/lib/mesa/src/glx/glxextensions.h
    U xenocara/lib/mesa/src/glx/glxhash.c
    U xenocara/lib/mesa/src/glx/glxhash.h
    U xenocara/lib/mesa/src/glx/glx_pbuffer.c
    U xenocara/lib/mesa/src/glx/glx_query.c
    U xenocara/lib/mesa/src/glx/indirect_glx.c
    U xenocara/lib/mesa/src/glx/indirect_init.h
    U xenocara/lib/mesa/src/glx/indirect_texture_compression.c
    U xenocara/lib/mesa/src/glx/indirect_transpose_matrix.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.h
    U xenocara/lib/mesa/src/glx/indirect_vertex_array_priv.h
    U xenocara/lib/mesa/src/glx/indirect_vertex_program.c
    U xenocara/lib/mesa/src/glx/indirect_window_pos.c
    U xenocara/lib/mesa/src/glx/packrender.h
    U xenocara/lib/mesa/src/glx/packsingle.h
    U xenocara/lib/mesa/src/glx/pixel.c
    U xenocara/lib/mesa/src/glx/pixelstore.c
    U xenocara/lib/mesa/src/glx/query_renderer.c
    U xenocara/lib/mesa/src/glx/xfont.c
    U xenocara/lib/mesa/src/glx/render2.c
    U xenocara/lib/mesa/src/glx/renderpix.c
    U xenocara/lib/mesa/src/glx/single2.c
    U xenocara/lib/mesa/src/glx/singlepix.c
    U xenocara/lib/mesa/src/glx/vertarr.c
    C xenocara/lib/mesa/src/glx/drisw_glx.c
    U xenocara/lib/mesa/src/glx/drisw_priv.h
    C xenocara/lib/mesa/src/glx/dri_common.c
    U xenocara/lib/mesa/src/glx/dri_common.h
    U xenocara/lib/mesa/src/glx/dri_common_query_renderer.c
    U xenocara/lib/mesa/src/glx/dri_common_interop.c
    U xenocara/lib/mesa/src/glx/dri2.c
    C xenocara/lib/mesa/src/glx/dri2_glx.c
    U xenocara/lib/mesa/src/glx/dri2.h
    U xenocara/lib/mesa/src/glx/dri2_priv.h
    C xenocara/lib/mesa/src/glx/dri_glx.c
    U xenocara/lib/mesa/src/glx/dri_sarea.h
    U xenocara/lib/mesa/src/glx/XF86dri.c
    U xenocara/lib/mesa/src/glx/xf86dri.h
    U xenocara/lib/mesa/src/glx/xf86dristr.h
    C xenocara/lib/mesa/src/glx/dri3_glx.c
    C xenocara/lib/mesa/src/glx/dri3_priv.h
    U xenocara/lib/mesa/src/glx/applegl_glx.c
    U xenocara/lib/mesa/src/glx/driwindows_glx.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchfuncs.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchindices.h
    U xenocara/lib/mesa/src/glx/glxglvnd.c
    U xenocara/lib/mesa/src/glx/glxglvnd.h
    U xenocara/lib/mesa/src/glx/glxglvnddispatchfuncs.h
    C xenocara/lib/mesa/src/glx/SConscript
    U xenocara/lib/mesa/src/glx/meson.build
    U xenocara/lib/mesa/src/glx/apple/Makefile.am
    U xenocara/lib/mesa/src/glx/apple/Makefile.in
    U xenocara/lib/mesa/src/glx/apple/TODO
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.h
    U xenocara/lib/mesa/src/glx/apple/appledri.c
    U xenocara/lib/mesa/src/glx/apple/appledri.h
    U xenocara/lib/mesa/src/glx/apple/appledristr.h
    U xenocara/lib/mesa/src/glx/apple/apple_glapi.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_context.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_context.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_pbuffer.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_pixmap.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_surface.c
    U xenocara/lib/mesa/src/glx/apple/apple_visual.c
    U xenocara/lib/mesa/src/glx/apple/apple_visual.h
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api.h
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_read.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_stereo.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_viewport.c
    U xenocara/lib/mesa/src/glx/apple/glx_empty.c
    U xenocara/lib/mesa/src/glx/apple/RELEASE_NOTES
    U xenocara/lib/mesa/src/glx/apple/meson.build
    U xenocara/lib/mesa/src/glx/windows/Makefile.am
    U xenocara/lib/mesa/src/glx/windows/windowsdriconst.h
    U xenocara/lib/mesa/src/glx/windows/windowsdristr.h
    U xenocara/lib/mesa/src/glx/windows/Makefile.in
    U xenocara/lib/mesa/src/glx/windows/windowsdriproto.pc.in
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.c
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.h
    U xenocara/lib/mesa/src/glx/windows/windowsgl.c
    U xenocara/lib/mesa/src/glx/windows/windowsgl.h
    U xenocara/lib/mesa/src/glx/windows/windowsgl_internal.h
    U xenocara/lib/mesa/src/glx/windows/windows_drawable.c
    U xenocara/lib/mesa/src/glx/windows/wgl.c
    U xenocara/lib/mesa/src/glx/windows/wgl.h
    U xenocara/lib/mesa/src/glx/windows/meson.build
    U xenocara/lib/mesa/src/glx/tests/Makefile.am
    U xenocara/lib/mesa/src/glx/tests/Makefile.in
    U xenocara/lib/mesa/src/glx/tests/clientinfo_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/create_context_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/enum_sizes.cpp
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.cpp
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.h
    U xenocara/lib/mesa/src/glx/tests/indirect_api.cpp
    U xenocara/lib/mesa/src/glx/tests/mock_xdisplay.h
    U xenocara/lib/mesa/src/glx/tests/query_renderer_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/query_renderer_implementation_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/dispatch-index-check
    U xenocara/lib/mesa/src/glx/tests/meson.build
    U xenocara/lib/mesa/src/compiler/Makefile.am
    C xenocara/lib/mesa/src/compiler/Makefile.glsl.am
    C xenocara/lib/mesa/src/compiler/Makefile.in
    C xenocara/lib/mesa/src/compiler/Makefile.nir.am
    C xenocara/lib/mesa/src/compiler/Makefile.sources
    U xenocara/lib/mesa/src/compiler/Makefile.spirv.am
    U xenocara/lib/mesa/src/compiler/blob.c
    U xenocara/lib/mesa/src/compiler/blob.h
    U xenocara/lib/mesa/src/compiler/builtin_type_macros.h
    C xenocara/lib/mesa/src/compiler/glsl_types.cpp
    C xenocara/lib/mesa/src/compiler/glsl_types.h
    C xenocara/lib/mesa/src/compiler/nir_types.cpp
    C xenocara/lib/mesa/src/compiler/nir_types.h
    C xenocara/lib/mesa/src/compiler/shader_enums.c
    C xenocara/lib/mesa/src/compiler/shader_enums.h
    C xenocara/lib/mesa/src/compiler/shader_info.h
    U xenocara/lib/mesa/src/compiler/SConscript
    U xenocara/lib/mesa/src/compiler/meson.build
    U xenocara/lib/mesa/src/compiler/SConscript.glsl
    U xenocara/lib/mesa/src/compiler/SConscript.nir
    U xenocara/lib/mesa/src/compiler/SConscript.spirv
    C xenocara/lib/mesa/src/compiler/nir/nir.c
    C xenocara/lib/mesa/src/compiler/nir/nir.h
    C xenocara/lib/mesa/src/compiler/nir/nir_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_builtin_builder.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builtin_builder.h
    C xenocara/lib/mesa/src/compiler/nir/nir_clone.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.h
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.c
    C xenocara/lib/mesa/src/compiler/nir/nir_control_flow.h
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow_private.h
    U xenocara/lib/mesa/src/compiler/nir/nir_deref.c
    U xenocara/lib/mesa/src/compiler/nir/nir_deref.h
    U xenocara/lib/mesa/src/compiler/nir/nir_dominance.c
    U xenocara/lib/mesa/src/compiler/nir/nir_format_convert.h
    C xenocara/lib/mesa/src/compiler/nir/nir_from_ssa.c
    C xenocara/lib/mesa/src/compiler/nir/nir_gather_info.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gather_xfb_info.c
    U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gs_count_vertices.c
    C xenocara/lib/mesa/src/compiler/nir/nir_inline_functions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.h
    U xenocara/lib/mesa/src/compiler/nir/nir_linking_helpers.c
    U xenocara/lib/mesa/src/compiler/nir/nir_liveness.c
    C xenocara/lib/mesa/src/compiler/nir/nir_loop_analyze.c
    U xenocara/lib/mesa/src/compiler/nir/nir_loop_analyze.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alpha_test.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_alu_to_scalar.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_array_deref_of_vec.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_atomics_to_ssbo.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bitmap.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bit_size.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_bool_to_float.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_bool_to_int32.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clamp_color_outputs.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_clip.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_clip_cull_distance_arrays.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_constant_initializers.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_double_ops.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_drawpixels.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_global_vars_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_gs_intrinsics.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_load_const_to_scalar.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_locals_to_regs.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_idiv.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_indirect_derefs.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_int64.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_io.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_arrays_to_elements.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_temporaries.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_scalar.c
    N xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_vector.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_packing.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_passthrough_edgeflags.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_patch_vertices.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_phis_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_regs_to_ssa.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_returns.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_subgroups.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_system_values.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_tex.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_to_source_mods.c
    U xenocara/lib/mesa/src/compiler/nir/nir_metadata.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_two_sided_color.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_vars_to_ssa.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vec_to_movs.c
    C xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_center.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_ytransform.c
    U xenocara/lib/mesa/src/compiler/nir/nir_move_load_const.c
    U xenocara/lib/mesa/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
    U xenocara/lib/mesa/src/compiler/nir/nir_normalize_cubemap_coords.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_conditional_discard.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_constant_folding.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_prop_vars.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_propagate.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_cse.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_dce.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_cf.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_write_vars.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_find_array_copies.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_gcm.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_global_to_local.c
    N xenocara/lib/mesa/src/compiler/nir/nir_opt_idiv_const.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_if.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_intrinsics.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_loop_unroll.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_large_constants.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_move_comparisons.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_move_load_ubo.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_peephole_select.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_remove_phis.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_shrink_load.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_undef.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_trivial_continues.c
    C xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.h
    C xenocara/lib/mesa/src/compiler/nir/nir_print.c
    U xenocara/lib/mesa/src/compiler/nir/nir_propagate_invariant.c
    C xenocara/lib/mesa/src/compiler/nir/nir_remove_dead_variables.c
    U xenocara/lib/mesa/src/compiler/nir/nir_repair_ssa.c
    C xenocara/lib/mesa/src/compiler/nir/nir_search.c
    C xenocara/lib/mesa/src/compiler/nir/nir_search.h
    C xenocara/lib/mesa/src/compiler/nir/nir_search_helpers.h
    U xenocara/lib/mesa/src/compiler/nir/nir_serialize.c
    U xenocara/lib/mesa/src/compiler/nir/nir_serialize.h
    U xenocara/lib/mesa/src/compiler/nir/nir_split_per_member_structs.c
    C xenocara/lib/mesa/src/compiler/nir/nir_split_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_split_vars.c
    C xenocara/lib/mesa/src/compiler/nir/nir_sweep.c
    U xenocara/lib/mesa/src/compiler/nir/nir_to_lcssa.c
    C xenocara/lib/mesa/src/compiler/nir/nir_validate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_vla.h
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.h
    U xenocara/lib/mesa/src/compiler/nir/nir_xfb_info.h
    C xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes.h
    C xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.c
    C xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.h
    C xenocara/lib/mesa/src/compiler/nir/nir_opcodes.c
    C xenocara/lib/mesa/src/compiler/nir/nir_opcodes.h
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.c
    U xenocara/lib/mesa/src/compiler/nir/meson.build
    C xenocara/lib/mesa/src/compiler/nir/nir_algebraic.py
    C xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes_h.py
    C xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.py
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.py
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics_c.py
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics_h.py
    U xenocara/lib/mesa/src/compiler/nir/README
    C xenocara/lib/mesa/src/compiler/nir/nir_opcodes.py
    C xenocara/lib/mesa/src/compiler/nir/nir_opcodes_c.py
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_h.py
    C xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/tests/control_flow_tests.cpp
    U xenocara/lib/mesa/src/compiler/nir/tests/vars_tests.cpp
    N xenocara/lib/mesa/src/compiler/nir/tests/algebraic_parser_test.py
    N xenocara/lib/mesa/src/compiler/nir/tests/algebraic_parser_test.sh
    U xenocara/lib/mesa/src/compiler/nir/tests/.deps/control_flow_tests-control_flow_tests.Po
    U xenocara/lib/mesa/src/compiler/nir/tests/.deps/vars_tests-vars_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_constant.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_strings.h
    C xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.cpp
    C xenocara/lib/mesa/src/compiler/glsl/glsl_parser.cpp
    C xenocara/lib/mesa/src/compiler/glsl/glsl_parser.h
    N xenocara/lib/mesa/src/compiler/glsl/float64_glsl.h
    C xenocara/lib/mesa/src/compiler/glsl/ast.h
    U xenocara/lib/mesa/src/compiler/glsl/ast_array_index.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_expr.cpp
    C xenocara/lib/mesa/src/compiler/glsl/ast_function.cpp
    C xenocara/lib/mesa/src/compiler/glsl/ast_to_hir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_type.cpp
    C xenocara/lib/mesa/src/compiler/glsl/builtin_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.h
    U xenocara/lib/mesa/src/compiler/glsl/builtin_int64.h
    U xenocara/lib/mesa/src/compiler/glsl/builtin_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/generate_ir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_atomics.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_samplers.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_samplers_as_deref.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_atomics.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_uniform_initializers.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_uniforms.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_xfb.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_linker.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_linker.h
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir.h
    C xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.cpp
    C xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.cpp
    C xenocara/lib/mesa/src/compiler/glsl/ir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.h
    C xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.h
    U xenocara/lib/mesa/src/compiler/glsl/hir_field_selection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.h
    C xenocara/lib/mesa/src/compiler/glsl/ir_clone.cpp
    C xenocara/lib/mesa/src/compiler/glsl/ir_constant_expression.cpp
    C xenocara/lib/mesa/src/compiler/glsl/ir.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_equals.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_can_inline.cpp
    C xenocara/lib/mesa/src/compiler/glsl/ir_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_inlining.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_detect_recursion.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_hv_accept.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_optimization.h
    C xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.h
    C xenocara/lib/mesa/src/compiler/glsl/ir_reader.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_set_program_inouts.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_uniform.h
    C xenocara/lib/mesa/src/compiler/glsl/ir_validate.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.h
    C xenocara/lib/mesa/src/compiler/glsl/linker.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.h
    U xenocara/lib/mesa/src/compiler/glsl/linker_util.h
    U xenocara/lib/mesa/src/compiler/glsl/linker_util.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_atomics.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_initializers.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_blocks.cpp
    C xenocara/lib/mesa/src/compiler/glsl/link_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.h
    U xenocara/lib/mesa/src/compiler/glsl/list.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.cpp
    C xenocara/lib/mesa/src/compiler/glsl/loop_analysis.h
    U xenocara/lib/mesa/src/compiler/glsl/program.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_unroll.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_blend_equation_advanced.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_const_arrays_to_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_cs_derived.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard_flow.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_distance.cpp
    C xenocara/lib/mesa/src/compiler/glsl/lower_if_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_instructions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_int64.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_mat_op_to_vec.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_noise.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_offset_array.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_packed_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_named_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_packing_builtins.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_subroutine.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_tess_level.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_texture_projection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_variable_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_derefs.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_insert.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vertex_id.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_output_reads.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_shared_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_ubo_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_algebraic.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_array_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_conditional_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_folding.cpp
    C xenocara/lib/mesa/src/compiler/glsl/opt_constant_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_variable.cpp
    C xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation_elements.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code_local.cpp
    U xenocara/lib/mesa/src/compiler/glsl/serialize.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flatten_nested_if_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flip_matrices.cpp
    C xenocara/lib/mesa/src/compiler/glsl/opt_function_inlining.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_if_simplification.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_minmax.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_rebalance_tree.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_redundant_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_structure_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_tree_grafting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_vectorize.cpp
    U xenocara/lib/mesa/src/compiler/glsl/propagate_invariance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.h
    U xenocara/lib/mesa/src/compiler/glsl/serialize.cpp
    U xenocara/lib/mesa/src/compiler/glsl/string_to_uint_map.cpp
    U xenocara/lib/mesa/src/compiler/glsl/string_to_uint_map.h
    C xenocara/lib/mesa/src/compiler/glsl/shader_cache.cpp
    U xenocara/lib/mesa/src/compiler/glsl/shader_cache.h
    C xenocara/lib/mesa/src/compiler/glsl/ir_builder_print_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder_print_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_add_neg_to_sub.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.h
    C xenocara/lib/mesa/src/compiler/glsl/standalone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone.h
    U xenocara/lib/mesa/src/compiler/glsl/test.cpp
    C xenocara/lib/mesa/src/compiler/glsl/test_optpass.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.h
    U xenocara/lib/mesa/src/compiler/glsl/main.cpp
    U xenocara/lib/mesa/src/compiler/glsl/meson.build
    U xenocara/lib/mesa/src/compiler/glsl/README
    U xenocara/lib/mesa/src/compiler/glsl/TODO
    C xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.ll
    C xenocara/lib/mesa/src/compiler/glsl/glsl_parser.yy
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.py
    N xenocara/lib/mesa/src/compiler/glsl/xxd.py
    N xenocara/lib/mesa/src/compiler/glsl/float64.glsl
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-lex.c
    C xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.h
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.h
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/meson.build
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/README
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-lex.l
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.y
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/005-define-composite-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/005-define-composite-chain.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/007-define-composite-recursive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/007-define-composite-recursive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/010-undef-re-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/010-undef-re-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/012-define-func-no-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/013-define-func-1-arg-unused.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/012-define-func-no-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/013-define-func-1-arg-unused.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/014-define-func-2-arg-unused.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/014-define-func-2-arg-unused.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/015-define-object-with-parens.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/015-define-object-with-parens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/016-define-func-1-arg.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/016-define-func-1-arg.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/018-define-func-macro-as-parameter.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/019-define-func-1-arg-multi.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/018-define-func-macro-as-parameter.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/019-define-func-1-arg-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/020-define-func-2-arg-multi.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/020-define-func-2-arg-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/022-define-func-arg-with-parens.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/022-define-func-arg-with-parens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/023-define-extra-whitespace.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/023-define-extra-whitespace.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/024-define-chain-to-self-recursion.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/024-define-chain-to-self-recursion.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/025-func-macro-as-non-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/025-func-macro-as-non-macro.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/026-define-func-extra-newlines.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/026-define-func-extra-newlines.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/027-define-chain-obj-to-func.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/027-define-chain-obj-to-func.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/038-func-arg-with-commas.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/032-define-func-self-recurse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/032-define-func-self-recurse.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/034-define-func-self-compose-non-func.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/034-define-func-self-compose-non-func.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/037-finalize-unexpanded-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/037-finalize-unexpanded-macro.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/038-func-arg-with-commas.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/043-if-0-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/043-if-0-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/045-if-0-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/045-if-0-elif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/048-if-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/048-if-nested.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/053-if-divide-and-shift.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/053-if-divide-and-shift.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/054-if-with-macros.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/054-if-with-macros.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/056-macro-argument-with-comma.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/056-macro-argument-with-comma.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/058-token-pasting-empty-arguments.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/058-token-pasting-empty-arguments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/077-else-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/077-else-without-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/078-elif-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/078-elif-without-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/079-endif-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/079-endif-without-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/080-if-without-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/080-if-without-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/081-elif-without-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/081-elif-without-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/092-redefine-macro-error-2.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/092-redefine-macro-error-2.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/093-divide-by-zero.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/093-divide-by-zero.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/097-paste-with-non-function-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/097-paste-with-non-function-macro.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/101-macros-used-twice.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/101-macros-used-twice.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/104-hash-line-followed-by-code.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/104-hash-line-followed-by-code.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/106-multiline-hash-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/105-multiline-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/105-multiline-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/106-multiline-hash-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/108-no-space-after-hash-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/108-no-space-after-hash-version.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/109-no-space-after-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/109-no-space-after-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/113-line-and-file-macros.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/113-line-and-file-macros.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/116-disable-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/116-disable-line-continuations.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp-test.sh
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/123-garbage-after-else-1.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/123-garbage-after-else-1.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/125-es-short-circuit-undefined.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/125-es-short-circuit-undefined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/129-define-non-identifier.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/129-define-non-identifier.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/130-define-comment.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/130-define-comment.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/131-eof-without-newline.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/131-eof-without-newline.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/133-eof-without-newline-comment.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/133-eof-without-newline-comment.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/134-hash-comment-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/134-hash-comment-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/135-duplicate-parameter.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/135-duplicate-parameter.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/136-plus-plus-and-minus-minus.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/136-plus-plus-and-minus-minus.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/138-multi-line-comment-in-if-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/138-multi-line-comment-in-if-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/139-define-without-macro-name.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp_test.py
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/139-define-without-macro-name.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/141-pragma-and-__LINE__.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/141-pragma-and-__LINE__.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-define-macro-no-space.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-define-macro-no-space.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/148-legal-characters.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/148-legal-characters.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/149-hex-const-uppercase-prefix.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/149-hex-const-uppercase-prefix.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/blob_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/cache_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/array_refcount_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/builtin_variable_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/invalidate_locations_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/general_ir_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/lower_int64_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/opt_add_neg_to_sub_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/varyings_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/sampler_types_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/copy_constant_to_storage_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/set_uniform_initializer_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.h
    U xenocara/lib/mesa/src/compiler/glsl/tests/meson.build
    U xenocara/lib/mesa/src/compiler/glsl/tests/lower_jump_cases.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/optimization-test.sh
    U xenocara/lib/mesa/src/compiler/glsl/tests/optimization_test.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/sexps.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings-test.sh
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings_test.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/array_refcount_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/blob_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/builtin_variable_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/cache_test-cache_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/copy_constant_to_storage_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/general_ir_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/invalidate_locations_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/lower_int64_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/opt_add_neg_to_sub_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/sampler_types_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/set_uniform_initializer_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/uniform_initializer_utils.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/varyings_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/006-gequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/006-gequal.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/026-out-function-parameter-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/026-out-function-parameter-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/031-__-in-function-name.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/031-__-in-function-name.vert.expected
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/032-__-in-function-name-pragma-disable.vert
    N xenocara/lib/mesa/src/compiler/glsl/tests/warnings/032-__-in-function-name-pragma-disable.vert.expected
    U xenocara/lib/mesa/src/compiler/spirv/GLSL.ext.AMD.h
    U xenocara/lib/mesa/src/compiler/spirv/GLSL.std.450.h
    U xenocara/lib/mesa/src/compiler/spirv/gl_spirv.c
    C xenocara/lib/mesa/src/compiler/spirv/nir_spirv.h
    C xenocara/lib/mesa/src/compiler/spirv/spirv.h
    C xenocara/lib/mesa/src/compiler/spirv/spirv_info.h
    C xenocara/lib/mesa/src/compiler/spirv/spirv_to_nir.c
    C xenocara/lib/mesa/src/compiler/spirv/vtn_alu.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_amd.c
    C xenocara/lib/mesa/src/compiler/spirv/vtn_cfg.c
    C xenocara/lib/mesa/src/compiler/spirv/vtn_glsl450.c
    C xenocara/lib/mesa/src/compiler/spirv/vtn_private.h
    U xenocara/lib/mesa/src/compiler/spirv/vtn_subgroup.c
    C xenocara/lib/mesa/src/compiler/spirv/vtn_variables.c
    C xenocara/lib/mesa/src/compiler/spirv/spirv_info.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_gather_types.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv2nir.c
    U xenocara/lib/mesa/src/compiler/spirv/meson.build
    C xenocara/lib/mesa/src/compiler/spirv/spirv_info_c.py
    C xenocara/lib/mesa/src/compiler/spirv/spirv.core.grammar.json
    U xenocara/lib/mesa/src/compiler/spirv/vtn_gather_types_c.py
    U xenocara/lib/mesa/src/amd/Makefile.am
    C xenocara/lib/mesa/src/amd/Makefile.addrlib.am
    U xenocara/lib/mesa/src/amd/Makefile.common.am
    C xenocara/lib/mesa/src/amd/Makefile.in
    C xenocara/lib/mesa/src/amd/Makefile.sources
    U xenocara/lib/mesa/src/amd/meson.build
    U xenocara/lib/mesa/src/amd/addrlib/meson.build
    N xenocara/lib/mesa/src/amd/addrlib/inc/addrinterface.h
    N xenocara/lib/mesa/src/amd/addrlib/inc/addrtypes.h
    N xenocara/lib/mesa/src/amd/addrlib/src/addrinterface.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/amdgpu_asic_addr.h
    N xenocara/lib/mesa/src/amd/addrlib/src/chip/gfx9/gfx9_gb_reg.h
    N xenocara/lib/mesa/src/amd/addrlib/src/chip/r800/si_gb_reg.h
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrcommon.h
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrelemlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrelemlib.h
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib.h
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib1.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib1.h
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib2.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib2.h
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrobject.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/core/addrobject.h
    N xenocara/lib/mesa/src/amd/addrlib/src/core/coord.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/core/coord.h
    N xenocara/lib/mesa/src/amd/addrlib/src/gfx9/gfx9addrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/gfx9/gfx9addrlib.h
    N xenocara/lib/mesa/src/amd/addrlib/src/r800/ciaddrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/r800/ciaddrlib.h
    N xenocara/lib/mesa/src/amd/addrlib/src/r800/egbaddrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/r800/egbaddrlib.h
    N xenocara/lib/mesa/src/amd/addrlib/src/r800/siaddrlib.cpp
    N xenocara/lib/mesa/src/amd/addrlib/src/r800/siaddrlib.h
    C xenocara/lib/mesa/src/amd/common/ac_gpu_info.c
    U xenocara/lib/mesa/src/amd/common/ac_gpu_info.h
    C xenocara/lib/mesa/src/amd/common/ac_surface.c
    C xenocara/lib/mesa/src/amd/common/ac_surface.h
    U xenocara/lib/mesa/src/amd/common/ac_binary.c
    U xenocara/lib/mesa/src/amd/common/ac_binary.h
    U xenocara/lib/mesa/src/amd/common/ac_exp_param.h
    C xenocara/lib/mesa/src/amd/common/ac_llvm_build.c
    C xenocara/lib/mesa/src/amd/common/ac_llvm_build.h
    C xenocara/lib/mesa/src/amd/common/ac_llvm_helper.cpp
    C xenocara/lib/mesa/src/amd/common/ac_llvm_util.c
    C xenocara/lib/mesa/src/amd/common/ac_llvm_util.h
    U xenocara/lib/mesa/src/amd/common/ac_shader_abi.h
    U xenocara/lib/mesa/src/amd/common/ac_shader_util.c
    U xenocara/lib/mesa/src/amd/common/ac_shader_util.h
    C xenocara/lib/mesa/src/amd/common/ac_debug.c
    U xenocara/lib/mesa/src/amd/common/ac_debug.h
    C xenocara/lib/mesa/src/amd/common/sid_tables.h
    C xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.c
    U xenocara/lib/mesa/src/amd/common/gfx9d.h
    C xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.h
    C xenocara/lib/mesa/src/amd/common/sid.h
    U xenocara/lib/mesa/src/amd/common/amd_family.h
    U xenocara/lib/mesa/src/amd/common/amd_kernel_code_t.h
    C xenocara/lib/mesa/src/amd/common/sid_tables.py
    U xenocara/lib/mesa/src/amd/common/meson.build
    U xenocara/lib/mesa/src/amd/vulkan/meson.build
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.am
    C xenocara/lib/mesa/src/amd/vulkan/Makefile.in
    C xenocara/lib/mesa/src/amd/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_extensions.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_extensions.h
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_debug.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_debug.h
    C xenocara/lib/mesa/src/amd/vulkan/radv_device.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.h
    C xenocara/lib/mesa/src/amd/vulkan/radv_formats.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_image.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit2d.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_buffer.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_bufimage.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_clear.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_copy.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_decompress.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_fast_clear.c
    N xenocara/lib/mesa/src/amd/vulkan/radv_meta_fmask_expand.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_cs.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_fs.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_nir_to_llvm.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_llvm_helper.cpp
    U xenocara/lib/mesa/src/amd/vulkan/radv_pass.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_pipeline.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline_cache.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_private.h
    C xenocara/lib/mesa/src/amd/vulkan/radv_radeon_winsys.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_shader.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_shader_info.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_shader.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_shader_helper.h
    C xenocara/lib/mesa/src/amd/vulkan/radv_query.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi.c
    C xenocara/lib/mesa/src/amd/vulkan/si_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_display.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_x11.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_wayland.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_android.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints_gen.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_extensions.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_icd.py
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_layout.csv
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_parse.py
    C xenocara/lib/mesa/src/amd/vulkan/vk_format_table.py
    C xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.c
    C xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.h
    C xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.h
    C xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_surface.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_surface.h
    C xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c
    C xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
    C xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys_public.h
    U xenocara/lib/mesa/src/intel/Makefile.am
    U xenocara/lib/mesa/src/intel/Makefile.blorp.am
    U xenocara/lib/mesa/src/intel/Makefile.common.am
    U xenocara/lib/mesa/src/intel/Makefile.compiler.am
    U xenocara/lib/mesa/src/intel/Makefile.dev.am
    U xenocara/lib/mesa/src/intel/Makefile.genxml.am
    C xenocara/lib/mesa/src/intel/Makefile.in
    C xenocara/lib/mesa/src/intel/Makefile.isl.am
    C xenocara/lib/mesa/src/intel/Makefile.sources
    U xenocara/lib/mesa/src/intel/Makefile.tools.am
    C xenocara/lib/mesa/src/intel/Makefile.vulkan.am
    U xenocara/lib/mesa/src/intel/meson.build
    C xenocara/lib/mesa/src/intel/blorp/blorp.c
    C xenocara/lib/mesa/src/intel/blorp/blorp.h
    C xenocara/lib/mesa/src/intel/blorp/blorp_blit.c
    C xenocara/lib/mesa/src/intel/blorp/blorp_clear.c
    U xenocara/lib/mesa/src/intel/blorp/blorp_nir_builder.h
    C xenocara/lib/mesa/src/intel/blorp/blorp_genX_exec.h
    C xenocara/lib/mesa/src/intel/blorp/blorp_priv.h
    U xenocara/lib/mesa/src/intel/blorp/meson.build
    U xenocara/lib/mesa/src/intel/blorp/TODO
    U xenocara/lib/mesa/src/intel/common/gen_clflush.h
    U xenocara/lib/mesa/src/intel/common/gen_batch_decoder.c
    U xenocara/lib/mesa/src/intel/common/gen_debug.c
    U xenocara/lib/mesa/src/intel/common/gen_debug.h
    C xenocara/lib/mesa/src/intel/common/gen_decoder.c
    C xenocara/lib/mesa/src/intel/common/gen_decoder.h
    U xenocara/lib/mesa/src/intel/common/gen_disasm.c
    U xenocara/lib/mesa/src/intel/common/gen_disasm.h
    U xenocara/lib/mesa/src/intel/common/gen_defines.h
    U xenocara/lib/mesa/src/intel/common/gen_gem.h
    C xenocara/lib/mesa/src/intel/common/gen_l3_config.c
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.h
    C xenocara/lib/mesa/src/intel/common/gen_urb_config.c
    U xenocara/lib/mesa/src/intel/common/gen_sample_positions.h
    U xenocara/lib/mesa/src/intel/common/intel_log.c
    U xenocara/lib/mesa/src/intel/common/intel_log.h
    U xenocara/lib/mesa/src/intel/common/meson.build
    U xenocara/lib/mesa/src/intel/compiler/brw_cfg.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_cfg.h
    U xenocara/lib/mesa/src/intel/compiler/brw_clip.h
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_line.c
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_point.c
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_tri.c
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_unfilled.c
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_util.c
    U xenocara/lib/mesa/src/intel/compiler/brw_compile_clip.c
    U xenocara/lib/mesa/src/intel/compiler/brw_compile_sf.c
    C xenocara/lib/mesa/src/intel/compiler/brw_compiler.c
    C xenocara/lib/mesa/src/intel/compiler/brw_compiler.h
    U xenocara/lib/mesa/src/intel/compiler/brw_dead_control_flow.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_dead_control_flow.h
    C xenocara/lib/mesa/src/intel/compiler/brw_disasm.c
    U xenocara/lib/mesa/src/intel/compiler/brw_disasm_info.c
    U xenocara/lib/mesa/src/intel/compiler/brw_disasm_info.h
    U xenocara/lib/mesa/src/intel/compiler/brw_eu.c
    U xenocara/lib/mesa/src/intel/compiler/brw_eu_compact.c
    C xenocara/lib/mesa/src/intel/compiler/brw_eu_defines.h
    C xenocara/lib/mesa/src/intel/compiler/brw_eu_emit.c
    C xenocara/lib/mesa/src/intel/compiler/brw_eu.h
    U xenocara/lib/mesa/src/intel/compiler/brw_eu_util.c
    C xenocara/lib/mesa/src/intel/compiler/brw_eu_validate.c
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_builder.h
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_bank_conflicts.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_cmod_propagation.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_combine_constants.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_copy_propagation.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_cse.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_dead_code_eliminate.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_generator.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs.h
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_live_variables.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_live_variables.h
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_lower_pack.cpp
    N xenocara/lib/mesa/src/intel/compiler/brw_fs_lower_regioning.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_nir.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_reg_allocate.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_register_coalesce.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_saturate_propagation.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_fs_sel_peephole.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_surface_builder.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_surface_builder.h
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_validate.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_visitor.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_inst.h
    U xenocara/lib/mesa/src/intel/compiler/brw_interpolation_map.c
    C xenocara/lib/mesa/src/intel/compiler/brw_ir_allocator.h
    C xenocara/lib/mesa/src/intel/compiler/brw_ir_fs.h
    U xenocara/lib/mesa/src/intel/compiler/brw_ir_vec4.h
    C xenocara/lib/mesa/src/intel/compiler/brw_nir.h
    C xenocara/lib/mesa/src/intel/compiler/brw_nir.c
    C xenocara/lib/mesa/src/intel/compiler/brw_nir_analyze_boolean_resolves.c
    C xenocara/lib/mesa/src/intel/compiler/brw_nir_analyze_ubo_ranges.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_attribute_workarounds.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_cs_intrinsics.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_image_load_store.c
    N xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_mem_access_bit_sizes.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_opt_peephole_ffma.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_tcs_workarounds.c
    U xenocara/lib/mesa/src/intel/compiler/brw_packed_float.c
    U xenocara/lib/mesa/src/intel/compiler/brw_predicated_break.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_reg.h
    U xenocara/lib/mesa/src/intel/compiler/brw_reg_type.c
    U xenocara/lib/mesa/src/intel/compiler/brw_reg_type.h
    C xenocara/lib/mesa/src/intel/compiler/brw_shader.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_schedule_instructions.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_shader.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_builder.h
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_copy_propagation.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_cse.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_dead_code_eliminate.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4_generator.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_visitor.h
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_live_variables.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_live_variables.h
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4_nir.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_nir.cpp
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4_reg_allocate.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_surface_builder.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_surface_builder.h
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4_tcs.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tcs.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tes.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tes.h
    C xenocara/lib/mesa/src/intel/compiler/brw_vec4_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_vs_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_vs.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vue_map.c
    U xenocara/lib/mesa/src/intel/compiler/brw_wm_iz.cpp
    C xenocara/lib/mesa/src/intel/compiler/gen6_gs_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/gen6_gs_visitor.h
    C xenocara/lib/mesa/src/intel/compiler/brw_nir_trig_workarounds.c
    U xenocara/lib/mesa/src/intel/compiler/test_eu_compact.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_eu_validate.cpp
    C xenocara/lib/mesa/src/intel/compiler/test_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_fs_saturate_propagation.cpp
    C xenocara/lib/mesa/src/intel/compiler/test_vec4_cmod_propagation.cpp
    C xenocara/lib/mesa/src/intel/compiler/test_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_vec4_dead_code_eliminate.cpp
    C xenocara/lib/mesa/src/intel/compiler/test_vec4_register_coalesce.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_vf_float_conversions.cpp
    U xenocara/lib/mesa/src/intel/compiler/meson.build
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_trig_workarounds.py
    U xenocara/lib/mesa/src/intel/dev/gen_device_info.c
    U xenocara/lib/mesa/src/intel/dev/gen_device_info.h
    U xenocara/lib/mesa/src/intel/dev/meson.build
    U xenocara/lib/mesa/src/intel/genxml/meson.build
    C xenocara/lib/mesa/src/intel/genxml/gen4.xml
    C xenocara/lib/mesa/src/intel/genxml/gen45.xml
    C xenocara/lib/mesa/src/intel/genxml/gen5.xml
    C xenocara/lib/mesa/src/intel/genxml/gen6.xml
    C xenocara/lib/mesa/src/intel/genxml/gen7.xml
    C xenocara/lib/mesa/src/intel/genxml/gen75.xml
    C xenocara/lib/mesa/src/intel/genxml/gen8.xml
    C xenocara/lib/mesa/src/intel/genxml/gen9.xml
    C xenocara/lib/mesa/src/intel/genxml/gen10.xml
    U xenocara/lib/mesa/src/intel/genxml/gen11.xml
    U xenocara/lib/mesa/src/intel/genxml/gen4_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen45_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen5_pack.h
    C xenocara/lib/mesa/src/intel/genxml/gen6_pack.h
    C xenocara/lib/mesa/src/intel/genxml/gen7_pack.h
    C xenocara/lib/mesa/src/intel/genxml/gen75_pack.h
    C xenocara/lib/mesa/src/intel/genxml/gen8_pack.h
    C xenocara/lib/mesa/src/intel/genxml/gen9_pack.h
    C xenocara/lib/mesa/src/intel/genxml/gen10_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen11_pack.h
    C xenocara/lib/mesa/src/intel/genxml/genX_bits.h
    C xenocara/lib/mesa/src/intel/genxml/genX_xml.h
    U xenocara/lib/mesa/src/intel/genxml/genX_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen_macros.h
    U xenocara/lib/mesa/src/intel/genxml/gen_pack_header.py
    U xenocara/lib/mesa/src/intel/genxml/gen_zipped_file.py
    U xenocara/lib/mesa/src/intel/genxml/gen_bits_header.py
    U xenocara/lib/mesa/src/intel/genxml/README
    C xenocara/lib/mesa/src/intel/isl/isl_emit_depth_stencil.c
    U xenocara/lib/mesa/src/intel/isl/isl_surface_state.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.h
    C xenocara/lib/mesa/src/intel/isl/isl.c
    C xenocara/lib/mesa/src/intel/isl/isl.h
    U xenocara/lib/mesa/src/intel/isl/isl_drm.c
    U xenocara/lib/mesa/src/intel/isl/isl_format.c
    U xenocara/lib/mesa/src/intel/isl/isl_genX_priv.h
    C xenocara/lib/mesa/src/intel/isl/isl_priv.h
    U xenocara/lib/mesa/src/intel/isl/isl_storage_image.c
    C xenocara/lib/mesa/src/intel/isl/isl_format_layout.c
    U xenocara/lib/mesa/src/intel/isl/meson.build
    U xenocara/lib/mesa/src/intel/isl/README
    N xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy_normal.c
    N xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy_sse41.c
    U xenocara/lib/mesa/src/intel/isl/gen_format_layout.py
    C xenocara/lib/mesa/src/intel/isl/isl_format_layout.csv
    N xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy.c
    U xenocara/lib/mesa/src/intel/isl/tests/isl_surf_get_image_offset_test.c
    C xenocara/lib/mesa/src/intel/tools/aub_mem.c
    U xenocara/lib/mesa/src/intel/tools/aub_mem.h
    U xenocara/lib/mesa/src/intel/tools/aub_read.c
    U xenocara/lib/mesa/src/intel/tools/aub_read.h
    C xenocara/lib/mesa/src/intel/tools/aubinator.c
    U xenocara/lib/mesa/src/intel/tools/intel_aub.h
    C xenocara/lib/mesa/src/intel/tools/aubinator_error_decode.c
    U xenocara/lib/mesa/src/intel/tools/gen_context.h
    U xenocara/lib/mesa/src/intel/tools/gen8_context.h
    U xenocara/lib/mesa/src/intel/tools/gen10_context.h
    U xenocara/lib/mesa/src/intel/tools/aub_write.h
    U xenocara/lib/mesa/src/intel/tools/aub_write.c
    U xenocara/lib/mesa/src/intel/tools/error2aub.c
    U xenocara/lib/mesa/src/intel/tools/i965_disasm.c
    U xenocara/lib/mesa/src/intel/tools/aubinator_viewer.cpp
    U xenocara/lib/mesa/src/intel/tools/aubinator_viewer.h
    U xenocara/lib/mesa/src/intel/tools/aubinator_viewer_decoder.cpp
    U xenocara/lib/mesa/src/intel/tools/aubinator_viewer_urb.h
    U xenocara/lib/mesa/src/intel/tools/intel_dump_gpu.c
    U xenocara/lib/mesa/src/intel/tools/intel_sanitize_gpu.c
    U xenocara/lib/mesa/src/intel/tools/intel_sanitize_gpu.in
    U xenocara/lib/mesa/src/intel/tools/intel_dump_gpu.in
    U xenocara/lib/mesa/src/intel/tools/meson.build
    U xenocara/lib/mesa/src/intel/tools/imgui/README
    U xenocara/lib/mesa/src/intel/tools/imgui/stb_textedit.h
    U xenocara/lib/mesa/src/intel/tools/imgui/meson.build
    U xenocara/lib/mesa/src/intel/tools/imgui/imconfig.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_draw.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_demo.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_internal.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_gtk3.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_gtk3.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_opengl3.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_opengl3.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_memory_editor.h
    U xenocara/lib/mesa/src/intel/tools/imgui/stb_truetype.h
    U xenocara/lib/mesa/src/intel/tools/imgui/stb_rect_pack.h
    U xenocara/lib/mesa/src/intel/tools/imgui/LICENSE.txt
    C xenocara/lib/mesa/src/intel/vulkan/gen8_cmd_buffer.c
    C xenocara/lib/mesa/src/intel/vulkan/genX_blorp_exec.c
    C xenocara/lib/mesa/src/intel/vulkan/genX_cmd_buffer.c
    C xenocara/lib/mesa/src/intel/vulkan/genX_gpu_memcpy.c
    C xenocara/lib/mesa/src/intel/vulkan/genX_pipeline.c
    C xenocara/lib/mesa/src/intel/vulkan/genX_query.c
    C xenocara/lib/mesa/src/intel/vulkan/genX_state.c
    C xenocara/lib/mesa/src/intel/vulkan/gen7_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem_stubs.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_extensions.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_extensions.h
    C xenocara/lib/mesa/src/intel/vulkan/anv_allocator.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_android.h
    C xenocara/lib/mesa/src/intel/vulkan/anv_batch_chain.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_blorp.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_cmd_buffer.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_descriptor_set.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_device.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_dump.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_formats.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_genX.h
    C xenocara/lib/mesa/src/intel/vulkan/anv_image.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_intel.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_add_base_work_group_id.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_pipeline_layout.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_input_attachments.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_multiview.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_push_constants.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_ycbcr_textures.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_pass.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_pipeline.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_pipeline_cache.c
    C xenocara/lib/mesa/src/intel/vulkan/anv_private.h
    C xenocara/lib/mesa/src/intel/vulkan/anv_queue.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_util.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi.c
    C xenocara/lib/mesa/src/intel/vulkan/vk_format_info.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_android.c
    N xenocara/lib/mesa/src/intel/vulkan/anv_android_stubs.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi_x11.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi_wayland.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi_display.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem.c
    U xenocara/lib/mesa/src/intel/vulkan/meson.build
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints_gen.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_extensions_gen.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_extensions.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_icd.py
    U xenocara/lib/mesa/src/intel/vulkan/TODO
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_test_helper.h
    C xenocara/lib/mesa/src/intel/vulkan/tests/block_pool_no_free.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_free_list_only.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_no_free.c
    N xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_padding.c
    C xenocara/lib/mesa/src/broadcom/Makefile.am
    U xenocara/lib/mesa/src/broadcom/Makefile.cle.am
    U xenocara/lib/mesa/src/broadcom/Makefile.genxml.am
    C xenocara/lib/mesa/src/broadcom/Makefile.in
    C xenocara/lib/mesa/src/broadcom/Makefile.sources
    U xenocara/lib/mesa/src/broadcom/Makefile.v3d.am
    U xenocara/lib/mesa/src/broadcom/meson.build
    U xenocara/lib/mesa/src/broadcom/cle/v3d_decoder.c
    U xenocara/lib/mesa/src/broadcom/cle/v3d_decoder.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_helpers.h
    U xenocara/lib/mesa/src/broadcom/cle/v3dx_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/meson.build
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v21.xml
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v33.xml
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v21_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v33_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v41_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v42_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_xml.h
    U xenocara/lib/mesa/src/broadcom/cle/gen_pack_header.py
    U xenocara/lib/mesa/src/broadcom/clif/clif_dump.c
    U xenocara/lib/mesa/src/broadcom/clif/clif_dump.h
    U xenocara/lib/mesa/src/broadcom/clif/clif_private.h
    U xenocara/lib/mesa/src/broadcom/clif/v3dx_dump.c
    N xenocara/lib/mesa/src/broadcom/common/v3d_cpu_tiling.h
    U xenocara/lib/mesa/src/broadcom/common/v3d_debug.c
    U xenocara/lib/mesa/src/broadcom/common/v3d_debug.h
    U xenocara/lib/mesa/src/broadcom/common/v3d_device_info.h
    N xenocara/lib/mesa/src/broadcom/common/v3d_limits.h
    U xenocara/lib/mesa/src/broadcom/common/v3d_macros.h
    U xenocara/lib/mesa/src/broadcom/compiler/nir_to_vir.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_dump.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_live_variables.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_lower_uniforms.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_copy_propagate.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_dead_code.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_small_immediates.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_register_allocate.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_to_qpu.c
    U xenocara/lib/mesa/src/broadcom/compiler/qpu_schedule.c
    U xenocara/lib/mesa/src/broadcom/compiler/qpu_validate.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d33_tex.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d33_vpm_setup.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d40_tex.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d_compiler.h
    N xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_image_load_store.c
    U xenocara/lib/mesa/src/broadcom/compiler/meson.build
    U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_io.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_txf_ms.c
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_disasm.c
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_disasm.h
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_instr.c
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_instr.h
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_pack.c
    U xenocara/lib/mesa/src/broadcom/qpu/meson.build
    U xenocara/lib/mesa/src/broadcom/qpu/tests/qpu_disasm.c
    N xenocara/lib/mesa/src/freedreno/Makefile.am
    N xenocara/lib/mesa/src/freedreno/Makefile.in
    N xenocara/lib/mesa/src/freedreno/Makefile.sources
    N xenocara/lib/mesa/src/freedreno/meson.build
    N xenocara/lib/mesa/src/freedreno/drm/freedreno_bo.c
    N xenocara/lib/mesa/src/freedreno/drm/freedreno_drmif.h
    N xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer.c
    N xenocara/lib/mesa/src/freedreno/drm/msm_bo.c
    N xenocara/lib/mesa/src/freedreno/drm/msm_pipe.c
    N xenocara/lib/mesa/src/freedreno/drm/msm_ringbuffer_sp.c
    N xenocara/lib/mesa/src/freedreno/drm/freedreno_bo_cache.c
    N xenocara/lib/mesa/src/freedreno/drm/freedreno_pipe.c
    N xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer.h
    N xenocara/lib/mesa/src/freedreno/drm/msm_device.c
    N xenocara/lib/mesa/src/freedreno/drm/msm_priv.h
    N xenocara/lib/mesa/src/freedreno/drm/freedreno_device.c
    N xenocara/lib/mesa/src/freedreno/drm/freedreno_priv.h
    N xenocara/lib/mesa/src/freedreno/drm/msm_drm.h
    N xenocara/lib/mesa/src/freedreno/drm/msm_ringbuffer.c
    N xenocara/lib/mesa/src/freedreno/drm/meson.build
    N xenocara/lib/mesa/src/freedreno/ir3/disasm-a3xx.c
    N xenocara/lib/mesa/src/freedreno/ir3/instr-a3xx.h
    N xenocara/lib/mesa/src/freedreno/ir3/ir3.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler.h
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler_nir.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_context.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_context.h
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_cp.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_depth.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_group.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3.h
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_legalize.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_nir.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_nir.h
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_tg4_to_tex.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_print.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_ra.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_sched.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_shader.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_shader.h
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_trig.c
    N xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_trig.py
    N xenocara/lib/mesa/src/freedreno/ir3/meson.build
    N xenocara/lib/mesa/src/freedreno/registers/a2xx.xml.h
    N xenocara/lib/mesa/src/freedreno/registers/a3xx.xml.h
    N xenocara/lib/mesa/src/freedreno/registers/a4xx.xml.h
    N xenocara/lib/mesa/src/freedreno/registers/a5xx.xml.h
    N xenocara/lib/mesa/src/freedreno/registers/a6xx.xml.h
    N xenocara/lib/mesa/src/freedreno/registers/adreno_common.xml.h
    N xenocara/lib/mesa/src/freedreno/registers/adreno_pm4.xml.h
    U xenocara/lib/mesa/src/gallium/Automake.inc
    C xenocara/lib/mesa/src/gallium/Makefile.am
    C xenocara/lib/mesa/src/gallium/Makefile.in
    U xenocara/lib/mesa/src/gallium/README.portability
    U xenocara/lib/mesa/src/gallium/SConscript
    U xenocara/lib/mesa/src/gallium/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/README
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.mingw.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_rendertexture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_swapinterval.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_icd.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_getprocaddress.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_winsys.h
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/bitmap_wrapper.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/bitmap_wrapper.h
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/hgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/hgl_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Doxyfile
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/context.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/interop.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/transfer.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/context.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/context.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/error.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/module.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/module.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/object.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/property.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/compat.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/invocation.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/invocation.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/metadata.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/bitcode.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/native.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/compiler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/invocation.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/adaptor.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algebra.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algorithm.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/factor.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/functional.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/lazy.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/pointer.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/range.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/tuple.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_context.h
    C xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_helpers.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_helpers.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.c
    C xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/drisw.c
    C xenocara/lib/mesa/src/gallium/state_trackers/dri/dri2.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_getproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_usefont.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_public.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_common.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_common.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h264_common.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h264_common.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_omx_common.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_omx_common.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc_common.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc_common.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/entrypoint.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/entrypoint.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264d.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264d.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dprc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dprc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dinport.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dinport.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dinport_decls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264e.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264e.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eprc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eprc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264einport.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264einport.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264einport_decls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eoutport.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eoutport_decls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/names.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eoutport.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/entrypoint.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/entrypoint.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec_h265.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_enc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/va/buffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/config.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/display.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/image.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture.c
    C xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg4.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_h264_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_hevc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_hevc_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_vc1.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mjpeg.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_vp9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/postproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/subpicture.c
    C xenocara/lib/mesa/src/gallium/state_trackers/va/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/va_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/va/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/bitmap.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/decode.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/ftab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/htab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/mixer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/output.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/preemption.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/presentation.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/query.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/vdpau_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.h.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/README
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.c
    C xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_priv.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_renderer.c
    C xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tgsi.c
    C xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_yuv.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa-indent.sh
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/attributes.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/block.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/xvmc_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_blocks.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_rendering.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/README
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/authenticatedchannel9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/authenticatedchannel9.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.c
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_buffer_upload.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_buffer_upload.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_csmt_helper.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.c
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_defines.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_flags.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_limits.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pdata.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_queue.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_queue.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/query9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/query9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/resource9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/resource9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.c
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9ex.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9ex.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.h
    C xenocara/lib/mesa/src/gallium/state_trackers/nine/volume9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volume9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/meson.build
    U xenocara/lib/mesa/src/gallium/targets/dri-vdpau.dyn
    U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/libgl_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/graw_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/graw-null/SConscript
    U xenocara/lib/mesa/src/gallium/targets/graw-null/graw_null.c
    U xenocara/lib/mesa/src/gallium/targets/graw-null/graw_util.c
    U xenocara/lib/mesa/src/gallium/targets/graw-null/meson.build
    U xenocara/lib/mesa/src/gallium/targets/graw-xlib/SConscript
    U xenocara/lib/mesa/src/gallium/targets/graw-xlib/graw_xlib.c
    U xenocara/lib/mesa/src/gallium/targets/graw-xlib/meson.build
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/.editorconfig
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.cpp
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/meson.build
    C xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.am
    C xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i915.c
    C xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_msm.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r600.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_radeonsi.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_swrast.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/meson.build
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/opencl/mesa.icd.in
    U xenocara/lib/mesa/src/gallium/targets/opencl/mesa.icd
    U xenocara/lib/mesa/src/gallium/targets/opencl/opencl.sym
    U xenocara/lib/mesa/src/gallium/targets/opencl/meson.build
    C xenocara/lib/mesa/src/gallium/targets/dri/Makefile.am
    C xenocara/lib/mesa/src/gallium/targets/dri/Makefile.in
    C xenocara/lib/mesa/src/gallium/targets/dri/target.c
    U xenocara/lib/mesa/src/gallium/targets/dri/SConscript
    U xenocara/lib/mesa/src/gallium/targets/dri/meson.build
    U xenocara/lib/mesa/src/gallium/targets/dri/dri.sym
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/xlib.c
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/libgl-xlib.sym
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/meson.build
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/omx/target.c
    U xenocara/lib/mesa/src/gallium/targets/omx/omx.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/meson.build
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.pc.in
    U xenocara/lib/mesa/src/gallium/targets/osmesa/target.c
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.sym
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.mingw.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/targets/osmesa/meson.build
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/va/target.c
    U xenocara/lib/mesa/src/gallium/targets/va/va.sym
    U xenocara/lib/mesa/src/gallium/targets/va/meson.build
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/vdpau/target.c
    U xenocara/lib/mesa/src/gallium/targets/vdpau/vdpau.sym
    U xenocara/lib/mesa/src/gallium/targets/vdpau/meson.build
    U xenocara/lib/mesa/src/gallium/targets/xa/Makefile.am
    C xenocara/lib/mesa/src/gallium/targets/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xa/xatracker.pc.in
    U xenocara/lib/mesa/src/gallium/targets/xa/target.c
    U xenocara/lib/mesa/src/gallium/targets/xa/xa.sym
    U xenocara/lib/mesa/src/gallium/targets/xa/meson.build
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xvmc/target.c
    U xenocara/lib/mesa/src/gallium/targets/xvmc/xvmc.sym
    U xenocara/lib/mesa/src/gallium/targets/xvmc/meson.build
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3d.pc.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/description.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/getproc.c
    C xenocara/lib/mesa/src/gallium/targets/d3dadapter9/drm.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3dadapter9.sym
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/meson.build
    U xenocara/lib/mesa/src/gallium/tests/meson.build
    U xenocara/lib/mesa/src/gallium/tests/graw/SConscript
    U xenocara/lib/mesa/src/gallium/tests/graw/clear.c
    U xenocara/lib/mesa/src/gallium/tests/graw/disasm.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-fragcoord.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-frontface.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-write-z.c
    U xenocara/lib/mesa/src/gallium/tests/graw/graw_util.h
    U xenocara/lib/mesa/src/gallium/tests/graw/gs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/meson.build
    U xenocara/lib/mesa/src/gallium/tests/graw/occlusion-query.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-sample.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/graw/shader-leak.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-srgb.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-swizzle.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tgsi_dump.gdb
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-gs.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-instanced.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-large.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri.c
    U xenocara/lib/mesa/src/gallium/tests/graw/vs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-abs.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-add.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-cb-1d.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-cb-2d.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dp3.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dp4.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dst.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-ex2.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-face.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-flr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-frc.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-kil.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-lg2.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-lit.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-lrp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-mad-immx.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-mad.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-max.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-min.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-mov.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-mul.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-rcp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-rsq.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-sge.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-slt.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-abs.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-absneg.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-neg.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-swz.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-sub.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-tempx.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-ucmp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-xpd.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/add-mix.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/add.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/line.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/mov-cb-2d.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/mov.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/multi-line.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-abs.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-add.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-arl.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-arr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-cb-1d.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-cb-2d.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-dp3.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-dp4.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-dst.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-ex2.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-flr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-frc.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-imul_hi.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lg2.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lit.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lrp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-mad.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-max.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-min.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-mov.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-mul.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-rcp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-rsq.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-sge.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-slt.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-abs.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-absneg.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-neg.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-swz.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-sub.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-uadd.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-umul_hi.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-xpd.sh
    U xenocara/lib/mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.am
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.in
    C xenocara/lib/mesa/src/gallium/tests/trivial/compute.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/tri.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/meson.build
    U xenocara/lib/mesa/src/gallium/tests/unit/Makefile.am
    U xenocara/lib/mesa/src/gallium/tests/unit/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/unit/pipe_barrier_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/translate_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_cache_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_compatible_test.c
    C xenocara/lib/mesa/src/gallium/tests/unit/u_format_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_half_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/SConscript
    U xenocara/lib/mesa/src/gallium/tests/unit/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/null_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/null_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.am
    C xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h
    C xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_batchbuffer.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.am
    C xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/svga_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h
    N xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_msg.c
    N xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_msg.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.c
    C xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/meson.build
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.am
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.h
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_public.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_surface.c
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
    C xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.sources
    C xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.h
    C xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_surface.c
    C xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/etnaviv_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/etnaviv_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/meson.build
    N xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/Makefile.am
    N xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/Makefile.in
    N xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/Makefile.sources
    N xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/kmsro_drm_public.h
    N xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/kmsro_drm_winsys.c
    N xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/tegra_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/tegra_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/vc4_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/vc4_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/v3d_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/v3d_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_public.h
    C xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_winsys.c
    C xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virtgpu_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_public.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_socket.c
    C xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/vtest_protocol.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/meson.build
    U xenocara/lib/mesa/src/gallium/docs/Makefile
    U xenocara/lib/mesa/src/gallium/docs/make.bat
    U xenocara/lib/mesa/src/gallium/docs/source/conf.py
    C xenocara/lib/mesa/src/gallium/docs/source/context.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso.rst
    U xenocara/lib/mesa/src/gallium/docs/source/debugging.rst
    U xenocara/lib/mesa/src/gallium/docs/source/distro.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers.rst
    U xenocara/lib/mesa/src/gallium/docs/source/format.rst
    U xenocara/lib/mesa/src/gallium/docs/source/glossary.rst
    U xenocara/lib/mesa/src/gallium/docs/source/index.rst
    U xenocara/lib/mesa/src/gallium/docs/source/intro.rst
    U xenocara/lib/mesa/src/gallium/docs/source/pipeline.txt
    U xenocara/lib/mesa/src/gallium/docs/source/resources.rst
    C xenocara/lib/mesa/src/gallium/docs/source/screen.rst
    C xenocara/lib/mesa/src/gallium/docs/source/tgsi.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/blend.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/dsa.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/rasterizer.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/sampler.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/shader.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/velems.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno/ir3-notes.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/faq.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/knobs.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/profiling.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst
    U xenocara/lib/mesa/src/gallium/docs/source/exts/formatting.py
    U xenocara/lib/mesa/src/gallium/include/pipe/p_compiler.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_config.h
    C xenocara/lib/mesa/src/gallium/include/pipe/p_context.h
    C xenocara/lib/mesa/src/gallium/include/pipe/p_defines.h
    C xenocara/lib/mesa/src/gallium/include/pipe/p_format.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_screen.h
    C xenocara/lib/mesa/src/gallium/include/pipe/p_shader_tokens.h
    C xenocara/lib/mesa/src/gallium/include/pipe/p_state.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_codec.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_enums.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_state.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drisw_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drm_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/graw.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/opencl_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/st_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_winsys.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_dmabuf.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_funcs.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/winsys_handle.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/xlibsw_api.h
    U xenocara/lib/mesa/src/gallium/tools/addr2line.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/README.txt
    U xenocara/lib/mesa/src/gallium/tools/trace/TODO.txt
    U xenocara/lib/mesa/src/gallium/tools/trace/diff_state.py
    U xenocara/lib/mesa/src/gallium/tools/trace/dump.py
    U xenocara/lib/mesa/src/gallium/tools/trace/dump_state.py
    U xenocara/lib/mesa/src/gallium/tools/trace/format.py
    U xenocara/lib/mesa/src/gallium/tools/trace/model.py
    U xenocara/lib/mesa/src/gallium/tools/trace/parse.py
    U xenocara/lib/mesa/src/gallium/tools/trace/tracediff.sh
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.am
    C xenocara/lib/mesa/src/gallium/auxiliary/Makefile.in
    C xenocara/lib/mesa/src/gallium/auxiliary/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/meson.build
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.h
    C xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h
    C xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_offset.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.c
    C xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_split_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_variant.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_draw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_pipe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_screen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_util.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_pipe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_objects.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_objects.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_screen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_screen.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/README
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_defines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_state.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_screen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_screen.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/README
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/trace.xsl
    C xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
    C xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.c
    C xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c
    N xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_s3tc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h
    C xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.h
    C xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h
    C xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h
    C xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c
    C xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_nic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpufreq.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_diskstat.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_sensors_temp.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_driver_query.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_fps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.py
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py
    C xenocara/lib/mesa/src/gallium/auxiliary/nir/tgsi_to_nir.c
    U xenocara/lib/mesa/src/gallium/auxiliary/nir/tgsi_to_nir.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_mman.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_thread.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_alt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_ondemand.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/postprocess.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_celshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_celshade.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_init.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_program.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_run.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/ADDING
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_demarshal.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_internal.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_proto.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/README
    U xenocara/lib/mesa/src/gallium/auxiliary/renderonly/renderonly.c
    U xenocara/lib/mesa/src/gallium/auxiliary/renderonly/renderonly.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h
    C xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_from_mesa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_from_mesa.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info_opcodes.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.h
    C xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.c
    C xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h
    C xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.h
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_generic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_sse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/dbghelp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_async_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_async_debug.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitcast.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_box.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_gallium.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_gallium.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.h
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_memory.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_flags.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dual_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_defines.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_fifo.h
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.c
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_bptc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_bptc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_latc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_latc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_half.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.h
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.c
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_idalloc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_idalloc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_inlines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_log.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_log.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pack_color.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pointer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.c
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pwr8.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_range.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_rect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_screen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_screen.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.h
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer_helper.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context_calls.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_video.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_viewport.h
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack_android.cpp
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.csv
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_pack.py
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_parse.py
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.py
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_defines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_rbsp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_types.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vlc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_probs_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_stubs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri3.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/driinfo_gallium.h
    C xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/meson.build
    C xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper.h
    C xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper_public.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.am
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.in
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.sources
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/disasm.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_blitter.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_blitter.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Automake.inc
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_perfcntr.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_acc.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_acc.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_perfcntr.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_query.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_resource.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_assemble.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_cp.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_nir.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_nir_lower_scalar.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_private.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blitter.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_compute.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_context.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_draw.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_emit.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_format.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_image.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_image.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_perfcntr.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_program.c
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_image.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_image.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cache.h
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_gallium.c
    N xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_gallium.h
    C xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cmdline.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/i915/TODO
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batchbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_private.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_public.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_texture.c
    C xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_fpc.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_immediate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_static.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/i915/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_statebuf.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Automake.inc
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_build_util.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_build_util.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_driver.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_graph.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_graph.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nv50.cpp
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_util.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_util.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/unordered_set.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_gm107.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_gm107.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk104.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk104.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_defs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_texture.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3ddefs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.xml.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_ppp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/gm107_texture.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_macros.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_sm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_sm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_winsys.h
    C xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com9097.mme
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com9097.mme.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com90c0.mme
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com90c0.mme.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.am
    C xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.in
    C xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.sources
    C xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_elements.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_private.h
    C xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_hw_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_mksstats.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_misc.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_query.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_public.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.h
    C xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_framebuffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_rss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tgsi_transform.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vdecl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_streamout.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_backend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_insn.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_vgpu10.c
    C xenocara/lib/mesa/src/gallium/drivers/svga/svga_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/svga/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/svga/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/includeCheck.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_caps.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_dx.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_escape.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_overlay.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/VGPU10ShaderTokens.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_end.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/README
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.py
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cb.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.h
    C xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_hyperz.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_query.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_stencilref.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.h
    C xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_shader_semantics.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_inlines.h
    C xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/r300/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_dead_sources.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_optimize_tests.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_util_tests.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/omod_two_writers.test
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/regalloc_tex_1d_swizzle.test
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600d_common.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_sq.h
    C xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreend.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_state.c
    C xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600d.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_formats.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_opcodes.h
    C xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_public.h
    C xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_sq.h
    C xenocara/lib/mesa/src/gallium/drivers/r600/r600_state.c
    C xenocara/lib/mesa/src/gallium/drivers/r600/r600_state_common.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/cayman_msaa.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_buffer_common.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_cs.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_gpu_load.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_query.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe_common.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe_common.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_query.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_test_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_uvd.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_vce.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_vce.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_video.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_video.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/egd_tables.py
    U xenocara/lib/mesa/src/gallium/drivers/r600/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/r600/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_finalize.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gcm.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.cpp
    C xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_psi_ops.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/notes.markdown
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.inc
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.am
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.in
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_driinfo.h
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/cik_sdma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/driinfo_radeonsi.h
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_build_pm4.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_clear.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute_blit.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_cp_dma.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug.c
    N xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug_options.h
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_descriptors.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_dma_cs.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_get.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_gfx_cs.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_gpu_load.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.h
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.h
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_public.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_query.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_query.h
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_nir.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_alu.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_mem.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shaderlib_tgsi.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_binning.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_msaa.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_viewport.c
    C xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_test_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_test_dma_perf.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Automake.inc
    C xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_dec_jpeg.c
    C xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_dec.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_dec.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_enc_1_2.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_enc.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_enc.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd_enc_1_1.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd_enc.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd_enc.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_40_2_2.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_50.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_52.c
    C xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.h
    C xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.c
    C xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.h
    C xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/README
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_asm.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blt.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blt.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_clear_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_clear_blit.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_context.c
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_context.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_disasm.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_format.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_format.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_pm.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_pm.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rs.c
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_resource.c
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rs.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_screen.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_shader.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_state.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_state.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_surface.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture_state.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture_state.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_tiling.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_translate.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_uniforms.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_util.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler_cmdline.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/Automake.inc
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/cmdstream.xml.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/common.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/common_3d.xml.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/isa.xml.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state_blt.xml.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/texdesc_3d.xml.h
    N xenocara/lib/mesa/src/gallium/drivers/kmsro/Makefile.am
    N xenocara/lib/mesa/src/gallium/drivers/kmsro/Makefile.in
    N xenocara/lib/mesa/src/gallium/drivers/kmsro/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs_exec.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.h
    C xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c
    C xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_main.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_format.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_clear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_draw.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence_work.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence_work.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_loader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/gen_swr_context_llvm.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/swr/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/swr/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/eventmanager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandler.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandlerfile.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/events.proto
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/events_private.proto
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_knobs.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_archrast.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_backends.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_common.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_knobs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_ar_event.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_ar_event.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_ar_eventhandler.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_ar_eventhandlerfile.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_backend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_builder.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_header_init.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_llvm.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_rasterizer.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/intrin.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/isa.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/os.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/os.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets_shared.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simd16intrin.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdintrin.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx2.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx512.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx512_core.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx512_knights.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx2.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx512.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx512_core.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx512_knights.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_core.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_knights.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_masks.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_masks_core.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_masks_knights.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_emu.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_emu_masks.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_interface.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_types.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/arena.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend_clear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend_sample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend_singlesample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend_impl.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/binner.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/binner.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/blend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/conservativeRast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/depthstencil.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/fifo.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_conversion.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_traits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_types.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_utils.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs_init.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa_avx.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer_impl.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/ringbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/state_funcs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tessellator.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tileset.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/utils.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate1.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate3.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer1.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer3.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.cpp
    C xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_math.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_gfx_mem.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_gfx_mem.h
    C xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.cpp
    C xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h
    C xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/jit_api.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/jit_pch.hpp
    C xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
    C xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/JitManager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/gen_state_llvm.h
    C xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/gen_builder.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/gen_builder_meta.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/gen_builder_intrin.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/passes.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/lower_x86.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/shader_lib/DebugOutput.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/ClearTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/Convert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_Linear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileX.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_Linear2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_Linear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileW.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileY2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/tilingtraits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/InitMemory.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/InitMemory.h
    U xenocara/lib/mesa/src/gallium/drivers/tegra/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/tegra/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/tegra/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_context.c
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_context.h
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/tegra/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/tegra/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_blit.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.h
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_formats.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_job.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_blend.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_io.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_txf_ms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_algebraic.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_constant_folding.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_copy_propagation.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_dead_code.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_peephole_sf.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_small_immediates.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_vpm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_coalesce_ff_writes.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_emit_uniform_stream_resets.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_live_variables.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_lower_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_register_allocate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_reorder_uniforms.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.h
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator_validate.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_state.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling_lt.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_uniforms.c
    C xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling_lt_neon.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_drv.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_gem.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_packet.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_render_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/README
    U xenocara/lib/mesa/src/gallium/drivers/v3d/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/v3d/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/v3d/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_bufmgr.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_bufmgr.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_cl.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_context.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_context.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_format_table.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_job.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_program.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_query.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_simulator_wrapper.cpp
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_simulator_wrapper.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_tiling.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_context.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_format_table.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_job.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_rcl.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_state.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/v3d/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_buffer.c
    C xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.c
    C xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.h
    C xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.c
    C xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_protocol.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_public.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_query.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Automake.inc
    C xenocara/lib/mesa/src/loader/Makefile.am
    C xenocara/lib/mesa/src/loader/Makefile.in
    U xenocara/lib/mesa/src/loader/Makefile.sources
    C xenocara/lib/mesa/src/loader/loader.c
    C xenocara/lib/mesa/src/loader/loader.h
    U xenocara/lib/mesa/src/loader/pci_id_driver_map.c
    U xenocara/lib/mesa/src/loader/pci_id_driver_map.h
    C xenocara/lib/mesa/src/loader/loader_dri3_helper.c
    C xenocara/lib/mesa/src/loader/loader_dri3_helper.h
    U xenocara/lib/mesa/src/loader/SConscript
    U xenocara/lib/mesa/src/loader/meson.build
    U xenocara/lib/mesa/docs/ARB_color_buffer_float.txt
    U xenocara/lib/mesa/docs/README.UVD
    U xenocara/lib/mesa/docs/README.VCE
    U xenocara/lib/mesa/docs/README.WIN32
    U xenocara/lib/mesa/docs/VERSIONS
    U xenocara/lib/mesa/docs/application-issues.html
    C xenocara/lib/mesa/docs/autoconf.html
    U xenocara/lib/mesa/docs/bugs.html
    U xenocara/lib/mesa/docs/codingstyle.html
    U xenocara/lib/mesa/docs/conform.html
    U xenocara/lib/mesa/docs/contents.html
    U xenocara/lib/mesa/docs/debugging.html
    U xenocara/lib/mesa/docs/developers.html
    U xenocara/lib/mesa/docs/devinfo.html
    U xenocara/lib/mesa/docs/dispatch.html
    U xenocara/lib/mesa/docs/download.html
    U xenocara/lib/mesa/docs/egl.html
    C xenocara/lib/mesa/docs/envvars.html
    U xenocara/lib/mesa/docs/extensions.html
    U xenocara/lib/mesa/docs/faq.html
    U xenocara/lib/mesa/docs/favicon.ico
    U xenocara/lib/mesa/docs/favicon.png
    C xenocara/lib/mesa/docs/features.txt
    U xenocara/lib/mesa/docs/gears.png
    U xenocara/lib/mesa/docs/helpwanted.html
    C xenocara/lib/mesa/docs/index.html
    C xenocara/lib/mesa/docs/install.html
    U xenocara/lib/mesa/docs/intro.html
    U xenocara/lib/mesa/docs/libGL.txt
    U xenocara/lib/mesa/docs/license.html
    U xenocara/lib/mesa/docs/lists.html
    U xenocara/lib/mesa/docs/llvmpipe.html
    U xenocara/lib/mesa/docs/mangling.html
    U xenocara/lib/mesa/docs/mesa.css
    U xenocara/lib/mesa/docs/meson.html
    U xenocara/lib/mesa/docs/opengles.html
    U xenocara/lib/mesa/docs/osmesa.html
    U xenocara/lib/mesa/docs/perf.html
    U xenocara/lib/mesa/docs/postprocess.html
    U xenocara/lib/mesa/docs/precompiled.html
    C xenocara/lib/mesa/docs/release-calendar.html
    C xenocara/lib/mesa/docs/releasing.html
    C xenocara/lib/mesa/docs/relnotes.html
    U xenocara/lib/mesa/docs/repository.html
    C xenocara/lib/mesa/docs/shading.html
    U xenocara/lib/mesa/docs/sourcedocs.html
    U xenocara/lib/mesa/docs/sourcetree.html
    C xenocara/lib/mesa/docs/submittingpatches.html
    U xenocara/lib/mesa/docs/systems.html
    U xenocara/lib/mesa/docs/thanks.html
    U xenocara/lib/mesa/docs/utilities.html
    U xenocara/lib/mesa/docs/versions.html
    U xenocara/lib/mesa/docs/viewperf.html
    U xenocara/lib/mesa/docs/vmware-guest.html
    U xenocara/lib/mesa/docs/webmaster.html
    U xenocara/lib/mesa/docs/xlibdriver.html
    U xenocara/lib/mesa/docs/specs/EGL_MESA_device_software.txt
    U xenocara/lib/mesa/docs/specs/EGL_MESA_drm_image_formats.txt
    U xenocara/lib/mesa/docs/specs/EGL_MESA_platform_surfaceless.txt
    N xenocara/lib/mesa/docs/specs/EGL_MESA_query_driver.txt
    U xenocara/lib/mesa/docs/specs/EXT_shader_integer_mix.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_samples_identical.txt
    U xenocara/lib/mesa/docs/specs/INTEL_shader_atomic_float_minmax.txt
    U xenocara/lib/mesa/docs/specs/MESA_configless_context.spec
    U xenocara/lib/mesa/docs/specs/MESA_copy_sub_buffer.spec
    U xenocara/lib/mesa/docs/specs/MESA_drm_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_framebuffer_flip_y.txt
    U xenocara/lib/mesa/docs/specs/MESA_image_dma_buf_export.txt
    U xenocara/lib/mesa/docs/specs/MESA_multithread_makecurrent.spec
    U xenocara/lib/mesa/docs/specs/MESA_pack_invert.spec
    U xenocara/lib/mesa/docs/specs/MESA_pixmap_colormap.spec
    U xenocara/lib/mesa/docs/specs/MESA_query_renderer.spec
    U xenocara/lib/mesa/docs/specs/MESA_release_buffers.spec
    U xenocara/lib/mesa/docs/specs/MESA_shader_debug.spec
    U xenocara/lib/mesa/docs/specs/MESA_shader_integer_functions.txt
    U xenocara/lib/mesa/docs/specs/MESA_swap_control.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_frame_usage.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_array.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_signed_rgba.spec
    U xenocara/lib/mesa/docs/specs/MESA_window_pos.spec
    U xenocara/lib/mesa/docs/specs/MESA_ycbcr_texture.spec
    U xenocara/lib/mesa/docs/specs/WL_bind_wayland_display.spec
    U xenocara/lib/mesa/docs/specs/WL_create_wayland_buffer_from_image.spec
    U xenocara/lib/mesa/docs/specs/enums.txt
    U xenocara/lib/mesa/docs/specs/OLD/EGL_MESA_screen_surface.txt
    U xenocara/lib/mesa/docs/specs/OLD/MESA_agp_offset.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_packed_depth_stencil.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_program_debug.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_resize_buffers.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_set_3dfx_mode.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_sprite_point.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_trace.spec
    U xenocara/lib/mesa/docs/relnotes/10.0.1.html
    U xenocara/lib/mesa/docs/relnotes/10.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.0.4.html
    U xenocara/lib/mesa/docs/relnotes/10.0.5.html
    U xenocara/lib/mesa/docs/relnotes/10.0.html
    U xenocara/lib/mesa/docs/relnotes/10.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.1.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.3.html
    U xenocara/lib/mesa/docs/relnotes/10.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.1.5.html
    U xenocara/lib/mesa/docs/relnotes/10.1.6.html
    U xenocara/lib/mesa/docs/relnotes/10.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.3.html
    U xenocara/lib/mesa/docs/relnotes/10.2.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.5.html
    U xenocara/lib/mesa/docs/relnotes/10.2.6.html
    U xenocara/lib/mesa/docs/relnotes/10.2.7.html
    U xenocara/lib/mesa/docs/relnotes/10.2.8.html
    U xenocara/lib/mesa/docs/relnotes/10.2.9.html
    U xenocara/lib/mesa/docs/relnotes/10.2.html
    U xenocara/lib/mesa/docs/relnotes/3.1
    U xenocara/lib/mesa/docs/relnotes/10.3.1.html
    U xenocara/lib/mesa/docs/relnotes/10.3.2.html
    U xenocara/lib/mesa/docs/relnotes/10.3.3.html
    U xenocara/lib/mesa/docs/relnotes/10.3.4.html
    U xenocara/lib/mesa/docs/relnotes/10.3.5.html
    U xenocara/lib/mesa/docs/relnotes/10.3.6.html
    U xenocara/lib/mesa/docs/relnotes/10.3.7.html
    U xenocara/lib/mesa/docs/relnotes/10.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.1.html
    U xenocara/lib/mesa/docs/relnotes/10.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.4.html
    U xenocara/lib/mesa/docs/relnotes/10.4.5.html
    U xenocara/lib/mesa/docs/relnotes/10.4.6.html
    U xenocara/lib/mesa/docs/relnotes/10.4.7.html
    U xenocara/lib/mesa/docs/relnotes/10.4.html
    U xenocara/lib/mesa/docs/relnotes/10.5.0.html
    U xenocara/lib/mesa/docs/relnotes/10.5.1.html
    U xenocara/lib/mesa/docs/relnotes/10.5.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.3.html
    U xenocara/lib/mesa/docs/relnotes/10.5.4.html
    U xenocara/lib/mesa/docs/relnotes/10.5.5.html
    U xenocara/lib/mesa/docs/relnotes/10.5.6.html
    U xenocara/lib/mesa/docs/relnotes/10.5.7.html
    U xenocara/lib/mesa/docs/relnotes/10.5.8.html
    U xenocara/lib/mesa/docs/relnotes/3.2
    U xenocara/lib/mesa/docs/relnotes/10.5.9.html
    U xenocara/lib/mesa/docs/relnotes/10.6.0.html
    U xenocara/lib/mesa/docs/relnotes/10.6.1.html
    U xenocara/lib/mesa/docs/relnotes/10.6.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.3.html
    U xenocara/lib/mesa/docs/relnotes/10.6.4.html
    U xenocara/lib/mesa/docs/relnotes/10.6.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.6.html
    U xenocara/lib/mesa/docs/relnotes/10.6.7.html
    U xenocara/lib/mesa/docs/relnotes/10.6.8.html
    U xenocara/lib/mesa/docs/relnotes/10.6.9.html
    U xenocara/lib/mesa/docs/relnotes/11.0.0.html
    U xenocara/lib/mesa/docs/relnotes/11.0.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.2.html
    U xenocara/lib/mesa/docs/relnotes/11.0.3.html
    U xenocara/lib/mesa/docs/relnotes/11.0.4.html
    U xenocara/lib/mesa/docs/relnotes/11.0.5.html
    U xenocara/lib/mesa/docs/relnotes/11.0.6.html
    U xenocara/lib/mesa/docs/relnotes/11.0.7.html
    U xenocara/lib/mesa/docs/relnotes/11.0.8.html
    U xenocara/lib/mesa/docs/relnotes/11.0.9.html
    U xenocara/lib/mesa/docs/relnotes/11.1.0.html
    U xenocara/lib/mesa/docs/relnotes/11.1.1.html
    U xenocara/lib/mesa/docs/relnotes/11.1.2.html
    U xenocara/lib/mesa/docs/relnotes/11.1.3.html
    U xenocara/lib/mesa/docs/relnotes/3.3
    U xenocara/lib/mesa/docs/relnotes/11.1.4.html
    U xenocara/lib/mesa/docs/relnotes/11.2.0.html
    U xenocara/lib/mesa/docs/relnotes/11.2.1.html
    U xenocara/lib/mesa/docs/relnotes/11.2.2.html
    U xenocara/lib/mesa/docs/relnotes/12.0.0.html
    U xenocara/lib/mesa/docs/relnotes/12.0.1.html
    U xenocara/lib/mesa/docs/relnotes/12.0.2.html
    U xenocara/lib/mesa/docs/relnotes/12.0.3.html
    U xenocara/lib/mesa/docs/relnotes/12.0.4.html
    U xenocara/lib/mesa/docs/relnotes/12.0.5.html
    U xenocara/lib/mesa/docs/relnotes/12.0.6.html
    U xenocara/lib/mesa/docs/relnotes/13.0.0.html
    U xenocara/lib/mesa/docs/relnotes/13.0.1.html
    U xenocara/lib/mesa/docs/relnotes/13.0.2.html
    U xenocara/lib/mesa/docs/relnotes/13.0.3.html
    U xenocara/lib/mesa/docs/relnotes/13.0.4.html
    U xenocara/lib/mesa/docs/relnotes/13.0.5.html
    U xenocara/lib/mesa/docs/relnotes/13.0.6.html
    U xenocara/lib/mesa/docs/relnotes/17.0.0.html
    U xenocara/lib/mesa/docs/relnotes/17.0.1.html
    U xenocara/lib/mesa/docs/relnotes/17.0.2.html
    U xenocara/lib/mesa/docs/relnotes/17.0.3.html
    U xenocara/lib/mesa/docs/relnotes/17.0.4.html
    U xenocara/lib/mesa/docs/relnotes/17.0.5.html
    U xenocara/lib/mesa/docs/relnotes/17.0.6.html
    U xenocara/lib/mesa/docs/relnotes/3.4
    U xenocara/lib/mesa/docs/relnotes/17.0.7.html
    U xenocara/lib/mesa/docs/relnotes/17.1.0.html
    U xenocara/lib/mesa/docs/relnotes/17.1.1.html
    U xenocara/lib/mesa/docs/relnotes/17.1.10.html
    U xenocara/lib/mesa/docs/relnotes/17.1.2.html
    U xenocara/lib/mesa/docs/relnotes/17.1.3.html
    U xenocara/lib/mesa/docs/relnotes/17.1.4.html
    U xenocara/lib/mesa/docs/relnotes/17.1.5.html
    U xenocara/lib/mesa/docs/relnotes/17.1.6.html
    U xenocara/lib/mesa/docs/relnotes/17.1.7.html
    U xenocara/lib/mesa/docs/relnotes/17.1.8.html
    U xenocara/lib/mesa/docs/relnotes/17.1.9.html
    U xenocara/lib/mesa/docs/relnotes/17.2.0.html
    U xenocara/lib/mesa/docs/relnotes/17.2.1.html
    U xenocara/lib/mesa/docs/relnotes/17.2.2.html
    U xenocara/lib/mesa/docs/relnotes/17.2.3.html
    U xenocara/lib/mesa/docs/relnotes/17.2.4.html
    U xenocara/lib/mesa/docs/relnotes/17.2.5.html
    U xenocara/lib/mesa/docs/relnotes/17.2.6.html
    U xenocara/lib/mesa/docs/relnotes/17.2.7.html
    U xenocara/lib/mesa/docs/relnotes/17.2.8.html
    U xenocara/lib/mesa/docs/relnotes/17.3.0.html
    U xenocara/lib/mesa/docs/relnotes/17.3.1.html
    U xenocara/lib/mesa/docs/relnotes/17.3.2.html
    U xenocara/lib/mesa/docs/relnotes/17.3.3.html
    U xenocara/lib/mesa/docs/relnotes/17.3.4.html
    U xenocara/lib/mesa/docs/relnotes/17.3.5.html
    U xenocara/lib/mesa/docs/relnotes/17.3.6.html
    U xenocara/lib/mesa/docs/relnotes/17.3.7.html
    U xenocara/lib/mesa/docs/relnotes/17.3.8.html
    U xenocara/lib/mesa/docs/relnotes/17.3.9.html
    U xenocara/lib/mesa/docs/relnotes/18.0.0.html
    U xenocara/lib/mesa/docs/relnotes/18.0.1.html
    U xenocara/lib/mesa/docs/relnotes/18.0.2.html
    U xenocara/lib/mesa/docs/relnotes/18.0.3.html
    U xenocara/lib/mesa/docs/relnotes/18.0.4.html
    U xenocara/lib/mesa/docs/relnotes/18.0.5.html
    U xenocara/lib/mesa/docs/relnotes/18.1.0.html
    U xenocara/lib/mesa/docs/relnotes/18.1.1.html
    U xenocara/lib/mesa/docs/relnotes/18.1.2.html
    U xenocara/lib/mesa/docs/relnotes/18.1.3.html
    U xenocara/lib/mesa/docs/relnotes/18.1.4.html
    U xenocara/lib/mesa/docs/relnotes/18.1.5.html
    U xenocara/lib/mesa/docs/relnotes/18.1.6.html
    U xenocara/lib/mesa/docs/relnotes/18.1.7.html
    U xenocara/lib/mesa/docs/relnotes/18.1.8.html
    U xenocara/lib/mesa/docs/relnotes/18.1.9.html
    U xenocara/lib/mesa/docs/relnotes/18.2.0.html
    U xenocara/lib/mesa/docs/relnotes/18.2.1.html
    U xenocara/lib/mesa/docs/relnotes/18.2.2.html
    U xenocara/lib/mesa/docs/relnotes/3.5
    U xenocara/lib/mesa/docs/relnotes/18.2.3.html
    U xenocara/lib/mesa/docs/relnotes/18.2.4.html
    N xenocara/lib/mesa/docs/relnotes/18.2.5.html
    N xenocara/lib/mesa/docs/relnotes/18.2.6.html
    N xenocara/lib/mesa/docs/relnotes/18.2.7.html
    N xenocara/lib/mesa/docs/relnotes/18.2.8.html
    U xenocara/lib/mesa/docs/relnotes/18.3.0.html
    U xenocara/lib/mesa/docs/relnotes/18.3.1.html
    U xenocara/lib/mesa/docs/relnotes/18.3.2.html
    N xenocara/lib/mesa/docs/relnotes/19.0.0.html
    N xenocara/lib/mesa/docs/relnotes/19.0.1.html
    N xenocara/lib/mesa/docs/relnotes/19.0.2.html
    N xenocara/lib/mesa/docs/relnotes/19.0.3.html
    N xenocara/lib/mesa/docs/relnotes/19.0.4.html
    N xenocara/lib/mesa/docs/relnotes/19.0.5.html
    U xenocara/lib/mesa/docs/relnotes/3.2.1
    U xenocara/lib/mesa/docs/relnotes/3.4.1
    U xenocara/lib/mesa/docs/relnotes/3.4.2
    U xenocara/lib/mesa/docs/relnotes/4.0
    U xenocara/lib/mesa/docs/relnotes/4.0.1
    U xenocara/lib/mesa/docs/relnotes/4.0.2
    U xenocara/lib/mesa/docs/relnotes/4.0.3
    U xenocara/lib/mesa/docs/relnotes/4.1
    U xenocara/lib/mesa/docs/relnotes/5.0
    U xenocara/lib/mesa/docs/relnotes/5.0.1
    U xenocara/lib/mesa/docs/relnotes/5.0.2
    U xenocara/lib/mesa/docs/relnotes/5.1
    U xenocara/lib/mesa/docs/relnotes/6.0
    U xenocara/lib/mesa/docs/relnotes/6.0.1
    U xenocara/lib/mesa/docs/relnotes/6.1
    U xenocara/lib/mesa/docs/relnotes/6.2
    U xenocara/lib/mesa/docs/relnotes/6.2.1
    U xenocara/lib/mesa/docs/relnotes/6.3
    U xenocara/lib/mesa/docs/relnotes/6.3.1
    U xenocara/lib/mesa/docs/relnotes/6.3.2
    U xenocara/lib/mesa/docs/relnotes/6.4
    U xenocara/lib/mesa/docs/relnotes/6.4.1.html
    U xenocara/lib/mesa/docs/relnotes/6.4.2.html
    U xenocara/lib/mesa/docs/relnotes/6.4.html
    U xenocara/lib/mesa/docs/relnotes/6.5.1.html
    U xenocara/lib/mesa/docs/relnotes/6.5.2.html
    U xenocara/lib/mesa/docs/relnotes/6.5.3.html
    U xenocara/lib/mesa/docs/relnotes/6.5.html
    U xenocara/lib/mesa/docs/relnotes/7.0.1.html
    U xenocara/lib/mesa/docs/relnotes/7.0.2.html
    U xenocara/lib/mesa/docs/relnotes/7.0.3.html
    U xenocara/lib/mesa/docs/relnotes/7.0.4.html
    U xenocara/lib/mesa/docs/relnotes/7.0.html
    U xenocara/lib/mesa/docs/relnotes/7.1.html
    U xenocara/lib/mesa/docs/relnotes/7.10.1.html
    U xenocara/lib/mesa/docs/relnotes/7.10.2.html
    U xenocara/lib/mesa/docs/relnotes/7.10.3.html
    U xenocara/lib/mesa/docs/relnotes/7.10.html
    U xenocara/lib/mesa/docs/relnotes/7.11.1.html
    U xenocara/lib/mesa/docs/relnotes/7.11.2.html
    U xenocara/lib/mesa/docs/relnotes/7.11.html
    U xenocara/lib/mesa/docs/relnotes/7.2.html
    U xenocara/lib/mesa/docs/relnotes/7.3.html
    U xenocara/lib/mesa/docs/relnotes/7.4.1.html
    U xenocara/lib/mesa/docs/relnotes/7.4.2.html
    U xenocara/lib/mesa/docs/relnotes/7.4.3.html
    U xenocara/lib/mesa/docs/relnotes/7.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.4.html
    U xenocara/lib/mesa/docs/relnotes/7.5.1.html
    U xenocara/lib/mesa/docs/relnotes/7.5.2.html
    U xenocara/lib/mesa/docs/relnotes/7.5.html
    U xenocara/lib/mesa/docs/relnotes/7.6.1.html
    U xenocara/lib/mesa/docs/relnotes/7.6.html
    U xenocara/lib/mesa/docs/relnotes/7.7.1.html
    U xenocara/lib/mesa/docs/relnotes/7.7.html
    U xenocara/lib/mesa/docs/relnotes/7.8.1.html
    U xenocara/lib/mesa/docs/relnotes/7.8.2.html
    U xenocara/lib/mesa/docs/relnotes/7.8.3.html
    U xenocara/lib/mesa/docs/relnotes/7.8.html
    U xenocara/lib/mesa/docs/relnotes/7.9.1.html
    U xenocara/lib/mesa/docs/relnotes/7.9.2.html
    U xenocara/lib/mesa/docs/relnotes/7.9.html
    U xenocara/lib/mesa/docs/relnotes/8.0.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.2.html
    U xenocara/lib/mesa/docs/relnotes/8.0.3.html
    U xenocara/lib/mesa/docs/relnotes/8.0.4.html
    U xenocara/lib/mesa/docs/relnotes/8.0.5.html
    U xenocara/lib/mesa/docs/relnotes/8.0.html
    U xenocara/lib/mesa/docs/relnotes/9.0.1.html
    U xenocara/lib/mesa/docs/relnotes/9.0.2.html
    U xenocara/lib/mesa/docs/relnotes/9.0.3.html
    U xenocara/lib/mesa/docs/relnotes/9.0.html
    U xenocara/lib/mesa/docs/relnotes/9.1.1.html
    U xenocara/lib/mesa/docs/relnotes/9.1.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.4.html
    U xenocara/lib/mesa/docs/relnotes/9.1.5.html
    U xenocara/lib/mesa/docs/relnotes/9.1.6.html
    U xenocara/lib/mesa/docs/relnotes/9.1.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.html
    U xenocara/lib/mesa/docs/relnotes/9.2.1.html
    U xenocara/lib/mesa/docs/relnotes/9.2.2.html
    U xenocara/lib/mesa/docs/relnotes/9.2.3.html
    U xenocara/lib/mesa/docs/relnotes/9.2.4.html
    U xenocara/lib/mesa/docs/relnotes/9.2.5.html
    U xenocara/lib/mesa/docs/relnotes/9.2.html
    U xenocara/lib/mesa/doxygen/Makefile
    U xenocara/lib/mesa/doxygen/README
    U xenocara/lib/mesa/doxygen/common.doxy
    U xenocara/lib/mesa/doxygen/core_subset.doxy
    U xenocara/lib/mesa/doxygen/doxy.bat
    U xenocara/lib/mesa/doxygen/gallium.doc
    U xenocara/lib/mesa/doxygen/gallium.doxy
    U xenocara/lib/mesa/doxygen/gbm.doxy
    U xenocara/lib/mesa/doxygen/glapi.doxy
    U xenocara/lib/mesa/doxygen/glsl.doxy
    U xenocara/lib/mesa/doxygen/header.html
    U xenocara/lib/mesa/doxygen/header_subset.html
    U xenocara/lib/mesa/doxygen/i965.doxy
    U xenocara/lib/mesa/doxygen/main.doxy
    U xenocara/lib/mesa/doxygen/math.doxy
    U xenocara/lib/mesa/doxygen/math_subset.doxy
    U xenocara/lib/mesa/doxygen/nir.doxy
    U xenocara/lib/mesa/doxygen/radeon_subset.doxy
    U xenocara/lib/mesa/doxygen/swrast.doxy
    U xenocara/lib/mesa/doxygen/swrast_setup.doxy
    U xenocara/lib/mesa/doxygen/tnl.doxy
    U xenocara/lib/mesa/doxygen/tnl_dd.doxy
    U xenocara/lib/mesa/doxygen/vbo.doxy
    U xenocara/lib/mesa/scons/crossmingw.py
    U xenocara/lib/mesa/scons/custom.py
    U xenocara/lib/mesa/scons/dxsdk.py
    U xenocara/lib/mesa/scons/fixes.py
    U xenocara/lib/mesa/scons/gallium.py
    U xenocara/lib/mesa/scons/llvm.py
    U xenocara/lib/mesa/scons/source_list.py
    U xenocara/lib/mesa/scons/x11.py
    
    768 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jmesa:yesterday -jmesa xenocara/lib/mesa

CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/22 23:33:33

Modified files:
	lib/mesa       : Makefile.am Makefile.bsd-wrapper Makefile.in 
	                 VERSION configure configure.ac 
	lib/mesa/docs  : autoconf.html envvars.html features.txt 
	                 index.html install.html release-calendar.html 
	                 releasing.html relnotes.html shading.html 
	                 submittingpatches.html 
	lib/mesa/include/CL: cl_d3d10.h cl_d3d11.h 
	                     cl_dx9_media_sharing.h cl_ext.h cl_gl_ext.h 
	                     cl_platform.h opencl.h 
	lib/mesa/include/EGL: egl.h eglext.h eglplatform.h 
	lib/mesa/include/GL/internal: dri_interface.h 
	lib/mesa/include/GLES3: gl31.h gl3ext.h 
	lib/mesa/include/KHR: khrplatform.h 
	lib/mesa/include/drm-uapi: drm_fourcc.h 
	lib/mesa/include/vulkan: vulkan.h 
	lib/mesa/src   : Makefile.am Makefile.in 
	lib/mesa/src/amd: Makefile.addrlib.am Makefile.in 
	                  Makefile.sources 
	lib/mesa/src/amd/common: ac_debug.c ac_gpu_info.c 
	                         ac_llvm_build.c ac_llvm_build.h 
	                         ac_llvm_helper.cpp ac_llvm_util.c 
	                         ac_llvm_util.h ac_nir_to_llvm.c 
	                         ac_nir_to_llvm.h ac_surface.c 
	                         ac_surface.h sid.h sid_tables.h 
	                         sid_tables.py 
	lib/mesa/src/amd/vulkan: Makefile.in Makefile.sources 
	                         radv_cmd_buffer.c radv_debug.h 
	                         radv_descriptor_set.c 
	                         radv_descriptor_set.h radv_device.c 
	                         radv_formats.c radv_image.c radv_meta.c 
	                         radv_meta.h radv_meta_buffer.c 
	                         radv_meta_bufimage.c radv_meta_clear.c 
	                         radv_meta_copy.c radv_meta_decompress.c 
	                         radv_meta_fast_clear.c 
	                         radv_meta_resolve.c 
	                         radv_meta_resolve_cs.c radv_pipeline.c 
	                         radv_private.h radv_query.c 
	                         radv_radeon_winsys.h si_cmd_buffer.c 
	                         vk_format_table.py 
	lib/mesa/src/amd/vulkan/winsys/amdgpu: radv_amdgpu_bo.c 
	                                       radv_amdgpu_bo.h 
	                                       radv_amdgpu_cs.c 
	                                       radv_amdgpu_surface.c 
	                                       radv_amdgpu_winsys.c 
	                                       radv_amdgpu_winsys.h 
	                                       radv_amdgpu_winsys_public.h 
	lib/mesa/src/broadcom: Makefile.am Makefile.in Makefile.sources 
	lib/mesa/src/compiler: Makefile.glsl.am Makefile.in 
	                       Makefile.nir.am Makefile.sources 
	                       glsl_types.cpp glsl_types.h nir_types.cpp 
	                       nir_types.h shader_enums.c shader_enums.h 
	                       shader_info.h 
	lib/mesa/src/compiler/glsl: ast.h ast_function.cpp 
	                            ast_to_hir.cpp builtin_functions.cpp 
	                            glsl_lexer.cpp glsl_lexer.ll 
	                            glsl_parser.cpp glsl_parser.h 
	                            glsl_parser.yy 
	                            glsl_parser_extras.cpp 
	                            glsl_parser_extras.h glsl_to_nir.cpp 
	                            ir.cpp ir.h 
	                            ir_builder_print_visitor.cpp 
	                            ir_clone.cpp 
	                            ir_constant_expression.cpp 
	                            ir_function.cpp ir_print_visitor.cpp 
	                            ir_reader.cpp ir_validate.cpp 
	                            link_varyings.cpp linker.cpp 
	                            loop_analysis.h 
	                            lower_if_to_cond_assign.cpp 
	                            opt_constant_propagation.cpp 
	                            opt_copy_propagation_elements.cpp 
	                            opt_function_inlining.cpp 
	                            shader_cache.cpp standalone.cpp 
	                            test_optpass.cpp 
	lib/mesa/src/compiler/glsl/glcpp: glcpp-parse.c 
	lib/mesa/src/compiler/nir: nir.c nir.h nir_algebraic.py 
	                           nir_builder.h nir_builder_opcodes.h 
	                           nir_builder_opcodes_h.py nir_clone.c 
	                           nir_constant_expressions.c 
	                           nir_constant_expressions.py 
	                           nir_control_flow.h nir_from_ssa.c 
	                           nir_gather_info.c 
	                           nir_inline_functions.c 
	                           nir_intrinsics.h nir_loop_analyze.c 
	                           nir_lower_alu_to_scalar.c 
	                           nir_lower_atomics_to_ssbo.c 
	                           nir_lower_clip.c 
	                           nir_lower_clip_cull_distance_arrays.c 
	                           nir_lower_constant_initializers.c 
	                           nir_lower_double_ops.c 
	                           nir_lower_idiv.c 
	                           nir_lower_indirect_derefs.c 
	                           nir_lower_int64.c nir_lower_io.c 
	                           nir_lower_io_to_scalar.c 
	                           nir_lower_io_to_temporaries.c 
	                           nir_lower_load_const_to_scalar.c 
	                           nir_lower_locals_to_regs.c 
	                           nir_lower_returns.c 
	                           nir_lower_system_values.c 
	                           nir_lower_tex.c 
	                           nir_lower_to_source_mods.c 
	                           nir_lower_two_sided_color.c 
	                           nir_lower_var_copies.c 
	                           nir_lower_vars_to_ssa.c 
	                           nir_lower_wpos_center.c nir_opcodes.c 
	                           nir_opcodes.h nir_opcodes.py 
	                           nir_opcodes_c.py nir_opt_algebraic.c 
	                           nir_opt_algebraic.py 
	                           nir_opt_copy_prop_vars.c 
	                           nir_opt_copy_propagate.c 
	                           nir_opt_cse.c nir_opt_dce.c 
	                           nir_opt_gcm.c nir_opt_if.c 
	                           nir_opt_loop_unroll.c 
	                           nir_opt_peephole_select.c 
	                           nir_opt_remove_phis.c 
	                           nir_phi_builder.c nir_print.c 
	                           nir_remove_dead_variables.c 
	                           nir_search.c nir_search.h 
	                           nir_search_helpers.h 
	                           nir_split_var_copies.c nir_sweep.c 
	                           nir_validate.c 
	lib/mesa/src/compiler/spirv: nir_spirv.h spirv.core.grammar.json 
	                             spirv.h spirv_info.c spirv_info.h 
	                             spirv_info_c.py spirv_to_nir.c 
	                             vtn_alu.c vtn_cfg.c vtn_glsl450.c 
	                             vtn_private.h vtn_variables.c 
	lib/mesa/src/egl: Makefile.am Makefile.in g_egldispatchstubs.c 
	                  g_egldispatchstubs.h 
	lib/mesa/src/egl/drivers/dri2: egl_dri2.c egl_dri2.h 
	                               platform_android.c platform_drm.c 
	                               platform_surfaceless.c 
	                               platform_wayland.c 
	lib/mesa/src/egl/generate: egl.xml eglFunctionList.py 
	                           gen_egl_dispatch.py 
	lib/mesa/src/egl/main: eglapi.c eglapi.h eglcontext.c 
	                       eglcurrent.c egldisplay.h eglentrypoint.h 
	                       eglglobals.c eglsurface.c 
	lib/mesa/src/freedreno: Makefile.in 
	lib/mesa/src/gallium: Makefile.am Makefile.in 
	lib/mesa/src/gallium/auxiliary: Makefile.in Makefile.sources 
	lib/mesa/src/gallium/auxiliary/cso_cache: cso_context.c 
	lib/mesa/src/gallium/auxiliary/draw: draw_context.c 
	                                     draw_pipe_stipple.c 
	lib/mesa/src/gallium/auxiliary/gallivm: lp_bld_arit.c 
	                                        lp_bld_format.h 
	                                        lp_bld_format_aos.c 
	                                        lp_bld_intr.c 
	                                        lp_bld_misc.cpp 
	                                        lp_bld_sample_aos.c 
	                                        lp_bld_sample_soa.c 
	                                        lp_bld_tgsi_soa.c 
	lib/mesa/src/gallium/auxiliary/nir: tgsi_to_nir.c 
	lib/mesa/src/gallium/auxiliary/pipe-loader: pipe_loader_drm.c 
	lib/mesa/src/gallium/auxiliary/target-helpers: drm_helper.h 
	                                               drm_helper_public.h 
	lib/mesa/src/gallium/auxiliary/tgsi: tgsi_exec.c tgsi_scan.c 
	                                     tgsi_scan.h tgsi_util.c 
	lib/mesa/src/gallium/auxiliary/util: u_debug_memory.c u_format.c 
	                                     u_format.csv u_format.h 
	                                     u_format_parse.py 
	                                     u_format_table.c 
	                                     u_format_table.py 
	                                     u_helpers.c u_helpers.h 
	                                     u_prim_restart.c u_tests.c 
	lib/mesa/src/gallium/docs/source: context.rst screen.rst 
	                                  tgsi.rst 
	lib/mesa/src/gallium/drivers/etnaviv: etnaviv_blend.c 
	                                      etnaviv_compiler.c 
	                                      etnaviv_context.c 
	                                      etnaviv_context.h 
	                                      etnaviv_resource.c 
	                                      etnaviv_resource.h 
	                                      etnaviv_screen.c 
	                                      etnaviv_shader.c 
	                                      etnaviv_state.c 
	                                      etnaviv_texture.c 
	                                      etnaviv_transfer.c 
	lib/mesa/src/gallium/drivers/etnaviv/hw: cmdstream.xml.h 
	                                         common.xml.h isa.xml.h 
	                                         state.xml.h 
	                                         state_3d.xml.h 
	lib/mesa/src/gallium/drivers/freedreno: Makefile.am Makefile.in 
	                                        Makefile.sources 
	                                        disasm.h 
	                                        freedreno_batch.c 
	                                        freedreno_batch.h 
	                                        freedreno_batch_cache.c 
	                                        freedreno_context.c 
	                                        freedreno_context.h 
	                                        freedreno_draw.c 
	                                        freedreno_draw.h 
	                                        freedreno_gmem.c 
	                                        freedreno_gmem.h 
	                                        freedreno_program.c 
	                                        freedreno_resource.c 
	                                        freedreno_resource.h 
	                                        freedreno_screen.c 
	                                        freedreno_screen.h 
	                                        freedreno_state.c 
	                                        freedreno_util.h 
	lib/mesa/src/gallium/drivers/freedreno/a2xx: disasm-a2xx.c 
	                                             fd2_draw.c 
	                                             fd2_emit.c 
	                                             fd2_emit.h 
	                                             fd2_program.c 
	                                             fd2_texture.c 
	lib/mesa/src/gallium/drivers/freedreno/a3xx: fd3_context.c 
	                                             fd3_emit.c 
	                                             fd3_emit.h 
	                                             fd3_gmem.c 
	                                             fd3_program.c 
	lib/mesa/src/gallium/drivers/freedreno/a4xx: fd4_context.c 
	                                             fd4_emit.c 
	                                             fd4_emit.h 
	                                             fd4_gmem.c 
	                                             fd4_program.c 
	lib/mesa/src/gallium/drivers/freedreno/a5xx: fd5_context.c 
	                                             fd5_context.h 
	                                             fd5_emit.c 
	                                             fd5_emit.h 
	                                             fd5_gmem.c 
	                                             fd5_program.c 
	                                             fd5_program.h 
	                                             fd5_screen.c 
	lib/mesa/src/gallium/drivers/freedreno/ir3: ir3_cmdline.c 
	lib/mesa/src/gallium/drivers/i915: i915_screen.c 
	lib/mesa/src/gallium/drivers/kmsro: Makefile.in 
	lib/mesa/src/gallium/drivers/llvmpipe: lp_screen.c 
	lib/mesa/src/gallium/drivers/nouveau: nouveau_screen.h 
	lib/mesa/src/gallium/drivers/nouveau/codegen: nv50_ir.cpp 
	                                              nv50_ir.h 
	                                              nv50_ir_emit_gm107.cpp 
	                                              nv50_ir_from_tgsi.cpp 
	                                              nv50_ir_lowering_nvc0.cpp 
	                                              nv50_ir_lowering_nvc0.h 
	                                              nv50_ir_peephole.cpp 
	                                              nv50_ir_print.cpp 
	                                              nv50_ir_ra.cpp 
	                                              nv50_ir_target.cpp 
	lib/mesa/src/gallium/drivers/nouveau/codegen/lib: gm107.asm 
	                                                  gm107.asm.h 
	lib/mesa/src/gallium/drivers/nouveau/nv30: nv30_context.c 
	                                           nv30_screen.c 
	lib/mesa/src/gallium/drivers/nouveau/nv50: nv50_context.c 
	                                           nv50_context.h 
	                                           nv50_query.c 
	                                           nv50_screen.c 
	                                           nv50_state.c 
	lib/mesa/src/gallium/drivers/nouveau/nvc0: nvc0_context.c 
	                                           nvc0_context.h 
	                                           nvc0_program.c 
	                                           nvc0_query.c 
	                                           nvc0_query_hw.c 
	                                           nvc0_screen.c 
	                                           nvc0_screen.h 
	                                           nvc0_state.c 
	                                           nvc0_state_validate.c 
	                                           nvc0_surface.c 
	                                           nvc0_vbo.c 
	                                           nvc0_vbo_translate.c 
	                                           nve4_compute.c 
	lib/mesa/src/gallium/drivers/r300: r300_context.c r300_screen.c 
	                                   r300_texture.c 
	lib/mesa/src/gallium/drivers/r600: evergreen_compute.c 
	                                   r600_asm.c r600_pipe.c 
	                                   r600_shader.c r600_state.c 
	                                   r600_state_common.c 
	lib/mesa/src/gallium/drivers/r600/sb: sb_ir.h 
	lib/mesa/src/gallium/drivers/radeon: radeon_uvd.c radeon_vce.c 
	                                     radeon_vcn_dec.c 
	                                     radeon_video.c 
	                                     radeon_video.h 
	                                     radeon_winsys.h 
	lib/mesa/src/gallium/drivers/radeonsi: Makefile.in 
	                                       Makefile.sources 
	                                       cik_sdma.c si_blit.c 
	                                       si_compute.c si_cp_dma.c 
	                                       si_debug.c 
	                                       si_descriptors.c si_dma.c 
	                                       si_perfcounter.c 
	                                       si_pipe.c si_pipe.h 
	                                       si_pm4.c si_pm4.h 
	                                       si_shader.c si_shader.h 
	                                       si_shader_tgsi_alu.c 
	                                       si_shader_tgsi_mem.c 
	                                       si_state.c si_state.h 
	                                       si_state_draw.c 
	                                       si_state_shaders.c 
	lib/mesa/src/gallium/drivers/softpipe: sp_screen.c 
	lib/mesa/src/gallium/drivers/svga: Makefile.in Makefile.sources 
	                                   svga_cmd.c svga_format.c 
	                                   svga_screen.c svga_winsys.h 
	lib/mesa/src/gallium/drivers/swr: swr_screen.cpp 
	lib/mesa/src/gallium/drivers/swr/rasterizer/jitter: 
	                                                    JitManager.cpp 
	                                                    JitManager.h 
	                                                    builder.h 
	                                                    builder_misc.cpp 
	                                                    builder_misc.h 
	                                                    fetch_jit.cpp 
	                                                    gen_builder.hpp 
	lib/mesa/src/gallium/drivers/vc4: vc4_bufmgr.c vc4_bufmgr.h 
	                                  vc4_context.c vc4_context.h 
	                                  vc4_job.c 
	                                  vc4_nir_lower_blend.c 
	                                  vc4_nir_lower_io.c 
	                                  vc4_program.c vc4_resource.c 
	                                  vc4_screen.c vc4_simulator.c 
	                                  vc4_simulator_validate.h 
	                                  vc4_tiling_lt.c 
	                                  vc4_tiling_lt_neon.c 
	lib/mesa/src/gallium/drivers/virgl: virgl_context.c 
	                                    virgl_context.h 
	                                    virgl_encode.c 
	                                    virgl_encode.h 
	                                    virgl_screen.c 
	lib/mesa/src/gallium/include/pipe: p_context.h p_defines.h 
	                                   p_format.h p_shader_tokens.h 
	                                   p_state.h 
	lib/mesa/src/gallium/state_trackers/dri: dri2.c dri_drawable.c 
	                                         dri_screen.h 
	lib/mesa/src/gallium/state_trackers/nine: basetexture9.c 
	                                          basetexture9.h 
	                                          nine_debug.c 
	                                          nine_debug.h nine_ff.c 
	                                          nine_queue.c 
	                                          nine_state.c 
	                                          surface9.c surface9.h 
	                                          swapchain9.c 
	                                          swapchain9.h volume9.c 
	lib/mesa/src/gallium/state_trackers/va: picture_mpeg12.c 
	                                        surface.c 
	lib/mesa/src/gallium/state_trackers/xa: xa_context.c xa_tgsi.c 
	                                        xa_tracker.c 
	lib/mesa/src/gallium/targets/d3dadapter9: drm.c 
	lib/mesa/src/gallium/targets/dri: Makefile.am Makefile.in 
	                                  target.c 
	lib/mesa/src/gallium/targets/pipe-loader: Makefile.am 
	                                          Makefile.in pipe_msm.c 
	lib/mesa/src/gallium/targets/xa: Makefile.in 
	lib/mesa/src/gallium/tests/trivial: compute.c 
	lib/mesa/src/gallium/tests/unit: u_format_test.c 
	lib/mesa/src/gallium/winsys/amdgpu/drm: Makefile.am Makefile.in 
	                                        amdgpu_bo.c amdgpu_bo.h 
	                                        amdgpu_cs.c amdgpu_cs.h 
	                                        amdgpu_winsys.c 
	                                        amdgpu_winsys.h 
	lib/mesa/src/gallium/winsys/freedreno/drm: Makefile.in 
	                                           freedreno_drm_winsys.c 
	lib/mesa/src/gallium/winsys/kmsro/drm: Makefile.in 
	lib/mesa/src/gallium/winsys/radeon/drm: radeon_drm_bo.c 
	                                        radeon_drm_cs.c 
	                                        radeon_drm_winsys.c 
	lib/mesa/src/gallium/winsys/svga/drm: Makefile.in 
	                                      vmw_screen_svga.c 
	lib/mesa/src/gallium/winsys/virgl/drm: virgl_drm_winsys.c 
	                                       virgl_drm_winsys.h 
	lib/mesa/src/gallium/winsys/virgl/vtest: virgl_vtest_winsys.c 
	lib/mesa/src/gbm: Makefile.am Makefile.in gbm-symbols-check 
	lib/mesa/src/gbm/backends/dri: gbm_dri.c 
	lib/mesa/src/gbm/main: gbm.c gbm.h gbmint.h 
	lib/mesa/src/getopt: getopt.h getopt_long.c 
	lib/mesa/src/glx: Makefile.am Makefile.in SConscript dri2_glx.c 
	                  dri3_glx.c dri3_priv.h dri_common.c dri_glx.c 
	                  drisw_glx.c glxcmds.c 
	lib/mesa/src/intel: Makefile.in Makefile.isl.am Makefile.sources 
	                    Makefile.vulkan.am 
	lib/mesa/src/intel/blorp: blorp.c blorp.h blorp_blit.c 
	                          blorp_clear.c blorp_genX_exec.h 
	                          blorp_priv.h 
	lib/mesa/src/intel/common: gen_decoder.c gen_decoder.h 
	                           gen_l3_config.c gen_urb_config.c 
	lib/mesa/src/intel/compiler: brw_compiler.c brw_compiler.h 
	                             brw_disasm.c brw_eu.h 
	                             brw_eu_defines.h brw_eu_emit.c 
	                             brw_eu_validate.c brw_fs.cpp 
	                             brw_fs.h brw_fs_builder.h 
	                             brw_fs_cmod_propagation.cpp 
	                             brw_fs_combine_constants.cpp 
	                             brw_fs_cse.cpp brw_fs_generator.cpp 
	                             brw_fs_nir.cpp 
	                             brw_fs_reg_allocate.cpp 
	                             brw_fs_register_coalesce.cpp 
	                             brw_fs_sel_peephole.cpp brw_inst.h 
	                             brw_ir_allocator.h brw_ir_fs.h 
	                             brw_nir.c brw_nir.h 
	                             brw_nir_analyze_boolean_resolves.c 
	                             brw_nir_analyze_ubo_ranges.c 
	                             brw_nir_trig_workarounds.c 
	                             brw_reg.h 
	                             brw_schedule_instructions.cpp 
	                             brw_shader.cpp brw_shader.h 
	                             brw_vec4.cpp brw_vec4.h 
	                             brw_vec4_cmod_propagation.cpp 
	                             brw_vec4_generator.cpp 
	                             brw_vec4_gs_nir.cpp 
	                             brw_vec4_gs_visitor.cpp 
	                             brw_vec4_nir.cpp 
	                             brw_vec4_reg_allocate.cpp 
	                             brw_vec4_tcs.cpp 
	                             brw_vec4_visitor.cpp 
	                             gen6_gs_visitor.cpp 
	                             test_fs_cmod_propagation.cpp 
	                             test_vec4_cmod_propagation.cpp 
	                             test_vec4_copy_propagation.cpp 
	                             test_vec4_register_coalesce.cpp 
	lib/mesa/src/intel/genxml: gen10.xml gen10_pack.h gen4.xml 
	                           gen45.xml gen5.xml gen6.xml 
	                           gen6_pack.h gen7.xml gen75.xml 
	                           gen75_pack.h gen7_pack.h gen8.xml 
	                           gen8_pack.h gen9.xml gen9_pack.h 
	                           genX_bits.h genX_xml.h 
	lib/mesa/src/intel/isl: isl.c isl.h isl_emit_depth_stencil.c 
	                        isl_format_layout.c 
	                        isl_format_layout.csv isl_priv.h 
	lib/mesa/src/intel/tools: aub_mem.c aubinator.c 
	                          aubinator_error_decode.c 
	lib/mesa/src/intel/vulkan: anv_allocator.c anv_batch_chain.c 
	                           anv_blorp.c anv_cmd_buffer.c 
	                           anv_descriptor_set.c anv_device.c 
	                           anv_entrypoints.c anv_entrypoints.h 
	                           anv_formats.c anv_genX.h anv_image.c 
	                           anv_intel.c 
	                           anv_nir_apply_pipeline_layout.c 
	                           anv_nir_lower_input_attachments.c 
	                           anv_nir_lower_multiview.c anv_pass.c 
	                           anv_pipeline.c anv_pipeline_cache.c 
	                           anv_private.h anv_queue.c 
	                           gen7_cmd_buffer.c gen8_cmd_buffer.c 
	                           genX_blorp_exec.c genX_cmd_buffer.c 
	                           genX_gpu_memcpy.c genX_pipeline.c 
	                           genX_query.c genX_state.c 
	                           vk_format_info.h 
	lib/mesa/src/intel/vulkan/tests: block_pool_no_free.c 
	lib/mesa/src/loader: Makefile.am Makefile.in loader.c loader.h 
	                     loader_dri3_helper.c loader_dri3_helper.h 
	lib/mesa/src/mapi: Makefile.am Makefile.in mapi_abi.py 
	lib/mesa/src/mapi/es1api: ABI-check glapi_mapi_tmp.h 
	lib/mesa/src/mapi/es2api: ABI-check glapi_mapi_tmp.h 
	lib/mesa/src/mapi/glapi: glapi_gentable.c glapi_mapi_tmp.h 
	                         glapi_sparc.S glapi_x86-64.S 
	                         glapi_x86.S glapitable.h glapitemp.h 
	                         glprocs.h 
	lib/mesa/src/mapi/glapi/gen: ARB_framebuffer_object.xml 
	                             Makefile.am Makefile.in es_EXT.xml 
	                             gl_API.xml gl_XML.py gl_marshal.py 
	                             static_data.py 
	lib/mesa/src/mapi/shared-glapi: SConscript glapi_mapi_tmp.h 
	lib/mesa/src/mesa/drivers/common: meta.c 
	lib/mesa/src/mesa/drivers/dri/i915: intel_context.c 
	                                    intel_context.h 
	                                    intel_screen.c 
	lib/mesa/src/mesa/drivers/dri/i965: Makefile.am Makefile.in 
	                                    Makefile.sources brw_blorp.c 
	                                    brw_bufmgr.c brw_compute.c 
	                                    brw_conditional_render.c 
	                                    brw_context.c brw_context.h 
	                                    brw_cs.c brw_defines.h 
	                                    brw_draw.c brw_draw_upload.c 
	                                    brw_gs.c brw_link.cpp 
	                                    brw_nir_uniforms.cpp 
	                                    brw_pipe_control.c 
	                                    brw_program.c brw_state.h 
	                                    brw_state_upload.c 
	                                    brw_surface_formats.c 
	                                    brw_tcs.c brw_tes.c brw_vs.c 
	                                    brw_wm.c 
	                                    brw_wm_surface_state.c 
	                                    gen7_l3_state.c 
	                                    genX_blorp_exec.c 
	                                    genX_state_upload.c 
	                                    hsw_queryobj.c 
	                                    intel_batchbuffer.c 
	                                    intel_buffer_objects.c 
	                                    intel_extensions.c 
	                                    intel_fbo.c intel_image.h 
	                                    intel_mipmap_tree.c 
	                                    intel_mipmap_tree.h 
	                                    intel_pixel_read.c 
	                                    intel_screen.c 
	                                    intel_tex_image.c 
	lib/mesa/src/mesa/drivers/dri/nouveau: nouveau_vbo_t.c 
	lib/mesa/src/mesa/main: api_arrayelt.c api_exec.c arrayobj.c 
	                        arrayobj.h attrib.c context.c context.h 
	                        dd.h dispatch.h dlist.c enable.c 
	                        errors.c extensions_table.h fbobject.c 
	                        fbobject.h format_fallback.c 
	                        format_info.h formatquery.c formats.c 
	                        formats.h framebuffer.c get.c get_hash.h 
	                        get_hash_generator.py get_hash_params.py 
	                        glformats.c glformats.h glthread.c 
	                        glthread.h marshal.c marshal_generated.c 
	                        marshal_generated.h mtypes.h queryobj.c 
	                        remap_helper.h shaderobj.h texcompress.c 
	                        teximage.c varray.c varray.h version.c 
	lib/mesa/src/mesa/main/tests: dispatch_sanity.cpp 
	lib/mesa/src/mesa/program: prog_to_nir.c program_parse.tab.c 
	lib/mesa/src/mesa/state_tracker: st_atom.h st_atom_array.c 
	                                 st_atom_blend.c st_cb_bitmap.c 
	                                 st_cb_clear.c 
	                                 st_cb_drawpixels.c 
	                                 st_cb_eglimage.c st_cb_fbo.c 
	                                 st_cb_fbo.h st_cb_queryobj.c 
	                                 st_cb_rasterpos.c 
	                                 st_cb_texture.c st_context.c 
	                                 st_context.h st_draw.c 
	                                 st_draw_feedback.c 
	                                 st_extensions.c st_format.c 
	                                 st_glsl_to_nir.cpp 
	                                 st_glsl_to_tgsi.cpp 
	                                 st_glsl_to_tgsi.h st_manager.c 
	                                 st_manager.h st_program.c 
	                                 st_tgsi_lower_yuv.c 
	lib/mesa/src/mesa/tnl: t_draw.c 
	lib/mesa/src/mesa/vbo: vbo_context.c vbo_exec_api.c 
	                       vbo_exec_draw.c vbo_save_api.c 
	                       vbo_save_draw.c vbo_save_loopback.c 
	lib/mesa/src/util: Makefile.in Makefile.sources hash_table.c 
	                   hash_table.h ralloc.c set.c slab.c 
	                   u_cpu_detect.c 
	lib/mesa/src/vulkan/registry: vk.xml 
	lib/mesa/src/vulkan/util: gen_enum_to_str.py vk_enum_to_str.c 
	                          vk_enum_to_str.h vk_util.c 
	lib/mesa/src/vulkan/wsi: wsi_common_wayland.c wsi_common_x11.c 
Removed files:
	lib/mesa/docs/relnotes: 18.3.3.html 18.3.4.html 18.3.5.html 
	lib/mesa/include/vulkan: vulkan_mir.h 
	lib/mesa/src/amd/addrlib: addrinterface.cpp addrinterface.h 
	                          addrtypes.h amdgpu_asic_addr.h 
	lib/mesa/src/amd/addrlib/core: addrcommon.h addrelemlib.cpp 
	                               addrelemlib.h addrlib.cpp 
	                               addrlib.h addrlib1.cpp addrlib1.h 
	                               addrlib2.cpp addrlib2.h 
	                               addrobject.cpp addrobject.h 
	lib/mesa/src/amd/addrlib/gfx9: coord.cpp coord.h gfx9addrlib.cpp 
	                               gfx9addrlib.h 
	lib/mesa/src/amd/addrlib/gfx9/chip: gfx9_enum.h 
	lib/mesa/src/amd/addrlib/inc/chip/gfx9: gfx9_gb_reg.h 
	lib/mesa/src/amd/addrlib/inc/chip/r800: si_gb_reg.h 
	lib/mesa/src/amd/addrlib/r800: ciaddrlib.cpp ciaddrlib.h 
	                               egbaddrlib.cpp egbaddrlib.h 
	                               siaddrlib.cpp siaddrlib.h 
	lib/mesa/src/amd/addrlib/r800/chip: si_ci_vi_merged_enum.h 
	lib/mesa/src/egl/generate: genCommon.py 
	lib/mesa/src/gallium/auxiliary/gallivm: lp_bld_format_cached.c 
	lib/mesa/src/gallium/auxiliary/os: os_memory.h 
	                                   os_memory_aligned.h 
	                                   os_memory_debug.h 
	                                   os_memory_stdc.h 
	lib/mesa/src/gallium/auxiliary/util: u_memory.h 
	lib/mesa/src/gallium/drivers/freedreno: adreno_common.xml.h 
	                                        adreno_pm4.xml.h 
	lib/mesa/src/gallium/drivers/freedreno/a2xx: a2xx.xml.h 
	                                             fd2_compiler.c 
	                                             fd2_compiler.h 
	                                             ir-a2xx.c ir-a2xx.h 
	lib/mesa/src/gallium/drivers/freedreno/a3xx: a3xx.xml.h 
	lib/mesa/src/gallium/drivers/freedreno/a4xx: a4xx.xml.h 
	lib/mesa/src/gallium/drivers/freedreno/a5xx: a5xx.xml.h 
	lib/mesa/src/gallium/drivers/freedreno/a6xx: a6xx.xml.h 
	lib/mesa/src/gallium/drivers/freedreno/drm: freedreno_bo.c 
	                                            freedreno_bo_cache.c 
	                                            freedreno_device.c 
	                                            freedreno_drmif.h 
	                                            freedreno_pipe.c 
	                                            freedreno_priv.h 
	                                            freedreno_ringbuffer.c 
	                                            freedreno_ringbuffer.h 
	                                            msm_bo.c 
	                                            msm_device.c 
	                                            msm_drm.h msm_pipe.c 
	                                            msm_priv.h 
	                                            msm_ringbuffer.c 
	                                            msm_ringbuffer_sp.c 
	lib/mesa/src/gallium/drivers/freedreno/ir3: disasm-a3xx.c 
	                                            instr-a3xx.h ir3.c 
	                                            ir3.h ir3_compiler.c 
	                                            ir3_compiler.h 
	                                            ir3_compiler_nir.c 
	                                            ir3_cp.c ir3_depth.c 
	                                            ir3_group.c 
	                                            ir3_legalize.c 
	                                            ir3_nir.c ir3_nir.h 
	                                            ir3_nir_lower_tg4_to_tex.c 
	                                            ir3_nir_trig.c 
	                                            ir3_nir_trig.py 
	                                            ir3_print.c ir3_ra.c 
	                                            ir3_sched.c 
	                                            ir3_shader.c 
	                                            ir3_shader.h 
	lib/mesa/src/gallium/drivers/imx: Automake.inc Makefile.am 
	                                  Makefile.in 
	lib/mesa/src/gallium/drivers/pl111: Automake.inc Makefile.am 
	                                    Makefile.in 
	lib/mesa/src/gallium/drivers/radeon: r600_perfcounter.c 
	lib/mesa/src/gallium/drivers/svga: svga_msg.c svga_msg.h 
	lib/mesa/src/gallium/winsys/imx/drm: Makefile.am Makefile.in 
	                                     Makefile.sources 
	                                     imx_drm_public.h 
	                                     imx_drm_winsys.c 
	                                     meson.build 
	lib/mesa/src/gallium/winsys/pl111/drm: Makefile.am Makefile.in 
	                                       Makefile.sources 
	                                       meson.build 
	                                       pl111_drm_public.h 
	                                       pl111_drm_winsys.c 
	lib/mesa/src/intel/compiler: brw_fs_lower_conversions.cpp 
	lib/mesa/src/mesa/drivers/dri/i965: intel_tiled_memcpy.c 
	                                    intel_tiled_memcpy.h 
	                                    intel_tiled_memcpy_normal.c 
	                                    intel_tiled_memcpy_sse41.c 
	                                    intel_tiled_memcpy_sse41.h 

Log message:
Merge Mesa 19.0.5


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/22 23:35:38

Modified files:
	distrib/sets/lists/xbase: md.alpha md.amd64 md.arm64 md.armv7 
	                          md.hppa md.i386 md.landisk md.loongson 
	                          md.macppc md.octeon md.sgi md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/22 23:38:00

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/23 00:43:18

Modified files:
	lib/libc/stdlib: malloc.c 

Log message:
Only override size of chunk if we're not given the actual length.
Fixes malloc_conceal...freezero with malloc options C and/or G.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/23 00:50:19

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/pkg   : PLIST 

Log message:
Update to QGIS 3.6.3.

note that some features are broken since the update to proj 6, as
upstream QGIS only plans full support in 3.8 due in a month, but failed
to properly state so and prevent building against proj 6.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/23 00:51:36

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Inline 18 bytes of packet header so we can send vlan tagged packets.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/23 00:52:13

Modified files:
	regress/lib/libc/malloc/malloc_general: malloc_general.c 

Log message:
Throw malloc_conceal and freezero into the mix.


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/23 01:18:47

Modified files:
	.              : index.html openbsd.css 
	libressl       : index.html openbsd.css 
	openbgpd       : index.html openbsd.css 
	opencvs        : index.html openbsd.css 
	openntpd       : index.html openbsd.css 
	openrsync      : index.html 
	opensmtpd      : index.html openbsd.css 
	openssh        : index.html openbsd.css 
Added files:
	openrsync      : openbsd.css 

Log message:
Unify and simplify project homepages, pruning back the big HTML tangle.

ok tj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/23 02:48:06

Modified files:
	x11/gnome/mutter: Makefile distinfo 
Removed files:
	x11/gnome/mutter/patches: 
	                          patch-clutter_clutter_x11_clutter-backend-x11_c 
	                          patch-clutter_clutter_x11_clutter-xkb-a11y-x11_c 
	                          patch-src_backends_meta-idle-monitor_c 
	                          patch-src_backends_meta-input-mapper_c 
	                          patch-src_backends_meta-input-settings_c 
	                          patch-src_compositor_compositor-private_h 
	                          patch-src_compositor_compositor_c 
	                          patch-src_core_meta-launch-context_c 

Log message:
Update to mutter-3.32.2.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/23 02:48:23

Modified files:
	x11/gnome/shell: Makefile distinfo 
	x11/gnome/shell/pkg: PLIST 
Removed files:
	x11/gnome/shell/patches: patch-js_ui_dateMenu_js 
	                         patch-js_ui_dialog_js 
	                         patch-js_ui_padOsd_js 
	                         patch-js_ui_panel_js 
	                         patch-js_ui_status_network_js 
	                         patch-js_ui_workspacesView_js 
	                         patch-src_shell-app_c 

Log message:
Update to gnome-shell-3.32.2.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/23 02:49:48

Modified files:
	devel/libnfs   : Makefile distinfo 
	devel/libnfs/patches: patch-include_nfsc_libnfs_h 
	                      patch-lib_socket_c 

Log message:
Update to libnfs-4.0.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/23 02:50:29

Modified files:
	devel/libiscsi : Makefile distinfo 
Removed files:
	devel/libiscsi/patches: patch-lib_socket_c 

Log message:
Update to libiscsi-1.18.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/23 02:51:21

Modified files:
	graphics/ffmpeg: Makefile 
	graphics/ffmpeg/patches: patch-libavcodec_libdav1d_c 
Added files:
	graphics/ffmpeg/patches: patch-doc_decoders_texi 

Log message:
- avcodec/libdav1d: fine tune thread distribution
- doc: add basic documentation for libdav1d

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/23 02:52:16

Modified files:
	x11/mplayer    : Makefile distinfo 
	x11/mplayer/patches: patch-configure 

Log message:
Update to mplayer 20190520.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/23 03:19:41

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_bo_list.c amdgpu_cs.c 

Log message:
drop STUB() calls in paths frequently called when running xorg


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/23 03:37:30

Modified files:
	editors/uemacs : Makefile 
	editors/uemacs/patches: patch-src_unix_c 

Log message:
fix for 32-bit arches with 64-bit time_t; from Jens Johansson
update license information/PERMIT_* text


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/23 04:38:45

Modified files:
	x11/kde-applications/kspaceduel: Makefile 

Log message:
no idea how my previous build work.
Being called "kspaceduel" and building a second "kshisen" doesn't work
all that great.

mark BROKEN until rsadowski fishes out the right one


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/23 04:39:13

Modified files:
	x11/kde-applications/kshisen: Makefile 

Log message:
bump to get past the kshisen/kspaceduel mix-up


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/23 05:01:14

Modified files:
	sysutils/sleuthkit: Makefile 
Added files:
	sysutils/sleuthkit/patches: patch-configure_ac 

Log message:
Do not link explicitly with libstdc++, which doesn't exist on all archs
and isn't required.
While here, use the standard COMPILER setting.
ok nigel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/23 05:02:39

Modified files:
	productivity/aqbanking: Makefile 
Added files:
	productivity/aqbanking/patches: 
	                                patch-src_plugins_backends_aqhbci_tools_aqhbci-tool_Makefile_in 
	                                patch-src_plugins_backends_aqhbci_tools_hbcixml_Makefile_in 
	                                patch-src_tools_aqbanking-cli_Makefile_in 

Log message:
do not link explicitly with libstdc++


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/23 05:13:30

Modified files:
	usr.bin/tmux   : Makefile cfg.c cmd-command-prompt.c 
	                 cmd-confirm-before.c cmd-display-panes.c 
	                 cmd-if-shell.c cmd-list.c cmd-queue.c 
	                 cmd-source-file.c cmd.c control.c 
	                 key-bindings.c menu.c mode-tree.c options.c 
	                 tmux.1 tmux.h 
Added files:
	usr.bin/tmux   : cmd-parse.y 
Removed files:
	usr.bin/tmux   : cmd-string.c 

Log message:
Replace the split parser code (cfg.c and cmd-string.c) with a single
parser using yacc(1). This is a major change but is clearer and simpler
and allows some edge cases to be made more consistent, as well as
tidying up how aliases are handled. It will also allow some further
improvements later.

Entirely the same parser is now used for parsing the configuration file
and for string commands. This means that constructs previously only
available in .tmux.conf, such as %if, can now be used in string commands
(for example, those given to if-shell - not commands invoked from the
shell, they are still parsed by the shell itself).

The only syntax change I am aware of is that #{} outside quotes or a
comment is now considered a format and not a comment, so #{ is now a
syntax error (notably, if it is at the start of a line).

This also adds two new sections to the man page documenting the syntax
and outlining how parsing and command execution works.

Thanks to everyone who sent me test configs (they still all parse
without errors - but this doesn't mean they still work as intended!).

Thanks to Avi Halachmi for testing and man page improvements, also to
jmc@ for reviewing the man page changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/23 06:02:43

Modified files:
	www/mozilla-firefox: Tag: OPENBSD_6_5 Makefile distinfo 
Added files:
	www/mozilla-firefox/patches: Tag: OPENBSD_6_5 
	                             patch-storage_mozStorageService_cpp 
Removed files:
	www/mozilla-firefox/patches: Tag: OPENBSD_6_5 
	                             patch-config_rules_mk 

Log message:
MFC: update to firefox 67.0.

Cf https://www.mozilla.org/en-US/firefox/67.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-13/

6.5-stable amd64 & i386 pkgs at the usual location.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/23 06:05:15

Modified files:
	devel/cbindgen : Makefile distinfo 

Log message:
Update to cbindgen 0.8.7.

Required to build upcoming gecko 68 per
https://bugzilla.mozilla.org/show_bug.cgi?id=1529002


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/23 06:47:53

Modified files:
	usr.bin/tmux   : status.c 

Log message:
Fix length calculation for pasting UTF-8 characters in the status line,
GitHub issue 1753.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/23 07:08:43

Modified files:
	usr.bin/tmux   : cmd-queue.c 

Log message:
Don't remove group items for group 0 (no group).


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/05/23 07:11:37

Modified files:
	usr.sbin/unbound/smallapp: unbound-checkconf.c 

Log message:
unbound-checkconf pledges "stdio rpath getpw", later narrowing to "stdio rpath".
(File access is needed through the course of a run depending on which options
are configured - e.g. for DNSSEC root keys, hints and zone files).

Based on a diff from, and ok with, mestre@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/23 07:17:13

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-3.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/05/23 07:27:41

Modified files:
	net/powerdns_recursor: Makefile distinfo 

Log message:
Update powerdns_recursor to 4.1.13


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/23 07:41:53

Modified files:
	sys/arch/arm64/dev: mainbus.c 

Log message:
Don't print "not conigured" messages for nodes that are disabled.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/23 08:03:44

Modified files:
	usr.bin/tmux   : arguments.c cmd-list-keys.c cmd-list.c 
	                 cmd-parse.y options.c tmux.h utf8.c 

Log message:
Break the argument escaping code into a separate function and use it to
escape key bindings in list-keys. Also escape ~ and ; and $ properly.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/23 08:10:05

Modified files:
	usr.sbin/bgpd  : bgpd.h 

Log message:
Add F_CTL_NEIGHBORS a flag only used in bgpctl's mrt parsing code.
OK sthen@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/23 08:12:06

Modified files:
	usr.sbin/bgpctl: bgpctl.8 bgpctl.c parser.c 

Log message:
Implement bgpctl show mrt neighbors, a command to print the neighbor table
of MRT TABLE_DUMP_V2 dumps. It only works with TABLE_DUMP_V2 dumps on other
table dumps the neighbor of the first entry is printed since those table
dumps don't have a neighbor table.
OK sthen@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/23 08:44:33

Modified files:
	usr.bin/tmux   : format-draw.c 

Log message:
Fix drawing of status-right when it is aligned to the centre, GitHub
issue 1754.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/23 09:09:17

Modified files:
	sbin/unwind    : resolver.c 

Log message:
typo


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/05/23 09:11:58

Modified files:
	sbin/unwind    : resolver.c 

Log message:
If we find ourselves behind a captive portal shutdown the service port.
This lets us get past captive portals that
- correctly answer SOA queries for the root zone with edns0 option
- return NXDOAMIN for the captive portal redirect domain if edns0 is
present

Observed by many after g2k19 in maple leaf lounges.

While here improve handling of captive portal configuration removal
while unwind thinks we are behind a captive portal. For example
because the host we are checking is down. Previously unwind would
think we are stuck behind a captive portal forever.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/23 11:47:51

Log message:
    import p5-FFI-CheckLib 0.24
    OK cwen@
    
    Comment:
    check that a library is available for FFI
    
    Description:
    This module checks whether a particular dynamic library is available
    for FFI to use.  It is modeled heavily on Devel::CheckLib, but will
    find dynamic libraries even when development packages are not
    installed.  It also provides a find_lib function that will return
    the full path to the found dynamic library, which can be feed
    directly into FFI::Platypus or another FFI system.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190523
    
    N ports/devel/p5-FFI-CheckLib/Makefile
    N ports/devel/p5-FFI-CheckLib/distinfo
    N ports/devel/p5-FFI-CheckLib/pkg/DESCR
    N ports/devel/p5-FFI-CheckLib/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/05/23 11:50:11

Modified files:
	devel          : Makefile 

Log message:
+p5-FFI-CheckLib


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/23 12:22:13

Modified files:
	usr.bin/tmux   : utf8.c 

Log message:
Environment variables can start with { also.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/23 12:33:53

Modified files:
	usr.bin/tmux   : cmd-show-options.c 

Log message:
Use the same argument escaping code for options as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/23 12:39:00

Modified files:
	usr.bin/tmux   : cfg.c cmd-parse.y 

Log message:
Fix line numbers - commands are added after the line ends so they need to
get line - 1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/23 12:39:30

Log message:
    Import purple-rocketchat 0.20190416
    
    adds support for rocket.chat to libpurple clients, been using it since
    some weeks with pidgin and finch, should also work with minbif &
    bitlbee-libpurple...
    
    ok solene@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20190523
    
    N ports/net/purple-rocketchat/Makefile
    N ports/net/purple-rocketchat/distinfo
    N ports/net/purple-rocketchat/pkg/DESCR
    N ports/net/purple-rocketchat/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/23 12:40:10

Modified files:
	net            : Makefile 

Log message:
+purple-rocketchat


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/23 13:00:53

Modified files:
	sys/arch/amd64/isa: clock.c 
	sys/arch/i386/isa: clock.c 

Log message:
zap reference to non-existent function in a comment

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/23 13:24:47

Modified files:
	geo/mapserver  : Makefile distinfo 
	geo/mapserver/patches: patch-CMakeLists_txt 
	geo/mapserver/pkg: PLIST-php PLIST-python PLIST-utils README-php 

Log message:
Update to mapserver 7.4.0.

Reenable php bindings via phpmapscriptng.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/23 13:27:21

ports/net/castget/patches

Update of /cvs/ports/net/castget/patches
In directory cvs.openbsd.org:/tmp/cvs-serv11035/patches

Log Message:
Directory /cvs/ports/net/castget/patches added to the repository


CVSROOT:	/cvs
Module name:	www
Changes by:	jasper@cvs.openbsd.org	2019/05/23 13:39:22

Modified files:
	.              : want.html 

Log message:
remove request; aaron and i have the hardware we need


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/23 14:44:24

Modified files:
	net/castget    : Makefile 
Added files:
	net/castget/patches: patch-configure 

Log message:
Honor the result of AC_SEARCH_LIBS() and don't unconditionally link
with libstdc++.
Sync WANTLIB.
ok gsoares@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/23 15:02:32

Modified files:
	japanese/mecab : Makefile 

Log message:
do not explicitly add -lstdc++


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/23 15:36:42

Modified files:
	usr.bin/tmux   : Makefile 

Log message:
unbreak build, okay nicm@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/23 16:33:29

Modified files:
	usr.sbin/pkg_add/OpenBSD: Dependencies.pm 

Log message:
look for tag in self first, solves a fringe case where
we could find the dependency in another version of the
the same package first, and error out (see
special case found_in_self).


CVSROOT:	/cvs
Module name:	www
Changes by:	jan@cvs.openbsd.org	2019/05/23 21:11:37

Modified files:
	.              : events.html 
Added files:
	papers         : bsdcan2019_netboot.pdf 

Log message:
dd my BSDCan 2019 OpenBSD netboot slides


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/05/23 22:28:24

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-src_bootstrap_bin_rustc_rs 
	                   patch-src_bootstrap_lib_rs 
	                   patch-src_librustc_session_filesearch_rs 
	                   patch-src_librustdoc_test_rs 
	                   patch-src_libstd_sys_unix_ext_net_rs 
	                   patch-src_libstd_sys_unix_os_rs 
	                   patch-src_libstd_sys_unix_stack_overflow_rs 
	                   patch-src_tools_cargo_src_cargo_core_compiler_context_compilation_files_rs 
	lang/rust/pkg  : PLIST-main 
Added files:
	lang/rust/patches: patch-src_bootstrap_test_rs 
	                   patch-src_tools_compiletest_src_main_rs 

Log message:
update rust to 1.35.0

ChangeLog: https://github.com/rust-lang/rust/blob/stable/RELEASES.md#version-1350-2019-05-23
Announce: https://blog.rust-lang.org/2019/05/23/Rust-1.35.0.html

ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/23 23:59:13

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
implement support for SIOCGIFSFFPAGE

i2c reads are implemented as a port register read that returns up to 32
bytes from a page.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/24 00:00:42

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_device.c 

Log message:
Match radeon_device.c rev 1.2 and return early in amdgpu_device_suspend()
if "shutdown" is set and the mountroot hook has not run.
Otherwise unhibernate causes a uvm fault due to an uninitialised lock.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/24 00:05:38

Modified files:
	sys/dev/wscons : wsmouse.c 

Log message:
Remove redundant conditional. Inspecting flags is the correct way to
determine if the device was opened in read/write mode.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/24 02:24:01

Modified files:
	sys/arch/arm64/dev: acpipci.c pciecam.c 

Log message:
Pass extent for prefetchable mmio.  Since there is no distinction between
prefetchable and "normal" mmio at the host bridge level we can simply pass
the same extent.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/24 02:40:32

Modified files:
	devel/p5-Devel-Gladiator: Makefile distinfo 

Log message:
minor update


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/05/24 02:41:09

Modified files:
	productivity/taskwarrior: Makefile 

Log message:
fix homepage; from Micah Muer


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/24 02:46:08

Modified files:
	devel/p5-Devel-FindRef: Makefile distinfo 
	devel/p5-Devel-FindRef/pkg: PLIST 
Removed files:
	devel/p5-Devel-FindRef/patches: patch-FindRef_xs 

Log message:
minor update, works better with current perl


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/24 05:35:02

Log message:
    import ports/mail/opendmarc, from Renaud Allard, ok landry@
    
    OpenDMARC is a free open source software implementation of the DMARC
    specification.
    
    The OpenDMARC project is a community effort to develop and maintain an open
    source package for providing DMARC report generation and policy enforcement
    services.  It includes a library for handling DMARC record parsing,
    a database schema and tools for aggregating and processing transaction
    history to produce DMARC reports, and a filter that ties it all together
    with an MTA using the milter protocol.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190524
    
    N ports/mail/opendmarc/Makefile
    N ports/mail/opendmarc/distinfo
    N ports/mail/opendmarc/pkg/opendmarc.rc
    N ports/mail/opendmarc/pkg/DESCR
    N ports/mail/opendmarc/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/24 05:35:32

Modified files:
	mail           : Makefile 

Log message:
+opendmarc


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/24 05:37:52

Modified files:
	usr.sbin/bgpd  : session.c session.h timer.c 

Log message:
Change timer_nextisdue() and timer_nextduein() to take the current time
as an argument. This way getmonotime() can be called once at the start
of looping over all peers instead of twice during the loop.
Makes a big difference with many peers.
OK florian@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/24 06:13:15

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
upgrade to new version, now that we have decent std::filesystem support
gcc gets special love because of the way it defines things


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/05/24 06:51:15

Modified files:
	usr.sbin/smtpd : ca.c 

Log message:
remove useless check, it's never been and will never be hit


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/24 08:11:07

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
yet another minor update with a new option


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/05/24 08:31:30

Modified files:
	usr.sbin/smtpd : mproc.c 

Log message:
fix typo in fatal message to -> too


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/05/24 08:40:33

Modified files:
	usr.sbin/smtpd : ca.c 

Log message:
mechanical change to dynamically allocate rsae_method


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/24 08:43:53

Modified files:
	games/stepmania: Makefile 
	games/stepmania/patches: 
	                         patch-src_libtomcrypt_src_headers_tomcrypt_cfg_h 

Log message:
use endian.h instead of hardcoding a list of archs


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/24 09:17:29

Modified files:
	sys/kern       : uipc_usrreq.c 

Log message:
Prevent a kernel hang if an empty message is sent over an SOCK_SEQPACKET
socketpair.  Do not wakeup receiver if there is no data available.
OK claudio@ anton@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/05/24 09:34:05

Modified files:
	usr.sbin/smtpd : ca.c 

Log message:
assume X509_STORE_CTX is opaque, don't access ->error but use the
X509_STORE_CTX_get_error() function instead


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/05/24 10:29:41

Modified files:
	usr.sbin/smtpd : ssl.c 

Log message:
ERR_R_SSL_LIB is defined to ERR_LIB_SSL which works for both LibreSSL and
OpenSSL, so use that one instead to reduce delta in portable branch


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/05/24 11:43:05

Modified files:
	x11/compton    : Makefile 
	x11/compton/patches: patch-src_compton_c patch-src_opengl_c 

Log message:
fix vsync drm by using correct drm path; by mrme0w _aT_ protonmail DOT ch,
thanks! While here take MAINTAINER. ok sthen@, jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/05/24 12:01:52

Modified files:
	usr.sbin/smtpd : crypto.c 

Log message:
switch from having automatic EVP_CIPHER_CTX variables to allocating them
with EVP_CIPHER_CTX_new() and releasing them with EVP_CIPHER_CTX_free().

ok sunil@ and millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/24 12:35:41

Modified files:
	sys/kern       : subr_kubsan.c 

Log message:
The latest inteldrm update brought along code making use of
__attribute__((nonnull)); which the undefined behavior sanitizer in
clang is aware of. A new handler is therefore needed in order to compile
a kernel with kubsan enabled.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/24 12:43:58

Modified files:
	sys/kern       : subr_kubsan.c 

Log message:
A source location in kubsan is an absolute path making reports quite
long. Instead, use everything after the first /sys/ segment as the path.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/24 12:48:05

Modified files:
	sys/kern       : subr_kubsan.c 

Log message:
fix incorrect order of arguments


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/24 12:51:05

Modified files:
	sys/kern       : subr_kubsan.c 

Log message:
rename struct for consistency


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/05/24 12:53:25

Modified files:
	share/man/man4 : kubsan.4 

Log message:
reflect recent changes


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/24 12:54:12

Modified files:
	sys/dev/fdt    : fanpwr.c 

Log message:
Configure pins.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/24 13:09:15

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-chrome_app_generated_resources_grd 
	                      patch-chrome_browser_download_chrome_download_manager_delegate_cc 
	                      patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc 
	                      patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                      patch-chrome_common_BUILD_gn 
	                      patch-chrome_common_chrome_paths_internal_h 
	                      patch-chrome_common_chrome_switches_cc 
	                      patch-chrome_common_chrome_switches_h 
	                      patch-chrome_test_BUILD_gn 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-content_browser_media_media_internals_cc 
	                      patch-content_shell_BUILD_gn 
	                      patch-media_audio_audio_thread_impl_cc 
	                      patch-services_network_network_context_cc 
	                      patch-services_network_network_service_cc 
	                      patch-ui_views_controls_textfield_textfield_cc 

Log message:
update to 75.0.3770.52


CVSROOT:	/cvs
Module name:	www
Changes by:	anton@cvs.openbsd.org	2019/05/24 13:59:11

Modified files:
	.              : 66.html 

Log message:
mention boot device in vm.conf(5) and repair broken markup


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/24 15:02:07

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
bug fix


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/05/24 15:33:57

Modified files:
	gnu/usr.bin/perl: AUTHORS Configure INSTALL MANIFEST META.json 
	                  META.yml Makefile.SH README README.haiku 
	                  README.macosx README.os2 README.vms av.h 
	                  caretx.c doio.c embed.fnc embed.h installperl 
	                  numeric.c patchlevel.h perl.c pp.c pp_hot.c 
	                  pp_pack.c proto.h regexec.c sv.c toke.c util.c 
	gnu/usr.bin/perl/Cross: config.sh-arm-linux 
	                        config.sh-arm-linux-n770 
	gnu/usr.bin/perl/NetWare: Makefile config_H.wc 
	gnu/usr.bin/perl/Porting: config.sh config_H epigraphs.pod 
	                          release_managers_guide.pod 
	                          release_schedule.pod 
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: ToMan.pm 
	gnu/usr.bin/perl/dist/Module-CoreList: Changes 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module: CoreList.pm 
	gnu/usr.bin/perl/dist/Module-CoreList/lib/Module/CoreList: 
	                                                           Utils.pm 
	gnu/usr.bin/perl/dist/Storable: Makefile.PL Storable.xs 
	                                __Storable__.pm stacksize 
	gnu/usr.bin/perl/dist/Storable/t: recurse.t 
	gnu/usr.bin/perl/ext/PerlIO-scalar: scalar.pm scalar.xs 
	gnu/usr.bin/perl/ext/XS-APItest/t: svcatpvf.t 
	gnu/usr.bin/perl/hints: catamount.sh linux.sh 
	gnu/usr.bin/perl/lib/B: Op_private.pm 
	gnu/usr.bin/perl/lib/unicore: mktables.lst 
	gnu/usr.bin/perl/plan9: config.plan9 config_sh.sample 
	gnu/usr.bin/perl/pod: perl.pod perldelta.pod perldiag.pod 
	                      perlhist.pod perlre.pod 
	gnu/usr.bin/perl/t/io: inplace.t 
	gnu/usr.bin/perl/t/lib/croak: toke 
	gnu/usr.bin/perl/t/op: for.t pack.t repeat.t 
	gnu/usr.bin/perl/t/porting: customized.dat 
	gnu/usr.bin/perl/t/re: script_run.t subst.t 
	gnu/usr.bin/perl/t/run: switches.t 
	gnu/usr.bin/perl/vms: descrip_mms.template 
	gnu/usr.bin/perl/win32: GNUmakefile Makefile makefile.mk pod.mak 
Added files:
	gnu/usr.bin/perl/pod: perl5263delta.pod perl5281delta.pod 

Log message:
Update to perl 5.28.2

Minor bugfixes and documentation improvments.  See perldelta for details.
https://metacpan.org/pod/release/SHAY/perl-5.28.2/pod/perldelta.pod

OK bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/05/24 15:40:56

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/05/24 16:41:36

Modified files:
	build          : support.skel 

Log message:
Add missing <body> tag and quote ID attribute;
both recommended by validator.w3.org.


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/05/24 16:42:55

Modified files:
	.              : support.html 
	build          : support.dat 

Log message:
new: metadata.be


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/24 16:43:45

Modified files:
	audio/audacious-plugins: Makefile 
Added files:
	audio/audacious-plugins/patches: patch-src_neon_neon_cc 

Log message:
audacious-plugins: unbreak the build with ports-gcc
Using feof() as a method name clashed with feof(3), a macro.
Tested on macppc. While here, move HOMEPAGE to https.

Thanks to jca@ and naddy@ for pointing out that an unrelated issue
was local and didn't need patching, and bcallah@ for testing on amd64.

OK jca@ naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2019/05/24 18:39:10

Modified files:
	.              : want.html 

Log message:
The following types of machines with graphics and serial would be
helpful for drm development.

A pre Ryzen amdgpu APU (Carrizo, Bristol Ridge, Stoney Ridge)
Skylake or newer Intel Core system
Intel Braswell/Cherry Trail system


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/24 21:36:20

Modified files:
	news/sabnzbd   : Makefile distinfo 

Log message:
Update to sabnzbd-2.3.9.

Improvements and bug fix release. Changelog can be found at
https://github.com/sabnzbd/sabnzbd/releases/tag/2.3.9


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/25 00:58:10

Modified files:
	usr.bin/tmux   : cmd.c spawn.c tmux.h 

Log message:
Make cmd_log_argv take a printf-like format for the prefix.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/25 01:15:53

Modified files:
	usr.bin/tmux   : cmd-if-shell.c 

Log message:
Fix error handling in if-shell.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/25 01:18:20

Modified files:
	usr.bin/tmux   : client.c cmd-bind-key.c cmd-list.c cmd-parse.y 
	                 server-client.c tmux.h 

Log message:
Merge cmd_list_parse into cmd-parse.y so it can use the new alias
processing code.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/25 01:29:04

Modified files:
	usr.bin/tmux   : Makefile cmd.c 
Removed files:
	usr.bin/tmux   : cmd-list.c 

Log message:
Merge the now tiny cmd-list.c into cmd.c.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/25 02:42:24

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
minor bugfix


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/25 04:22:34

Modified files:
	security/p11-kit: Makefile distinfo 

Log message:
Update to p11-kit-0.23.16.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/25 04:35:20

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-exoscale: Makefile distinfo 
	sysutils/terraform/provider-ovh: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/25 04:36:15

Modified files:
	x11/gnome/control-center: Makefile distinfo 
Removed files:
	x11/gnome/control-center/patches: 
	                                  patch-panels_display_cc-display-settings_c 
	                                  patch-panels_mouse_gnome-mouse-properties_ui 
	                                  patch-panels_power_cc-power-panel_ui 
	                                  patch-panels_region_cc-region-panel_c 

Log message:
Update to gnome-control-center-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/25 04:41:15

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/25 04:44:09

Modified files:
	usr.bin/tmux   : cmd-queue.c cmd.c 

Log message:
Use client name when logging command queue.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/25 04:44:11

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.156.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/25 04:44:25

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.156.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/25 04:44:41

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.166.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/25 04:46:55

Modified files:
	usr.bin/tmux   : cmd-queue.c 

Log message:
Client name can actually be NULL, so use address in that case.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/25 04:47:00

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-247.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/25 05:02:19

Modified files:
	share/man/man4 : wsdisplay.4 

Log message:
Actual max number of screens is 12; from zeurkous at volny dot cz


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/25 05:45:55

Modified files:
	multimedia/mediainfo: Makefile distinfo 

Log message:
maintenance update to 19.04


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/25 06:20:27

Modified files:
	sysutils/random_run: Makefile distinfo 
	sysutils/random_run/pkg: DESCR 

Log message:
lots more cleanup, probably all for today
(better options for regexp, and ways more examples in the manpage)


CVSROOT:	/cvs
Module name:	www
Changes by:	kettenis@cvs.openbsd.org	2019/05/25 07:55:43

Modified files:
	.              : want.html 

Log message:
Remove an item that is not really needed anymore.


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2019/05/25 09:02:21

Modified files:
	.              : events.html 

Log message:
BSDCan is in the past


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2019/05/25 09:05:57

Modified files:
	.              : events.html 

Log message:
deraadt@ is speaking at Calgary Unix Users Group on May 28th.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/05/25 09:47:46

Modified files:
	share/man/man4 : ubcmtp.4 

Log message:
two-finger scrolling works out of the box now, no need for synclient


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/25 09:49:40

Modified files:
	games/corsixth : Makefile distinfo 
	games/corsixth/patches: patch-CorsixTH_Lua_app_lua 
	games/corsixth/pkg: PLIST 

Log message:
Update corsixth to 0.63
Changelog highlights: https://github.com/CorsixTH/CorsixTH/releases


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/25 10:09:26

Modified files:
	net/curl       : Makefile distinfo 
	net/curl/pkg   : PLIST 

Log message:
Update to 7.65.0.  Includes security fixes for:
CVE-2019-5435: Integer overflows in curl_url_set
CVE-2019-5436: tftp: use the current blksize for recvfrom()


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/25 10:51:10

Modified files:
	usr.bin/tmux   : format.c tmux.1 

Log message:
Add <, >, <=, >= for formats, GitHub issue 1747.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/25 12:11:10

Modified files:
	sys/kern       : sched_bsd.c 

Log message:
Do not account spinning time as running time when a thread crosses a
tick boundary of schedlock().

This reduces the contention on the SCHED_LOCK() when the current thread
is already spinning.

Prompted by deraadt@, ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/25 13:27:48

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
actually interface with sysconf to avoid execve E2BIG.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/25 13:39:26

Modified files:
	net/curl       : Tag: OPENBSD_6_5 Makefile 
Added files:
	net/curl/patches: Tag: OPENBSD_6_5 patch-lib_setopt_c 
	                  patch-lib_tftp_c patch-lib_urlapi_c 
	                  patch-lib_urldata_h 

Log message:
Security fixes:
CVE-2019-5435: Integer overflows in curl_url_set
CVE-2019-5436: TFTP receive buffer overflow


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/25 13:43:03

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
update CVE entry for net/curl; reminded by danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/25 13:54:45

Modified files:
	education/anki : Makefile 

Log message:
Even if this is BROKEN, add a valid master site since dpb -F disregards
BROKEN/IGNORE.


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/05/25 14:08:23

Modified files:
	gnu/usr.bin/perl: Makefile.bsd-wrapper1 
	distrib/sets/lists/man: mi 

Log message:
Install the new perldelta as man pages


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/05/25 14:42:32

Modified files:
	x11/arandr     : Makefile distinfo 
	x11/arandr/patches: patch-setup_py 
	x11/arandr/pkg : DESCR PLIST 

Log message:
Update to arandr-0.1.10

Switch to Python 3 and GTK3.  Use TLS while here and adjust our manual gzip
patch to cope with Python 3's byte type.

OK edd


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/05/25 15:25:31

Modified files:
	infrastructure : README 

Log message:
out-of-date was renamed to pkg_outdated


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/25 15:50:38

Modified files:
	infrastructure : README 

Log message:
fix badly out-of-date stuff, should probably just finish manpages
and GC this


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/25 16:10:18

Modified files:
	shells/perlsh  : Makefile 
Added files:
	shells/perlsh/patches: patch-lib_Psh_Strategy_Executable_pm 
	                       patch-lib_Psh_pm 

Log message:
perlsh: fix use of deprecated Perl features, use metacpan as HOMEPAGE
and MASTER_SITES.

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/25 16:25:01

Modified files:
	math/ebc       : Makefile distinfo 
	math/ebc/pkg   : PLIST 

Log message:
Update to ebc-2.0.0
Changelog: https://github.com/gavinhoward/bc/releases/tag/2.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/25 17:47:25

Modified files:
	astro/xworld   : Makefile 
	net/fmirror    : Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/25 18:52:22

Modified files:
	share/man/man8 : intro.8 

Log message:
use proper crossreference, from Artturi Alm


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/05/25 19:16:09

Modified files:
	share/man/man5 : pf.conf.5 
	usr.bin/awk    : awk.1 
	usr.bin/less   : less.1 
	usr.bin/mandoc : mandoc.1 

Log message:
use proper crossreferences


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2019/05/25 20:06:55

Modified files:
	share/man/man4 : pf.4 

Log message:
Sync with the latest net/pfvar.h

ok jmc@ sashan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/05/25 20:07:44

Modified files:
	security/ghidra: Makefile distinfo 
	security/ghidra/pkg: PLIST 

Log message:
Update to Ghidra 9.0.4.

ok rpointel@


CVSROOT:	/cvs
Module name:	www
Changes by:	otto@cvs.openbsd.org	2019/05/26 00:55:32

Modified files:
	.              : innovations.html 

Log message:
Add MAP_CONCEAL and {mc}alloc_conceal. ok cheloha@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/26 02:22:47

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-base_BUILD_gn 
	                      patch-base_process_process_posix_cc 
Added files:
	www/chromium/patches: patch-base_process_process_linux_cc 

Log message:
add support for setting the thread and process priorities on bsd


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/26 02:40:13

Modified files:
	x11/gnome/terminal: Makefile 
	x11/gnome/contacts: Makefile 
	x11/gnome/calculator: Makefile 
	x11/gnome/calculator/pkg: PLIST 
	x11/gnome/screenshot: Makefile 
	x11/gnome/font-viewer: Makefile 

Log message:
Add missing MODGNOME_TOOLS += gtk-update-icon-cache


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/05/26 03:27:09

Modified files:
	usr.sbin/ospf6ctl: ospf6ctl.c parser.c parser.h 
	usr.sbin/ospf6d: ospf6d.conf.5 parse.y 

Log message:
Allow specifying area by number as well as id. No changes to outputs.

reads OK to kn@
OK denis@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/05/26 03:47:28

Modified files:
	lib/libc/sys   : accept.2 socket.2 

Log message:
Tweak "RETURN VALUES" sections to mention setting errno, as so many
other man pages do.

ok schwarze@ guenther@ on socket(2). "Similar" tweak on accept(2)
requested by guenther@.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/26 04:08:50

Modified files:
	usr.bin/tmux   : cmd-parse.y 

Log message:
Some other platforms doesn't support fmemopen(3) (not unexpectedly), so
don't use it - since we only use getc/ungetc on the file anyway it is
easy not to.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/26 04:33:27

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
minor upstream changes. Nothing new for us


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/26 05:09:30

Modified files:
	graphics/blender: Makefile 

Log message:
Move blender from python3.7 to python3.6 to fix UI errors

Reported by Mihai Popescu, ok pascal@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/26 06:02:42

Modified files:
	usr.bin/tmux   : format.c tmux.1 

Log message:
Add a way to append or prepend to a format if the length has been limited.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/26 06:05:25

Modified files:
	net/libvncserver: Makefile 
Added files:
	net/libvncserver/patches: patch-rfb_rfbproto_h 

Log message:
unfsck libvncserver, endian detection was screwed up in the 0.9.12 update
it's in an installed header and i have no idea how far the damage goes, so
shlib major bumped to enforce updates

problem with x11vnc reported by todd


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/26 06:38:01

Log message:
    import www/h2o, started by David Carlier, further worked on by otto
    (who needs libh2o-evloop) and myself, testing/hints/ok kn@
    
    H2O is a new generation HTTP server that provides quicker response to
    users with less CPU utilization when compared to older generation of web
    servers. Designed from ground-up, the server takes full advantage of
    HTTP/2 features including prioritized content serving and server push,
    promising outstanding experience to the visitors of your web site.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190526
    
    N ports/www/h2o/Makefile
    N ports/www/h2o/distinfo
    N ports/www/h2o/files/h2o.conf
    N ports/www/h2o/patches/patch-CMakeLists_txt
    N ports/www/h2o/patches/patch-deps_neverbleed_neverbleed_c
    N ports/www/h2o/patches/patch-src_main_c
    N ports/www/h2o/pkg/DESCR
    N ports/www/h2o/pkg/PLIST
    N ports/www/h2o/pkg/h2o.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/26 06:38:31

Modified files:
	www            : Makefile 

Log message:
+h2o


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/26 06:47:00

Modified files:
	www/h2o        : Makefile 

Log message:
fix rcsid


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/26 06:49:36

Modified files:
	mail/rspamd    : Makefile distinfo 
	mail/rspamd/patches: patch-src_CMakeLists_txt 

Log message:
update to rspamd-1.9.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/26 06:58:01

Modified files:
	devel/p5-Devel-FindRef: Makefile 

Log message:
p5-Canary-Stability needed at build time


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/26 06:59:16

Modified files:
	editors/libreoffice: Makefile distinfo 

Log message:
update to 6.2.4.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/26 06:59:19

Modified files:
	mail/mutt      : Makefile distinfo 
	mail/mutt/patches: patch-contrib_gpg_rc patch-main_c 
	mail/mutt/pkg  : PLIST 

Log message:
update to mutt-1.12.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/26 08:49:39

Modified files:
	net/icinga/core2: Makefile distinfo 

Log message:
update to icinga2-2.10.5


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/05/26 09:14:16

Modified files:
	sys/dev/pci    : virtio_pci.c 

Log message:
virtio_pci: Split bus space handles

In virtio_pci 1.0, different parts of the register set may be located in
different BARs. Use subregions to make the access independent of the
virtio version.


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/05/26 09:14:50

Modified files:
	sys/dev/pci    : virtio_pci.c 

Log message:
virtio_pci: Move msix vector config into functions

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/26 09:17:23

Modified files:
	sysutils/udfclient: Makefile distinfo 

Log message:
Update to udfclient-0.8.9

From maintainer Josh Grosse.


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/05/26 09:20:04

Modified files:
	sys/dev/fdt    : virtio_mmio.c 
	sys/dev/pci    : virtio_pci.c 
	sys/dev/pv     : if_vio.c vioblk.c viocon.c viomb.c viornd.c 
	                 vioscsi.c virtio.c virtiovar.h vmmci.c 

Log message:
Rework virtio_negotiate_features()

Add a sc_driver_features field that is automatically used by
virtio_negotiate_features() and during reinit.

Make virtio_negotiate_features() return an error code.  Virtio 1.0 has a
special status bit for feature negotiation that means that negotiation
can fail. Make virtio_negotiate_features() return an error code instead
of the features.

Make virtio_reinit_start() automatically call
virtio_negotiate_features().

Add a convenience function virtio_has_feature() to make checking bits
easier.

Add an error check in viomb for virtio_negotiate_features because it has
some feature bits that may cause negotiation to fail. More error
checking in the child drivers is still missing.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/05/26 09:22:31

Modified files:
	share/man/man4 : virtio.4 
	sys/dev/pci    : virtio_pci.c virtio_pcireg.h 
	sys/dev/pv     : virtiovar.h if_vio.c 

Log message:
Support virtio 1.0 for virtio_pci

virtio 1.0 for virtio_mmio it not yet implemented, but 0.9 devices
continue to work.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/26 09:34:26

Modified files:
	usr.sbin/pkg_add/pod: OpenBSD::Intro.pod 

Log message:
perl makewhatis has been dead a few years


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/26 09:47:50

Modified files:
	usr.sbin/pkg_add/OpenBSD: ArcCheck.pm 

Log message:
adjust comment. ArcCheck hasn't dealt with long names ever since
OpenBSD::Ustar gained support for xhdr.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/26 09:48:26

Modified files:
	usr.sbin/pkg_add/pod: OpenBSD::Ustar.pod 

Log message:
document somewhat oldish improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/26 09:55:12

Modified files:
	usr.sbin/pkg_add/pod: OpenBSD::md5.pod 

Log message:
reflect current reality
it's much simpler now that md5 is entirely gone


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/05/26 11:17:13

Modified files:
	sysutils/borgbackup: Makefile distinfo 
	sysutils/borgbackup/pkg: PLIST 

Log message:
Update to borgbackup-1.1.10.

Bugfix release. Noticeable change is that the latest supported
msgpack-python release is bundled. Changelog can be found at
https://github.com/borgbackup/borg/blob/1.1.10/docs/changes.rst#version-1110-2019-05-16

Switching to the bundled version of msgpack-python makes sense as the
version in ports is in need of an update: msgpack-python has been
renamed by its upstream, and borgbackup was seemingly the only port
unable to cope with this renaming, thus blocking an update.

OK kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/26 11:34:46

Modified files:
	usr.bin/tmux   : cmd-display-menu.c format.c grid.c menu.c 
	                 mode-tree.c options-table.c tmux.1 tmux.h 
	                 utf8.c window-copy.c 

Log message:
Add formats for word and line under the mouse and use them to add some
items to the pane menu.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/26 12:19:52

Modified files:
	usr.bin/tmux   : menu.c 

Log message:
Do not accept choice unless mouse has actually moved before.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/26 12:27:52

Modified files:
	usr.bin/tmux   : screen-redraw.c 

Log message:
Always redraw overlay if it is on (so status line doesn't redraw over it).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/26 12:43:43

Modified files:
	usr.bin/tmux   : format.c 

Log message:
Add keys for new menu items.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/26 14:37:03

Modified files:
	share/man/man4 : virtio.4 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/26 16:28:41

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/patches: patch-cmake_install_macros_cmake 
	                           patch-scripts_CMakeLists_txt 
	                           patch-scripts_mysql_config_sh 
	                           patch-scripts_mysql_install_db_sh 
	                           patch-scripts_mysqld_safe_sh 
	                           patch-sql_CMakeLists_txt 
	databases/mariadb/pkg: PLIST-main PLIST-server PLIST-tests 
Added files:
	databases/mariadb/files: my.cnf 
	databases/mariadb/patches: 
	                           patch-plugin_handler_socket_CMakeLists_txt 
Removed files:
	databases/mariadb/patches: patch-support-files_my-huge_cnf_sh 
	                           patch-support-files_my-innodb-heavy-4G_cnf_sh 
	                           patch-support-files_my-large_cnf_sh 
	                           patch-support-files_my-medium_cnf_sh 
	                           patch-support-files_my-small_cnf_sh 

Log message:
SECURITY update to mariadb-10.3.15

Bugs fixed (documented as hangs/crashes):
o CVE-2019-2614
o CVE-2019-2627
o CVE-2019-2628

Major update, upstream says running mysql_upgrade is required.

Release notes:
https://mariadb.com/kb/en/library/mariadb-10315-release-notes/

Upstream doesn't provide a default config file any more so I tried to
cook up which seemed reasonable.

This update should also fix mariadb on powerpc, broken since the update
to 10.2.23.  Thanks to cwen@ for the tests and tweaks.

ok Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/26 16:34:45

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register mariadb CVEs


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/05/26 16:42:42

Modified files:
	usr.sbin/tcpdump: interface.h print-gre.c tcpdump.8 tcpdump.c 

Log message:
support -T erspan so arbitrary gre protocols can be seen as erspan

this lets me configure a custom gre protocol on a dell s4810 or
s5048 and see what's inside it when it lands on an openbsd box.

ok lteo@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/26 22:19:00

Modified files:
	lib/mesa/src/intel/tools: aub_mem.c aub_mem.h 

Log message:
Call shm_unlink() directly after shm_mkstemp() rather than just before
close().  Closer to memfd_create() behaviour.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/26 23:42:11

Modified files:
	emulators/mgba : Makefile distinfo 

Log message:
Update to mgba-0.7.2.

Release notes:
https://mgba.io/2019/05/25/mgba-0.7.2/


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/27 00:50:04

Modified files:
	usr.bin/tmux   : mode-tree.c 

Log message:
Fix the intended ordering of items in buffer mode - it should not always
be tag 0 when the tree is empty. GitHub issue 1759.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/27 01:03:12

Modified files:
	etc/mtree      : BSD.x11.dist 

Log message:
add vulkan dirs


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/27 01:10:05

Modified files:
	graphics/babl  : Makefile distinfo 

Log message:
Update to babl-0.1.64.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/27 01:13:38

Modified files:
	gnu/usr.bin/texinfo/makeinfo: cmds.c xml.c 

Log message:
fix core dump reported by Adam Thomson; ok tb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/27 01:20:31

Modified files:
	lib/mesa       : Makefile.bsd-wrapper 
	lib/mesa/src/amd/vulkan: Makefile.am Makefile.in radv_device.c 
	lib/mesa/src/amd/vulkan/winsys/amdgpu: radv_amdgpu_cs.c 
	lib/mesa/src/intel: Makefile.in Makefile.vulkan.am 
	lib/mesa/src/intel/vulkan: anv_allocator.c anv_device.c 
	                           anv_private.h anv_queue.c 
	lib/mesa/src/util: futex.h 

Log message:
Build Mesa intel and radeon vulkan drivers and amd64 and i386

The intel driver can be used with inteldrm on ivy bridge or newer.
The radeon driver only works with amdgpu not radeondrm.

As we can't use python in xenocara add phony targets to create the
same output as python scripts which create json files for the loader.

This is just the ICDs, to use vulkan the loader and additional ports
are required.

ok mpi@ on an earlier version.  Changed to call shm_unlink()
directly after shm_mkstemp() as suggested by kettenis@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/05/27 01:22:48

Modified files:
	distrib/sets/lists/xbase: md.amd64 md.i386 mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/05/27 02:57:33

Modified files:
	games/rocksndiamonds: Makefile distinfo 
	games/rocksndiamonds/patches: patch-src_Makefile 

Log message:
Update to rocksndiamonds-4.1.3.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/27 03:14:33

Modified files:
	usr.sbin/bgpd  : bgpd.c bgpd.h config.c control.c parse.y 
	                 printconf.c session.c session.h 

Log message:
Switch the peer TAILQ to a RB tree indexed by the peer id. This way
getpeerbyid() gets a lot quicker at finding the peer when many peers
are configured. In my test case the difference is around 20% runtime.
OK denis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/27 03:31:08

Modified files:
	usr.bin/ctfconv: ctfstrip 

Log message:
Use getopts instead of getopt(1)

getopts is a standard shell builtin (POSIX) and lets you handle
whitespace in parameters.  ok mpi@ sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/27 04:59:32

Modified files:
	devel/quilt    : Makefile distinfo 
	devel/quilt/patches: patch-test_delete_test 
	                     patch-test_failbackup_test 

Log message:
Update to quilt-0.66

Mostly a bugfix release, also adding support for lzip and 7zip archives.
No need to add lzip and 7zip to RUN_DEPENDS, they're optional, no need
to add 7zip to BUILD_DEPENDS to set up a compat symlink, as the ports
tree ships a single 7z implementation.

From kspillner@ (maintainer) a few weeks ago with input from bcallah@
and me.  Kent seems to be busy, committing this update now since it
fixes at least one bug that affects me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/27 05:34:23

Modified files:
	www/p5-HTML-Template: Makefile distinfo 
	www/p5-HTML-Template/pkg: PLIST 

Log message:
p5-HTML-Template: update to 2.97
Changelog:
https://metacpan.org/source/SAMTREGAR/HTML-Template-2.97/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/27 05:37:25

Modified files:
	devel/p5-SVN-Notify: Makefile distinfo 

Log message:
p5-SVN-Notify: update to 2.87
Changelog:
https://metacpan.org/source/MPGHF/SVN-Notify-2.87/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/27 05:41:14

Modified files:
	www/p5-WWW-Mechanize-GZip: Makefile distinfo 
	www/p5-WWW-Mechanize-GZip/pkg: DESCR PLIST 

Log message:
p5-WWW-Mechanize-GZip:  update to 0.14
Changelog:
https://metacpan.org/source/PEGI/WWW-Mechanize-GZip-0.14/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/27 05:45:38

Modified files:
	archivers/p5-Compress-LZO: Makefile distinfo 
	archivers/p5-Compress-LZO/patches: patch-Makefile_PL 
	archivers/p5-Compress-LZO/pkg: DESCR 

Log message:
p5-Compress-LZO: update to 1.09
Please note that upstream moved to lzo2.

Changelog:
https://metacpan.org/source/PEPL/Compress-LZO-1.09/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/27 05:48:38

Modified files:
	audio/p5-Audio-Scan: Makefile distinfo 
	audio/p5-Audio-Scan/pkg: DESCR 

Log message:
p5-Audio-Scan: update to 1.01
Changelog:
https://metacpan.org/source/AGRUNDMA/Audio-Scan-1.01/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/27 06:16:27

Modified files:
	usr.bin/tmux   : arguments.c cmd-bind-key.c cmd-parse.y 
	                 key-bindings.c tmux.1 

Log message:
Add an additional {} syntax for defining strings in the configuration
file, making it much tidier to define commands that contain other tmux
or shell commands (like if-shell). Also tweak bind-key to expect a
string if it is only given one argument, so {} can be used with it as
well. From Avi Halachmi.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/27 06:19:43

Modified files:
	math/ebc       : Makefile distinfo 

Log message:
Update to ebc-2.0.1
Changelog: https://github.com/gavinhoward/bc/releases/tag/2.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/27 06:27:54

Modified files:
	textproc/jo    : Makefile 

Log message:
Remove hardcoded optimization (-O2) flag.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/27 06:48:52

Modified files:
	usr.bin/tmux   : spawn.c 

Log message:
Fix crash when killing the current window, reported by Jesus Rafael
Sanchez in GitHub issue 1760.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/27 07:31:16

Modified files:
	sys/arch/i386/conf: GENERIC 

Log message:
disable virtio.  a serially careless & procedure violating developer
has broken the tree once again.
ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/05/27 09:11:01

Modified files:
	usr.bin/compress: main.c 

Log message:
For "gunzip -N", only use the basename of the stored path.
Fixes a directory traversal bug when the stored name includes a
directory component.  Both GNU gzip and our gzip store the basename
of the path when compressing but a malicious .gz file could contain
an arbitrary path.  Problem found by elvis alien.  OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/27 09:29:46

Modified files:
	usr.bin/tmux   : format.c 

Log message:
Go less crazy with horizontal separators on default menus.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/05/27 09:50:26

Modified files:
	sys/dev/usb    : ubcmtp.c 

Log message:
fix multitouch by properly reading multi-finger data on type4
devices which have padding between finger data

tested on an older model by bru@


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/05/27 09:55:01

Modified files:
	sys/dev/pci    : virtio_pci.c 

Log message:
fix virtio_pci on 32bit archs

bus_space_read/write_8 do not exist there, use two 32bit operations.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/27 10:11:17

Modified files:
	www/iridium    : Makefile 
	www/iridium/files: iridium 
	www/iridium/patches: patch-base_BUILD_gn 
	                     patch-base_base_paths_posix_cc 
	                     patch-base_debug_debugger_posix_cc 
	                     patch-base_debug_stack_trace_posix_cc 
	                     patch-base_process_process_metrics_openbsd_cc 
	                     patch-base_process_process_posix_cc 
	                     patch-build_config_compiler_BUILD_gn 
	                     patch-chrome_common_chrome_paths_cc 
	                     patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_cc 

Log message:
sync patches with chromium


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/27 10:22:32

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Clarify newlines inside {} a little.


CVSROOT:	/cvs
Module name:	src
Changes by:	jasper@cvs.openbsd.org	2019/05/27 13:21:44

Modified files:
	usr.sbin/vmd   : mc146818.c 

Log message:
only reschedule the periodic interrupt after updating register A
if something changed in register A.

when updating register A we were checking in register B if the
PIE bit was set in order to decide if rtc_reschedule_per needed
to be called. if that bit was changed then the timer rate would
already have been adjusted by rtc_update_regb so the call from
rtc_update_rega is not needed.

this now matches what qemu and other emulators are doing too.

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/05/27 13:41:13

Modified files:
	archivers/innoextract: Makefile distinfo 

Log message:
update innoextract to most recent git commit. This is a temporary
solution to fix incompatibility with some downloads from GOG.com made
with Inno Setup version that is incompatible with innoextract 1.7
release. Confirmed to fix extraction of Ultimate Doom, no regression on
testing with about a dozen random GOG.com Inno archives.
Take MAINTAINER while here.

hint to use pl versioning and ok bentley@
ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/05/27 13:49:25

Log message:
    import steamworks-nosteam, a stubbed C# interface to the Steam API,
    based on MIT-licensed full interface library.
    ok bcallah@ (thanks for spotting the typo!)
    ok kn@
    
    DESCR:
    Drop-in replacement for Steamworks.NET.dll to run without Steam
    client present, e.g. if running on an operating system that doesn't
    feature a Steam client. A number of games are made largely
    platform-independent, but use Steamworks.NET and error out if no
    Steam client is present. This project builds a .dll that can be
    dropped in and is intended to keep the parent program running even
    in the absence of a Steam client.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190527
    
    N ports/games/steamworks-nosteam/Makefile
    N ports/games/steamworks-nosteam/distinfo
    N ports/games/steamworks-nosteam/pkg/DESCR
    N ports/games/steamworks-nosteam/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/05/27 14:05:36

Modified files:
	games          : Makefile 

Log message:
+steamworks-nosteam


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/27 14:26:48

Modified files:
	geo/mapserver  : Makefile 

Log message:
- Unbreak: needs MODPY_SETUPTOOLS
Error: mapserver-7.4.0/fake-amd64/usr/local/lib/python3.7/site-packages/mapscript-7.4.0-py3.7.egg-info/PKG-INFO does not exist
Error: mapserver-7.4.0/fake-amd64/usr/local/lib/python3.7/site-packages/mapscript-7.4.0-py3.7.egg-info/SOURCES.txt does not exist
Error: mapserver-7.4.0/fake-amd64/usr/local/lib/python3.7/site-packages/mapscript-7.4.0-py3.7.egg-info/dependency_links.txt does not exist
Error: mapserver-7.4.0/fake-amd64/usr/local/lib/python3.7/site-packages/mapscript-7.4.0-py3.7.egg-info/top_level.txt does not exist
Error: mapserver-7.4.0/fake-amd64/usr/local/lib/python3.7/site-packages/mapscript/__init__.py does not exist
etc.

- Fix RUN_DEPENDS while here (-perl, -php etc... don't need python)


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/27 14:42:00

Modified files:
	sys/dev/pci    : if_jme.c 

Log message:
spelling fixes in comments and one printf; from j sisson


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/27 14:44:34

Modified files:
	lang/seed7     : Makefile distinfo 
	lang/seed7/pkg : PLIST 

Log message:
Update to seed7-20190523


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/27 14:45:22

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190524


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/27 14:47:17

Modified files:
	.              : groups.html 
	build          : groups.dat 

Log message:
Escape malencoded accented character.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/27 14:49:11

Modified files:
	mail/cyrus-imapd: Makefile distinfo 
	mail/cyrus-imapd/pkg: PLIST 

Log message:
Update to cyrus-imapd-3.0.10.
There's a fix for a buffer overrun vulnerability in the httpd daemon but
we don't ship it (CVE-2019-11356).


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/27 15:33:56

Modified files:
	.              : support.html 
	build          : support.dat 

Log message:
Encode ISO-8859-1 characters.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/05/27 15:42:01

Modified files:
	lang/ruby/2.6  : Makefile distinfo 
Removed files:
	lang/ruby/2.6/patches: patch-test_ruby_test_process_rb 
	                       patch-test_ruby_test_thread_rb 

Log message:
Fix waking up on received signals

Changes in thread internals between ruby 2.5 and 2.6 resulted in
ruby processes not waking up when receiving some signals.  Fix
this by backporting an upstream patch.  Remove three patches to
the tests that skipped tests. Two of these issues were fixed by
this upstream patch, and the other was fixed by the pthread fifo
fdlock fix.


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/27 15:42:58

Modified files:
	.              : support.html 
	build          : support.dat 

Log message:
Missed a couple.


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/27 16:55:28

Modified files:
	.              : 21.html 22.html 23.html 24.html 25.html 26.html 
	                 27.html 28.html 29.html 30.html 31.html 32.html 
	                 33.html 34.html 35.html 36.html 37.html 38.html 
	                 39.html 40.html 41.html 42.html 43.html 44.html 
	                 45.html 46.html 47.html 48.html 49.html 50.html 
	                 51.html 52.html 53.html 54.html 55.html 56.html 
	                 57.html 58.html 59.html 60.html 61.html 62.html 
	                 63.html 64.html 65.html 66.html ECL.html 
	                 alpha.html amd64.html amiga.html anoncvs.html 
	                 arc.html arm64.html armish.html armv7.html 
	                 art1.html art2.html art3.html art4.html 
	                 artwork.html aviion.html books.html cats.html 
	                 crypto.html cvsync.html ddb.html donations.html 
	                 errata.html errata21.html errata22.html 
	                 errata23.html errata24.html errata25.html 
	                 errata26.html errata27.html errata28.html 
	                 errata29.html errata30.html errata31.html 
	                 errata32.html errata33.html errata34.html 
	                 errata35.html errata36.html errata37.html 
	                 errata38.html errata39.html errata40.html 
	                 errata41.html errata42.html errata43.html 
	                 errata44.html errata45.html errata46.html 
	                 errata47.html errata48.html errata49.html 
	                 errata50.html errata51.html errata52.html 
	                 errata53.html errata54.html errata55.html 
	                 errata56.html errata57.html errata58.html 
	                 errata59.html errata60.html errata61.html 
	                 errata62.html errata63.html errata64.html 
	                 errata65.html events.html ftp.html goals.html 
	                 groups.html hackathons.html hp300.html 
	                 hppa.html hppa64.html i386.html 
	                 innovations.html landisk.html loongson.html 
	                 luna88k.html lyrics.html mac68k.html 
	                 macppc.html mail.html mvme68k.html mvme88k.html 
	                 octeon.html openbsd.css palm.html pegasos.html 
	                 plat.html plus.html plus20.html plus21.html 
	                 plus22.html plus23.html plus24.html plus25.html 
	                 plus26.html plus27.html plus28.html plus29.html 
	                 plus30.html plus31.html plus32.html plus33.html 
	                 plus34.html plus35.html plus36.html plus37.html 
	                 plus38.html plus39.html plus40.html plus41.html 
	                 plus42.html plus43.html plus44.html plus45.html 
	                 plus46.html plus47.html plus48.html plus49.html 
	                 plus50.html plus51.html plus52.html plus53.html 
	                 plus54.html plus55.html plus56.html plus57.html 
	                 plus58.html plus59.html plus60.html plus61.html 
	                 plus62.html plus63.html plus64.html plus65.html 
	                 pmax.html policy.html porting.html powerpc.html 
	                 report.html romp.html security.html sgi.html 
	                 socppc.html solbourne.html sparc.html 
	                 sparc64.html stable.html sun3.html support.html 
	                 testimonials.html tshirts.html vax.html 
	                 want.html zaurus.html 
	build          : groups.awk groups.dat groups.skel mirrors.pl 
	                 support.awk support.skel 
	build/mirrors  : anoncvs.html.end anoncvs.html.head 
	                 cvsync.html.end cvsync.html.head ftp.html.end 
	                 ftp.html.head ftp.html.mid1 ftp.html.mid2 
	openbgpd       : ftp.html 
	openntpd       : portable.html 
	openssh        : ftp.html portable.html 

Log message:
Substantially clean up and modernize HTML markup across openbsd.org.

This was done with three purposes in mind:
- to reduce the massive amount of inline HTML, to be easier on developers
adding actual content
- to allow running the HTML validator across the source (doing this found
many unintentional mistakes in the present code, including at least a
dozen cases of half- or fully-invisible text)
- to separate content from presentation, so appearance can be controlled
through stylesheets

Great care was taken to keep all pages, even very old ones, looking the
same, give or take a few pixels of whitespace.

Much review, critique, and improvement from tj@


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/27 17:36:19

Modified files:
	.              : openbsd.css 

Log message:
Use the right colors for visited links, not just unvisited.


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/27 17:50:06

Modified files:
	.              : openbsd.css 

Log message:
More visited colors.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/27 18:08:18

Modified files:
	.              : alpha.html 

Log message:
alpha floppies probably aren't coming back


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/05/27 18:49:12

Modified files:
	archivers/cabextract: Makefile 
	fonts/msttcorefonts: Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/27 19:53:12

Modified files:
	faq            : current.html faq1.html faq10.html faq11.html 
	                 faq13.html faq14.html faq15.html faq16.html 
	                 faq17.html faq4.html faq5.html faq6.html 
	                 faq7.html faq8.html index.html upgrade35.html 
	                 upgrade36.html upgrade37.html upgrade38.html 
	                 upgrade39.html upgrade40.html upgrade41.html 
	                 upgrade42.html upgrade43.html upgrade44.html 
	                 upgrade45.html upgrade46.html upgrade47.html 
	                 upgrade48.html upgrade49.html upgrade50.html 
	                 upgrade51.html upgrade52.html upgrade53.html 
	                 upgrade54.html upgrade55.html upgrade56.html 
	                 upgrade57.html upgrade58.html upgrade59.html 
	                 upgrade60.html upgrade61.html upgrade62.html 
	                 upgrade63.html upgrade64.html upgrade65.html 
	faq/pf         : anchors.html authpf.html carp.html config.html 
	                 example1.html filter.html ftp.html index.html 
	                 logging.html macros.html nat.html options.html 
	                 perf.html pools.html rdr.html shortcuts.html 
	                 tables.html tagging.html 
	faq/ports      : differences.html guide.html index.html 
	                 ports.html specialtopics.html testing.html 

Log message:
Give FAQ pages their own HTML id, for future use.


CVSROOT:	/cvs
Module name:	src
Changes by:	pd@cvs.openbsd.org	2019/05/27 21:20:59

Modified files:
	usr.sbin/vmd   : vm.c 

Log message:
vmd: unset CR0_CD and CR0_NW in default flat64 register values

These never got unset on AMD/SVM guests when booted via vmctl start
-b causing them to run very slow

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/27 22:51:26

Modified files:
	sys/arch/amd64/include: loadfile_machdep.h 

Log message:
Remove a 15 year old XXX comment


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/28 00:49:46

Modified files:
	usr.sbin/ntpd  : config.c constraint.c control.c ntp.c ntp_dns.c 
	                 ntpd.h 

Log message:
A step in solving the bootstrap problem in a dnssec environement.
If the time is wrong, we cannot validate dnssec, leading to failed
DNS lookups, so we cannot adjust or set the time.  Work around this
by repeating a failed DNS lookup with a lookup with the DC (check
disabled) bit set. ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/28 01:18:42

Modified files:
	usr.bin/tmux   : cmd-display-menu.c format.c key-bindings.c 
	                 menu.c mode-tree.c tmux.1 tmux.h 
	                 window-buffer.c window-client.c window-tree.c 

Log message:
Change display-menu from taking a single string to a set of arguments,
which is much easier to work with. Based on a diff from Avi Halachmi.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/28 01:36:37

Modified files:
	usr.sbin/vmd   : ns8250.c ns8250.h 

Log message:
Make vmd(8)'s ns8250 emulation more correct

Remove the scratch register (8250s don't have this), and reorganize
some constants to be able to more easily support more than one serial
port in the future.

ok deraadt

Diff from Katherine Rohl, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/05/28 02:44:27

Modified files:
	sys/arch/i386/conf: GENERIC 

Log message:
Enable virtio again since the compilation problems have been fixed.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/28 03:50:54

Modified files:
	usr.bin/tmux   : key-bindings.c menu.c screen-write.c tmux.1 

Log message:
Allow menu items to be disabled by putting a - at the start of their
name, rather than just including #[dim] which still allowed them to be
chosen.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/28 04:05:25

Modified files:
	usr.bin/tmux   : key-bindings.c 

Log message:
Add key bindings to open the window and pane menus (C-m and M-m for now).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/28 04:27:11

Modified files:
	usr.bin/tmux   : key-bindings.c 

Log message:
Change the default right click pane to open the menu if not in a mode
and no application mouse.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/28 04:33:04

Modified files:
	include        : pthread_np.h 

Log message:
Include pthread.h to make this header standalone (needs pthread_t and others)

Will get us rid of pointless patches in the ports tree.  ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/28 05:32:56

Log message:
    Import greybird 3.22.10.
    
    Greybird is the default/preferred Xfce theme (coming from xubuntu), and
    includes:
    
    * Gtk+2 theme
    * Gtk+3 theme
    * Xfwm4 themes (normal and compact)
    * xfce-notifyd theme (dark and bright)
    * Metacity theme
    * Mutter theme
    * Gnome Shell theme
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	landry
    Release Tags:	landry_20190528
    
    N ports/x11/greybird/Makefile
    N ports/x11/greybird/distinfo
    N ports/x11/greybird/pkg/PLIST
    N ports/x11/greybird/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/28 05:33:43

Modified files:
	x11            : Makefile 

Log message:
+greybird


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/28 05:46:30

Modified files:
	usr.bin/tmux   : cmd-source-file.c tmux.1 

Log message:
Allow source-file to take multiple arguments.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/28 06:20:29

Modified files:
	usr.bin/tmux   : cmd-source-file.c 

Log message:
Exit 1 correctly if source-file fails.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/28 06:57:45

Modified files:
	www/kore       : Makefile 

Log message:
Add a python FLAVOR to Kore.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/28 06:58:34

Modified files:
	www            : Makefile 

Log message:
Add kore,python.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/28 07:08:56

Modified files:
	lib/libc/stdlib: realpath.c 
	lib/libc/sys   : Makefile.inc 

Log message:
Enable the use of the kernel __realpath() system call in the libc wrapper.

For now, this also still uses the existing realpath implmentation
and emits a syslog if we see differening results. Once we have run
with that for a little while we will remove the old code

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 07:39:16

Modified files:
	net/p5-Zonemaster/ldns: Makefile distinfo 

Log message:
update to p5-Zonemaster-LDNS-2.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 07:40:40

Modified files:
	lang/lucee     : Makefile distinfo 

Log message:
update to lucee-5.3.2.77


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 07:59:36

Modified files:
	net/rrdtool    : Makefile distinfo 
	net/rrdtool/patches: patch-configure patch-src_Makefile_in 

Log message:
update to rrdtool-1.7.2


CVSROOT:	/cvs
Module name:	src
Changes by:	brynet@cvs.openbsd.org	2019/05/28 08:17:57

Modified files:
	share/man/man5 : hosts.5 

Log message:
Remove mention of YP lookup from hosts(5), as support was removed from
resolv.conf in 2015.

Diff from Jan-Piet Mens <jp () mens ! de>

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 08:18:31

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/pkg: PLIST 

Log message:
update to librenms-1.52


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/28 08:23:22

Modified files:
	sys/arch/amd64/amd64: Tag: OPENBSD_6_5 cpu.c genassym.cf 
	                      identcpu.c locore.S mainbus.c vmm.c 
	                      vmm_support.S 
	sys/arch/amd64/conf: Tag: OPENBSD_6_5 Makefile.amd64 files.amd64 
	sys/arch/amd64/include: Tag: OPENBSD_6_5 codepatch.h cpu.h 
	                        cpu_full.h specialreg.h vmmvar.h 
Added files:
	sys/arch/amd64/amd64: Tag: OPENBSD_6_5 mds.S 

Log message:
Mitigate Intel's Microarchitectural Data Sampling vulnerability.
If the CPU has the new VERW behavior than that is used, otherwise
use the proper sequence from Intel's "Deep Dive" doc is used in the
return-to-userspace and enter-VMM-guest paths.  The enter-C3-idle
path is not mitigated because it's only a problem when SMT/HT is
enabled: mitigating everything when that's enabled would be a _huge_
set of changes that we see no point in doing.

Update vmm(4) to pass through the MSR bits so that guests can apply
the optimal mitigation.

VMM help and specific feedback from mlarkin@
vendor-portability help from jsg@ and kettenis@
from guenther@; ok kettenis@ mlarkin@ deraadt@ jsg@

OpenBSD 6.5 errata 003


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/05/28 08:23:51

Modified files:
	sys/arch/amd64/amd64: Tag: OPENBSD_6_4 cpu.c genassym.cf 
	                      identcpu.c locore.S mainbus.c vector.S 
	                      vmm.c vmm_support.S 
	sys/arch/amd64/conf: Tag: OPENBSD_6_4 Makefile.amd64 files.amd64 
	sys/arch/amd64/include: Tag: OPENBSD_6_4 codepatch.h cpu.h 
	                        cpu_full.h cpufunc.h specialreg.h 
	                        vmmvar.h 
Added files:
	sys/arch/amd64/amd64: Tag: OPENBSD_6_4 mds.S 

Log message:
Mitigate Intel's Microarchitectural Data Sampling vulnerability.
If the CPU has the new VERW behavior than that is used, otherwise
use the proper sequence from Intel's "Deep Dive" doc is used in the
return-to-userspace and enter-VMM-guest paths.  The enter-C3-idle
path is not mitigated because it's only a problem when SMT/HT is
enabled: mitigating everything when that's enabled would be a _huge_
set of changes that we see no point in doing.

Update vmm(4) to pass through the MSR bits so that guests can apply
the optimal mitigation.

VMM help and specific feedback from mlarkin@
vendor-portability help from jsg@ and kettenis@
from guenther@; ok kettenis@ mlarkin@ deraadt@ jsg@

OpenBSD 6.4 errata 018


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 08:24:10

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: Makefile distinfo 
	security/letsencrypt/client/patches: patch-examples_cli_ini 
	security/letsencrypt/client/pkg: PLIST 
	security/letsencrypt/py-acme: Makefile distinfo 

Log message:
update to certbot/py-acme 0.34.2


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/28 08:49:39

Modified files:
	lib/libc       : Symbols.list 

Log message:
_thread_sys___realpath must be exported like _thread_sys___getcwd obviously.
None will all it, but this is the mechanism by which ramdisk build
determines which .o files to build for it's libraries.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/05/28 09:05:04

Modified files:
	games/fnaify   : Makefile distinfo 

Log message:
update to fnaify 1.3, ok bcallah@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/28 09:05:14

Modified files:
	.              : errata64.html errata65.html 

Log message:
release mds errata.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/05/28 09:43:19

Modified files:
	mail/kopano/core: Makefile 
	mail/kopano/core/pkg: PLIST-main 

Log message:
add missing dependency on www/tidy and fixup wantlibs


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/05/28 10:12:36

ports/textproc/ruby-kramdown/patches

Update of /cvs/ports/textproc/ruby-kramdown/patches
In directory cvs.openbsd.org:/tmp/cvs-serv4713/patches

Log Message:
Directory /cvs/ports/textproc/ruby-kramdown/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/05/28 10:14:00

Modified files:
	textproc/ruby-kramdown: Makefile 
Added files:
	textproc/ruby-kramdown/patches: patch-test_run_tests_rb 

Log message:
Fix and enable tests

Requested by fcambus@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/05/28 10:32:42

Modified files:
	.              : errata21.html errata22.html errata23.html 
	                 errata24.html errata25.html errata26.html 
	                 errata27.html errata28.html errata29.html 
	                 errata30.html errata31.html errata32.html 
	                 errata33.html errata34.html errata35.html 
	                 errata36.html errata37.html errata38.html 
	                 errata39.html errata40.html errata41.html 
	                 errata42.html errata43.html errata44.html 
	                 errata45.html errata46.html errata47.html 

Log message:
number errata in the 2.x era, and numerically sort ones in 3.0-4.7 era.

OBSERVATION:  It is simply astounding how many bind, sendmail,
kerberos, and openssl errata we used to ship.  I get a feeling those
4 accounted for half of problems, and their reputations arrived at
justly


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/05/28 10:52:04

Modified files:
	.              : errata21.html 

Log message:
fix a few more things, wow 1997 is so long ago


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/28 11:00:54

Modified files:
	security/nss/patches: patch-nss_coreconf_OpenBSD_mk 

Log message:
link to upstream commit, chunk to remove in 3.45


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/05/28 11:03:19

Modified files:
	.              : errata22.html 

Log message:
more cleanup


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/05/28 11:16:42

Modified files:
	lib/libssl     : ssl_tlsext.c 

Log message:
Tidy up some names/structures following the renaming of TLS extension
functions based on message type (clienthello/serverhello), to which side
is handling the processing.

No intended functional change.

ok beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/05/28 11:34:32

Modified files:
	lib/libssl     : ssl_tlsext.c 

Log message:
Fix typo and label indent.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/05/28 11:37:40

Modified files:
	devel/jdk/1.8  : Makefile 
Added files:
	devel/jdk/1.8/patches: 
	                       patch-jdk_src_solaris_native_java_lang_childproc_c 

Log message:
Use closefrom(2) after fork/vfork and before exec instead of
opendir/readdir on /dev/fd. opendir/readdir are not async-signal-
safe and may not be safely called after forking in a multi-threaded
program. Issue raised to my attention by deraadt@. Okay ian@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/05/28 11:38:02

Modified files:
	sys/arch/amd64/stand/libsa: exec_i386.c 

Log message:
Cleanup some bootloader code

Refactoring to remove 'long_kernel' variable and consistent use of 'entry'
and 'marks[MARK_ENTRY]'. Prompted by guenther@. No functional change.

tested by jca@ and myself

ok guenther@, kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/05/28 11:39:55

Modified files:
	devel/jdk/11   : Makefile distinfo 
Added files:
	devel/jdk/11/patches: 
	                      patch-src_java_base_unix_native_libjava_childproc_c 
Removed files:
	devel/jdk/11/patches: 
	                      patch-src_jdk_net_bsd_native_libextnet_BsdSocketOptions_c 

Log message:
Use closefrom(2) after fork/vfork and before exec instead of
opendir/readdir on /dev/fd. opendir/readdir are not async-signal-
safe and may not be safely called after forking in a multi-threaded
program. Issue raised to my attention by deraadt@.

Also update to bsd release 2 of 11.0.3-7 which contains BsdSocketOptions
fix and other corrections that can be viewed here:

https://github.com/battleblow/openjdk-jdk11u/releases

Okay ian@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/28 12:17:01

Modified files:
	sys/arch/amd64/amd64: cpu.c 

Log message:
Skip doing MDS mitigation on vmm entry if the new firmware is present,
as it enhances the L1D_FLUSH MSR to flush MDS too

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/05/28 12:20:01

Modified files:
	sys/arch/amd64/amd64: identcpu.c 

Log message:
Correct the test for when the L1TF vulnerablity has been mitigated via
either hardware update (RDCL_NO) or our being nested in a VM which is
handling the flushing via the L1D_FLUSH MSR.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/28 12:20:30

Modified files:
	usr.bin/rsync  : main.c 

Log message:
unintialized fd passed to close(), found by hiltjo posthuma


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/28 12:30:30

Modified files:
	usr.bin/tmux   : arguments.c 

Log message:
Do not read past the end of the argument string if it is empty.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/05/28 12:39:06

Modified files:
	sys/net        : bfd.c 

Log message:
Fix reporting of up->down transition in routing message

The code for updating the laststate and timer is looking at laststate before
it's been updated.

From Mitchell Krome <mitchellkrome at gmail dot com>, thanks!

OK claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/28 12:53:36

Modified files:
	usr.bin/tmux   : status.c 

Log message:
Redraw status line if size changes, GitHub issue 1762. Also fix length
of target buffer when pasting into status line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/28 12:54:26

Modified files:
	devel/py-buildbot: Makefile.inc 
	devel/py-buildbot/buildbot: distinfo 
	devel/py-buildbot/buildbot/pkg: PLIST 
	devel/py-buildbot/console-view: distinfo 
	devel/py-buildbot/console-view/pkg: PLIST 
	devel/py-buildbot/grid-view: distinfo 
	devel/py-buildbot/grid-view/pkg: PLIST 
	devel/py-buildbot/pkg: distinfo 
	devel/py-buildbot/waterfall-view: distinfo 
	devel/py-buildbot/waterfall-view/pkg: PLIST 
	devel/py-buildbot/www: distinfo 
	devel/py-buildbot/www/pkg: PLIST 
	devel/py-buildslave: Makefile distinfo 
	devel/py-buildslave/pkg: PLIST 

Log message:
Update to buildbot 2.3.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/28 13:31:42

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackingElement.pm PkgCreate.pm 

Log message:
make PERMIT_CDROM info optional
as discussed with sthen@, code slightly adjusted


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/28 13:35:14

Modified files:
	geo/pdal       : Makefile distinfo 

Log message:
Update to PDAL 1.9.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/28 13:41:48

Modified files:
	infrastructure/bin: register-plist 

Log message:
have register-plist remove cdrom info seamlessly


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 13:42:43

Modified files:
	mail/rcube-markasjunk2: Makefile 
	mail/rcube-markasjunk2/pkg: DESCR 

Log message:
warn in DESCR that this is obsolete and may be removed in future;
functionality has been merged into the markasjunk plugin in the main
roundcube package.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/05/28 14:08:17

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
When switching to a non-default linker with USE_LLD, check whether
that linker (ld.bfd, ld.lld) actually exists, otherwise skip the
port.  ok jca@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 14:08:35

Modified files:
	mail/rcube-contextmenu: Makefile 
	mail/rcube-dkimstatus: Makefile distinfo 
	mail/rcube-dkimstatus/pkg: DESCR 
	mail/rcube-dovecot_ident: Makefile 
	mail/rcube-ldapAliasSync: Makefile distinfo 
	mail/rcube-markasjunk2: Makefile 
	mail/rcube-sieverules: Makefile 
	mail/rcube-yubikey-plugin: Makefile 
Added files:
	mail/rcube-dkimstatus/pkg: MESSAGE 
	mail/rcube-markasjunk2/pkg: MESSAGE 
	mail/rcube-sieverules/pkg: MESSAGE 

Log message:
spring cleaning of rcube-* plugins

- use find -delete instead of -exec rm

- more visible warning for the plugins which are unmaintained upstream
(which maybe removed if they don't work with future roundcube updates),
including suggested maintained replacements

- remove some crazy DISTFILES stuff which might have been needed in the
past but isn't needed with current implementation of GH_* variables


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/05/28 14:32:30

Modified files:
	sys/arch/arm64/arm64: locore.S locore0.S machdep.c pmap.c 

Log message:
On bigger arm64 machines with plenty of memory it is possible that
the kernel, which is allocated in low memory by efiboot, is not in
the same 512 GiB L0 address space as the EFI/FDT/ACPI tables.  Since
we only identity-map a single L0 entry for bootstrapping purposes we
can't reach those tables.  Keep a set of spare L1 tables, currently
one, which we can dynamically enter into the identity map so that we
are able to reach those tables.  While there, do the FDT mapping a
bit later in C code by calling pmap_map_early().  This allows us to
boot further on Packet's Ampere eMAGs.

Discussed with drahn@
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/28 15:20:32

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
finally added an option which makes random_run NOT run


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 15:34:08

Modified files:
	security/openssl/1.0.2: Makefile distinfo 
	security/openssl/1.0.2/patches: patch-Configure 

Log message:
update to openssl-1.0.2s


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 16:19:56

Modified files:
	security/openssl/1.1: Makefile distinfo 
	security/openssl/1.1/patches: 
	                              patch-Configurations_unix-Makefile_tmpl 
	security/openssl/1.1/pkg: PLIST 

Log message:
update to openssl-1.1.1c


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/28 16:24:08

Modified files:
	sysutils/bacula: Makefile distinfo 

Log message:
update to bacula-9.4.3


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/28 17:24:44

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCreate.pm 

Log message:
oops, let cdrom normalize if it's there.
Noticed by sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/28 22:31:16

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Add jumbo frame support.  Set the port MTU as high as we can (up to 9500)
and allocate dma maps and receive buffers to match.

ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/28 23:23:27

Modified files:
	geo/mdal       : Makefile distinfo 

Log message:
Update to MDAL 0.3.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/28 23:24:25

Modified files:
	devel/proj     : Makefile distinfo 

Log message:
Update to proj 6.1.0


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/29 01:17:27

Modified files:
	sys/net80211   : ieee80211.c ieee80211_node.c 

Log message:
Repair the 'ifconfig mode' command.

The 'mode' command is supposed to force a wireless interface into 11a/b/g/n
media mode. This stopped working some time ago, probably during my work on
background scanning. Problem spotted by mlarkin@ who noticed that interfaces
were using 11g mode while forced to 11b mode.

ok phessler, jmatthew


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/05/29 02:30:26

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
Make the standard output messages of both methods of changing a key
pair's comments (using -c and -C) more applicable to both methods.
ok and suggestions djm@ dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/29 02:48:00

Modified files:
	usr.sbin/bgpd  : bgpd.c config.c pfkey.c 

Log message:
Rework pfkey handling a bit. The old remove then add way of inserting md5sig
hit a race frequently where a session ended up with no key/SPI in the kernel.
Since there is no way to do atomic updates of SADB_X_SATYPE_TCPSIGNATURE
the code is adding a new one then removing the old one.
Also make sure keys are correctly cleared when peers are deconfigured.
May not be perfect but a lot better than what was there before.
Tested by and OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/29 02:52:50

Modified files:
	regress/usr.sbin/bgpd/integrationtests: ovs.sh 

Log message:
Lets reload the config and check again, just in case where reload gets broken.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/29 02:54:53

Modified files:
	regress/usr.sbin/bgpd/integrationtests: md5.sh 

Log message:
After fixing the pfkey code a bit lets retry with a bit less workarounds.
In my testing the regress test is failing maybe once in 50 tries. Lets
see how bluhm@'s infrastructure is behaving.


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/05/29 03:25:14

Modified files:
	.              : want.html 

Log message:
Thanks to jack (at) jackenright.com a Fibocon UMB device is on the way.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/29 03:27:01

Modified files:
	textproc/ruby-kramdown: Makefile 

Log message:
Change the license marker: kramdown was licensed under the GPL until
the 1.0.0 release, then switched to MIT.


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/05/29 03:36:07

Modified files:
	build          : mirrors.dat 

Log message:
Fix a typo: Philippines was spelled wrong.

OK sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/05/29 03:43:30

Modified files:
	.              : ftp.html ftplist 
	openbgpd       : ftp.html 
	openntpd       : portable.html 
	openssh        : ftp.html portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/29 04:08:36

Modified files:
	usr.bin/tmux   : tmux.1 cmd-parse.y 

Log message:
Support \ooo escapes, from Avi Halachmi.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/29 05:13:23

Modified files:
	usr.sbin/bgpd  : bgpd.conf.5 

Log message:
Document the few neighbor options that need a reset (bgpctl nei X clear)
to be picked up after a reload.
With and OK jmc@, sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/05/29 05:15:11

Modified files:
	.              : events.html 
Added files:
	papers         : cuug2019-predictable.pdf 

Log message:
Last night's talk in Calgary..


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/29 05:42:34

Log message:
    openbsd-backgrounds: background pictures taken by OpenBSD devs,
    CC-BY
    
    okay solene@
    
    Status:
    
    Vendor Tag:	espie
    Release Tags:	ports
    
    N ports/graphics/openbsd-backgrounds/distinfo
    N ports/graphics/openbsd-backgrounds/Makefile
    N ports/graphics/openbsd-backgrounds/pkg/PLIST
    N ports/graphics/openbsd-backgrounds/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/29 05:43:28

Modified files:
	graphics       : Makefile 

Log message:
+openbsd-backgrounds
large flavor on the fence


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/29 05:48:29

Modified files:
	usr.sbin/relayd: parse.y relay.c relayd.c relayd.h 

Log message:
Move relay_load_*() functions into relayd.c

Pass the *env as an explicit argument instead of using the global
pointer: The relay_load_certfiles() function is called early before
the *env is set up.  This does not change anything in the current code
as *env is not used by anything in the function (not even
ssl_load_key() that is taking it as an argument) but it will be needed
by upcoming changes for SNI.

Ok rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/29 05:52:56

Modified files:
	usr.sbin/relayd: parse.y 

Log message:
Fix the check if a relay has been specified twice

Relays cannot have the same name or listen address.  If a listen
address is specified multiple times, the parser expands the
configuration into multiple relays automatically.

OK rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/29 05:54:49

Modified files:
	lib/libc/stdlib: realpath.c 

Log message:
There are some bugs in __realpath(2) -- it isn't quite ready so disable
calling it until those are fixed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/29 06:16:10

Modified files:
	graphics/ImageMagick: Makefile distinfo 
	graphics/ImageMagick/patches: patch-configure_ac 

Log message:
update to ImageMagick-6.9.10-47


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/05/29 06:30:02

Modified files:
	x11/greybird   : Makefile 

Log message:
Add missing BUILD_DEPENDS on librsvg.

build breakage reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/29 07:25:38

Modified files:
	archivers/cabextract: Makefile distinfo 

Log message:
update to cabextract-1.9
switch to libmspack from ports rather than the bundled one


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/29 07:32:21

Modified files:
	archivers/libmspack: Makefile distinfo 

Log message:
update to libmspack-0.10.1alpha

bump to EPOCH=1 because "alpha" isn't treated specially by packages-specs(7)
i.e. 0.10.1alphav0 is treated as older than 0.9alphav0


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/29 07:53:59

Modified files:
	regress/sys/kern/realpath: realpathtest.c 

Log message:
Add some more relative path tests


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/29 08:17:05

Modified files:
	security/clamav: Makefile 
	security/clamav/pkg: PLIST 

Log message:
use ports libmspack; should avoid intermittent problems seen building
clamav's bundled version


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/29 08:17:23

Modified files:
	www/c-icap/modules: Makefile 

Log message:
WANTLIB sync; clammspack -> mspack


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/29 08:32:02

Modified files:
	mail/dovecot   : Tag: OPENBSD_6_5 Makefile distinfo 
	mail/dovecot/pkg: Tag: OPENBSD_6_5 PLIST-server README-server 
	mail/dovecot-pigeonhole: Tag: OPENBSD_6_5 Makefile distinfo 
	mail/dovecot-pigeonhole/patches: Tag: OPENBSD_6_5 
	                                 patch-src_managesieve-login_Makefile_in 

Log message:
MFC Dovecot updates; CVE-2019-11494 and CVE-2019-11499, from Brad


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/05/29 08:37:32

Modified files:
	.              : pegasos.html events.html lyrics.html 
	faq            : faq8.html 

Log message:
Fix a bunch of typos.


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/05/29 08:41:58

Modified files:
	.              : openbsd.css 

Log message:
Add an rcsid to the CSS.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/29 09:04:53

Modified files:
	devel/p5-bareword-filehandles: Makefile distinfo 

Log message:
Update p5-bareword-filehandles to 0.007.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/29 09:22:04

Modified files:
	sys/kern       : vfs_getcwd.c 

Log message:
The past is fuzzy, but it appears during development of __getcwd, *retval
was used to return the length of the path, when the actual return value is 0.
This would cause confusing results in ktrace.
Diagnosed with beck since __realpath() picked up the same odd behaviour


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/29 11:00:49

Modified files:
	math/ebc       : Makefile distinfo 

Log message:
Update to ebc-2.0.2
Changelog: https://github.com/gavinhoward/bc/releases/tag/2.0.2


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/05/29 11:25:27

Modified files:
	lib/libssl     : ssl_tlsext.c 

Log message:
Do not send an SNI extension when resuming a session that contains a server
name (which means the client sent SNI during the initial handshake).

Issue reported by Renaud Allard.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/05/29 11:28:37

Modified files:
	lib/libssl     : ssl_tlsext.c 

Log message:
Relax parsing of TLS key share extensions on the server.

The RFC does not require X25519 and it also allows clients to send an empty
key share when the want the server to select a group. The current behaviour
results in handshake failures where the client supports TLS 1.3 and sends a
TLS key share extension that does not contain X25519.

Issue reported by Hubert Kario via github.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/29 12:48:33

Modified files:
	usr.sbin/ntpd  : client.c ntp.c ntpd.h 

Log message:
If a DBS resolve was done with the Checking Disabled flag, re-resolve
with once the clock is synced. ok deraadt@ florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/29 12:52:50

Modified files:
	audio/mscore   : Makefile distinfo 
	audio/mscore/patches: patch-CMakeLists_txt 
	                      patch-mscore_CMakeLists_txt 
	audio/mscore/pkg: PLIST 
Added files:
	audio/mscore/patches: patch-share_sound_CMakeLists_txt 

Log message:
Hello MuseScore 3.1
Lots of changes all across the board. For more info see the changelog:
https://musescore.org/en/3.1


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/29 13:34:43

Modified files:
	usr.bin/tmux   : cmd-parse.y cmd-queue.c 

Log message:
The line number needs to be updated only after the \n is processed by
the parser, so store a flag and update it next time around. Also each
new line needs its own shared data.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/05/29 13:37:06

Modified files:
	share/man/man1 : portcheck.1 proot.1 
	share/man/man4 : eoip.4 gre.4 
	share/man/man4/man4.armv7: amdisplay.4 

Log message:
Fix a bunch of typos in various man pages.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/29 14:05:15

Modified files:
	usr.bin/tmux   : arguments.c cmd-parse.y tty-term.c 
	                 window-buffer.c 

Log message:
Use VIS_CSTYLE for the arguments and add the missing escapes it can
generate to the parser.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/29 14:20:55

Modified files:
	www/lynx       : Makefile 

Log message:
Drop maintainership.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/29 14:30:54

Modified files:
	games/endless-sky: Makefile distinfo 
	games/endless-sky/patches: patch-SConstruct 
	games/endless-sky/pkg: PLIST 
Removed files:
	games/endless-sky/patches: patch-source_CollisionSet_cpp 

Log message:
Update to endless-sky-0.9.9
Changelog: https://github.com/endless-sky/endless-sky/releases/tag/v0.9.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/29 14:33:34

Modified files:
	devel/xtensa-elf/gcc: Makefile 

Log message:
Mark BROKEN on sparc64

From the error log:
build/genmddeps /usr/ports/pobj/xtensa-elf-gcc-6.3.0/gcc-6.3.0/gcc/common.md /usr/ports/pobj/xtensa-elf-gcc-6.3.0/gcc-6.3.0/gcc/config/xtensa/xtensa.md > tmp-mddeps
Illegal instruction (core dumped)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/29 15:28:59

Modified files:
	textproc/solr  : Makefile distinfo 
	textproc/solr/pkg: PLIST 

Log message:
update to solr-8.1.1


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/29 15:32:43

Modified files:
	usr.sbin/vmctl : main.c vmctl.8 

Log message:
Change vmctl(8) syntax: command options before the disk/name/id argument.

vmctl had a CLI-style syntax (bgpctl-style) for a short time but I
changed it back to a more suitable getopt syntax. I replaced the CLI
tokens to getopts flags but didn't consider swapping the order of
command options and arguments to be more UNIX-like again ("vmctl
create disk.img size 10G" simply became "vmctl create disk.img -s 10G").

This changes "create", "start", and "stop" commands to the commonly
expected syntax like "vmctl create -s 10G disk.img".

Requested by many

OK mlarkin@ kn@ solene@


CVSROOT:	/cvs
Module name:	www
Changes by:	reyk@cvs.openbsd.org	2019/05/29 15:33:53

Modified files:
	faq            : current.html faq16.html 

Log message:
vmctl(8) syntax changed: command options before argument


CVSROOT:	/cvs
Module name:	www
Changes by:	reyk@cvs.openbsd.org	2019/05/29 15:42:30

Modified files:
	faq            : faq16.html 

Log message:
Revert previous: The FAQ is for -stable, not for -current.

I moved the vmctl syntax change into a comment for the next release.

Pointed out by tb@


CVSROOT:	/cvs
Module name:	www
Changes by:	reyk@cvs.openbsd.org	2019/05/29 15:44:06

Modified files:
	faq            : current.html 

Log message:
Changed vmctl to vmctl(8) in the link text.

Pointed out by tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/29 16:24:08

Modified files:
	graphics/openbsd-backgrounds: Makefile 

Log message:
move to a slightly larger size.
tj@ made a convincing argument, and ~100MB is still alright.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/29 19:02:48

Modified files:
	www/p5-Cookie-Baker: Makefile distinfo 

Log message:
p5-Cookie-Baker: update to 0.10
Changelog:
https://metacpan.org/source/KAZEBURO/Cookie-Baker-0.10/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/05/29 20:11:16

Modified files:
	www/p5-WWW-Tumblr: Makefile distinfo 

Log message:
p5-WWW-Tumblr: update to 5.3
Changelog:
https://metacpan.org/source/DAMOG/WWW-Tumblr-5.3/Changes

tweaks and OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/29 21:56:26

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
wrap some long lines, except in bits I'll probably have to rewrite soon


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/05/29 23:55:10

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Mellanox support tells me that according to an internal datasheet, legacy
interrupts are not supported, leaving us with just MSI-X for mcx(4).


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/05/30 00:41:35

Modified files:
	net/dnstop     : Makefile distinfo 

Log message:
Update to 20180521 and switch to GH_*
diff from George Rosamond


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/30 01:42:41

Modified files:
	usr.bin/tmux   : tmux.1 tty.c 

Log message:
I had hoped that non-xenl terminals had died out, at least in fairly
modern OSs, but no - DragonFly BSD's console returns to haunt us. Fix it
at least somewhat. GitHub issue 1763.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/05/30 03:24:08

Modified files:
	share/man/man7 : ports.7 

Log message:
php5 -> php, php5 has left the ports tree.

from Jesper Wallin


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/30 04:04:33

Modified files:
	usr.bin/tmux   : cmd-parse.y 

Log message:
No longer need to reduce line number by one.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/30 04:15:54

Modified files:
	net/libvncserver: Makefile 

Log message:
Unbreak on gcc archs, use TLS emulation from ports-gcc.

No REVISION bump since it didn't build since the update to
LibVNCServer-0.9.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/30 05:14:46

Modified files:
	sysutils/bacula: Makefile distinfo 

Log message:
update to bacula-9.4.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/30 05:16:28

Modified files:
	graphics/openbsd-backgrounds: Makefile distinfo 
	graphics/openbsd-backgrounds/pkg: PLIST 

Log message:
figured out how to attach binary files on github,
so the distfiles is more or less the package
bonus point to the package: will update with only the new pictures


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/30 05:58:29

Modified files:
	sysutils/consul: Makefile distinfo 
	sysutils/consul/pkg: PLIST 

Log message:
Update to consul-1.5.1.
diff from Uwe Werler


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/30 05:58:42

Modified files:
	security/vault : Makefile distinfo 

Log message:
Update to vault-1.1.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/30 05:59:30

Modified files:
	sysutils/nomad : Makefile distinfo 

Log message:
Update to nomad-0.9.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/30 06:43:31

Modified files:
	lang/mono      : Makefile 
	x11/gnustep/base: Makefile 
	www/webkitgtk4/patches: patch-Source_cmake_OptionsCommon_cmake 
Removed files:
	databases/mongodb/patches: 
	                           patch-src_mongo_platform_stack_locator_openbsd_cpp 

Log message:
Drop pthread_np.h detection patches/overrides

Not needed any more after pthread_np.h rev 1.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/30 06:58:20

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Correct call to vfs_getcwd_common from within __realpath

I borrowed an example usage from __getcwd poorly to begin with
and then there was some other strangeness in there.
diagnosed with deraadt.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/30 07:10:23

Modified files:
	sys/kern       : vfs_getcwd.c 

Log message:
use copyoutstr, instead of fragile range math; ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/30 07:11:54

Modified files:
	sys/kern       : vfs_getcwd.c vfs_syscalls.c 

Log message:
namei() generate KTR_NAMEI record input filenames, but getcwd(2) and
realpath(2) have output filenames.  Generate additional KTR_NAMEI
records upon success.
ok millert beck


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/30 07:22:49

Modified files:
	lib/libc/stdlib: realpath.c 

Log message:
__realpath(2) appears to have improved, so re-enable the code that
checks userland-parsing vs kernel parsing, we are hoping to spot another
bug..


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/05/30 07:34:54

Modified files:
	sys/kern       : vfs_getcwd.c 

Log message:
Fix the initialization of bp before calling vfs_getcwd_common

It is bad style to make a pointer point outside the object
so correct this to simply point to the last byte up front.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/05/30 07:42:19

Modified files:
	usr.sbin/ntpd  : constraint.c ntp.c 

Log message:
Use proper algorithm for median computation; use fabs() for computing
an absolute value and fix poll loop to first generate messages and
then compute poll flags the write cases. This makes the timeout
workaround for constraints unneeded.  ok reyk@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/30 08:16:14

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.634.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/30 09:02:05

Modified files:
	infrastructure/mk: arch-defines.mk 

Log message:
Add aarch64 to GCC49_ARCHS, missed in the update to gcc-8.3.0

Unlocks ports who require ports-gcc (eg gfortran) on aarch64.  Spotted
by and diff by Martin Reindl (martin@), input from sthen@
ok sthen@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/05/30 10:24:33

Modified files:
	net/rabbitmq   : Makefile distinfo 
	net/rabbitmq/patches: patch-Makefile 
	net/rabbitmq/pkg: PLIST 
Added files:
	net/rabbitmq/patches: 
	                      patch-deps_rabbit_scripts_rabbitmq-defaults 
Removed files:
	net/rabbitmq/patches: 
	                      patch-plugins-src_rabbitmq-auth-backend-ldap_package_mk 
	                      patch-scripts_rabbitmq-defaults 

Log message:
Update to 2.6.15
while there, switch HOMEPAGE and MASTER_SITES to HTTPS
changes dependency to erlang from 18 -> 19

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/30 10:58:14

Modified files:
	mail/mutt      : Makefile 
Removed files:
	mail/mutt/patches: patch-contrib_gpg_rc 

Log message:
mutt 1.12.0 changed something in the build process, causing binaries to
be rebuilt in the install stage if variables were overridden. This resulted
in the finished binary trying to load /usr/local/share/examples/mutt/Muttrc
rather than /etc/mutt/Muttrc, most visible by a change in 'header weeding'
for people who didn't have ignore/unignore set in their own config, reported
by Anthony Campbell and tb@.

Tidy up some patch/subst mess while there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/30 11:23:46

Modified files:
	infrastructure/mk: pkgpath.mk 

Log message:
PORTS_PRIVSEP requires setting up SUDO anyway, so provide a default
okay kn@, solene@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/30 11:57:36

src/regress/sys/uvm/wx_syscall

Update of /cvs/src/regress/sys/uvm/wx_syscall
In directory cvs.openbsd.org:/usr/src/regress/sys/uvm/wx_syscall

Log Message:
Directory /cvs/src/regress/sys/uvm/wx_syscall added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/05/30 12:11:06

Added files:
	regress/sys/uvm/wx_syscall: Makefile wx_syscall.c 

Log message:
A test for W|X ^ syscall prevention, which is difficult to incorporate
properly into regress, because the wxneeded binary must be executed
from a wxallowed filesystem..


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/05/30 13:47:15

Modified files:
	net/wireguard-tools: Makefile 

Log message:
Use ports-gcc to provide __builtin_swap* on big endian gcc archs

As pointed out by Jasper, net/wireguard-go uses lang/go which isn't
available on sparc64; but someone might want to generate the keys on
a sparc64 system.  ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/30 14:25:58

Modified files:
	lang/php/7.3   : Makefile distinfo 

Log message:
update to php-7.3.6


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/30 14:54:03

Modified files:
	usr.bin/tmux   : cmd-display-message.c input.c mode-tree.c 
	                 options.c window.c 

Log message:
Remove a leftover abort and some fixes from cppcheck.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/05/30 15:05:38

Modified files:
	.              : ftp.html ftplist httpslist 
	build          : mirrors.dat 
	openbgpd       : ftp.html 
	openntpd       : portable.html 
	openssh        : ftp.html portable.html 

Log message:
bring back openbsd.ipacct.com per the operator's request


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/30 15:44:21

Modified files:
	sys/dev/pci    : pcireg.h 

Log message:
Fix definitions of PCI_MSIX_MAU32 and add a define for the MSI-X function
mask bit.

ok mlarkin@, jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/30 16:03:14

Modified files:
	sys/arch/amd64/pci: pci_machdep.c 

Log message:
Use two 32-bit writes instead of a single 64-bit write to write the
message address into an MSI-X table entry.  The RTL8168/RTL8111 hardware
does not respond to 64-bit access (reads return all-ones, writes are
ignored) and the PCI specification documents separate 32-bit "DWORD"
fields for message address and message upper address.

ok mlarkin@, jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/05/30 16:03:35

Modified files:
	sysutils/diffoscope: Makefile distinfo 

Log message:
Update to diffoscope-115


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/05/30 21:20:07

Modified files:
	usr.bin/ssh    : sshconnect2.c 

Log message:
fix ssh-keysign fd handling problem introduced in r1.304 caused by a typo
(STDIN_FILENO vs STDERR_FILENO)


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/05/30 22:46:18

Modified files:
	sys/kern       : init_main.c kern_fork.c kern_resource.c 
	sys/sys        : resourcevar.h 

Log message:
Rename struct plimit field p_refcnt to pl_refcnt to avoid confusion
with the fields of struct proc. Make pl_refcnt unsigned for upcoming
atomic updating.

OK deraadt@ guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/30 23:51:55

Modified files:
	devel/boost    : Makefile 

Log message:
Build the MD subpackage on PowerPC.

from Brad and tested by cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/30 23:54:15

Modified files:
	security/gnutls: Makefile distinfo 
	security/gnutls/pkg: PLIST 

Log message:
Update to gnutls-3.6.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/31 00:57:00

Log message:
    Import p5-W3C-LinkChecker-4.81.
    
    This set of modules provides the CSS-specific interfaces described in the
    W3C DOM recommendation.
    
    The CSS::DOM class itself implements the StyleSheet and CSSStyleSheet DOM
    interfaces.
    
    This set of modules has two modes:
    
    1. It can validate property values, ignoring those that are invalid (just
    like a real web browser), and support shorthand properties. This means you
    can set font to '13px/15px My Font' and have the font-size, line-height, and
    font-family properties (among others) set automatically. Also, color: green;
    color: kakariki will assign 'green' to the color property, 'kakariki' not
    being a recognised color value.
    
    2. It can blithely accept all property assignments as being valid. In the
    case of color: green; color: kakariki, 'kakariki' will be assigned, since it
    overrides the previous assignment.
    
    These two modes are controlled by the property_parser option to the
    constructors.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190531
    
    N ports/www/p5-CSS-DOM/Makefile
    N ports/www/p5-CSS-DOM/distinfo
    N ports/www/p5-CSS-DOM/pkg/DESCR
    N ports/www/p5-CSS-DOM/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/05/31 00:58:36

Modified files:
	www            : Makefile 

Log message:
+p5-CSS-DOM


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/31 02:02:04

Modified files:
	sys/arch/arm64/conf: files.arm64 
	sys/arch/arm64/dev: acpipci.c 
	sys/arch/arm64/include: pci_machdep.h 
Added files:
	sys/arch/arm64/dev: pci_machdep.c 

Log message:
Add MSI-X support for acpipci(4).  This splits out some generic code into
a new pci_machdep.c file such that it can be re-used by other arm64
PCI host bridge drivers in the future.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/31 02:22:25

Modified files:
	usr.sbin/bgpd  : parse.y 

Log message:
Also check the type of a network statement when looking for duplicates.
Fixes adding network 0.0.0.0/0 after network inet static.
OK phessler@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/31 03:13:34

Modified files:
	regress/usr.sbin/pkg_add: Makefile 

Log message:
add tests for the "new" tying bugs. first one on the way, second one
to be fixed soonish

(also fix bluhm's gore... Make sure .PHONY targets are accurate)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/05/31 03:46:31

Modified files:
	usr.sbin/bgpd  : rde.h rde_update.c 

Log message:
Exit the attribute loop early if there are no unknown attributes left
and the loop passed all attributes known by bgpd. Saves about 80% of
time in up_generate_attr().
OK phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/31 03:46:50

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
minor bug-fix


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/31 04:25:34

Modified files:
	mail/mutt      : Makefile 
Added files:
	mail/mutt/patches: patch-Makefile_am 

Log message:
handle previous differently (tweak Makefile to avoid recompiles in 'fake',
and go back to our usual "FAKE_FLAGS= sysconfdir=${PREFIX}/share/examples/xx"
mechanism); help from espie and discussed with upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/31 04:35:49

Modified files:
	sys/dev/fdt    : dwpcie.c 

Log message:
Add MSI-X support.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/31 04:36:27

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/patches: patch-res_res_pjsip_pjsip_options_c 
	                            patch-res_res_pjsip_registrar_c 
	                            patch-third-party_pjproject_Makefile 
	telephony/asterisk/pkg: PLIST-main 
Removed files:
	telephony/asterisk/patches: patch-Makefile_rules 

Log message:
update to asterisk-16.4.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/31 04:36:32

Modified files:
	sys/arch/arm64/dev: pciecam.c 

Log message:
Add MSI-X support.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/05/31 04:48:40

Modified files:
	usr.sbin/bgpctl: bgpctl.8 

Log message:
similar to note recently added to bgpd.conf(5), mention in docs for
"bgpctl reload" that ipsec/md5sig and "export none/default-route"
only take effect when the session is reset. sounds good to claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/31 04:55:02

Modified files:
	sys/dev/pci/drm/radeon: radeon_ttm.c 
	sys/dev/pci/drm/amd/amdgpu: amdgpu_ttm.c 

Log message:
remove duplicate page table
a holdover from when the allocation wasn't done in ttm


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/31 05:34:09

Modified files:
	usr.bin/tmux   : cmd-parse.y control.c 

Log message:
Allow % strings that are all numbers or %s, and fix a double free. Both
reported by George Nachman, GitHub issues 1765 and 1766.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/05/31 05:50:07

Modified files:
	sys/net80211   : ieee80211.c ieee80211_node.c 

Log message:
Revert my "Repair the 'ifconfig mode' command" commit.

The "recursion in end_scan()" problem is apparently still present in
the committed version of the diff (reported by krw@).


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/05/31 07:10:10

Modified files:
	.              : innovations.html 

Log message:
simplify html for ease of editing


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/05/31 07:15:31

Modified files:
	.              : 31.html 40.html 41.html 42.html 43.html 49.html 
	                 plus31.html plus42.html plus58.html 

Log message:
some unneccessary </li>


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/31 07:51:46

Modified files:
	audio/beets    : Makefile distinfo 

Log message:
update to beets-1.4.9
new feature: now supports https://no-color.org


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/31 07:58:09

Modified files:
	graphics/gthumb: Makefile distinfo 
	graphics/gthumb/pkg: PLIST 
Removed files:
	graphics/gthumb/patches: patch-configure 

Log message:
Update to gthumb-3.8.0.

ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/31 08:18:27

Modified files:
	sys/arch/arm64/arm64: cpu.c 

Log message:
Deimos is Cortex-A77.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/31 08:19:36

Modified files:
	security/vault : Makefile distinfo 

Log message:
Include the UI.

req. by Uwe Werler


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/31 08:29:13

Modified files:
	security/libsodium: Makefile distinfo 
	security/libsodium/pkg: PLIST 

Log message:
update to libsodium-1.0.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/31 08:31:43

Modified files:
	lang/php/7.1   : Makefile distinfo 

Log message:
update to php-7.1.29


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/31 08:31:51

Modified files:
	lang/php/7.2   : Makefile distinfo 

Log message:
update to php-7.2.19


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/31 08:35:44

Modified files:
	lang/php/7.1   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.2   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.3   : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC PHP updates: 7.1.30, 7.2.19, 7.3.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/05/31 08:37:03

Modified files:
	net/wireshark  : Tag: OPENBSD_6_5 Makefile distinfo 
	net/wireshark/patches: Tag: OPENBSD_6_5 patch-CMakeLists_txt 

Log message:
MFC update to wireshark-3.0.2


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/31 09:15:37

Modified files:
	usr.sbin/relayd: ca.c config.c parse.y relay.c relayd.c relayd.h 

Log message:
Move the relay keys/certs into a separate global list and look them up by id.

Moving the certs out of the relay struct will help to add multiple SNI certs.

Tested by many users (thanks!)

Feedback & OK rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/05/31 09:25:57

Modified files:
	usr.sbin/relayd: config.c parse.y relayd.c relayd.conf.5 
	                 relayd.h 

Log message:
Add support for SNI with new "tls keypair" option to load additional certs.

Tested by many (thanks!)

Feedback & OK rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/05/31 09:55:50

Modified files:
	usr.sbin/sensorsd: sensorsd.c 

Log message:
Fix previous: create() got inadvertently moved after parse_config(),
which effectively caused the config file to be ignored.  So move
parse_config() back after create().
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/31 10:13:55

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
a tidied version of mlarkin/phessler diffs to document options which don;t make
sense on "join" lines;


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/31 10:19:06

Modified files:
	astro/kstars   : Makefile distinfo 

Log message:
Update kstars to 3.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/05/31 10:19:37

Modified files:
	www/py-bokeh   : Makefile distinfo 
	www/py-bokeh/pkg: PLIST 

Log message:
Update to py-bokeh-1.2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/31 10:28:43

Modified files:
	x11/tellico    : Makefile distinfo 
	x11/tellico/pkg: PLIST 

Log message:
Update tellico to 3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/05/31 11:45:55

Modified files:
	devel/catch2   : Makefile distinfo 

Log message:
Update catch2 to 2.8.0


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/05/31 12:36:58

Modified files:
	lib/libc/sys   : closefrom.2 

Log message:
Note closefrom(2)'s origins in Solaris 9.

Manpage input from jmc@ and schwarze@, archaeological input from schwarze@.

ok schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/05/31 12:42:25

Modified files:
	databases/ruby-sequel_pg: Makefile distinfo 

Log message:
Update to sequel_pg 1.12.1


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/05/31 13:15:05

Modified files:
	gnu/llvm/lib/CodeGen: ReturnProtectorLowering.cpp 
	gnu/llvm/lib/Target/AArch64: AArch64FrameLowering.cpp 
	                             AArch64ReturnProtectorLowering.cpp 

Log message:
Re-enable RETGUARD leaf function optimization for arm64.

It turns out MachineFrameInfo.hasCalls() is unreliable, because it is
up to the backends to update this information whenever they add calls
to a function, and this does not always happen.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/05/31 13:17:39

Modified files:
	gnu/llvm/tools/clang/lib/Driver/ToolChains: Clang.cpp 

Log message:
Re-enable frame pointer elimination for x86 and mips64 if optimizations are
enabled.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/05/31 13:51:10

Modified files:
	sys/kern       : init_main.c kern_acct.c kern_exec.c kern_exit.c 
	                 kern_fork.c kern_resource.c kern_sched.c 
	                 kern_sysctl.c kern_time.c sched_bsd.c tty.c 
	sys/sys        : proc.h resourcevar.h sysctl.h 

Log message:
Use a per-process mutex to protect time accounting instead of SCHED_LOCK().

Note that hardclock(9) still increments p_{u,s,i}ticks without holding a
lock.

ok visa@, cheloha@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/05/31 15:23:34

Modified files:
	sys/dev/fdt    : rkpcie.c 

Log message:
Add MSI-X support.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/05/31 15:24:19

Modified files:
	emulators/mame : Makefile distinfo 
	emulators/mame/patches: patch-makefile 

Log message:
Update mame to 0.210.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/31 15:27:04

Modified files:
	infrastructure/mk: bsd.port.mk 
	databases/sqlports: Makefile 
	databases/sqlports/files: Info.pm 

Log message:
phase out old PERMIT_* variables.
We won't be distributing CDROM anymore, so simplify to
just PERMIT_PACKAGE / PERMIT_DISTFILES

In particular, the new variables are shorter, so this makes
for better cosmetic sense in ports.

The "current" version allows for the old variables to die out
peacefully, at our leasure, and then I'll remove the old stubs.

As discussed with sthen@, various people agree, and deraadt@
is okay with the strategic change.

This does survive a bulk.

PLEASE NOTE: built packages require current pkg* tools.
In particular, the current version deals with
@comment pkgpath=* ftp=*
just fine, but the old one WILL COMPLAIN about missing cdrom info.

register-plist also doesn't care, adding/removing cdrom info
is a no-op for it. There is NO BUMP needed for the conversion.

For now, sqlports STILL carries the old variables. I'll deal
with their removal later.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/05/31 15:27:49

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
document the newer PERMIT_PACKAGE framework


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/31 15:29:52

Modified files:
	infrastructure/templates: Makefile.template 

Log message:
move to new PERMIT


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/05/31 15:41:17

Modified files:
	usr.bin/tmux   : cmd-queue.c format.c 

Log message:
Fix warnings, from Ben Boeckel.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/05/31 15:55:24

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
update to 2.6
use new licence markers, so we'll see who's up-to-date :)


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/05/31 16:34:14

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Fix edge case tests in long form encoding. Regress failure noticed by Bluhm on
32 bit platforms.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/05/31 17:12:08

Modified files:
	share/man/man1 : dpb.1 
	share/man/man5 : bsd.port.mk.5 
	usr.sbin/vmctl : vmctl.8 

Log message:
zap trailing whitespace;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/31 17:50:49

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_fence.c 

Log message:
drm/amdgpu: fix old fence check in amdgpu_fence_emit

From Christian Koenig
d8a36f8418034bacef0b5b73c0822f41646d77ba in linux 4.19.y/4.19.47
3d2aca8c8620346abdba96c6300d2c0b90a1d0cc in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/31 17:53:28

Modified files:
	sys/dev/pci/drm/amd/display/dc/core: dc_resource.c 

Log message:
drm/amd/display: fix releasing planes when exiting odm

From Dmytro Laktyushkin
70611b1b81c4ec8ce99d3c00107e89697ec1f495 in linux 4.19.y/4.19.47
bc2193992b00488f5734613ac95b78ef2d2803ab in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/31 17:55:46

Modified files:
	sys/dev/pci/drm/amd/display/dc/dcn10: dcn10_dpp_dscl.c 

Log message:
drm/amd/display: Fix Divide by 0 in memory calculations

From Murton Liu
fc5293ab6c48710eed5df3b40e808e3a3c560e2d in linux 4.19.y/4.19.47
59979bf8be1784ebfc44215031c6c88ca22ae65d in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/31 17:58:33

Modified files:
	sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm.c 

Log message:
drm/amd/display: Set stream->mode_changed when connectors change

From Nicholas Kazlauskas
62e79f4c6bc05c32be43e2532fe12c082429af27 in linux 4.19.y/4.19.47
b9952f93cd2cf5fca82b06a8179c0f5f7b769e83 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/31 18:02:28

Modified files:
	sys/dev/pci/drm: drm_file.c 

Log message:
drm: Wake up next in drm_read() chain if we are forced to putback the event

From Chris Wilson
00734a9e7329acc48e575f697ee4118998c1dac0 in linux 4.19.y/4.19.47
60b801999c48b6c1dd04e653a38e2e613664264e in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/05/31 19:40:14

Modified files:
	lang/janet     : Makefile distinfo 
	lang/janet/patches: patch-Makefile 
	lang/janet/pkg : PLIST 

Log message:
Update janet to 0.6.0.

All kinds of newness: https://github.com/janet-lang/janet/releases/tag/v0.6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/05/31 22:30:52

Modified files:
	sys/arch/arm64/arm64: cpu.c 

Log message:
Recognise Cortex-A65.
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/01 00:20:22

Modified files:
	usr.bin/tmux   : cmd-parse.y 

Log message:
Need stdlib.h, from Ben Boeckel.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/01 00:38:33

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 01:58:09

Modified files:
	x11/gnome/gedit: Makefile 

Log message:
Missing BDEP on devel/libsoup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/01 02:39:23

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: 
	                      patch-base_process_process_metrics_openbsd_cc 

Log message:
fix functions to show the proper number of open fds


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 03:47:19

Modified files:
	net/ircd-hybrid: Makefile distinfo 
	net/ircd-hybrid/patches: patch-doc_Makefile_in 
	                         patch-doc_reference_conf 
	net/ircd-hybrid/pkg: PLIST 

Log message:
Update to ircd-hybrid-8.2.26.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 03:52:34

Modified files:
	www/lighttpd   : Makefile distinfo 
	www/lighttpd/pkg: PLIST 

Log message:
Update to lighttpd-1.4.54.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/06/01 03:53:27

Modified files:
	www/p5-WWW-Search: Makefile distinfo 

Log message:
p5-WWW-Search: update to 2.518
Changelog:
https://metacpan.org/source/MTHURN/WWW-Search-2.518/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/06/01 03:54:19

Modified files:
	usr.sbin/relayd: config.c 

Log message:
Make sure that the IMSG_CTL_RESET message is sent immediately.

This fixes an issue that might better be solved in imsg itself.

The problem is that IMSG_CTL_RESET does not include an fd while the
following messages (IMSG_CFG_RELAY and IMSG_CFG_RELAY_FD) do contain
fds.  If the receiver gets them in one buffer (via recvmsg), the first
fd might be wrongly associated to the IMSG_CTL_RESET message.  This is
theoretically taken care of by the imsg API, so it is either a bug in
relayd's API usage or in imsg itself.

"sure" claudio@ as a temporary fix.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/06/01 04:11:09

Modified files:
	textproc/libwpd: Makefile 
Added files:
	textproc/libwpd/patches: patch-src_lib_WPXHeader_cpp 

Log message:
libwpd: add a missing header to fix the build with ports-gcc

OK jca@ (maintainer timeout)


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/06/01 05:39:57

Modified files:
	lib/libz       : infback.c inffast.c inflate.c 
	sys/lib/libz   : infback.c inffast.c inflate.c 

Log message:
Fix warnings when building zlib with ZLIB_CONST defined

Probably not very useful (given the lack of feedback) but feels more
correct.  Kernel part tested with option ZLIB_CONST.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/01 05:45:01

Modified files:
	sys/arch/arm64/arm64: machdep.c pmap.c 

Log message:
On machines with large amounts of physical memory we fail to initialize uvm
because we don't have enough kernel memory available in the early bootstrap
phase to allocate the vm_page structures.  Fix this by making uvm_growkernel()
work before uvm is initialized like we do on other architectures that don't
use a direct map and explicitly call it after enumerating the available
physical memory with an estimate of how much KVA we need to initialize uvm.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 05:49:15

Modified files:
	x11/rdesktop   : Makefile distinfo 
Removed files:
	x11/rdesktop/patches: patch-configure 

Log message:
Update to rdesktop-1.8.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/01 08:11:18

Modified files:
	sys/kern       : init_main.c kern_acct.c kern_exec.c kern_exit.c 
	                 kern_fork.c kern_resource.c kern_sched.c 
	                 kern_sysctl.c kern_time.c sched_bsd.c tty.c 
	sys/sys        : proc.h resourcevar.h sysctl.h 

Log message:
Revert to using the SCHED_LOCK() to protect time accounting.

It currently creates a lock ordering problem because SCHED_LOCK() is taken
by hardclock().  That means the "priorities" of a thread should be moved
out of the SCHED_LOCK() first in order to make progress.

Reported-by: syzbot+8e4863b3dde88eb706dc@syzkaller.appspotmail.com
via anton@ as well as by kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/06/01 09:20:08

Modified files:
	gnu/llvm/tools/clang/lib/Driver/ToolChains: Clang.cpp 

Log message:
Do not eliminate frame pointers on i386. The entire i386 ecosystem assumes
it will be there.
problem found by naddy@, "heck yeah" kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/01 10:21:37

Modified files:
	usr.bin/tmux   : cmd-new-session.c 

Log message:
If only one of -x or -y is given, use the calculated size for the
other. Pointed out by Ben Boeckel.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 10:32:00

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.159.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 10:32:13

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.159.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 10:32:27

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.169.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 10:41:36

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-248.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/06/01 11:06:31

Modified files:
	gnu/llvm/tools/clang/lib/Driver/ToolChains: Clang.cpp 

Log message:
Back out frame pointer elimination optimization.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/01 12:03:30

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_flag_descriptions_cc 
	                      patch-chrome_browser_flag_descriptions_h 
	                      patch-chrome_common_webui_url_constants_cc 
	                      patch-chrome_common_webui_url_constants_h 
	                      patch-chrome_test_BUILD_gn 
	                      patch-content_browser_BUILD_gn 
	                      patch-ui_message_center_views_message_popup_view_cc 
Added files:
	www/chromium/patches: patch-tools_gn_build_gen_py 
	                      patch-tools_gn_tools_gn_args_cc 

Log message:
update to 75.0.3770.66


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/01 12:38:27

Modified files:
	sys/arch/arm64/include: vmparam.h 

Log message:
Bump VM_MAX_KERNEL_ADDRESS so that we have about 16G of KVA.  Since
we need KVA to keep track of all the RAM pages, machines with a lot
of memory easily exhaust our KVA space.  We need about 1G of KVA
per 32G of memory, so with 16G of KVA we can maintain close to 512G
of memory.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/06/01 13:40:05

Modified files:
	lib/libutil    : ber.c 

Log message:
Limit maximum number of length octets to platform independent sizeof(int32_t).

Problem noticed by bluhm@. Discussed on hackers.

ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/06/01 13:44:47

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Update regression test for a maximum sizeof(int32_t) length octets.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/01 14:00:01

Modified files:
	devel          : Makefile 
	devel/py-unicorn: Makefile 
	devel/py-unicorn/patches: patch-src_Makefile 
	devel/py-unicorn/pkg: PLIST 

Log message:
Enable py-unicorn,python3

QEMU's configure script cannot cope with modern Python, but unicorn does.

Pass python2 to QEMU in both cases, otherwise unicorn behaves like any
other flavored python port.

"go ahead" jasper


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/01 14:54:12

Modified files:
	fonts/spleen   : Makefile distinfo 

Log message:
Update spleen to 1.0.5.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/06/01 14:57:33

Modified files:
	.              : openbsd.css 
	libressl       : openbsd.css 
	openbgpd       : openbsd.css 
	opencvs        : openbsd.css 
	openntpd       : openbsd.css 
	openrsync      : openbsd.css 
	opensmtpd      : openbsd.css 
	openssh        : openbsd.css 

Log message:
define some often-used colors and sync css files


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/06/01 14:59:32

Modified files:
	libressl       : goals.html mail.html papers.html patches.html 
	                 releases.html signing.html 
	openbgpd       : papers.html 
	opencvs        : press.html 
	openntpd       : papers.html 
	opensmtpd      : donations.html papers.html report.html 
	                 security.html 
	openssh        : openbsd.html press.html releasenotes.html 

Log message:
reference the css file for coloring info instead of manually specifying
it over and over on each page individually


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/06/01 16:09:28

Modified files:
	.              : openbsd.css 
	libressl       : openbsd.css 
	openbgpd       : openbsd.css 
	opencvs        : openbsd.css 
	openntpd       : openbsd.css 
	openrsync      : openbsd.css 
	opensmtpd      : openbsd.css 
	openssh        : openbsd.css 

Log message:
introduce a new "dark mode" for the openbsd project websites, using the
prefers-color-scheme css function. this version will only be displayed if
the user's browser specifically sends a "prefer darker themes if available"
request. that functionality is limited to firefox and safari at the moment,
but chrome support is planned.

with much help from bentley; ok deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/06/01 16:34:41

Modified files:
	.              : art1.html art2.html art3.html artwork.html 

Log message:
in dark mode, set images to 85% opacity, then return them to 100% when
the user hovers their mouse over the thumbnail. this creates a neat
"glowing" effect that makes image selection a bit more apparent.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/01 16:42:21

Modified files:
	sys/sys        : proc.h syscall_mi.h 
	sys/uvm        : uvm_map.c uvm_map.h 
	sys/arch/alpha/alpha: trap.c 
	sys/arch/amd64/amd64: trap.c 
	sys/arch/arm/arm: fault.c 
	sys/arch/arm64/arm64: trap.c 
	sys/arch/hppa/hppa: trap.c 
	sys/arch/i386/i386: trap.c 
	sys/arch/mips64/mips64: trap.c 
	sys/arch/powerpc/powerpc: trap.c 
	sys/arch/sparc64/sparc64: trap.c 

Log message:
Refactor the MAP_STACK feature, and introduce another similar variation:
Lookup the address that a syscall instruction is executed from, and kill
the process if that page is writeable.  This brings an aspect of W^X
behaviour to W|X mappings (in JITs not yet adapted to W^X).  The goal is
to remove simple attack methods and force use of ret2libc or other more
complicated means.
ok kettenis stefan visa


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/01 16:42:56

Modified files:
	.              : innovations.html 

Log message:
syscall prevention from writeable memory


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/01 16:54:18

Modified files:
	.              : 47.html 55.html 60.html 62.html 63.html 
	                 arm64.html armv7.html crypto.html 
	                 hackathons.html hp300.html innovations.html 
	                 mvme88k.html sparc.html sparc64.html 
	libressl       : goals.html index.html patches.html 
	                 releases.html 
	openbgpd       : ftp.html 
	openntpd       : features.html goals.html portable.html 
	opensmtpd      : list.html portable.html security.html 
	openssh        : ftp.html legacy.html list.html portable.html 
	                 releasenotes.html 

Log message:
removal of pointless </p> and </li>


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/01 16:57:36

Modified files:
	libressl       : signing.html 
	opensmtpd      : portable.html security.html 

Log message:
removal of pointless </p> and </li>


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/01 17:12:53

Modified files:
	.              : 33.html 40.html 41.html 42.html 43.html 44.html 
	                 45.html 47.html 48.html 49.html 51.html 52.html 
	                 53.html 57.html 59.html 62.html 63.html 
	                 ECL.html amd64.html anoncvs.html arc.html 
	                 books.html cats.html errata57.html 
	                 errata63.html events.html ftp.html goals.html 
	                 groups.html hp300.html hppa.html i386.html 
	                 innovations.html mac68k.html macppc.html 
	                 mail.html mvme88k.html palm.html pegasos.html 
	                 plus.html plus20.html plus21.html plus22.html 
	                 plus23.html plus24.html plus25.html plus26.html 
	                 plus27.html plus28.html plus29.html plus31.html 
	                 plus32.html plus33.html plus34.html plus35.html 
	                 plus36.html plus37.html plus38.html plus41.html 
	                 plus42.html plus43.html plus46.html plus47.html 
	                 plus48.html plus49.html plus52.html plus64.html 
	                 plus65.html report.html security.html 
	                 sparc.html sparc64.html testimonials.html 
	                 tshirts.html vax.html want.html 
	faq            : faq11.html faq15.html upgrade61.html 
	                 upgrade63.html upgrade64.html upgrade65.html 
	openbgpd       : ftp.html users.html 
	openntpd       : portable.html 
	opensmtpd      : index.html report.html security.html 
	openssh        : features.html list.html manual.html 
	                 openbsd.html press.html releasenotes.html 
	                 report.html security.html users.html 

Log message:
nasty whitespaces


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/01 17:22:41

Modified files:
	net/bro        : Makefile distinfo 

Log message:
SECURITY update to bro-2.6.2.
- CVE-2019-12175


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/06/01 19:03:01

Modified files:
	lib/libc       : Makefile 
	lib/libc/dlfcn : dlfcn_stubs.c init.c 
	lib/libc/hidden: tib.h 
	lib/libc/include: namespace.h 
	lib/libc/stdlib: thread_atexit.c 
Added files:
	lib/libc/hidden: dlfcn.h link_elf.h 

Log message:
Complete the ld.so boot cleanup: move most libc initialization from
_csu_finish() to _libc_preinit(), which is an .init_array function
in shared libc (and mark it INITFIRST) or a .preinit_array function
in static libc, grabbing the _dl_cb callback there from ld.so.  Then
in _csu_finish(), invoke the dl_clean_boot() callback to free ld.so's
startup bits before main() gets control.

Other cleanups this permits:
- move various startup structures into .data.rel.ro
- the dl* stubs in libc can be strong and call the callbacks provided
via _dl_cb
- no longer need to conditionalize dlctl() calls on presence of _DYNAMIC

original concept and full diff ok kettenis@
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/06/01 20:07:44

Modified files:
	net/snort      : Makefile distinfo 
	net/snort/patches: 
	                   patch-src_dynamic-plugins_sf_engine_Makefile_in 
	                   patch-src_dynamic-preprocessors_Makefile_in 
	                   patch-src_dynamic-preprocessors_appid_Makefile_in 
	                   patch-src_dynamic-preprocessors_dcerpc2_Makefile_in 
	                   patch-src_dynamic-preprocessors_dnp3_Makefile_in 
	                   patch-src_dynamic-preprocessors_dns_Makefile_in 
	                   patch-src_dynamic-preprocessors_ftptelnet_Makefile_in 
	                   patch-src_dynamic-preprocessors_gtp_Makefile_in 
	                   patch-src_dynamic-preprocessors_imap_Makefile_in 
	                   patch-src_dynamic-preprocessors_modbus_Makefile_in 
	                   patch-src_dynamic-preprocessors_pop_Makefile_in 
	                   patch-src_dynamic-preprocessors_reputation_Makefile_in 
	                   patch-src_dynamic-preprocessors_sdf_Makefile_in 
	                   patch-src_dynamic-preprocessors_sip_Makefile_in 
	                   patch-src_dynamic-preprocessors_smtp_Makefile_in 
	                   patch-src_dynamic-preprocessors_ssh_Makefile_in 
	                   patch-src_dynamic-preprocessors_ssl_Makefile_in 
	                   patch-src_preprocessors_Stream6_snort_stream_tcp_c 
	                   patch-src_preprocessors_spp_sfportscan_c 
	                   patch-src_util_c patch-src_util_h 

Log message:
Update to Snort 2.9.13 from maintainer Markus Lude, with a note in
patch-src_dynamic-plugins_sf_engine_Makefile_in to indicate that
libsf_sorules is disabled.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/01 20:37:12

Modified files:
	usr.sbin/pcidump: pcidump.c 

Log message:
dump pcie Device Serial Number capability values


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/01 21:58:28

Modified files:
	sys/kern       : init_main.c kern_resource.c 
	sys/sys        : resourcevar.h 

Log message:
Move initialization of limit0 into a dedicated function. This new
function is also a proper place for setting up the plimit pool.

While here, raise the IPL of the plimit pool to IPL_MPFLOOR, needed
in upcoming MP work.

OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bentley@cvs.openbsd.org	2019/06/02 00:16:37

Modified files:
	usr.bin/printf : printf.1 

Log message:
Fix incorrect character escape.

From Stephen Gregoratto; thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/06/02 00:19:39

Log message:
    Frame Streams is a light weight, binary clean protocol that allows for
    the transport of arbitrarily encoded data payload sequences with minimal
    framing overhead -- just four bytes per data frame. Frame Streams does
    not specify an encoding format for data frames and can be used with any
    data serialization format that produces byte sequences, such as Protocol
    Buffers, XML, JSON, MessagePack, YAML, etc.
    ok and help sthen@
    
    Status:
    
    Vendor Tag:	otto
    Release Tags:	otto_20190602
    
    N ports/net/libfstrm/Makefile
    N ports/net/libfstrm/distinfo
    N ports/net/libfstrm/pkg/DESCR
    N ports/net/libfstrm/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/06/02 00:24:26

Modified files:
	net            : Makefile 

Log message:
Add libfstrm


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/02 00:46:18

Modified files:
	etc/etc.alpha  : login.conf 
	etc/etc.amd64  : login.conf 
	etc/etc.arm64  : login.conf 
	etc/etc.armv7  : login.conf 
	etc/etc.hppa   : login.conf 
	etc/etc.i386   : login.conf 
	etc/etc.landisk: login.conf 
	etc/etc.loongson: login.conf 
	etc/etc.luna88k: login.conf 
	etc/etc.macppc : login.conf 
	etc/etc.octeon : login.conf 
	etc/etc.sgi    : login.conf 
	etc/etc.sparc64: login.conf 

Log message:
spelling/grammar fixes; from larry hynes


CVSROOT:	/cvs
Module name:	src
Changes by:	bentley@cvs.openbsd.org	2019/06/02 00:53:11

Modified files:
	bin/csh        : csh.1 
	usr.bin/less   : lesskey.1 
	usr.bin/sort   : sort.1 
	usr.sbin/amd/amq: amq.8 
	sbin/ncheck_ffs: ncheck_ffs.8 

Log message:
In manpages, don't escape apostrophes as \'; it's rarely what you want.

Most of these are correct just as '. A few benefit from Ql or \(aq.
But if in doubt, just use '.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/02 01:10:15

Modified files:
	usr.bin/tmux   : cmd-parse.y 

Log message:
yacc(1) copies its union so it is not a good place to store
TAILQ_HEADs. Allocate them instead. Found from a problem reported by
sthen@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/02 02:31:02

Modified files:
	multimedia/xvidcore: Makefile distinfo 
	multimedia/xvidcore/patches: patch-build_generic_Makefile 
	                             patch-build_generic_configure 

Log message:
Update to xvidcore-1.3.5.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/02 02:32:12

Modified files:
	multimedia/dav1d: Makefile 
Added files:
	multimedia/dav1d/patches: patch-src_arm_asm_S patch-src_env_h 
	                          patch-src_recon_tmpl_c 

Log message:
- arm: Mark the stack as non-executable on ELF
- Optimize coefficient decoding

via Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/02 02:42:29

Modified files:
	net/rabbitmq   : Makefile 

Log message:
Needs net/rsync to build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/02 03:38:41

Modified files:
	net/bro        : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
SECURITY update to bro-2.6.2
- CVE-2019-12175


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/06/02 05:22:30

Modified files:
	games/barony   : Tag: OPENBSD_6_5 Makefile 
Added files:
	games/barony/patches: Tag: OPENBSD_6_5 patch-src_draw_cpp 

Log message:
Fix a bug related to sdl-ttf
https://github.com/TurningWheel/Barony/commit/8899466a959a91d7f86206f0ad579a877e324aaf

Thanks to maintainer David Carlier


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 05:33:36

Modified files:
	devel/flawfinder: Makefile distinfo 

Log message:
update to flawfinder-2.0.9l


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 05:35:28

Modified files:
	devel/p5-Event : Makefile distinfo 

Log message:
update to p5-Event-1.27l


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 05:42:21

Modified files:
	security/boofuzz: Makefile distinfo 
	security/boofuzz/patches: patch-setup_py 
	security/boofuzz/pkg: PLIST 
Removed files:
	security/boofuzz/patches: patch-boofuzz_helpers_py 

Log message:
update to boofuzz-0.1.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 05:53:10

Modified files:
	sysutils/ansible: Makefile distinfo 
	sysutils/ansible/patches: patch-lib_ansible_utils_encrypt_py 
	sysutils/ansible/pkg: PLIST-html PLIST-main 

Log message:
update to ansible-2.8.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 05:57:02

Modified files:
	net/py-ncclient: Makefile distinfo 
	net/py-ncclient/pkg: PLIST 

Log message:
update to py-ncclient-0.6.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 05:57:20

Modified files:
	www/libsass    : Makefile distinfo 

Log message:
update to libsass-3.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 05:57:28

Modified files:
	www/sassc      : Makefile distinfo 

Log message:
update to sassc-3.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/02 06:54:26

Modified files:
	devel/spidermonkey60: Makefile distinfo 
	devel/spidermonkey60/pkg: PLIST 

Log message:
Update to spidermonkey-60.7.0.
- fix @conflict markers while here

ok jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 07:22:36

Modified files:
	sys/net        : bfd.c 

Log message:
Repair state and flag bitmasks to match RFC, from Mitchell Krome
ok claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 08:29:58

Modified files:
	usr.bin/rsync  : flist.c 

Log message:
spelling; from Hiltjo Posthuma


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 08:30:51

Modified files:
	usr.bin/rsync  : blocks.c 

Log message:
have_md is initialized at startup, don't need to do it again later
from Hiltjo Posthuma


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 08:36:59

Modified files:
	faq            : faq11.html upgrade55.html 

Log message:
few more </li>


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 08:38:28

Removed files:
	distrib/ramdisk: Makefile 

Log message:
A few architectures used a "shared ramdisk/Makefile" with inverted
reach-around for .inc files.  That method is now gone.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 08:58:44

Modified files:
	distrib/sparc64/ramdiskB: list 
	distrib/sparc64/ramdisk: list 
	distrib/octeon/ramdisk: list 
	distrib/luna88k/ramdisk: list 
	distrib/landisk/ramdisk: list 

Log message:
first few small steps towards unification


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 09:06:49

Removed files:
	distrib/ramdisk: list 

Log message:
this list file is never used


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/02 10:24:42

Modified files:
	audio/faudio   : Makefile distinfo 

Log message:
update to faudio 19.06, tested with FNA and 2 XNA games by me; ok jca@ ports-wise


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/06/02 10:48:49

Modified files:
	.              : openbsd.css 
	libressl       : openbsd.css 
	openbgpd       : openbsd.css 
	opencvs        : openbsd.css 
	openntpd       : openbsd.css 
	openrsync      : openbsd.css 
	opensmtpd      : openbsd.css 
	openssh        : openbsd.css 

Log message:
improve visibility of visited links; suggested by armin besirovic


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/02 10:50:46

Modified files:
	usr.bin/mandoc : mandoc.css 

Log message:
Support prefers-color-scheme: dark.
The :visited rule was contributed by <Armin at Besirovic dot com>.
Guidance and OK tj@.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/02 11:36:48

Modified files:
	usr.bin/rsync  : blocks.c extern.h sender.c 

Log message:
Use a simple hash table to look up blocks by the fast-hash.  Also use
a rolling computation for the fast-hash.OB With this openrsync is on
par with gpl rsync for file updates.
From kristaps


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 11:43:34

Modified files:
	usr.bin/rsync  : blocks.c 

Log message:
KNF and sneaky whitespaces


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/02 12:40:58

Modified files:
	sys/arch/arm64/dev: acpipci.c pci_machdep.c pciecam.c 
	sys/arch/arm64/include: pci_machdep.h 

Log message:
Change pci_intr_handle_t into a struct and replace duplicated code that
implements mapping of MSI and MSI-X interrupts with new generic functions.
Fixes a use-after-free in sone PCI device drivers that call pci_intr_string(9)
after pci_intr_establish(9).

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 13:13:23

Log message:
    import py-ana-0.05
    
    ANA is a project to provide easy distributed data storage for stuff. It
    provides every object with a UUID and, when pickled, will first
    serialize the object's state to a central location and then "pickle" the
    object into just its UUID. This is really handy when you have to
    distribute objects in some distributed system, and you'd rather not
    pickle the whole object every time you need to send it.
    
    feedback and ok kn@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190206
    
    N ports/devel/py-ana/Makefile
    N ports/devel/py-ana/distinfo
    N ports/devel/py-ana/pkg/DESCR
    N ports/devel/py-ana/pkg/PLIST
    N ports/devel/py-ana/files/README.md
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/02 13:14:52

Modified files:
	devel          : Makefile 

Log message:
+py-ana


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/02 13:17:10

Modified files:
	devel/kdiff3   : Makefile distinfo 
	devel/kdiff3/pkg: PLIST 

Log message:
Bugfix update kdiff3 to 1.8.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/02 16:53:44

Log message:
    Import py-bitstring
    
    Bitstrings can be constructed from integers (big and little endian), hex,
    octal, binary, strings or files. They can be sliced, joined, reversed,
    inserted into, overwritten, etc. with simple functions or slice notation.
    They can also be read from, searched and replaced, and navigated in,
    similar to a file or stream.
    
    Feedback and OK jasper
    
    Status:
    
    Vendor Tag:	kn
    Release Tags:	kn_20190603
    
    N ports/devel/py-bitstring/Makefile
    N ports/devel/py-bitstring/distinfo
    N ports/devel/py-bitstring/pkg/DESCR
    N ports/devel/py-bitstring/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/02 16:55:29

Modified files:
	devel          : Makefile 

Log message:
+ py-bitstring


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/06/02 17:15:36

Modified files:
	.              : index.html 

Log message:
openiked.org has https now


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/06/02 17:16:30

Modified files:
	.              : openbsd.css 
	libressl       : openbsd.css 
	openbgpd       : openbsd.css 
	opencvs        : openbsd.css 
	openntpd       : openbsd.css 
	openrsync      : openbsd.css 
	opensmtpd      : openbsd.css 
	openssh        : openbsd.css 

Log message:
unify sidebar colors; requested by deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/02 18:43:26

Modified files:
	sys/dev/fdt    : dwpcie.c rkpcie.c 

Log message:
Change pci_intr_handle_t into a struct and replace duplicated code that
implements mapping of MSI and MSI-X interrupts with new generic functions.
Fixes a use-after-free in sone PCI device drivers that call pci_intr_string(9)
after pci_intr_establish(9).

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/06/02 19:27:30

Modified files:
	share/man/man9 : Makefile 
	sys/kern       : kern_tc.c kern_time.c 
	sys/sys        : time.h 
Added files:
	share/man/man9 : bintimeadd.9 

Log message:
Switch from bintime_add() et al. to bintimeadd(9).

Basically just make all the bintime routines look and behave more like
the timeradd(3) macros.

Switch to three-argument forms for structure math, introduce and use
bintimecmp(9), and rename the structure conversion routines to resemble
e.g. TIMEVAL_TO_TIMESPEC(3).

Document all of this in a new bintimeadd.9 page.

Code input from mpi@, manpage input from schwarze@.

code ok mpi@, docs ok schwarze@, docs probably still ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/06/02 19:52:53

Modified files:
	sys/dev/pci    : if_alc.c 

Log message:
- Remove a redundant check within alc_mii_readreg_813x().
The PHY address is already checked within alc_miibus_readreg().
- Remove redundant call to alc_stop_queue().
First thing alc_stop_mac() does is call alc_stop_queue().

From Brad


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/02 20:43:04

Modified files:
	.              : openbsd.css 
	libressl       : openbsd.css 
	openbgpd       : openbsd.css 
	opencvs        : openbsd.css 
	openntpd       : openbsd.css 
	openrsync      : openbsd.css 
	opensmtpd      : openbsd.css 
	openssh        : openbsd.css 

Log message:
pick a colour for visited links; discussed with tj


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/02 22:38:30

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Implement rx filtering using the flow table.  Now we have three flow groups,
one that will match any packet, used in promisc mode; one that matches on the
low bit of the first byte of the destination mac address, used to receive all
multicast packets; and one that matches on the whole destination mac address,
used to receive unicast, broadcast and specific multicast addresses.  As we
add multicast addresses, we create flow entries to match them, but if we run
out, we create an all-multicast flow entry.

ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/02 23:18:41

Modified files:
	x11/kde-applications/okteta: Makefile distinfo 
	x11/kde-applications/okteta/pkg: PLIST 

Log message:
Update okteta to 0.26.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/02 23:19:32

Modified files:
	devel/kdevelop : Makefile 

Log message:
Bump and adjust WANTLIB after okteta update


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/02 23:35:09

Modified files:
	x11/kde-applications/kshisen: Makefile 
	x11/kde-applications/kshisen/pkg: PLIST 
	x11/kde-applications/kspaceduel: Makefile distinfo 
	x11/kde-applications/kspaceduel/pkg: DESCR PLIST 

Log message:
Unbreak kspaceduel

I imported kshisen twice, once in x11/kde-applications/kshisen and once in
x11/kde-applications/kspaceduel. Correct kspaceduel and bump kshisen.

Remove wrong "@pkgpath x11/kde4/kmines" in kshisen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/03 00:08:52

Modified files:
	devel/py-unicorn: Makefile 

Log message:
Bump to unbreak (PLIST changed).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/03 02:48:10

Modified files:
	sys/arch/arm64/dev: agintc.c 

Log message:
Fix priorities of LIPs to match the other changes made in rev 1.17.
Makes MSI/MSI-X actually work reliably on machines with agintc(4).

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/06/03 04:39:02

Removed files:
	devel/c2hs/patches: patch-doc_man1_c2hs_1 

Log message:
Remove left-over patch from devel/c2hs.

Noticed by andreas.kahari@abc.se.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/06/03 04:56:12

Modified files:
	textproc/highlight: Makefile distinfo 
	textproc/highlight/patches: patch-src_makefile 
	textproc/highlight/pkg: PLIST 

Log message:
Update to highlight-3.52.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/03 06:09:55

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/03 07:09:56

Modified files:
	sys/arch/arm64/include: bus.h 

Log message:
Map the raw bus space operations to the regular ones.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	reyk@cvs.openbsd.org	2019/06/03 07:42:49

Modified files:
	sysutils/cloud-agent: Makefile distinfo 
	sysutils/cloud-agent/pkg: DESCR 

Log message:
Update cloud-agent to v0.8

This release unbreaks the build with recent LibreSSL and adds support
for OpenNebula and optional disk resizing.

OK kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/03 07:43:27

Modified files:
	lang/php       : Makefile.inc 
	lang/php/7.2   : Makefile 
	lang/php/7.3   : Makefile 

Log message:
build php 7.2/7.3 with support for argon2 in password_hash().
for some reason password_hash requires libargon2 even though php has
access to the argon2 functions from libsodium. prompted by a mail
from Heiko Zimmermann.

(also note, there is a separate sodium_crypto_pwhash_str function
which was already available and doesn't depend on libargon2)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/03 08:06:25

Modified files:
	lib/libcrypto/man: ASN1_TIME_set.3 

Log message:
add missing .In line


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/03 08:43:15

Modified files:
	lib/libcrypto/man: BN_set_negative.3 ENGINE_set_default.3 

Log message:
add missing .In lines


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/06/03 09:37:48

Modified files:
	usr.bin/rsync  : main.c socket.c 

Log message:
Don't close the socket in rsync_socket() itself but after calling it.
Fixes a corner case where the socket was closed twice, reported by
Hiltjo Posthuma.
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/03 09:38:14

Modified files:
	net/unifi/stable: Makefile distinfo 

Log message:
update to unifi-5.10.24


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/03 09:59:52

Modified files:
	www/chromium   : Makefile 
	www/chromium/pkg: PFRAG.component 
Added files:
	www/chromium/patches: 
	                      patch-tools_protoc_wrapper_protoc_wrapper_py 

Log message:
unbreak the component flavor once again


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/03 10:05:33

Modified files:
	net/unifi/testing: Makefile distinfo 
	net/unifi/testing/pkg: PLIST 

Log message:
update unifi/testing to 5.11.26 (for people with beta access)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/03 10:06:58

Modified files:
	archivers/lz4  : Makefile 
	archivers/lzo2 : Makefile 
	audio/beets    : Makefile 
	audio/gsm      : Makefile 
	audio/py-mutagen: Makefile 
	audio/quodlibet: Makefile 
	audio/rgain    : Makefile 
	audio/squeezelite: Makefile 
	books/wndw     : Makefile 
	comms/conserver: Makefile 
	comms/smstools : Makefile 
	databases/freetds: Makefile 
	databases/iodbc: Makefile 
	databases/libhiredis: Makefile 
	databases/openldap: Makefile 
	databases/p5-DBD-Sybase: Makefile 
	devel/acpica   : Makefile 
	devel/ccache   : Makefile 
	devel/libcoap  : Makefile 
	devel/py-parsedatetime: Makefile 
	editors/vim    : Makefile 
	geo/p5-Geo-UK-Postcode-Regex: Makefile 
	graphics/ImageMagick: Makefile 
	graphics/darktable: Makefile 
	graphics/iec16022: Makefile 
	graphics/libexif: Makefile 
	graphics/libpano13: Makefile 
	graphics/openjp2: Makefile 
	graphics/openjpeg: Makefile 
	graphics/p5-Barcode-DataMatrix: Makefile 
	graphics/ufraw : Makefile 
	java/jBCrypt   : Makefile 
	lang/lucee     : Makefile 
	lang/php       : Makefile.inc 
	mail/mailgraph : Makefile 
	mail/mutt      : Makefile 
	mail/neomutt   : Makefile 
	mail/p5-Email-Address: Makefile 
	mail/p5-Email-Address-XS: Makefile 
	mail/pear-Mail-Mime: Makefile 
	mail/pecl-mailparse: Makefile 
	mail/rcube-contextmenu: Makefile 
	mail/rcube-dovecot_ident: Makefile 
	mail/rcube-sieverules: Makefile 
	mail/rcube-yubikey-plugin: Makefile 
	mail/rmilter   : Makefile 
	mail/roundcubemail: Makefile 
	mail/rspamd    : Makefile 
	math/calc      : Makefile 
	misc/wordnet   : Makefile 
	multimedia/atomicparsley: Makefile 
	multimedia/get_iplayer: Makefile 
	multimedia/minidlna: Makefile 
	multimedia/motion: Makefile 
	net/GeoIP      : Makefile 
	net/arp-scan   : Makefile 
	net/bird       : Makefile.inc 
	net/bwm-ng     : Makefile 
	net/dhcpcd     : Makefile 
	net/fping      : Makefile 
	net/freeradius3: Makefile 
	net/icinga/core2: Makefile 
	net/icinga     : Makefile.inc 
	net/irrtoolset : Makefile 
	net/isc-bind   : Makefile 
	net/libbind    : Makefile 
	net/librenms   : Makefile 
	net/libunbound : Makefile 
	net/lldpd      : Makefile 
	net/mac-telnet : Makefile 
	net/maclookup  : Makefile 
	net/manubulon-snmp: Makefile 
	net/mirmon     : Makefile 
	net/monitoring-plugins: Makefile 
	net/mtr        : Makefile 
	net/nagios/check_email_delivery: Makefile 
	net/nagios/check_postgres: Makefile 
	net/nagios/check_sip: Makefile 
	net/nagios/nsca-ng: Makefile 
	net/nagios/p5-Nagios-Plugin: Makefile 
	net/net-snmp   : Makefile 
	net/nfdump     : Makefile 
	net/nfsen      : Makefile 
	net/noVNC      : Makefile 
	net/ntopng     : Makefile 
	net/openconnect: Makefile 
	net/p5-Zonemaster/cli: Makefile 
	net/p5-Zonemaster/engine: Makefile 
	net/p5-Zonemaster/ldns: Makefile 
	net/pear-Net-SMTP: Makefile 
	net/pear-Net-Sieve: Makefile 
	net/php-weathermap: Makefile 
	net/py-ripe.atlas.cousteau: Makefile 
	net/py-ripe.atlas.sagan: Makefile 
	net/py-ripe.atlas.tools: Makefile 
	net/radcli     : Makefile 
	net/rrdtool    : Makefile 
	net/rtg        : Makefile 
	net/scamper    : Makefile 
	net/sipsak     : Makefile 
	net/smokeping  : Makefile 
	net/ssvnc      : Makefile 
	net/strongswan : Makefile 
	net/ttg        : Makefile 
	net/unifi      : Makefile.inc 
	net/vpnc-scripts: Makefile 
	net/websockify : Makefile 
	net/wireshark  : Makefile 
	news/slrn      : Makefile 
	security/acme-client: Makefile 
	security/clamav: Makefile 
	security/letsencrypt/acme-tiny: Makefile 
	security/letsencrypt: Makefile.inc 
	security/libsodium: Makefile 
	security/libsrtp: Makefile 
	security/oath-toolkit: Makefile 
	security/openssl: Makefile.inc 
	security/p5-Chipcard-PCSC: Makefile 
	security/pcsc-tools: Makefile 
	security/pecl-libsodium: Makefile 
	security/pecl-mcrypt: Makefile 
	security/py-bcrypt: Makefile 
	security/py-cryptography: Makefile 
	security/py-cryptography_vectors: Makefile 
	security/py-josepy: Makefile 
	security/py-passlib: Makefile 
	security/sslscan: Makefile 
	security/sslsplit: Makefile 
	security/xca   : Makefile 
	security/yubico: Makefile.inc 
	security/yubiserve: Makefile 
	sysutils/bacula: Makefile 
	sysutils/flashrom: Makefile 
	sysutils/freeipmi: Makefile 
	sysutils/ipmitool: Makefile 
	sysutils/login_oath: Makefile 
	sysutils/moreutils: Makefile 
	sysutils/nut   : Makefile 
	sysutils/od1000_firmware: Makefile 
	telephony/asterisk: Makefile 
	telephony/asterisk-sounds/core-sounds: Makefile.inc 
	telephony/asterisk-sounds/extra-sounds: Makefile.inc 
	telephony/asterisk-sounds/moh-opsound: Makefile 
	telephony/astmanproxy: Makefile 
	textproc/grepcidr: Makefile 
	textproc/mupdf : Makefile 
	textproc/oniguruma: Makefile 
	textproc/p5-PDF-API2: Makefile 
	textproc/patchutils: Makefile 
	textproc/pdftk : Makefile 
	textproc/pecl-yaml: Makefile 
	textproc/podofo: Makefile 
	textproc/pugixml: Makefile 
	textproc/solr  : Makefile 
	www/c-icap     : Makefile.inc 
	www/nghttp2    : Makefile 
	www/squid      : Makefile 
	www/squidclamav: Makefile 
	www/trac       : Makefile 
	www/tracnav    : Makefile 
	www/urlwatch   : Makefile 

Log message:
s/PERMIT_PACKAGE_CDROM/PERMIT_PACKAGE/ and some light whitespace tidying
in ports which I maintain


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/03 10:26:30

Modified files:
	usr.bin/mg     : basic.c mg.1 

Log message:
This diff gives the commands beginning-of-buffer and end-of-buffer the
ability to take a numeric argument and move n/10th of the way from the
top or bottom of the current buffer respectively. A universal argument
of higher than 9 puts the cursor back to the end/start of buffer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/03 10:31:08

Modified files:
	www/kore       : Makefile distinfo 

Log message:
Update kore to 3.3.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/06/03 10:46:49

Modified files:
	sys/dev/ic     : pckbc.c 

Log message:
Prevent corruption of the pckbc command queue. If multiple synchronous
commands are in flight and all corresponding threads are sleeping
waiting for a response, the first command to timeout will clear the
command queue. The remaining threads once awake will then try to remove
a dequeued command from the queue, leading to corruption. Instead,
remove commands from the queue before waking up the sleeping thread.
A quirk is still needed to handle the case where tsleep() returns
successfully during suspend.

ok mpi@ visa@

Reported-by: syzbot+fe74fc50c630bfa26302@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/03 11:37:54

Modified files:
	devel/acpica   : Makefile 

Log message:
remove ONLY_FOR_ARCHS to allow building acpica on !x86. it at least builds
on aarch64, and there's no particular reason to restrict others (if it fails
on less common arch we can always sprinkle NOT_FOR_ARCHS as needed).

queried by ccardenas@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/03 12:28:37

Modified files:
	usr.bin/tmux   : cmd-attach-session.c cmd-new-session.c tmux.1 
	                 tmux.h 

Log message:
Add new-session -X and attach-session -x to send SIGHUP to parent when
detaching (like detach-client -P). From Colin Watson in GitHub issue
1773.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/06/03 13:14:04

Modified files:
	build          : mirrors.dat 

Log message:
add mirror.ungleich.ch, from reyk@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/06/03 13:14:27

Modified files:
	.              : ftp.html ftplist httpslist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/03 13:19:39

Modified files:
	devel/p5-Devel-FindRef: Makefile 
	devel/p5-Devel-FindRef/pkg: PLIST 

Log message:
fix the pkgname.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/03 13:21:05

Modified files:
	usr.sbin/pkg_add/OpenBSD: Add.pm 

Log message:
be better at finding a nice directory to extract temporary files
(this should interface with vstat to avoid vanishing directories, but
it's already better than it was)


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/06/03 13:39:16

Modified files:
	sys/kern       : subr_kubsan.c 

Log message:
sort struct declarations


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/03 13:50:31

Modified files:
	usr.bin/mandoc : mdoc_term.c 

Log message:
Initialize the local variable "act" in print_mdoc_node().
While there is no bug, it helps clarity, and it is also safer in this
particular code because in case a bug gets introduced later, accessing
a NULL pointer is less dangerous than accessing an uninitialized pointer.

Michal Nowak <mnowak at startmail dot com> reported that gcc 4.4.4
and 7.4.0 on illumos throw -Wuninitialized false positives.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/03 13:58:00

Modified files:
	usr.bin/mandoc : read.c 

Log message:
Initialize the local variable "lastln" in mparse_buf_r().
While there is no bug, it logically makes sense given the meaning
of the variable that lastln is NULL as long as firstln is NULL.

Michal Nowak <mnowak at startmail dot com> reported that gcc 4.4.4
and 7.4.0 on illumos throw -Wuninitialized false positives.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/03 14:23:39

Modified files:
	usr.bin/mandoc : term.c 

Log message:
Explicitly state that the cases in the inner switch in term_fill()
are exhaustive.  While there is no bug, being explicit has no downside
is is potentially safer for the future.

Michal Nowak <mnowak at startmail dot com> reported that gcc 4.4.4
and 7.4.0 on illumos throw -Wuninitialized false positives.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/03 16:32:23

Modified files:
	net/knot       : Makefile 

Log message:
Force-enable the fast zone parser with base-clang, disable it with ports-gcc

The fast zone parser code builds fine on all clang archs, but fails to
build on sparc64 (ENOMEM); only enable it where it's known to build.
Maybe the pbuild datasize limits should be tweaked, to be investigated later.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/06/03 17:03:36

Modified files:
	www            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Unhook www/kwebapp and add quirk to soon to be imported www/openradtool.

ok bentley@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/06/03 17:06:22

Log message:
    Import ports/www/openradtool. ok bentley@
    
    openradtool ("ort") is an open source RAD tool generating front-end code
    (JavaScript, TypeScript) and back-end code (SQL, C) for your
    application, leaving you to develop your "middle-tier" business and
    presentation logic.
    
    The system consists of a set of source generators, each accepting a
    single ort(5) configuration file that describes your data and how it is
    accessed, modified, created, deleted. The generated sources have a
    strong focus on security, documentation, and auditability.
    
    Status:
    
    Vendor Tag:	jturner
    Release Tags:	jturner_20190603
    
    N ports/www/openradtool/Makefile
    N ports/www/openradtool/distinfo
    N ports/www/openradtool/pkg/DESCR
    N ports/www/openradtool/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/06/03 17:08:01

Modified files:
	www            : Makefile 

Log message:
+openradtool


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/06/03 17:09:45

Removed files:
	www/kwebapp    : Makefile distinfo 
	www/kwebapp/pkg: DESCR PLIST 

Log message:
Remove www/kwebapp. ok bentley@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/03 17:10:58

Modified files:
	infrastructure/lib/DPB/Job: Port.pm 

Log message:
fix stupid


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/06/03 17:27:32

Modified files:
	www/openradtool/pkg: PLIST 

Log message:
Add conflict and pkgpath markers. Just imported, no bump. Pointed out by danj@.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/06/03 20:35:40

Modified files:
	libexec/ld.so  : loader.c 

Log message:
Disable the unmapping of ld.so's boot data for now, as boehm-gc apparently
follows some pointer into the middle of it.  Best to keep things working
while tracking down the wonkiness.

problem noted by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/06/03 20:41:50

Modified files:
	www/honk       : Makefile distinfo 
	www/honk/pkg   : PLIST 

Log message:
Update honk to 0.6.0. donk from Horia Racoviceanu!


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/03 21:19:42

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Implement mcx_media_change().  This disables the port, sets the media type to
the requested type (or all available types, if none specified), then
re-enables it to start negotiation.  While here, only set up the available
media types during attach, rather than on every mcx_media_status() call, as
they don't reflect the type of module or cable present so they won't change
over time.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/03 23:29:30

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
tx and rx descriptors work fine with 64bit dva

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/03 23:30:39

Modified files:
	regress/lib/libc/malloc/malloc_general: Makefile 
	                                        malloc_general.c 

Log message:
Move to env var, likelky the possibility to set malloc options from
main is going away.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/04 00:49:19

Modified files:
	sys/dev/pci    : mpii.c 

Log message:
use htolemXX and lemtohXX instead of htoleXX and letohXX

this makes the generated code a lot shorter on sparc64, and has no
effect on little endian archs. this has been in my tree for well
over a year without issue.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/06/04 01:37:56

Modified files:
	devel/jd-gui   : Makefile distinfo 

Log message:
update jd-gui to 1.5.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/04 02:42:35

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 75.0.3770.75


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/06/04 04:02:45

Modified files:
	net/dnscrypt-proxy: Makefile distinfo 
	net/dnscrypt-proxy/patches: 
	                            patch-dnscrypt-proxy_example-dnscrypt-proxy_toml 
	net/dnscrypt-proxy/pkg: README 

Log message:
Update to dnscrypt-proxy-2.0.25.

Changelog can be found at
https://github.com/jedisct1/dnscrypt-proxy/releases/tag/2.0.25 and
https://github.com/jedisct1/dnscrypt-proxy/releases/tag/2.0.24

From Nam Nguyen (maintainer). Thanks!

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/04 05:01:33

Modified files:
	regress/sys/net/pf_divert: Makefile 

Log message:
To avoid SYN retransmit, kill local tcp pf state that will be reused.
This makes the state reuse tests faster and more reliable.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/04 06:02:44

Modified files:
	lib/libcrypto/man: BIO_get_ex_new_index.3 

Log message:
Add several missing .In lines
and add a sentence pointing to the detailed description
in RSA_get_ex_new_index(3), worded like in DH_get_ex_new_index(3).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/04 06:08:22

Modified files:
	sys/dev/pci/drm/include/linux: dma-fence.h 
	sys/dev/pci/drm: drm_linux.c 

Log message:
Move a function used as a callback out of a header so there will only be
one function with a single address.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/04 06:31:29

Modified files:
	lib/libcrypto/man: X509_STORE_CTX_get_error.3 

Log message:
.In openssl/x509_vfy.h
for consistency with all the other X509_STORE_*(3) manual pages


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/04 07:34:10

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
fix typo, found by a rather lightweight ports-INDEX, due to

DBD::SQLite::st execute failed: NOT NULL constraint failed:
_Ports.PERMIT_DISTFILES at /usr/ports/databases/sqlports/files/Inserter.pm
line 196.

s/PERMIT_DISTILES/PERMIT_DISTFILES/


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/04 08:03:21

Modified files:
	sys/arch/arm64/include: cpu.h 

Log message:
Bump MAXCPUS to 32 so that we can use all cores on the Ampere eMAG.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/04 08:07:22

Modified files:
	sys/arch/arm64/include: pmap.h 

Log message:
Remove the unused pvh_attrs attribute from struct vm_page_md.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/04 08:28:31

Removed files:
	www/mozilla-sync/full/pkg: README 

Log message:
left behind when mozilla-sync was removed on 2018/09/11
"Remove mozilla-sync 1.1 port, unlinked since 2014."


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/04 08:29:31

Modified files:
	astro/gcal     : Makefile 
	audio/mp3info  : Makefile 

Log message:
sync wantlib


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/04 09:22:32

Modified files:
	devel/leatherman: Makefile 
Added files:
	devel/leatherman/patches: patch-cmake_options_cmake 

Log message:
Drop -Werror to fix build of leatherman (and consumers) on at least sparc64

ok sthen@ sebastia@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/04 09:41:02

Modified files:
	sys/kern       : kern_lock.c 

Log message:
Let SP kernel work with WITNESS. The necessary instrumentation was
missing from the SP variant of mtx_enter() and mtx_enter_try().
mtx_leave() was correct already.

Prompted by and OK patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/04 09:45:58

Modified files:
	sbin/ttyflags  : ttyflags.c 

Log message:
Do nog segfault on malformed ttys(5) entry; ok kn@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/04 10:05:52

Modified files:
	databases/sqlports: Makefile 
	databases/sqlports/files/scripts: print-ports-index 
	                                  rebuild-sqlports-cache 
	                                  show-reverse-deps 

Log message:
make sure to stop if scripts fail
as noticed by sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/06/04 10:11:13

Modified files:
	sys/netinet    : ip_mroute.c 
	sys/netinet6   : ip6_mroute.c 

Log message:
Add missing NULL check for the protocol control block (pcb) pointer in
mrt{6,}_ioctl. Calling shutdown(2) on the socket prior to the ioctl
command can cause it to be NULL.

ok bluhm@ claudio@

Reported-by: syzbot+bdc489ecb509995a21ed@syzkaller.appspotmail.com
Reported-by: syzbot+156405fdea9f2ab15d40@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/04 10:58:53

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 67.0.1 'Trailhead'

See https://www.mozilla.org/en-US/firefox/67.0.1/releasenotes/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/04 11:00:53

Modified files:
	www/mozilla-firefox: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: Update to firefox 67.0.1.

See https://www.mozilla.org/en-US/firefox/67.0.1/releasenotes/


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/06/04 12:10:11

Modified files:
	lib/libcrypto/dsa: dsa_ossl.c 

Log message:
Remove the blinding later to avoid leaking information on the length
of kinv.

Pointed out and fix suggested by David Schrammel and Samuel Weiser

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/06/04 12:12:26

Modified files:
	lib/libcrypto/dsa: dsa_ossl.c 

Log message:
Readability tweaks for comments that explain the blinding.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/06/04 12:13:44

Modified files:
	lib/libcrypto/ecdsa: ecs_ossl.c 

Log message:
Remove the blinding later to avoid leaking information on the length
of ckinv.

Pointed out and fix suggested by David Schrammel and Samuel Weiser

ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/06/04 12:15:27

Modified files:
	lib/libcrypto/ecdsa: ecs_ossl.c 

Log message:
Readability tweak in a comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/04 12:31:33

Modified files:
	lib/libcrypto/man: lh_new.3 

Log message:
OPENSSL_realloc(3) is no longer used, we now use reallocarray(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/04 12:42:08

Modified files:
	security/keepassxc: Makefile distinfo 
Added files:
	security/keepassxc/patches: patch-CMakeLists_txt 
	                            patch-src_core_Alloc_cpp 

Log message:
Update keepassxc to 2.4.2

Added cmake checks for malloc.h and malloc_usable_size(3). Include maloc.h only
if it exists. Fallback to stdlib.h and use malloc_usable_size(3) only if there
is one.

Thanks sthen@ and jca@ for lot of feedback, help and patience,

Tested and ok thfr@, ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/04 13:24:54

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/06/04 15:36:51

Modified files:
	lang/cython    : Makefile distinfo 

Log message:
Update to cython 0.29.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/04 16:23:33

Modified files:
	graphics/makehuman: Makefile 

Log message:
Update HOMEPAGE and drop MASTER_SITES

The new upstream is http://www.makehumancommunity.org/ and newer
releases (1.1.1 and 1.2.0 alpha) are available at
https://github.com/makehumancommunity/makehuman


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/06/04 17:00:44

Modified files:
	sys/net        : if_pfsync.c 

Log message:
pfsync_sendout() requires PF_LOCK()

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/06/04 17:06:34

Modified files:
	sys/net        : if.c 

Log message:
if_netisr(): trade NET_LOCK() for NET_RLOCK()

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/04 17:28:21

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
Fix capitalization in XAUTHORITY default


CVSROOT:	/cvs
Module name:	www
Changes by:	dlg@cvs.openbsd.org	2019/06/04 17:46:09

Modified files:
	.              : want.html 

Log message:
I want a QNAP QM2-2P10G1TA

it's a dual M.2 2280 PCIe NVMe SSD & single-port 10GbE expansion
card, and I want it for PCIe bridge testing and Aquantia AQtion
AQC107 Ethernet driver development


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/06/04 18:33:39

Modified files:
	lang/janet     : Makefile 
	lang/janet/patches: patch-Makefile 

Log message:
Try to fix janet build on sparc64 by using -fPIC instead of -fpic


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/04 18:36:20

Modified files:
	sys/dev/pci    : mpii.c 

Log message:
this can support 64BIT DVA for io


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/04 21:01:47

Modified files:
	lang/ponyc     : Makefile distinfo 
	lang/ponyc/pkg : PLIST 
Added files:
	lang/ponyc/patches: patch-Makefile-ponyc 
Removed files:
	lang/ponyc/patches: patch-Makefile 

Log message:
Update to ponyc-0.28.1
Changelog: https://github.com/ponylang/ponyc/releases/tag/0.28.1


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/04 22:45:42

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
We know which flow table entries are actually in use, so we can just
delete those rather than blindly deleting everything, which also means we
don't need to check against a specific syndrome code to ignore errors we get
deleting entries that aren't there.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/06/04 22:59:49

Modified files:
	lib/libcrypto/man: EVP_SignInit.3 

Log message:
Fix bogus cross reference: EVP_SignDigest* -> EVP_DigestSign*


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/06/04 23:44:54

Modified files:
	math/z3        : Makefile distinfo 

Log message:
update z3 to 4.8.5, ok kn@.
bump lib version because few functions were removed, for example:
https://github.com/Z3Prover/z3/commit/86b98e3477e8f57ccbbcf7a1444ac8ffbf0fae73
https://github.com/Z3Prover/z3/commit/40e329fc92e91acc9efda668e8d6d034221fe887


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/06/05 00:40:13

Modified files:
	usr.sbin/smtpd : ca.c smtpd.c smtpd.h ssl.c 

Log message:
a long long time ago, in a galaxy quite close actually, reyk@ introduced an
RSA privsep engine to isolate private keys in the ca process. ECDSA support
in smtpd is become a frequent request so here's an ECDSA privsep engine and
the code required for smtpd to load ECDSA certificates and use them.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/06/05 01:17:29

Modified files:
	net/p5-Net-SFTP-Foreign: Makefile distinfo 

Log message:
Update to p5-Net-SFTP-Foreign-1.90.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/05 05:21:56

Modified files:
	productivity/khard: Makefile distinfo 
	productivity/khard/pkg: PLIST 

Log message:
update to khard-0.13.0, from Paco Esteban (taking maintainer),
minor tweaks from me (whitespace, regen plist)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/05 05:27:51

Modified files:
	www/py-httpie  : Makefile distinfo 
	www/py-httpie/pkg: PLIST 

Log message:
update to httpie-1.0.2, from Paco Esteban, taking maintainer (plus regen plist)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/05 05:43:21

Log message:
    import net/dnscontrol, from Karlis Mikelsons, much tidying and ok from kn@
    
    DNSControl is a system for maintaining DNS zones. It has two parts: a
    domain specific language (DSL) for describing DNS zones plus software
    that processes the DSL and pushes the resulting zones to DNS providers
    such as Route53, CloudFlare, and Gandi. It can talk to Microsoft
    ActiveDirectory and it generates the most beautiful BIND zone files
    ever.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190605
    
    N ports/net/dnscontrol/Makefile
    N ports/net/dnscontrol/distinfo
    N ports/net/dnscontrol/pkg/DESCR
    N ports/net/dnscontrol/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/05 05:43:48

Modified files:
	net            : Makefile 

Log message:
+dnscontrol


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/05 06:38:56

Modified files:
	mail/opensmtpd-extras: Makefile 

Log message:
Drop COMPILER to unbreak on sparc64 and other gcc archs

The way WANTLIB* and LIB_DEPENDS were set up, ${COMPILER_LIBCXX} ended
up in WANTLIB-main without gcc-libs ending up in LIB_DEPENDS-main;
pkg_create then failed because it had no way to reach a package
providing libestdc++.  This kind of breakage had been spotted in several
ports after switching the C++ ports to "COMPILER = base-clang
ports-gcc".  I'm not sure yet how these problems could be avoided.
Maybe additional checks in portcheck(1)?

Anyway, opensmtpd-extras was mechanically switched to COMPILER because
WANTLIB-mysql contained ${COMPILER_LIBCXX}.  This is currently not
needed, and since opensmtpd-extras is a C-only port, let's just drop
COMPILER.

ok sthen@ giovanni@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/05 06:53:43

Modified files:
	sys/net        : rtsock.c 

Log message:
Remove workaround and return EINVAL when userland sends routing messages
with bad address flags.
OK bluhm@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/05 06:54:03

Modified files:
	games/gargoyle : Makefile distinfo 
	games/gargoyle/patches: patch-Jamrules patch-garglk_launchgtk_c 
	                        patch-tads_Jamfile 
	games/gargoyle/pkg: PLIST 
Removed files:
	games/gargoyle/patches: patch-garglk_Jamfile patch-garglk_glk_h 
	                        patch-terps_bocfel_process_h 

Log message:
update gargoyle to a newer git checkout (there hasn't been a release
since 2011, but it still receives occasional commits). unbreaks sdl
audio so reenable that, also unbreaks build with ports-gcc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/05 07:26:58

Modified files:
	www/py-httpie  : Makefile 
	www/py-httpie/pkg: PLIST 

Log message:
in lieu of a proper manpage, install httpie's README.rst, it has fairly
sophisticated support for POSTs etc which is and it isn't clear from
"http -h" how to use it all. ok Paco Esteban (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/06/05 08:23:18

Modified files:
	math/z3        : Makefile 

Log message:
use GH_TAGNAME, spotted by sthen@.
ok sthen@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/05 08:27:02

Modified files:
	sysutils/telegraf: Makefile 
	sysutils/telegraf/pkg: telegraf.rc 

Log message:
log telegraf output to syslog, as done for influxdb.

from Joel Carnat.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/06/05 09:41:34

Modified files:
	distrib/sets/lists/base: mi 
	lib/libcrypto  : Symbols.list shlib_version 
	lib/libcrypto/rsa: rsa.h rsa_meth.c 
	lib/libssl     : shlib_version 
	lib/libtls     : shlib_version 

Log message:
provide getters and setters for the RSA_METHOD interface

ok tb@, jsing@, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/06/05 10:24:54

Modified files:
	usr.sbin/smtpd : ca.c 

Log message:
assume RSA_METHOD is opaque and only access members through setters/getters


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/05 12:31:50

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 75.0.3770.80;
this brings us back to the stable channel again


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/05 13:00:36

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Need to increment the argument to skip the prefix earlier, fixes
repeated incremental search in copy mode, reported by Kaushal Modi in
GitHub issue 1780.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/06/05 13:31:44

Modified files:
	net/p5-OSPF-LSDB: Makefile distinfo 

Log message:
update p5-OSPF-LSDB to 1.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/05 13:44:18

Log message:
    import py-pefile-2018.8.8
    
    pefile is a multi-platform Python module to parse and work with Portable
    Executable (aka PE) files. Most of the information contained in the PE
    headers is accessible as well as all sections' details and their data.
    
    ok kn@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190506
    
    N ports/devel/py-pefile/Makefile
    N ports/devel/py-pefile/distinfo
    N ports/devel/py-pefile/pkg/DESCR
    N ports/devel/py-pefile/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/05 13:46:20

Log message:
    import py-cooldict-1.04
    
    Small collection of useful dict-like structures.
    
    feedback & ok kn@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190506
    
    N ports/devel/py-cooldict/Makefile
    N ports/devel/py-cooldict/distinfo
    N ports/devel/py-cooldict/pkg/DESCR
    N ports/devel/py-cooldict/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/05 13:49:41

Modified files:
	devel          : Makefile 

Log message:
+py-cooldict
+py-pefile


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/05 14:00:53

Modified files:
	usr.bin/tmux   : cfg.c cmd-parse.y cmd-source-file.c tmux.1 
	                 tmux.h 

Log message:
Add a -v flag to source-file to show the commands and line numbers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/06/05 16:43:01

Modified files:
	math/py-sympy  : Makefile distinfo 
	math/py-sympy/patches: patch-setup_py 
	math/py-sympy/pkg: PLIST 

Log message:
Update to py-sympy-1.4 and take maintainer.


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/06/05 18:46:34

Modified files:
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: ToMan.pm 

Log message:
Reapply patches lost in the perl 5.28.2 update


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/05 19:06:59

Modified files:
	lib/libcrypto/man: ACCESS_DESCRIPTION_new.3 ASN1_INTEGER_get.3 
	                   ASN1_OBJECT_new.3 ASN1_STRING_length.3 
	                   ASN1_STRING_new.3 ASN1_STRING_print_ex.3 
	                   ASN1_TIME_set.3 ASN1_TYPE_get.3 
	                   ASN1_generate_nconf.3 ASN1_time_parse.3 
	                   AUTHORITY_KEYID_new.3 BASIC_CONSTRAINTS_new.3 
	                   BF_set_key.3 BIO_f_base64.3 BIO_f_cipher.3 
	                   BIO_f_md.3 BIO_get_ex_new_index.3 BIO_new.3 
	                   BIO_s_mem.3 BN_BLINDING_new.3 BN_new.3 
	                   BUF_MEM_new.3 CRYPTO_set_ex_data.3 
	                   DES_set_key.3 DH_new.3 DIST_POINT_new.3 
	                   ENGINE_set_RSA.3 ERR.3 ESS_SIGNING_CERT_new.3 
	                   EVP_AEAD_CTX_init.3 EVP_DigestInit.3 
	                   EVP_EncodeInit.3 EVP_EncryptInit.3 
	                   EVP_PKEY_CTX_ctrl.3 EVP_PKEY_CTX_new.3 
	                   EVP_PKEY_asn1_get_count.3 EVP_PKEY_asn1_new.3 
	                   EVP_PKEY_cmp.3 
	                   EVP_PKEY_get_default_digest_nid.3 
	                   EVP_PKEY_meth_get0_info.3 EVP_PKEY_meth_new.3 
	                   EVP_PKEY_new.3 EVP_PKEY_print_private.3 
	                   EXTENDED_KEY_USAGE_new.3 GENERAL_NAME_new.3 
	                   HMAC.3 OBJ_nid2obj.3 OCSP_CRLID_new.3 
	                   OCSP_REQUEST_new.3 OCSP_cert_to_id.3 
	                   OCSP_response_status.3 
	                   OPENSSL_VERSION_NUMBER.3 OPENSSL_config.3 
	                   OPENSSL_sk_new.3 PEM_read.3 
	                   PEM_read_bio_PrivateKey.3 
	                   PKCS12_SAFEBAG_new.3 PKCS12_create.3 
	                   PKCS12_new.3 PKCS12_newpass.3 PKCS12_parse.3 
	                   PKCS5_PBKDF2_HMAC.3 PKCS7_decrypt.3 
	                   PKCS7_encrypt.3 PKCS7_new.3 PKCS7_sign.3 
	                   PKCS7_sign_add_signer.3 PKCS7_verify.3 
	                   PKCS8_PRIV_KEY_INFO_new.3 
	                   PKEY_USAGE_PERIOD_new.3 POLICYINFO_new.3 
	                   PROXY_POLICY_new.3 RC4.3 RSA_PSS_PARAMS_new.3 
	                   RSA_blinding_on.3 RSA_new.3 RSA_print.3 
	                   STACK_OF.3 TS_REQ_new.3 X509V3_get_d2i.3 
	                   X509_ALGOR_dup.3 X509_ATTRIBUTE_new.3 
	                   X509_CINF_new.3 X509_CRL_get0_by_serial.3 
	                   X509_CRL_new.3 X509_EXTENSION_set_object.3 
	                   X509_LOOKUP_hash_dir.3 
	                   X509_NAME_add_entry_by_txt.3 
	                   X509_NAME_get_index_by_NID.3 X509_NAME_new.3 
	                   X509_OBJECT_get0_X509.3 X509_PUBKEY_new.3 
	                   X509_REQ_new.3 X509_REVOKED_new.3 
	                   X509_STORE_CTX_get_ex_new_index.3 
	                   X509_STORE_CTX_new.3 X509_STORE_new.3 
	                   X509_STORE_set1_param.3 X509_check_ca.3 
	                   X509_check_host.3 X509_check_issued.3 
	                   X509_check_private_key.3 X509_cmp_time.3 
	                   X509_digest.3 X509_get_pubkey.3 
	                   X509_get_subject_name.3 X509_get_version.3 
	                   X509_new.3 X509_sign.3 X509_verify_cert.3 
	                   X509v3_get_ext_by_NID.3 crypto.3 
	                   d2i_ASN1_NULL.3 d2i_OCSP_RESPONSE.3 
	                   d2i_PrivateKey.3 openssl.cnf.5 x509v3.cnf.5 

Log message:
Tree structure for manual pages: crypto(3) links to 33 function
group pages, and these link on to all their second-level subpages.
Only a handful of second-level pages have third-level subpages.
So all crypto pages can now be reached from the www.libressl.org
frontpage via at most four clicks, in most cases three clicks.
Also link back from leaf pages to their respective group pages
and add a couple of additional links between related pages.
Triggered by a question from deraadt@.
OK jmc@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/06/05 20:24:00

Modified files:
	security/burpsuite: Makefile 

Log message:
Burp Suite Community Edition needs jdk 1.8 to run properly, so set its
MODJAVA_VER to 1.8; feedback/ok ian@

While here:

* Add a reminder about checking if future updates will work with jdk 11
(text borrowed from sthen@)
* Switch to the new PERMIT_* markers (thanks to naddy@ for confirming that
this is the right way to do this)
* Change the HOMEPAGE to use https


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/05 21:11:58

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Set up the interrupt handler before creating the event queue.
Apparently the boot rom on some cards leaves an interrupt vector set up,
which will be run on completion of the first command after we set up the
event queue, causing kernel crashes.  chris@ reported this a while ago.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/05 21:17:49

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
ConnectX-5 cards work too


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/06/05 21:18:34

Modified files:
	textproc/lowdown: Makefile distinfo 

Log message:
Update to lowdown 0.4.3; from Micah Muer.

ok Bryan Vyhmeister (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/05 23:13:13

Modified files:
	usr.bin/ssh    : sftp-server-main.c sftp-server.c sftp.c 
	                 ssh-add.c ssh-agent.c ssh-keygen.c 
	                 ssh-keyscan.c ssh-keysign.c ssh-pkcs11-helper.c 
	                 ssh.c sshd.c xmalloc.c xmalloc.h 

Log message:
Replace calls to ssh_malloc_init() by a static init of malloc_options.
Prepares for changes in the way malloc is initialized.  ok guenther@ dtucker@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/06 00:08:56

Modified files:
	x11/tellico    : Makefile 

Log message:
fix searching for for QImageBlitz

Set CMAKE_DISABLE_FIND_PACKAGE_QImageBlitz=ON to stop finding QImageBlitz at
build time. Otherwise the Qt4 port is detected.

Spotted by naddy@ Thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/06/06 01:02:20

Modified files:
	security/sqlmap: Makefile distinfo 
	security/sqlmap/pkg: PLIST 

Log message:
Update for SQLMap to 1.3.6

https://github.com/sqlmapproject/sqlmap/releases/tag/1.3.6

"I've tested this lightly and it's working fine for me." lteo@

OK rpointel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/06 05:36:00

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_chrome_content_browser_client_cc 
	                      patch-chrome_browser_flag_descriptions_cc 
	                      patch-chrome_browser_flag_descriptions_h 
	                      patch-tools_protoc_wrapper_protoc_wrapper_py 

Log message:
unbreak build by setting the PATH properly to ${WRKDIR}/bin so that
python can be found by the build and regen patches while here


CVSROOT:	/cvs
Module name:	ports
Changes by:	rapha@cvs.openbsd.org	2019/06/06 06:04:20

Log message:
    Import audio/rubberband.  Help and ok sthen@
    
    Rubber Band is a library and utility program that permits changing the
    tempo and pitch of an audio recording independently of one another.
    
    Status:
    
    Vendor Tag:	rapha
    Release Tags:	rapha_20190606
    
    N ports/audio/rubberband/Makefile
    N ports/audio/rubberband/distinfo
    N ports/audio/rubberband/patches/patch-Makefile_in
    N ports/audio/rubberband/patches/patch-src_StretcherImpl_cpp
    N ports/audio/rubberband/patches/patch-src_StretcherProcess_cpp
    N ports/audio/rubberband/patches/patch-src_system_sysutils_h
    N ports/audio/rubberband/pkg/DESCR
    N ports/audio/rubberband/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rapha@cvs.openbsd.org	2019/06/06 06:13:17

Modified files:
	audio          : Makefile 

Log message:
+rubberband


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/06 08:11:52

Modified files:
	devel          : Makefile 

Log message:
typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/06 09:04:22

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/pkg: PLIST-main 

Log message:
SECURITY UPDATE to vim-8.1.1483

CVE-2019-12735 Arbitrary Code Execution via Modelines

https://github.com/numirias/security/blob/master/doc/2019-06-04_ace-vim-neovim.md

"Beyond patching, it's recommended to disable modelines in the vimrc
(set nomodeline), to use the securemodelines plugin, or to disable
modelineexpr (since patch 8.1.1366, Vim-only) to disallow expressions in
modelines."


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/06 09:04:55

Modified files:
	editors/vim    : Tag: OPENBSD_6_5 Makefile 
Added files:
	editors/vim/patches: Tag: OPENBSD_6_5 
	                     patch-runtime_doc_options_txt 
	                     patch-src_getchar_c patch-src_option_c 
	                     patch-src_option_h 
	                     patch-src_testdir_test49_in 
	                     patch-src_testdir_test_modeline_vim 
	                     patch-src_testdir_test_source_vim 
	                     patch-src_version_c 

Log message:
SECURITY UPDATE to vim-8.1: add patches 1365-1368.

CVE-2019-12735 Arbitrary Code Execution via Modelines

https://github.com/numirias/security/blob/master/doc/2019-06-04_ace-vim-neovim.md

"Beyond patching, it's recommended to disable modelines in the vimrc
(set nomodeline), to use the securemodelines plugin, or to disable
modelineexpr (since patch 8.1.1366, Vim-only) to disallow expressions in
modelines."


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/06 09:58:30

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
quirks cve thingy for vim, pointed out by danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/06/06 10:35:41

Modified files:
	editors/neovim : Makefile 
Added files:
	editors/neovim/patches: patch-src_nvim_getchar_c 

Log message:
editors/neovim: Plug a abritrary code execution bug.

Source command doesn't check for the sandbox.
https://github.com/neovim/neovim/pull/10082

Detailed description:
https://github.com/numirias/security/blob/master/doc/2019-06-04_ace-vim-neovim.md

OK sthen@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/06 10:45:10

Modified files:
	sys/kern       : subr_witness.c 

Log message:
Restore missing newline.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/06 11:41:43

Modified files:
	lib/libcrypto/man: ENGINE_set_RSA.3 POLICYINFO_new.3 
	                   PROXY_POLICY_new.3 X509_sign.3 

Log message:
minor errors in previous commit pointed out by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/06 12:17:34

Modified files:
	usr.bin/mg     : mg.1 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/06 12:29:47

Modified files:
	games/freedink/game: Makefile 

Log message:
FreeDink requires COMPILER=base-clang ports-gcc because the C++ invocation
include -std=c++11. Noticed from the latest macppc bulk logs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/06/06 13:36:52

Modified files:
	net/freeradius3: Makefile 

Log message:
freeradius3: unbreak the build on powerpc: it requires atomics.
While here, refresh WANTLIB for the -mysql subpackage.

OK sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/06 13:43:35

Modified files:
	sys/arch/amd64/amd64: tsc.c 

Log message:
Stop promoting the TSC as a high quality timecounter on MULTIPROCESSOR
systems.  There is no guarantee that the TSCs on different cores are
synchronized when the OpenBSD kernel boots and we don't have code to
synchronize them ourselves.  This affects both AMD and Intel CPUs and
even cores on the same socket can by out of sync.

ok deraadt@, sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/06 13:48:25

Modified files:
	devel/py-decorator: Makefile distinfo 

Log message:
Update to py-decorator 4.4.0

See https://github.com/micheles/decorator/blob/master/CHANGES.md for
various fixes since 4.0.11.

Note on broken HOMEPAGE and OK danj


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/06 14:02:50

Log message:
    Import py-cachetools 3.1.1
    
    This module provides various memoizing collections and decorators,
    including variants of the Python 3 Standard Library `@lru_cache`_
    function decorator.
    
    Feedback and OK jasper
    
    Status:
    
    Vendor Tag:	kn
    Release Tags:	kn_20190606
    
    N ports/devel/py-cachetools/Makefile
    N ports/devel/py-cachetools/distinfo
    N ports/devel/py-cachetools/pkg/DESCR
    N ports/devel/py-cachetools/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/06 14:16:39

Modified files:
	devel          : Makefile 

Log message:
+ py-cachetools


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/06 14:18:59

Log message:
    Import py-networkx 2.3
    
    NetworkX is a Python package for the creation, manipulation,
    and study of the structure, dynamics, and functions
    of complex networks.
    
    Feedback and OK jasper
    
    Status:
    
    Vendor Tag:	kn
    Release Tags:	kn_20190606
    
    N ports/math/py-networkx/Makefile
    N ports/math/py-networkx/distinfo
    N ports/math/py-networkx/pkg/DESCR
    N ports/math/py-networkx/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/06 14:19:44

Modified files:
	math           : Makefile 

Log message:
+ py-networkx


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/06 15:09:17

Modified files:
	net/curl       : Makefile distinfo 

Log message:
Update to 7.65.1.  No known security fixes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/06/06 15:53:38

Modified files:
	editors/neovim : Tag: OPENBSD_6_5 Makefile 
Added files:
	editors/neovim/patches: Tag: OPENBSD_6_5 
	                        patch-src_nvim_getchar_c 

Log message:
editors/neovim: backport arbitrary code execution fix to 6.5-stable.

Source command doesn't check for the sandbox.
https://github.com/neovim/neovim/pull/10082

Detailed description:
https://github.com/numirias/security/blob/master/doc/2019-06-04_ace-vim-neovim.md

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/06 16:37:09

Modified files:
	math           : Makefile 

Log message:
py-networkx has no flavors

Noticed by naddy


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/06/06 20:32:22

Modified files:
	usr.bin/openssl: gendsa.c openssl.1 

Log message:
Convert openssl(1) gendsa to the newer style of option handling

- Adapt openssl(1) gendsa command to new option handling.
- Add lacking ciphers and passout description in openssl.1 manpage.
- Describe paramfile as argument in openssl.1 manpage.

ok bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/06/06 21:47:13

Modified files:
	usr.bin/ssh    : sftp.c 

Log message:
Check for user@host when parsing sftp target.  This allows user@[1.2.3.4]
to work without a path in addition to with one.  bz#2999, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/06 22:03:04

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
enable mcx(4) on arm64, found in Packet's g2.large.arm servers.
tested by and ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/06 22:57:45

Modified files:
	usr.sbin/ospfd : parse.y 

Log message:
Allow specifying area by number as well as id. No change to outputs.

ok remi@ (who did the same change to ospfctl, ospf6d, and ospf6ctl)
ok denis@
some grumbling from sthen@ and bluhm@ who didn't want output changed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/06 23:42:53

Modified files:
	x11/libqaccessibilityclient: Makefile distinfo 

Log message:
Update libqaccessibilityclient to 0.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/06 23:44:37

Modified files:
	fonts/font-awesome: Makefile distinfo 

Log message:
Update font-awesome to 5.9.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/06 23:53:46

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
tidy up the formatting of gendsa synopsis a little;


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/06/06 23:56:40

Modified files:
	games/flare    : Makefile distinfo 
	games/flare/patches: patch-CMakeLists_txt 
	games/flare/pkg: PLIST-data PLIST-main 

Log message:
update to flare-1.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/07 00:18:50

Modified files:
	devel/pycharm  : Makefile distinfo 

Log message:
Update pycharm to 2019.1.3


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/07 00:47:41

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
have mcx_process_rx return the number of slots it made free

this is instead of passing a pointer to the counter.

while here use byte swapping loads and stores, which is mostly a
nop cos i dont think we have an LE arch with swapping memory
operations.

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/07 00:53:15

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
make struct mcx_cq_entry a bit closer to reality

this puts the timestamp, rx drops, and hash fields in the right place.

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/07 01:54:05

Modified files:
	usr.bin/mg     : util.c 

Log message:
Amend showcpos() to show more information about how mg is operating.
The additions help while developing mg by not having to go into gdb to
see somethings mg believes about itself. The extra data shown could be
removed in future, but it is benign so perhaps it could stay.

Also, do not fake a '\n' on the end of buffer. It is confusing.
However do not change the lie about '\n' being on the end of every
line within the buffer. Hopefully, one day, that will no longer be a
lie.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/07 01:58:57

Log message:
    import py-PySMT-0.8.0
    
    pySMT makes working with Satisfiability Modulo Theory simple.
    
    Among others, you can:
    
    * Define formulae in a solver independent way in a simple and
    inutitive way,
    * Write ad-hoc simplifiers and operators,
    * Dump your problems in the SMT-Lib format,
    * Solve them using one of the native solvers, or by wrapping any
    SMT-Lib complaint solver.
    
    feedback and ok kn@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190706
    
    N ports/math/py-pysmt/Makefile
    N ports/math/py-pysmt/distinfo
    N ports/math/py-pysmt/pkg/DESCR
    N ports/math/py-pysmt/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/07 02:00:15

Modified files:
	math           : Makefile 

Log message:
+py-pysmt


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/07 02:07:52

Modified files:
	usr.sbin/acme-client: acctproc.c acme-client.1 certproc.c 
	                      extern.h http.c http.h json.c main.c 
	                      netproc.c 

Log message:
Implement RFC 8555 "Automatic Certificate Management Environment
(ACME)" to be able to talk to the v02 Let's Encrypt API.

With this acme-client(1) will no longer be able to talk to the v01
API. Users must change the api url in /etc/acme-client.conf to
https://acme-v02.api.letsencrypt.org/directory
Existing accounts (and certs of course) stay valid and after the url
change acme-client will be able to renew certs.

Tested by Renaud Allard and benno
Input & OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/07 02:08:30

Modified files:
	etc/examples   : acme-client.conf 

Log message:
Switch to v02 api url.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/06/07 02:12:43

Modified files:
	net/wireguard-tools: Makefile distinfo 

Log message:
update to wireguard-tools-0.0.20190601


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2019/06/07 02:16:17

Modified files:
	faq            : current.html 

Log message:
Mention acme-client api url change


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/07 03:45:48

Modified files:
	usr.sbin/bgpd  : rde_update.c bgpd.conf.5 

Log message:
Refactor up_get_nexthop() to work for all AFI/SAFI cases. Additionally
clean up the possible nexthop overrides to better match the RFC.
- set nexthop self is still overriding all other decisions
- set nexthop no-modify has only relevance for ebgp multihop links
Instead of using the router locall address the nexthop is passed unmodified
- set nexthop <address> depends on BGP session type
* for IBGP sessions the address will be used unless it is the same as the
remote peers address
* for directly connected EBGP sessions the address is only used if the IP
is part of the connected network (no matter what other flags are used).
* for multihop EBGP sessions it depends if no-modify was also set
Adjust manual page to explain this properly.
"probably OK" job@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/07 04:37:45

Modified files:
	sysutils/flashrom: Makefile distinfo 

Log message:
Update to flashrom 1.0.1

Small bugfix release, see https://www.flashrom.org/Flashrom/1.0.1.

OK sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	asou@cvs.openbsd.org	2019/06/07 04:55:41

Modified files:
	lib/libkvm     : kvm_proc2.c 

Log message:
fix print not specified process.

ok guenther@ yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/07 05:46:33

Modified files:
	sbin/slaacd    : engine.c 

Log message:
Reyk's ISP sends him router advertisements from non-link local
addresses about every 10 - 30 seconds. Reduce log level to debug to
stop the syslog spam.
OK reyk


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/06/07 06:18:32

Modified files:
	databases/py-pygresql: Makefile distinfo 
	databases/py-pygresql/pkg: PLIST 

Log message:
Update to py-pygresql-5.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/06/07 08:18:48

Modified files:
	usr.bin/ssh    : channels.c packet.c readconf.c umac.h 

Log message:
Typo and spelling fixes in comments and error messages.  Patch from
knweiss at gmail.com via -portable.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/07 08:38:42

Modified files:
	distrib/miniroot: makeconf.awk 

Log message:
Add -lz to the library list, since one architecture (armv7) needs it and
there is no downside for others.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/07 08:39:57

Modified files:
	distrib/alpha/miniroot: list 
	distrib/amd64/ramdiskA: Makefile 
	distrib/amd64/ramdisk_cd: Makefile 
	distrib/arm64/ramdisk: list 
	distrib/armv7/ramdisk: list 
	distrib/hppa/ramdisk: list 
	distrib/i386/ramdisk: Makefile 
	distrib/i386/ramdisk_cd: Makefile 
	distrib/landisk/ramdisk: list 
	distrib/loongson/ramdisk: list 
	distrib/luna88k/ramdisk: list 
	distrib/macppc/ramdisk: list 
	distrib/octeon/ramdisk: list 
	distrib/sgi/ramdisk: list 
	distrib/sparc64/miniroot: list 
	distrib/sparc64/ramdisk: list 
	distrib/sparc64/ramdiskB: list 
Added files:
	distrib/amd64/ramdiskA: list 
	distrib/amd64/ramdisk_cd: list 
	distrib/i386/ramdisk: list 
	distrib/i386/ramdisk_cd: list 
Removed files:
	distrib/amd64/common: list 
	distrib/amd64/ramdiskA: list.local 
	distrib/amd64/ramdisk_cd: list.local 
	distrib/i386/common: list 
	distrib/i386/ramdisk: list.local 
	distrib/i386/ramdisk_cd: list.local 
	distrib/miniroot: list 

Log message:
eliminate differences between all the list files as much as
possible, and remove the failed previous attempts at sharing
in ./miniroot and ./ramdisk.  maybe now that differences are
eliminated we can start a new sharing effort?  i dunno..


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/06/07 09:01:52

Log message:
    Import sysutils/dinit.
    
    "Dinit" is a service supervisor with dependency support.
    
    Input from, and OK, sthen@. Many thanks.
    
    Also thanks to upstream (Davin McCall) for working with me to fix some
    bugs found during the porting process.
    
    Status:
    
    Vendor Tag:	edd
    Release Tags:	edd_20190607
    
    N ports/sysutils/dinit/Makefile
    N ports/sysutils/dinit/distinfo
    N ports/sysutils/dinit/files/boot.example
    N ports/sysutils/dinit/patches/patch-configs_mconfig_OpenBSD
    N ports/sysutils/dinit/pkg/DESCR
    N ports/sysutils/dinit/pkg/PLIST
    N ports/sysutils/dinit/pkg/README
    N ports/sysutils/dinit/pkg/dinit.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/06/07 09:02:29

Modified files:
	usr.sbin/bgpd  : Tag: OPENBSD_6_5 rde_update.c 

Log message:
MFC bgpd fix - rev 1.110 (commitid: caT0IdwFlZr7OxNo)

fix export default-route.


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/06/07 09:02:54

Modified files:
	sysutils       : Makefile 

Log message:
Link sysutils/dinit.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/06/07 09:03:17

Modified files:
	usr.sbin/bgpd  : Tag: OPENBSD_6_5 parse.y 

Log message:
MFC bgpd fix - rev 1.389 (commitid: sS30LBpY2rPoMUFf)

Also check the type of a network statement when looking for duplicates.
Fixes adding network 0.0.0.0/0 after network inet static.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/06/07 09:04:06

Modified files:
	usr.sbin/bgpd  : Tag: OPENBSD_6_5 kroute.c 

Log message:
MFC bgpd fix - rev 1.236 (commitid: cMekh4Uss55PgVUe)

Fix reloading of network statements that have no fixed prefix specification.
The return value of kr_net_redist_add() was not as intended and so
kr_redistribute() removed those networks on config reloads.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/06/07 09:09:44

Modified files:
	lib/libssl     : Tag: OPENBSD_6_5 ssl_tlsext.c 

Log message:
MFC libssl fix - rev 1.49 (commitid: DLpHk0vyoFEK0Baa)
---
Relax parsing of TLS key share extensions on the server.

The RFC does not require X25519 and it also allows clients to send an empty
key share when the want the server to select a group. The current behaviour
results in handshake failures where the client supports TLS 1.3 and sends a
TLS key share extension that does not contain X25519.
---

(this fixes server side in some cases with TLS 1.3 clients with what
would normally be unusual config - however triggered by recent Firefox
packages on Fedora, https://bugzilla.redhat.com/show_bug.cgi?id=1713777)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/07 09:40:42

Modified files:
	sys/dev/acpi   : acpi.c acpivar.h 

Log message:
Introduce acpi_getsta() and use it to eliminate some duplicated code.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/06/07 10:05:55

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
add Keyspan USA-19HS


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/06/07 10:06:08

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/06/07 10:07:00

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/dev/usb    : files.usb 
	share/man/man4 : Makefile ucom.4 usb.4 
Added files:
	sys/dev/usb    : ukspan.c 
	share/man/man4 : ukspan.4 

Log message:
add ukspan(4), a driver for the Keyspan USA19HS USB serial adapter

written by Cody Cutler <ccutler at csail.mit.edu>


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/07 10:27:47

Modified files:
	libexec/ld.so  : loader.c 

Log message:
make gc workaround compile on non-clang


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/07 11:45:53

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/07 11:48:49

Modified files:
	x11/xfce4/xfce4-datetime: Makefile distinfo 
	x11/xfce4/xfce4-datetime/pkg: PLIST 

Log message:
Update to xfce4-datetime 0.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/07 12:10:44

Modified files:
	x11/xfce4/xfce4-notifyd: Makefile distinfo 

Log message:
Update to xfce4-notifyd 0.4.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/07 12:11:09

Modified files:
	x11/xfce4/xfce4-screensaver: Makefile distinfo 

Log message:
Update to xfce4-screensaver 0.1.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/07 12:12:10

Modified files:
	x11/xfce4/parole: Makefile distinfo 
	x11/xfce4/parole/pkg: PLIST 

Log message:
Update to parole 1.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/07 12:20:59

Modified files:
	x11/xfce4/xfce4-places: Makefile distinfo 
	x11/xfce4/xfce4-places/pkg: PLIST 
Removed files:
	x11/xfce4/xfce4-places/patches: patch-panel-plugin_model_h 

Log message:
Update to xfce4-places 1.8.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/07 12:21:42

Modified files:
	x11/xfce4/xfce4-power-manager: Makefile distinfo 
	x11/xfce4/xfce4-power-manager/pkg: PLIST 

Log message:
Update to xfce4-power-manager 1.6.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/07 12:32:38

Modified files:
	x11/xfce4/xfdesktop: Makefile distinfo 

Log message:
Update to xfdesktop 4.12.5


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/07 13:28:52

Modified files:
	lib/libcrypto/man: d2i_PKCS8PrivateKey_bio.3 evp.3 
	                   PKCS7_decrypt.3 

Log message:
remove cross-references to the obsolete function OpenSSL_add_all_algorithms(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/07 13:40:35

Modified files:
	lib/libcrypto/man: HMAC.3 PKCS5_PBKDF2_HMAC.3 

Log message:
Remove pointless direct backlinks from the leaf pages HMAC(3) and
PKCS5_PBKDF2_HMAC(3) to the top level page evp(3).  The leaf pages
still have backlinks to the group entry page EVP_DigestInit(3),
which is enough.
Redundancy and asymmetry pointed out by tb@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/07 13:59:11

Modified files:
	lib/libcrypto/man: EVP_PKEY_new.3 

Log message:
link back to evp(3), just like for the other group entry pages


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/06/07 14:07:48

Modified files:
	faq            : current.html 

Log message:
I had to rollback to an older MariaDB and then roll forward again when
updating because the old version hadn't shutdown cleanly first; add some
upgrade notes in the hope it stops others from having to do the same.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/07 14:09:16

Modified files:
	lib/libcrypto/man: evp.3 

Log message:
link to EVP_EncodeInit(3), which was the only missing child page


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/07 14:09:17

Modified files:
	usr.bin/tmux   : server-client.c server.c tmux.h 

Log message:
Do not load the config file if the server is exiting because it failed
to start, otherwise commands like lsk which start the server again can
end up looping infinitely. Also make the first client exit
correctly. Problem reported by Wael M Nasreddine.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/07 14:17:55

Modified files:
	mail           : Makefile 
	mail/pecl-mailparse: Makefile 

Log message:
pecl-mailparse 3.0.3 fixed php 7.3 compatibility; enable it in the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/07 14:24:04

Modified files:
	lang/php/7.1   : Makefile 
	lang/php/7.1/pkg: PLIST-main 
	lang/php/7.2   : Makefile 
	lang/php/7.2/pkg: PLIST-main 
	lang/php/7.3   : Makefile 
	lang/php/7.3/pkg: PLIST-main 

Log message:
fix bogus path in @extraunexec


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/07 14:46:25

Modified files:
	lib/libcrypto/man: BN_generate_prime.3 BN_rand.3 
	                   DH_generate_key.3 DH_generate_parameters.3 
	                   DSA_do_sign.3 DSA_generate_key.3 
	                   DSA_generate_parameters.3 DSA_sign.3 
	                   EVP_BytesToKey.3 EVP_OpenInit.3 
	                   EVP_SealInit.3 PKCS5_PBKDF2_HMAC.3 

Log message:
Remove the last references to the RAND_*(3) functions.
These references were misleading because these functions are no
longer used internally and applications should not call them either.
Issue brought up by tb@.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/07 14:52:13

Modified files:
	share/man/man4 : ukspan.4 usb.4 

Log message:
ukspan.4: add OpenBSD id
usb.4: sort ukspan entry and sync with Nd


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/06/07 16:56:37

Modified files:
	lib/libc/hash  : sha1.c sha2.c 

Log message:
Cast bitcount to u_in64_t before bit shifting to prevent integer overflow
on 32bit platforms which cause incorrect results when adding a block
>=512M in size.  sha1 patch from ante84 at gmail.com via openssh github,
sha2 with djm@, ok tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2019/06/07 20:22:07

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
Fix two minor errors in the recent PERMIT_* commit:

* Add a missing comma
* "cdrom" should be "CD-ROMs"

ok espie@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/07 20:52:20

Modified files:
	sys/arch/i386/stand/boot: conf.c 
	sys/arch/i386/stand/libsa: exec_i386.c 
	sys/arch/amd64/stand/boot: conf.c 
	sys/arch/amd64/stand/libsa: exec_i386.c 

Log message:
When loading intel microcode in the non-efi case, error if the file is
larger than 256KB not 128KB to cope with the 06-8e-09 microcode which is
currently 193KB.

Reported and tested by Paul de Weerd.  Matches a diff from claudio@


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/06/08 00:51:20

Modified files:
	.              : lyrics.html 

Log message:
Allow lyrics.html to validate.

Side-by-side comparison reveals no rendering differences, except
minor whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/06/08 01:44:07

Modified files:
	sys/dev/wsfont : spleen12x24.h spleen16x32.h spleen32x64.h 
	                 spleen5x8.h spleen8x16.h 

Log message:
Update Spleen kernel fonts to the latest released version, bringing
the following improvements:

- Shift the middle bar of the upper case 'G' one pixel down in the 12x24
version
- Shift lower case 'k' character right, for better alignment in the 12x24,
16x32, and 32x64 versions
- Make upper case 'X' thicker in the 16x32 and 32x64 versions
- Make upper case 'V' thicker in the 32x64 version
- Make lower case 'g' character smoother in the 16x32 and 32x64 versions
- Add some artefacts on each side of the lower case 'i' characters

OK kettenis@, naddy@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/08 01:52:55

Modified files:
	usr.sbin/acme-client: acctproc.c acme-client.1 extern.h 
	                      keyproc.c main.c parse.h parse.y 

Log message:
Remove A and D flag, they are superfluous.
One could always use them on the command line and acme-client would do
the right thing.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/08 03:11:51

Modified files:
	fonts/public-sans: Makefile distinfo 
	fonts/public-sans/pkg: PLIST 

Log message:
Update to public-sans-1.005.

Release notes:
https://github.com/uswds/public-sans/releases/tag/v1.005
https://github.com/uswds/public-sans/releases/tag/v1.004
https://github.com/uswds/public-sans/releases/tag/v1.003
https://github.com/uswds/public-sans/releases/tag/v1.002

Update pointed out by George Rosamond.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/08 03:51:40

Modified files:
	lib/libcrypto/man: RSA_get0_key.3 

Log message:
document the RSA_FLAG_* constants for RSA_*_flags(3);
OK tb@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/08 03:53:15

Modified files:
	lib/libcrypto/man: RSA_generate_key.3 RSA_meth_new.3 RSA_new.3 
	                   RSA_set_method.3 RSA_sign.3 

Log message:
In rsa.h rev. 1.40, gilles@ provided several new RSA_METHOD accessors.
Update the documentation.
OK tb@ jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/08 03:55:49

Modified files:
	net/megatools  : Makefile 
Removed files:
	net/megatools/patches: patch-Makefile_in 

Log message:
Needs a C11 compiler, use ports-gcc on gcc archs

ok cwen@ bentley@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/08 04:05:52

Modified files:
	cad/netgen     : Makefile 
Added files:
	cad/netgen/patches: patch-base_config_h 

Log message:
Use clock(3) to get cpu time, avoids a possible time_t problem on 32 bits archs

timing.c:103:8: warning: incompatible pointer types passing 'long *' to
parameter of type 'time_t *' (aka 'long long *') [-Wincompatible-pointer-types]

Tested by Alessandro DE LAURENZIS (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/08 04:27:02

Modified files:
	sys/dev/pci    : pci.c 

Log message:
disambiguate memory extent conflicts for membars and rom addresses

there's some more work to do in this space, but this helps us start.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/08 04:38:03

Modified files:
	usr.sbin/acme-client: netproc.c 

Log message:
remove unused variable


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/08 04:40:51

Modified files:
	lib/libcrypto/man: RSA_set_method.3 

Log message:
Delete the display of the RSA_METHOD object
which is now supposed to be opaque.
OK tb@

I checked that all the information contained in comments in the
display is available from the appropriate places in RSA_meth_new(3)
and RSA_set_flags(3).  Note that the comments regarding "mod_exp",
"init", and "finish" were half-misleading simplifications, anyway.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/08 06:02:01

Modified files:
	net/dnscontrol : Makefile 

Log message:
restrict to LP64 arches (done in an awkward way, but will pick up any
future lp64 additions to GO_ARCHS)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/08 06:02:59

Modified files:
	devel          : Makefile 
Removed files:
	devel/py-pefile: Makefile distinfo 
	devel/py-pefile/pkg: DESCR PLIST 

Log message:
rm devel/py-pefile, it's already present in security/py-pefile


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/08 06:25:19

Modified files:
	sys/dev/acpi   : acpi.c 

Log message:
When establishing the mapping between ACPI device nodes and PCI devices,
skip PCI host bridges and devices that aren't there.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/08 08:48:53

Modified files:
	share/man/man1 : proot.1 

Log message:
Missing macro, reported by Fabio Scotoni <fabio at esse dot ch>.
While here, also insert missing whitespace before punctuation.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/08 09:25:43

Modified files:
	lib/libssl/man : SSL_CTX_set_cert_verify_callback.3 
	                 SSL_CTX_set_max_cert_list.3 
	                 SSL_CTX_set_quiet_shutdown.3 
	                 SSL_CTX_set_session_id_context.3 
	                 SSL_CTX_use_certificate.3 
	                 SSL_SESSION_get_time.3 SSL_accept.3 
	                 SSL_get_ex_data_X509_STORE_CTX_idx.3 
	                 d2i_SSL_SESSION.3 

Log message:
remove pointless NOTES section header lines


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/08 09:25:57

Modified files:
	x11/kde/arts3  : Makefile 
Added files:
	x11/kde/arts3/patches: patch-mcop_mt_threads_posix_cc 

Log message:
Move #include to unbreak build with gcc-8.3.0

I'm not sure there's much point in fixing kde3 these days, but this fix
is easy...


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/08 09:49:22

Modified files:
	distrib/sparc64/miniroot: Makefile 
	etc/etc.sparc64: disktab 

Log message:
grow sparc64 miniroot a little


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/08 10:39:24

Log message:
    Import inter-3.5.
    
    Inter is a typeface carefully crafted & designed for computer screens.
    
    Inter features a tall x-height to aid in readability of mixed-case and
    lower-case text. Several OpenType features are provided as well, like
    contextual alternates that adjusts punctuation depending on the shape of
    surrounding glyphs, slashed zero for when you need to disambiguate "0" from
    "o", tabular numbers, etc.
    
    ok rsadowski@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190608
    
    N ports/fonts/inter/Makefile
    N ports/fonts/inter/distinfo
    N ports/fonts/inter/pkg/DESCR
    N ports/fonts/inter/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/08 10:42:06

Modified files:
	fonts          : Makefile 

Log message:
+inter


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/06/08 11:10:57

Modified files:
	distrib/amd64/ramdisk_cd: list 

Log message:
include mount_nfs on the amd64 ramdisk_cd, ok jca deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	rapha@cvs.openbsd.org	2019/06/08 12:42:32

Modified files:
	audio/hydrogen : Makefile distinfo 
	audio/hydrogen/files: SndioAudioDriver.h SndioMidiDriver.h 
	                      sndio_audio_driver.cpp 
	                      sndio_midi_driver.cpp 
	audio/hydrogen/patches: patch-data_hydrogen_default_conf 
	audio/hydrogen/pkg: PLIST 
Added files:
	audio/hydrogen/patches: patch-CMakeLists_txt 
	                        patch-src_core_CMakeLists_txt 
	                        patch-src_core_include_hydrogen_Preferences_h 
	                        patch-src_core_include_hydrogen_config_h_in 
	                        patch-src_core_src_hydrogen_cpp 
	                        patch-src_core_src_preferences_cpp 
	                        patch-src_gui_src_PreferencesDialog_cpp 
Removed files:
	audio/hydrogen/patches: patch-Sconstruct patch-features_pri 
	                        patch-gui_src_MainForm_cpp 
	                        patch-gui_src_PreferencesDialog_cpp 
	                        patch-gui_src_SongEditor_SongEditor_cpp 
	                        patch-gui_src_main_cpp 
	                        patch-libs_hydrogen_include_hydrogen_Preferences_h 
	                        patch-libs_hydrogen_src_hydrogen_cpp 
	                        patch-libs_hydrogen_src_local_file_mgr_cpp 
	                        patch-libs_hydrogen_src_preferences_cpp 
	                        patch-qt4_py 

Log message:
Update to hydrogen-0.9.7. Help and ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/08 15:48:29

Modified files:
	usr.bin/tmux   : options.c 

Log message:
Do not try to parse command when unsetting, GitHub issue 1788.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/09 00:50:24

Modified files:
	usr.bin/tmux   : window.c 

Log message:
Exiting alternate screen mode should restore cursor position and
attributes even if already outside alternate screen mode. GitHub issue
1789.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/09 01:39:52

Modified files:
	fonts/inter    : Makefile distinfo 

Log message:
Update to inter-3.7.

Release notes:
https://github.com/rsms/inter/releases/tag/v3.7
https://github.com/rsms/inter/releases/tag/v3.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/09 02:17:29

Log message:
    Import p5-W3C-LinkChecker-4.81.
    
    This package contains the W3C Link Checker.
    
    The link checker can be run as a CGI script in a web server as well as on
    the command line.  The CGI version provides a HTML interface as seen at
    <http://validator.w3.org/checklink>.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190609
    
    N ports/www/p5-W3C-LinkChecker/Makefile
    N ports/www/p5-W3C-LinkChecker/distinfo
    N ports/www/p5-W3C-LinkChecker/pkg/DESCR
    N ports/www/p5-W3C-LinkChecker/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/09 02:18:39

Modified files:
	www            : Makefile 

Log message:
+p5-W3C-LinkChecker


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/09 02:22:18

Modified files:
	x11/kde-applications/okular: Makefile 

Log message:
Remove graphics/qimageblitz as BUILD/RUN dependency

Qimageblitz is Qt4 and will not use by Qt5 okular.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/09 02:32:58

Modified files:
	japanese/kanjipad: Makefile 

Log message:
Move homepage/master_sites to https.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/09 02:37:43

Modified files:
	regress/usr.sbin/pkg_add: Makefile 

Log message:
took me a few to figure out how to reproduce THIS one specifically


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/09 02:40:54

Modified files:
	usr.sbin/ntpd  : client.c constraint.c ntp.c ntpd.c ntpd.h 

Log message:
Introducing autmatic settime mode: if some preconditions are met
(booting, constraint(s) defined) set the time but only if the clock
should be moved forward by more than a minute, based on ntp replies
that satisfied the constraints. Tested by many; ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/09 03:36:25

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgAdd.pm PkgDelete.pm 
	usr.sbin/pkg_add/OpenBSD/Dependencies: SolverBase.pm 

Log message:
with tags, we do look in deletesets
add an extra indirection so we don't look where we actually can't
because the code doesn't exist.
(as seen by various people on somewhat buggy installs)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/09 06:16:07

Modified files:
	usr.sbin/pkg_add/OpenBSD: SharedItems.pm 

Log message:
somehow, I thought I was recording destdir there, but I'm not.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/09 06:52:04

Modified files:
	sys/arch/amd64/amd64: bus_dma.c 

Log message:
Allow memory that isn't (32-bit) DMA reachable when loading a map that was
created with the BUS_DMA_64BIT flag.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/09 06:58:30

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/dev/pci/drm/include/linux: gfp.h 
	sys/dev/pci/drm/ttm: ttm_tt.c 

Log message:
Let drm(4) allocate memory without constraints if the hardware supports
64-bit DMA.  Should reduce the pressure on DMA-reachable memory, which is
important since there are still cases where the pagedaemon ends up being
triggered continuously if we run out of DMA-reachable memory but have
plenty of memory left.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/06/09 07:53:38

Modified files:
	sys/kern       : vfs_subr.c 

Log message:
Add a temporary workaround to make removal of giant files better

mlarkin@ noticed we would freeze while removing enormous files because
of the amount of work done to invalidate buffers on unlink. This adds
a temporary workaround to ensure we give up the lock and yield while
doing this.

The longer term answer will be to move these buffers to another list
and not do the work here.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/09 08:07:12

ports/graphics/openbsd-backgrounds/files

Update of /cvs/ports/graphics/openbsd-backgrounds/files
In directory cvs.openbsd.org:/tmp/cvs-serv41221/files

Log Message:
Directory /cvs/ports/graphics/openbsd-backgrounds/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/09 08:13:04

Modified files:
	graphics/openbsd-backgrounds: Makefile distinfo 
	graphics/openbsd-backgrounds/pkg: DESCR PLIST 
Added files:
	graphics/openbsd-backgrounds/files: openbsd-wallpaper 

Log message:
reorganize the archive to separate portraits from landscape pictures
no longer any list (for now) and provide a "background setter" using
rr and xwallpaper


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/06/09 10:07:21

Modified files:
	.              : errata65.html 

Log message:
release bgpd and libssl errata


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/09 11:40:34

Modified files:
	sys/net        : if_bridge.c 

Log message:
Remove code for non-Ethernet members, these are no longer supported.

From Eygene Ryabinkin.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/09 11:42:16

Modified files:
	sys/net        : if_bridge.c 

Log message:
Always return EEXIST if an interface is already part of a bridge.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/09 12:58:06

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddCreateDelete.pm PkgAdd.pm 

Log message:
move solve_dependency up, so that pkg_create is happy again
sorry


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/06/09 13:36:24

Modified files:
	www/squid      : Makefile 

Log message:
squid: requires atomics on macppc

input and OK by sthen@ (maintainer) and jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/06/09 19:52:16

Modified files:
	lib/libcrypto  : Tag: OPENBSD_6_5 opensslv.h 

Log message:
bump to LibreSSL 2.9.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/09 20:05:26

Modified files:
	fonts/dai-banna: Makefile 

Log message:
Switch back to upstream master_sites.

From George Rosamond (maintainer).


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/09 21:15:53

Modified files:
	sys/kern       : kern_resource.c 
	sys/sys        : proc.h 

Log message:
Avoid changing resource limits in rucheck() by introducing a new state
variable that tracks when to send next SIGXCPU. This eases MP work and
prevents accidental alteration of shared resource limit structs.

OK mpi@ semarie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/09 22:29:25

Modified files:
	graphics/ffmpeg: Makefile 

Log message:
Re-add Theora support to ffmpeg. VP8/9 are not replacements for all use
cases.

ok kn@, juanfra@. Maintainer timeout.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/09 22:40:13

Modified files:
	sys/dev/pci/drm: drm_crtc.c drm_plane.c 

Log message:
drm/lease: Make sure implicit planes are leased

From Daniel Vetter
390a0fd31b02f2f7086af2f3bdb8ae576b9a4b84 in linux 4.19.y/4.19.49
204f640da6914844b3270b41b29c84f6e3b74083 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/09 23:11:03

Modified files:
	usr.sbin/ospfd : ospfd.conf.5 

Log message:
document that area can take a number as well as an id

reminded by and ok remi@


CVSROOT:	/cvs
Module name:	www
Changes by:	dlg@cvs.openbsd.org	2019/06/09 23:26:06

Modified files:
	.              : want.html 

Log message:
claudio and ccardenas agree we're post 10g now.

people can still send us stuff to work on, we've just moved a bit
ahead by now.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/10 00:07:15

Modified files:
	usr.sbin/ospfd : ospfd.conf.5 

Log message:
less macro;


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/10 00:52:44

Modified files:
	usr.bin/mg     : Makefile kbd.c main.c 
Added files:
	usr.bin/mg     : log.c log.h 

Log message:
Allow mg to log its internal status to a file. At the moment it only
logs line information like front and back pointers in the linked list,
how many characters are used and where the cursor is placed in the
file.

With this diff logging is not switched on by default and has to
compiled into mg.  -DMGLOG has to be added to the Makefile:

CFLAGS+=-Wall -DREGEX -DMGLOG

And the comment character removed from:

#SRCS+=  log.c

ok bcallah@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/10 02:07:51

Modified files:
	textproc/icu4c : Makefile distinfo 
	textproc/icu4c/patches: patch-source_common_Makefile_in 
	                        patch-source_common_putil_cpp 
	textproc/icu4c/pkg: PLIST-main 

Log message:
Update to icu4c-64.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/10 02:11:37

Modified files:
	textproc/py-ICU: Makefile distinfo 
	textproc/py-ICU/patches: patch-setup_py 

Log message:
Update to py-ICU-2.3.1.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/10 03:40:56

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/10 03:49:48

Modified files:
	lib/libcrypto/man: ASN1_TYPE_get.3 BIO_new.3 BN_new.3 
	                   CRYPTO_get_mem_functions.3 DH_new.3 DSA_new.3 
	                   ECDSA_SIG_new.3 EC_GROUP_new.3 ENGINE_new.3 
	                   ERR.3 OCSP_REQUEST_new.3 OPENSSL_cleanse.3 
	                   OPENSSL_config.3 OPENSSL_malloc.3 PEM_read.3 
	                   PKCS12_create.3 PKCS7_new.3 RSA_new.3 
	                   STACK_OF.3 UI_new.3 evp.3 lh_new.3 

Log message:
add links back to crypto(3) to function group entry pages
and to isolated obsolete pages;
OK bcook@ jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/10 06:24:21

Modified files:
	x11/kde-applications/marble: Makefile 

Log message:
fix cmake find package option

Set CMAKE_DISABLE_FIND_PACKAGE_libwlocate to ON and not to OFF.
libwlocate is not imported yet, so this has no side effects.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/10 06:59:42

ports/devel/p5-forks/patches

Update of /cvs/ports/devel/p5-forks/patches
In directory cvs.openbsd.org:/tmp/cvs-serv46398/patches

Log Message:
Directory /cvs/ports/devel/p5-forks/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/06/10 08:22:12

Modified files:
	regress/usr.bin/openssl: appstest.sh 

Log message:
Add pkcs12 options and smime tests for appstest.sh

- Add some options to pkcs12 test.
- Add smime tests for encrypt, decrypt and pk7out.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/10 08:38:06

Modified files:
	sys/dev/acpi   : acpi.c acpireg.h acpivar.h 

Log message:
Print proper ACPI version number.

ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/06/10 08:57:59

Modified files:
	graphics/ufraw : Makefile 
	graphics/ufraw/patches: patch-dcraw_cc 

Log message:
ufraw: fix narrowing on archs where char is unsigned by default (ppc, arm)

OK sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/10 08:58:48

Modified files:
	lib/libcrypto/man: ASN1_generate_nconf.3 BN_CTX_new.3 
	                   BN_add_word.3 BN_bn2bin.3 BN_generate_prime.3 
	                   BN_rand.3 DH_generate_key.3 
	                   DH_generate_parameters.3 DH_new.3 
	                   DSA_SIG_new.3 DSA_do_sign.3 DSA_dup_DH.3 
	                   DSA_generate_key.3 DSA_generate_parameters.3 
	                   DSA_new.3 DSA_sign.3 EVP_DigestSignInit.3 
	                   EVP_DigestVerifyInit.3 EVP_SignInit.3 
	                   EVP_VerifyInit.3 PEM_read.3 PKCS7_decrypt.3 
	                   PKCS7_encrypt.3 PKCS7_sign.3 PKCS7_verify.3 
	                   RSA_check_key.3 RSA_generate_key.3 RSA_new.3 
	                   RSA_private_encrypt.3 RSA_public_encrypt.3 
	                   RSA_sign.3 RSA_sign_ASN1_OCTET_STRING.3 
	                   SMIME_read_PKCS7.3 X509_PUBKEY_new.3 
	                   X509_new.3 

Log message:
delete references to ERR pages from SEE ALSO where such
references were already given below RETURN VALUES right above


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/10 09:06:03

Modified files:
	sys/arch/i386/i386: esm.c 

Log message:
Use PWAIT instead of PUSER in tsleep(9).

It doesn't matter in this case and reducing the number of PUSER makes
the scheduler logic easier to understand.

ok kettenis@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/10 10:32:51

Modified files:
	sys/net        : if_pfsync.c if_vxlan.c 
	sys/netinet    : ip_carp.c ip_output.c 
	sys/netinet6   : ip6_output.c 

Log message:
Use mallocarray(9) & put some free(9) sizes for M_IPMOPTS allocations.

ok semarie@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/06/10 10:33:02

Modified files:
	sys/net80211   : ieee80211.c ieee80211_node.c 

Log message:
Revised version of 'ifconfig mode' command fix.

The 'mode' command is supposed to force a wireless interface into 11a/b/g/n
media mode. This stopped working some time ago, probably during my work on
background scanning. Problem spotted by mlarkin@ who noticed that interfaces
were using 11g mode while forced to 11b mode.

ok phessler, jmatthew  (earlier version)
relentless testing by krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/10 10:48:59

Modified files:
	usr.bin/mg     : log.c log.h 

Log message:
Add 'undo' logging (same output as undo-list command). Also, add
'undo' data to a separate file from line logging.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/10 11:17:44

Added files:
	devel/acpica/patches: patch-generate_unix_Makefile_rules 

Log message:
don't hide compiler/linker command lines


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/10 12:11:27

Modified files:
	usr.bin/doas   : doas.c 

Log message:
use getpwuid_r to avoid problems with hidden static storage.
ok deraadt lteo martijn


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/10 12:55:15

Modified files:
	usr.bin/mg     : log.c 

Log message:
Fix not checking correct fprintf return value.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/10 13:00:38

Modified files:
	devel/acpica   : Makefile 

Log message:
set HOST=_LINUX rather than the default (which at some point since
initial porting changed to _CYGWIN). should fix up word-size #define
and hopefully therefore unbreak sparc64 build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/10 13:02:21

Modified files:
	devel/acpica/patches: patch-source_include_platform_aclinux_h 

Log message:
additional #ifdef for sparc64


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 15:55:16

Modified files:
	sys/net        : if_tun.c 

Log message:
don't allow userland to change if_type.

if_type is now immutable in tun(4) and tap(4)

ok claudio@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 16:59:01

Modified files:
	sys/sys        : mbuf.h 

Log message:
add M_TIMESTAMP as a csum_flags option to say ph_timestamp is set

this is so hardware that supports timestamping can set the time and
say so for things like bpf and the SO_TIMESTAMP socket option to use.

the intention is that ph_timestamp will store the nanosecond since
the system booted, which is in line with how fq_codel (the only
user of the field at the moment) uses it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/10 17:01:13

Modified files:
	net/haproxy    : Makefile distinfo 
	net/haproxy/patches: patch-include_proto_openssl-compat_h 
	                     patch-src_ssl_sock_c 

Log message:
Update to haproxy-1.9.8

With some help from tb@ for the LibreSSL part.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 17:05:52

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
support hardware timestamping for received packets.

the chip has a cycle counter or something, and the value of the
counter when the packet is sent to the host is stored in the
completion queue entry.

the driver periodically checks the cycle counter and records the
time at that point, so the rx path can do some maths to figure out
what the clock time is for the cycle counter. if the driver is
calibrated with the chips counter, the rx packets are timestamped.

this is based on the changes made to freebsd, but with some
simplifications.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 17:26:29

Modified files:
	sys/sys        : time.h 

Log message:
NSEC_TO_TIMEVAL turns nanoseconds in a uint64_t into a struct timeval

add NSEC_TO_TIMESPEC while here

ok cheloha@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 17:45:19

Modified files:
	sys/sys        : mbuf.h 
	sys/kern       : uipc_mbuf.c 

Log message:
add m_microtime for getting the wall clock time associated with a packet

if the packet has the M_TIMESTAMP csum_flag, ph_timestamp is added
to the boottime clock, otherwise it just uses microtime().


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 17:48:22

Modified files:
	sys/netinet    : ip_input.c 
	sys/netinet6   : ip6_input.c 

Log message:
use m_microtime instead of microtime for SO_TIMESTAMP socketopt handling

drivers can set ph_timestamp when packets are received by the
hardware, which should be more accurate and cheaper than getting
the clock when the packet is queued on the socket.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 17:49:45

Modified files:
	sys/net        : bpf.c 

Log message:
use m_microtime to get the packet rx time it might be available.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/06/10 18:35:18

Modified files:
	devel/jdk/1.8  : Makefile distinfo 
	devel/jdk/1.8/patches: 
	                       patch-jdk_src_share_native_java_lang_System_c 
Added files:
	devel/jdk/1.8/patches: patch-hotspot_src_os_bsd_vm_os_bsd_cpp 
	devel/jdk/1.8/pkg: DESCR PLIST README 
Removed files:
	devel/jdk/1.8/pkg: DESCR-jre DESCR-main PLIST-jre PLIST-main 
	                   README-jre README-main 

Log message:
Update to u212:
* Contains many upstream bug fixes and security fixes which can be mined
from u202-u212 release notes here:

https://adoptopenjdk.net/release_notes.html

* Also contains a series of FreeBSD corrections merged into upstream repo.
* Remove jre package since jre package support was removed from
java.port.mk and javaPathHelper already.

okay sthen@, ian@, naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/06/10 18:36:04

Modified files:
	devel/jdk      : java.port.mk 

Log message:
Adjust java module to ensure the correct build jdk is used:
* Add JAVA_HOME to MAKE_ENV and CONFIGURE_ENV for any port that uses
the java module and doesn't also contain NO_BUILD=yes. Previously
this was limited to just MODJAVA_BUILD=ant, but that is not sufficient
for ports that indirectly use ant via makefiles.

okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/06/10 18:37:09

Modified files:
	games/jbrickshooter: Makefile 
	games/lwjgl    : Makefile 
	lang/jruby     : Makefile 
	textproc/pdftk : Makefile 

Log message:
Adjust ports that rolled their own do-build target for calling ant to use
MODJAVA_BUILD=ant.

okay sthen@, abieber@, jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/06/10 18:38:36

Modified files:
	databases/architect: Makefile 
	databases/db/v4: Makefile 
	databases/jxplorer: Makefile 
	databases/liquibase: Makefile 
	databases/puppetdb4: Makefile 
	databases/puppetdb5: Makefile 
	devel/apache-ant: Makefile 
	devel/apktool  : Makefile 
	devel/dex2jar  : Makefile 
	devel/intellij : Makefile 
	devel/jadx     : Makefile 
	devel/javahelp : Makefile 
	devel/jd-gui   : Makefile 
	devel/jenkins/devel: Makefile 
	devel/jenkins/stable: Makefile 
	devel/maven    : Makefile 
	devel/netbeans : Makefile 
	devel/pycharm  : Makefile 
	editors/libreoffice: Makefile 
	games/freecol  : Makefile 
	games/minecraft: Makefile 
	geo/josm       : Makefile 
	geo/traccar    : Makefile 
	graphics/opencv: Makefile 
	java/jBCrypt   : Makefile 
	java/jna       : Makefile 
	java/tanukiwrapper: Makefile 
	lang/abcl      : Makefile 
	lang/clojure   : Makefile 
	lang/kawa      : Makefile 
	lang/processing: Makefile 
	lang/scala     : Makefile 
	math/geogebra  : Makefile 
	net/apache-activemq: Makefile 
	net/mfi        : Makefile 
	net/openfire   : Makefile 
	net/unifi/lts  : Makefile 
	net/unifi/stable: Makefile 
	productivity/deskzilla: Makefile 
	productivity/projectlibre: Makefile 
	productivity/thinkingrock: Makefile 
	security/burpsuite: Makefile 
	security/ghidra: Makefile 
	security/zaproxy: Makefile 
	sysutils/ec2-api-tools: Makefile 
	sysutils/logstash: Makefile 
	sysutils/netshot: Makefile 
	sysutils/riemann: Makefile 
	sysutils/rundeck: Makefile 
	textproc/elasticsearch: Makefile 
	textproc/link-grammar: Makefile 
	textproc/solr  : Makefile 
	textproc/stringtemplate: Makefile 
	textproc/xalan-j: Makefile 
	www/icedtea-web: Makefile 
	www/tomcat/v6  : Makefile 
	www/tomcat/v7  : Makefile 
	www/tomcat/v8  : Makefile 
	www/tomcat/v9  : Makefile 
	www/vnu        : Makefile 
	x11/kde4/kross-interpreters: Makefile 

Log message:
Revision bump all java ports for the jre package removal and java.port.mk
changes.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 18:45:31

Modified files:
	sys/arch/sparc64/dev: pci_machdep.c pyro.c vpci.c 
	sys/arch/sparc64/include: pci_machdep.h 

Log message:
implement msi-x support on sparc64.

this is mostly based on the stuff kettenis did on arm64 recently.
msix support is basically the same as msi support from the host
side, you just have to tell the actual device about the msi vectors
differently.

the most complicated part of this is storing the requested msix
vector between the call to pci_intr_map_msix and pci_intr_establish.
the pci_intr_handle_t for storing state between those is a scalar
type, so we reassign some bits in that int for use storing the type
of int (intx, msi, or msix) and the vector.

i took the low 8 bits for storing the vector, which gives us a max
of 256 values. technically msix supports up to 2048 vectors, but
pyro only supports 256 in total, so i don't think we're going to
miss out on much. vpci may support more, but we'll cross that bridge
when we get to it.

i tested pyro(4) with mcx(4).
vpci was tested by kettenis@

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 19:35:55

Modified files:
	sys/arch/sparc64/conf: GENERIC 

Log message:
add mcx now that pyro and sparc64 can do msi-x

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/06/10 20:16:11

src/regress/sys/kern/clock_gettime

Update of /cvs/src/regress/sys/kern/clock_gettime
In directory cvs.openbsd.org:/tmp/cvs-serv87301/clock_gettime

Log Message:
Directory /cvs/src/regress/sys/kern/clock_gettime added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/10 21:22:30

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
records a flowid in the mbuf if the rx cqe provides an rx hash value.

jmatthew@ says we need to configure the hw to populate that, but i
can put this in now in preparation for it.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/10 21:55:16

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
bump up the ring sizes for dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/10 22:34:23

Modified files:
	devel/jenkins/devel: Makefile distinfo 
	devel/jenkins/stable: Makefile distinfo 

Log message:
update jenkins

stable to 2.164.3
devel to 2.179


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/06/10 23:00:09

Modified files:
	usr.sbin/ospf6d: ospf6d.h ospfe.c parse.y rde.c 

Log message:
Introduce conf_clear_redist_list() (from ospfd) and use it in all 3 procs.

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/06/10 23:33:01

Modified files:
	usr.sbin/snmpd : snmpd.h usm.c 

Log message:
The digestlength is not always 12 bytes. Make this value variable in
preparation for SHA-2 support.

OK claudio@, gerhard@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/06/10 23:36:32

Modified files:
	usr.sbin/snmpd : parse.y snmpd.conf.5 snmpd.h usm.c 

Log message:
Implement SHA-2 (RFC7860) support for authentication.

OK claudio@, gerhard@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/11 00:01:20

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/mozilla-firefox/pkg: README 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 67.0.2.

See https://www.mozilla.org/en-US/firefox/67.0.2/releasenotes/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/11 00:01:43

Modified files:
	www/mozilla-firefox: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: Update to firefox 67.0.2.

See https://www.mozilla.org/en-US/firefox/67.0.2/releasenotes/


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/11 00:17:23

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
if ifiq_input says there's too much pressure, tell the rxr we're livelocked

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/11 00:28:09

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
pass what pci_intr_established returns to intr_barrier

passing a pointer to a pci_intr_handle_t doesnt work too well on
sparc64, where it faults in the guts of the scheduler. dunno why
amd64 is fine.

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 00:46:53

Modified files:
	sys/dev/pci/drm/ttm: ttm_tt.c 

Log message:
Use km_alloc() instead of mallocarray() when allocating ttm dma segments
to avoid running out of kmem space.  Suggested by and ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/11 01:17:23

Modified files:
	fonts/ibm-plex : Makefile distinfo 
	fonts/ibm-plex/pkg: PLIST 

Log message:
Update to ibm-plex-2.0.0.

Release notes:
https://github.com/IBM/plex/releases/tag/v2.0.0


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/06/11 04:26:31

Modified files:
	faq            : current.html 

Log message:
If you used -A or -D in your regular acme-client command lines,
you will need to remove them.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/11 04:34:13

Modified files:
	graphics/openbsd-backgrounds: Makefile 
	graphics/openbsd-backgrounds/files: openbsd-wallpaper 

Log message:
fix bogus directory and inverted logic (as noticed by Ian Darwin)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/11 05:15:04

Modified files:
	devel/jsoncpp/patches: patch-meson_build 

Log message:
llvm8: prevent libc++ headers from picking up <version> file


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 05:37:45

Modified files:
	sys/dev/pci/drm: drm_edid.c 

Log message:
drm: add non-desktop quirk for Valve HMDs

From Andres Rodriguez
490290b0415f069eb156db50d165ca6a407d47bc in linux 4.19.y/4.19.50
30d62d4453e49f85dd17b2ba60bbb68b6593dba0 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 05:41:02

Modified files:
	sys/dev/pci/drm: drm_edid.c 

Log message:
drm: add non-desktop quirks to Sensics and OSVR headsets.

From Ryan Pavlik
98a8cb0282ab22d0533de34412f2118bf21147e4 in linux 4.19.y/4.19.50
29054230f3e11ea818eccfa7bb4e4b3e89544164 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 05:42:58

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_psp.c 

Log message:
drm/amdgpu/psp: move psp version specific function pointers to early_init

From Alex Deucher
748a97ec6c1588e3a49e09fe9ca56dcdb7f976b5 in linux 4.19.y/4.19.50
9d6fea5744d6798353f37ac42a8a653a2607ca69 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 05:45:01

Modified files:
	sys/dev/pci/drm/radeon: radeon_display.c 

Log message:
drm/radeon: prefer lower reference dividers

From Christian Koenig
84c82ab8f133f1c1e27f6b1bafe3f7d8835acc4c in linux 4.19.y/4.19.50
2e26ccb119bde03584be53406bbd22e711b0d6e6 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 05:47:24

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_acpi.c 

Log message:
drm/amdgpu: remove ATPX_DGPU_REQ_POWER_FOR_DISPLAYS check when hotplug-in

From Aaron Liu
f3dcc88d531fd21af0c4261896eb23b455499366 in linux 4.19.y/4.19.50
bdb1ccb080dafc1b4224873a5b759ff85a7d1c10 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 05:49:46

Modified files:
	sys/dev/pci/drm/i915: intel_fbc.c 

Log message:
drm/i915/fbc: disable framebuffer compression on GeminiLake

From Daniel Drake
360e00e290a355219425b5ea0ca62d9df3261fa1 in linux 4.19.y/4.19.50
396dd8143bdd94bd1c358a228a631c8c895a1126 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 05:52:52

Modified files:
	sys/dev/pci/drm/i915: i915_reg.h intel_workarounds.c 

Log message:
drm/i915: Maintain consistent documentation subsection ordering

From Jonathan Corbet
6600ec2600d63868efa8c6641375451677469b24 in linux 4.19.y/4.19.50
551bd3368a7b3cfef01edaade8970948d178d40a in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/11 05:56:25

Modified files:
	sys/dev/pci/drm: drm_atomic_helper.c 
	sys/dev/pci/drm/include/drm: drm_modeset_helper_vtables.h 

Log message:
drm: don't block fb changes for async plane updates

From Helen Koike
fbb7e114e6e690c46f170dedd6fd2fb22f241519 in linux 4.19.y/4.19.50
89a4aac0ab0e6f5eea10d7bf4869dd15c3de2cd4 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/11 07:09:00

Modified files:
	usr.bin/tmux   : server-client.c 

Log message:
Do not resize panes unless they are in an attached, active window. From
Morten M Neergaard in GitHub issue 1782.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/11 07:39:40

Modified files:
	usr.bin/ssh    : ssh_config.5 

Log message:
consistent lettering for "HostName" keyword; from lauri tirkkonen


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/06/11 08:48:56

Modified files:
	etc            : MAKEDEV.common 

Log message:
make 10 wsmouse devices

for anything other than a regular old mouse, X needs to be able to
directly talk to the device and newer machines can have all kinds of
touchscreens, pen devices, touchpads, etc.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/06/11 08:49:18

Modified files:
	etc/etc.alpha  : MAKEDEV 
	etc/etc.amd64  : MAKEDEV 
	etc/etc.arm64  : MAKEDEV 
	etc/etc.armv7  : MAKEDEV 
	etc/etc.hppa   : MAKEDEV 
	etc/etc.i386   : MAKEDEV 
	etc/etc.landisk: MAKEDEV 
	etc/etc.loongson: MAKEDEV 
	etc/etc.luna88k: MAKEDEV 
	etc/etc.macppc : MAKEDEV 
	etc/etc.octeon : MAKEDEV 
	etc/etc.sgi    : MAKEDEV 
	etc/etc.sparc64: MAKEDEV 

Log message:
regen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jcs@cvs.openbsd.org	2019/06/11 08:51:34

Modified files:
	xserver/config : wscons.c 
	xserver/os     : privsep.c 

Log message:
when probing for wsmouse devices, check up to wsmouse9

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/11 09:23:41

Modified files:
	sys/arch/amd64/amd64: genassym.cf 
	sys/arch/hppa/hppa: genassym.cf 
	sys/arch/i386/i386: genassym.cf 
	sys/arch/sh/sh : genassym.cf 
	sys/arch/sparc64/sparc64: genassym.cf 

Log message:
Remove unused scheduler related definitions.

ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/11 09:32:17

Modified files:
	databases/py-ldap: Makefile 
Removed files:
	databases/py-ldap/patches: patch-setup_cfg 

Log message:
no need to patch, just pass CPPFLAGS/LDFLAGS in MAKE_ENV


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/11 09:40:41

Modified files:
	usr.bin/mandoc : tbl_term.c 
	regress/usr.bin/mandoc/tbl/layout: Makefile 
Added files:
	regress/usr.bin/mandoc/tbl/layout: shortlines.in 
	                                   shortlines.out_ascii 

Log message:
Do not access a NULL pointer if a table contains a horizontal line
next to a table line having fewer columns than the table as a whole.
Bug found by Stephen Gregoratto <dev at sgregoratto dot me>
with aerc-config(5).


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/11 12:14:23

Modified files:
	share/mk       : bsd.regress.mk 

Log message:
make things slightly less insane:
- actually use the ERRORS framework for REGRESS_LOG
- put it at end of file, as best working (years of practice on bsd.port.mk)
- actually use .SILENT
- fix REGRESS_IGNORE_FAIL. Don't put a - in front of lines, but just
don't error out as false on FAILED tests.
This finally allows ^C to actually interrupt a testsuite.
- add one missing .PHONY (quite a few more for later)

okay bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/11 12:30:31

Modified files:
	lib/libelf     : elf.3 elf_flagdata.3 elf_open.3 gelf.3 
	                 gelf_newehdr.3 gelf_newphdr.3 

Log message:
do not use plain-text ELF(3) to reference page titles, use .Nm or .Xr.:
issue noticed by naddy@ when he inspected a bug report from aalm@;
while here, use .At where appropriate;
OK naddy@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/11 12:38:46

Modified files:
	lib/libelf     : elf.3 

Log message:
fix bogus cross references: there is no ELF(3) manual page;
pointed out by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/11 13:28:45

Modified files:
	mail/abook     : Makefile 

Log message:
autopoint from gettext,-tools needs archivers/xz.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/11 13:43:56

Modified files:
	usr.sbin/bgpd  : rde_update.c 

Log message:
Fix typo which resulted in a segfault in ebgp multihop setups.
OK claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/11 16:16:13

Modified files:
	regress/lib/libc/malloc/malloc_errno: malloc_errno.c 

Log message:
Disable junking with malloc options.  If set, the test hangs on low
memory arm64 machines.
found by patrick@; OK otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/11 19:38:30

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Set interrupt moderation on the completion queue for around 10000
interrupts per second, or 90% of the cq size.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/11 20:50:29

Modified files:
	usr.bin/doas   : doas.c 

Log message:
a few cleanups and simplifications possible now that static pw is gone.
noted by martijn. ok martijn.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/06/11 22:41:57

Modified files:
	productivity/tryton/5.0/account: Makefile distinfo 
	productivity/tryton/5.0/account/pkg: PLIST 
	productivity/tryton/5.0/account_invoice_history: Makefile 
	                                                 distinfo 
	productivity/tryton/5.0/account_invoice_history/pkg: PLIST 
	productivity/tryton/5.0/product_cost_fifo: Makefile distinfo 
	productivity/tryton/5.0/product_cost_fifo/pkg: PLIST 
	productivity/tryton/5.0/sao: Makefile distinfo 
	productivity/tryton/5.0/sao/files: sao-dependencies.sh 
	productivity/tryton/5.0/stock: Makefile distinfo 
	productivity/tryton/5.0/stock/pkg: PLIST 
	productivity/tryton/5.0/tryton: Makefile distinfo 
	productivity/tryton/5.0/tryton/pkg: PLIST 
	productivity/tryton/5.0/trytond: Makefile distinfo 
	productivity/tryton/5.0/trytond/pkg: PLIST 

Log message:
tryton/5.0 maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/06/11 22:43:04

Modified files:
	productivity/tryton/5.2/account: Makefile distinfo 
	productivity/tryton/5.2/account/pkg: PLIST 
	productivity/tryton/5.2/account_invoice: Makefile distinfo 
	productivity/tryton/5.2/account_invoice/pkg: PLIST 
	productivity/tryton/5.2/sao: Makefile distinfo 
	productivity/tryton/5.2/sao/files: sao-dependencies.sh 
	productivity/tryton/5.2/stock: Makefile distinfo 
	productivity/tryton/5.2/stock/pkg: PLIST 
	productivity/tryton/5.2/trytond: Makefile distinfo 
	productivity/tryton/5.2/trytond/pkg: PLIST 

Log message:
tryton/5.2 maintenance update


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/11 23:04:45

Modified files:
	usr.sbin/ntpd  : config.c ntp.c ntp_dns.c ntpd.c ntpd.h parse.y 

Log message:
Fix init of syslog for childs and teach dns process about synced state.
ok benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/06/11 23:47:32

Log message:
    import luciole, a typeface developed explicitly for visually impaired people.
    ok and inputs rsadowski@.
    
    Status:
    
    Vendor Tag:	rpointel
    Release Tags:	rpointel_20190612
    
    N ports/fonts/luciole/Makefile
    N ports/fonts/luciole/distinfo
    N ports/fonts/luciole/pkg/PLIST
    N ports/fonts/luciole/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/06/11 23:48:25

Modified files:
	fonts          : Makefile 

Log message:
+     SUBDIR += luciole


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/11 23:53:21

Modified files:
	usr.bin/ssh    : ssh_config.5 sshd_config.5 

Log message:
deraadt noticed some inconsistency in the way we denote the "Hostname" and
"X11UseLocalhost" keywords; this makes things consistent (effectively reversing
my commit of yesterday);

ok deraadt markus djm


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/12 00:01:26

Modified files:
	usr.bin/mg     : log.c 

Log message:
A note about log.c.


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/06/12 01:49:48

Modified files:
	openssh        : donations.html features.html ftp.html 
	                 goals.html history.html legacy.html list.html 
	                 manual.html openbsd.html portable.html 
	                 press.html releasenotes.html report.html 
	                 security.html specs.html usage.html users.html 
	openssh/ssh-dispute: index.html 
	build/mirrors  : openssh-ftp.html.end openssh-ftp.html.head 
	                 openssh-portable.html.end 
	                 openssh-portable.html.head 
	                 openssh-portable.html.mid1 
	build/openssh  : releasenotes.html.head releasenotes.html.tail 
	                 releases.pl 

Log message:
Clean up OpenSSH HTML.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/12 02:08:33

Modified files:
	usr.bin/tmux   : layout-custom.c 

Log message:
Do not always resize the window back to its original size after applying
a layout, let the normal window resize process do it. This means windows
are not resized at all if window-size is manual, and are not resized
multiple times if later attached to a different size terminal.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/12 02:29:17

Modified files:
	usr.bin/su     : su.1 

Log message:
when "login" is not specified, "root" is used;
omission reported by Nan Xiao <xiaonan830818 at gmail dot com> on misc@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/12 02:47:07

Modified files:
	usr.bin/tmux   : cmd-if-shell.c 

Log message:
Pass target on to new commands with if -F.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/12 03:03:43

Modified files:
	lib/libssl/man : ssl.3 

Log message:
List all 17 SSL pages that were missing.
Split some excessively long lists into useful sub-categories.
Add a new, very short subsection "Obsolete functions" at the end.
OK tb@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/12 03:10:29

Modified files:
	usr.bin/tmux   : cmd-find.c 

Log message:
Do not use $TMUX to find the session because for windows in multiple
sessions it is wrong as often as it is right, and for windows in one
session it is pointless. Instead check TMUX_PANE to find the pane and
look for the MRU session as usual. GitHub issue 1793.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/12 03:36:30

Modified files:
	lib/libssl/man : BIO_f_ssl.3 OPENSSL_init_ssl.3 
	                 PEM_read_SSL_SESSION.3 
	                 SSL_COMP_add_compression_method.3 
	                 SSL_CTX_get0_certificate.3 
	                 SSL_CTX_sess_number.3 
	                 SSL_CTX_sess_set_cache_size.3 
	                 SSL_CTX_set_max_cert_list.3 SSL_CTX_set_mode.3 
	                 SSL_CTX_set_session_cache_mode.3 
	                 SSL_CTX_set_tlsext_servername_callback.3 
	                 SSL_CTX_set_tlsext_status_cb.3 
	                 SSL_CTX_set_tlsext_ticket_key_cb.3 
	                 SSL_CTX_set_tlsext_use_srtp.3 
	                 SSL_SESSION_free.3 SSL_SESSION_new.3 
	                 SSL_SESSION_print.3 SSL_copy_session_id.3 
	                 SSL_dup.3 SSL_dup_CA_list.3 
	                 SSL_export_keying_material.3 
	                 SSL_get_certificate.3 SSL_get_server_tmp_key.3 
	                 SSL_get_shared_ciphers.3 SSL_get_state.3 
	                 SSL_load_client_CA_file.3 
	                 SSL_num_renegotiations.3 SSL_renegotiate.3 
	                 SSL_session_reused.3 SSL_set1_param.3 
	                 SSL_set_max_send_fragment.3 

Log message:
add missing backlinks to ssl(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/06/12 05:09:25

Modified files:
	usr.sbin/acme-client: Makefile acctproc.c acme-client.conf.5 
	                      extern.h keyproc.c main.c parse.h parse.y 
	                      rsa.c rsa.h 
Added files:
	usr.sbin/acme-client: key.c key.h 

Log message:
use acme-client to sign certificated with ecdsa keys

diff from Renaud Allard <renaud@allard.it>, ok to get in from florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/06/12 05:10:20

Removed files:
	usr.sbin/acme-client: rsa.c rsa.h 

Log message:
these were moved to key.[ch] in previous commit


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/12 05:31:36

Modified files:
	regress/lib/libc/malloc/malloc_ulimit1: malloc_ulimit1.c 
	regress/lib/libc/malloc/malloc_ulimit2: malloc_ulimit2.c 

Log message:
Set malloc_options in global scope with an initializer.
recommended by otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/12 05:31:50

Modified files:
	usr.bin/ssh    : clientloop.c readconf.c scp.1 sftp.1 ssh.1 
	                 ssh.c ssh_config.5 

Log message:
Hostname->HostName cleanup; from lauri tirkkonen
ok dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/12 05:36:33

Modified files:
	usr.sbin/acme-client: acme-client.conf.5 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/12 08:58:15

Modified files:
	net/dnscontrol : Makefile 

Log message:
my fancy setting of ONLY_FOR_ARCHS to the intersection of GO_ARCHS and
LP64_ARCHS didn't work (GO_ARCHS/LP64_ARCHS aren't available until after
the mk files are pulled in which cause ONLY_FOR_ARCHS to be checked) so
just hardcode amd64 instead.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/12 09:42:05

Modified files:
	www/nghttp2    : Makefile distinfo 

Log message:
update to nghttp2 1.39.1


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/06/12 10:27:09

Modified files:
	.              : plus.html 

Log message:
plus for May 8 to June 11
tweaks and OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/06/12 11:42:53

Modified files:
	usr.sbin/smtpd : iobuf.c iobuf.h ioev.c ioev.h mta_session.c 
	                 smtp_client.c smtp_session.c 
	usr.sbin/smtpd/smtp: Makefile 
	usr.sbin/smtpd/smtpd: Makefile 

Log message:
change "ssl" to "tls" in various identifiers.
no functional change.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/12 12:21:07

Modified files:
	usr.bin/mg     : log.c 

Log message:
The output of line info in the line.log file now contains the
character the cursor is over. This corresponds to the 'a' character
before the '|' character below:

>0x78898a94340 b^0x7889632b320 f.0x7889632b340 3 3       a|abc

Previously it would not have been shown:

>0x78898a94340 b^0x7889632b320 f.0x7889632b340 3 3       |abc

Also, a fake new-line character is shown with '-' before the '|' char.

>0x78898a94340 b^0x7889632b320 f.0x7889632b340 3 3       -|


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/12 12:27:19

Modified files:
	www/nghttp2    : distinfo 

Log message:
oops fix distinfo; thanks naddy


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/12 13:25:53

Modified files:
	infrastructure/lib/OpenBSD/PortGen: Port.pm 

Log message:
Update Portgen to use the new-style PERMIT_PACKAGE and PERMIT_DISTFILES
instead of the older PERMIT_CDROM and company.

OK sthen@ kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rapha@cvs.openbsd.org	2019/06/12 14:28:36

Modified files:
	audio/audacity/patches: patch-configure_ac 

Log message:
Unbreak audacity on macppc by fixing the -latomic check.

ok jca@


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/12 14:57:17

Modified files:
	.              : 21.html 22.html 23.html 24.html 25.html 26.html 
	                 27.html 28.html 29.html 30.html 31.html 32.html 
	                 33.html 34.html 35.html 36.html 37.html 38.html 
	                 39.html 40.html 41.html 42.html 43.html 44.html 
	                 45.html 46.html 47.html 48.html 49.html 50.html 
	                 51.html 52.html 53.html 54.html 55.html 56.html 
	                 57.html 58.html 59.html 60.html 61.html 62.html 
	                 63.html 64.html 65.html 66.html 

Log message:
one small annoying nit turned into a 8323 line unification diff.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/12 15:13:59

Modified files:
	sysutils/gsmartcontrol: Makefile 
Added files:
	sysutils/gsmartcontrol/patches: patch-configure_ac 
	                                patch-src_res_Makefile_am 
Removed files:
	sysutils/gsmartcontrol/patches: patch-src_res_Makefile_in 

Log message:
llvm8: Move config.h into src subdirectory to keep C++ #include <version>
from picking up an unrelated file by way of -I$(top_srcdir).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/06/12 15:39:01

Modified files:
	converters/p5-Cpanel-JSON-XS: Makefile distinfo 

Log message:
update p5-Cpanel-JSON-XS to 4.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/12 15:54:40

Modified files:
	graphics/simgear: Makefile 
	graphics/simgear/patches: patch-CMakeLists_txt 

Log message:
llvm8: rename "version" file so it isn't picked up by C++ #include <version>


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/12 16:47:08

Modified files:
	games/stepmania: Makefile 

Log message:
should no longer be broken on alpha since we use endian.h


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/12 18:37:04

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
the rx drops field is 8 bits (and a 24 bit flow tag), not 32 bits.

sympathy from jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/06/12 21:37:04

Modified files:
	devel/py-tz    : Makefile distinfo 
	devel/py-tz/pkg: PLIST 

Log message:
Update to 2019.1; from wen heping.

ok kmos@


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/06/12 23:33:57

Modified files:
	.              : 21.html 22.html 23.html 24.html 25.html 26.html 
	                 27.html 28.html 29.html 30.html 31.html 32.html 
	                 33.html 34.html 35.html 36.html 37.html 38.html 
	                 39.html 40.html 41.html 42.html 43.html 44.html 
	                 45.html 46.html 47.html 48.html 49.html 50.html 
	                 51.html 52.html 53.html 54.html 55.html 56.html 
	                 57.html 58.html 59.html 60.html 61.html 62.html 
	                 63.html 

Log message:
An empty <p> before a block has no effect; strip them out.

Unify release pages a tiny bit more.


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/06/12 23:45:51

Modified files:
	.              : 38.html errata22.html plus.html 
	faq            : current.html faq17.html 

Log message:
Fix typos caught by validator.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/12 23:51:38

Modified files:
	.              : 21.html 22.html 23.html 24.html 25.html 26.html 
	                 27.html 28.html 29.html 30.html 31.html 32.html 
	                 33.html 34.html 35.html 36.html 37.html 38.html 
	                 39.html 40.html 41.html 42.html 43.html 44.html 
	                 45.html 46.html 47.html 48.html 49.html 50.html 
	                 51.html 52.html 53.html 54.html 55.html 56.html 
	                 57.html 58.html 59.html 60.html 61.html 62.html 
	                 63.html 64.html 65.html 66.html 

Log message:
fix tgz references


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/12 23:59:50

Modified files:
	.              : 21.html 22.html 23.html 24.html 25.html 26.html 
	                 27.html 28.html 29.html 30.html 31.html 32.html 
	                 33.html 34.html 35.html 36.html 37.html 38.html 
	                 39.html 40.html 41.html 42.html 43.html 44.html 
	                 45.html 46.html 47.html 48.html 49.html 50.html 
	                 51.html 52.html 53.html 54.html 

Log message:
unify boilerplate at right of image


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/13 00:05:00

Modified files:
	.              : 21.html 22.html 23.html 24.html 25.html 26.html 
	                 27.html 28.html 29.html 30.html 31.html 32.html 
	                 33.html 34.html 35.html 36.html 37.html 38.html 
	                 39.html 40.html 41.html 42.html 43.html 44.html 
	                 45.html 46.html 47.html 48.html 49.html 50.html 
	                 51.html 52.html 

Log message:
unify ports untar chunks


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/13 00:16:25

Modified files:
	.              : 29.html 30.html 31.html 32.html 33.html 34.html 
	                 35.html 36.html 37.html 38.html 39.html 40.html 
	                 41.html 42.html 43.html 44.html 45.html 46.html 
	                 47.html 48.html 49.html 50.html 51.html 52.html 
	                 53.html 54.html 55.html 56.html 59.html 60.html 
	                 61.html 62.html 63.html 64.html 65.html 66.html 

Log message:
settle on a single pattern for the untar related blockquotes


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/06/13 00:57:17

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm(4): Pass through CPUID function/leaf 0x16 for processor speed.

ok deraadt, pd, phessler


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/06/13 01:34:37

Modified files:
	build/mirrors  : openbgpd-ftp.html.end openbgpd-ftp.html.head 
	                 openntpd-portable.html.end 
	                 openntpd-portable.html.head 
	openbgpd       : ftp.html goals.html mail.html manual.html 
	                 papers.html users.html 
	opencvs        : goals.html manual.html press.html 
	openntpd       : features.html goals.html manual.html 
	                 papers.html portable.html 
	opensmtpd      : donations.html goals.html list.html manual.html 
	                 papers.html portable.html report.html 
	                 security.html 
	openssh        : portable.html 
	libressl       : goals.html mail.html papers.html patches.html 
	                 releases.html signing.html 

Log message:
HTML cleanup in remaining subprojects.


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/06/13 01:41:10

Modified files:
	build/mirrors  : openssh-portable.html.head 
	openssh        : portable.html 
	spamd          : index.html 

Log message:
Validate a few stragglers.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/06/13 02:02:35

Modified files:
	regress/usr.bin/openssl: appstest.sh 

Log message:
Add more options to pkcs12 and smime in appstest.sh


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/13 02:02:37

Modified files:
	audio/umurmur  : Makefile 

Log message:
Move homepage to https.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/13 02:12:11

Modified files:
	sys/net        : route.c 
	sys/netinet    : in_proto.c 
	sys/netinet6   : in6_proto.c 
	sys/netmpls    : mpls_proto.c 
	sys/sys        : domain.h 

Log message:
Copy the user provided sockaddr into a normalized sockaddr in rtrequest()
before adding it to the routing table. The rtable code is doing memcmp()
of those rt_dest sockaddrs so it is important that they are stored in a
canonical form. To do this struct domain is extended to include the
sockaddr size for this address family.
OK bluhm@ anton@

Reported-by: syzbot+10fe9cd8d0211c562ead@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/13 02:15:26

Modified files:
	sys/netinet    : if_ether.c 
	sys/netinet6   : nd6.c 

Log message:
In arp_rtrequest and nd6_rtrequest return early if the RTF_MPLS flag is
set. These mpls routes use the rt_llinfo structure to store the MPLS label
and would confuse the arp and nd6 code.
OK bluhm@ anton@

Reported-by: syzbot+927e93a362f3ae33dd9c@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/13 02:54:29

Log message:
    Import textproc/misspell.
    
    Correct commonly misspelled English words in source files.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20190613
    
    N ports/textproc/misspell/Makefile
    N ports/textproc/misspell/distinfo
    N ports/textproc/misspell/pkg/PLIST
    N ports/textproc/misspell/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/13 02:55:09

Modified files:
	textproc       : Makefile 

Log message:
Add misspell.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/13 05:42:37

Modified files:
	mail/isync     : Makefile distinfo 
	mail/isync/patches: patch-src_drv_imap_c patch-src_main_c 
Removed files:
	mail/isync/patches: patch-src_drv_maildir_c 
	                    patch-src_drv_proxy_c patch-src_socket_c 

Log message:
Update to isync 1.3.1

maintainence release containing various fixes, see
https://sourceforge.net/projects/isync/files/isync/1.3.1/.

Removed patches are all merged upstream.

OK remi


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/06/13 05:45:35

Modified files:
	usr.sbin/smtpd : lka.c pony.c resolver.c smtpd.c smtpd.h 

Log message:
extend the resolver interface to delegate res_query() calls to the lka.

ok gilles@ sunil@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/06/13 06:19:05

Modified files:
	productivity/tryton/5.2/tryton: Makefile distinfo 
	productivity/tryton/5.2/tryton/patches: patch-tryton_config_py 
	productivity/tryton/5.2/tryton/pkg: PLIST 

Log message:
tryton/5.2: maintenance update

I nissed tryton desktop client from previous commit


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/13 06:59:51

Modified files:
	usr.bin/su     : su.1 

Log message:
su(I) goes back all the way to v1:
https://www.tuhs.org/Archive/Distributions/Research/Dennis_v1/man13.pdf
It wasn't in v0 PDP-7 UNIX though:
https://www.tuhs.org/Archive/Distributions/Research/McIlroy_v0/UnixEditionZero.txt


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/06/13 09:42:34

Modified files:
	.              : 66.html 

Log message:
mention RSA_METHOD stuff


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 09:48:57

Modified files:
	audio/calf     : Makefile 
	audio/easytag  : Makefile 
	audio/gimmix   : Makefile 
	audio/gmpc-plugins: Makefile 
	audio/libcanberra: Makefile 
	cad/geda-gaf   : Makefile 
	cad/gerbv      : Makefile 
	comms/jpilot   : Makefile 
	devel/gconf-editor: Makefile 
	devel/goffice08: Makefile 
	devel/gtkparasite: Makefile 
	devel/gwenhywfar: Makefile 
	devel/libglade2: Makefile 
	devel/libpeas  : Makefile 
	devel/libunique: Makefile 
	devel/libwnck  : Makefile 
	devel/pangox-compat: Makefile 
	devel/py-notify: Makefile 
	devel/sdl-pango: Makefile 
	education/drgeo: Makefile 
	education/verbiste: Makefile 
	games/gcompris : Makefile 
	games/gnome-mastermind: Makefile 
	geo/foxtrotgps : Makefile 
	graphics/colord-gtk: Makefile 
	graphics/dia   : Makefile 
	graphics/goocanvas2: Makefile 
	graphics/gpicview: Makefile 
	graphics/gtkam : Makefile 
	graphics/gtkimageview: Makefile 
	graphics/libexif-gtk: Makefile 
	graphics/viewnior: Makefile 
	graphics/xmedcon: Makefile 
	inputmethods/ibus: Makefile 
	inputmethods/ibus-skk: Makefile 
	inputmethods/libtomoe-gtk: Makefile 
	inputmethods/scim: Makefile 
	inputmethods/scim-anthy: Makefile 
	inputmethods/scim-chewing: Makefile 
	inputmethods/scim-hangul: Makefile 
	inputmethods/scim-pinyin: Makefile 
	inputmethods/scim-tables: Makefile 
	inputmethods/uim-tomoe-gtk: Makefile 
	japanese/gwaei : Makefile 
	mail/sylpheed  : Makefile 
	math/galculator: Makefile 
	math/graphviz  : Makefile 
	multimedia/imagination: Makefile 
	multimedia/lives: Makefile 
	multimedia/mjpegtools: Makefile 
	multimedia/ogmrip: Makefile 
	net/hexchat    : Makefile 
	net/nfdump     : Makefile 
	net/pidgin     : Makefile 
	net/pidgin-window-merge: Makefile 
	print/gtklp    : Makefile 
	print/py-poppler: Makefile 
	productivity/rubrica2: Makefile 
	productivity/workrave: Makefile 
	telephony/iaxclient: Makefile 
	textproc/gtkspell: Makefile 
	www/bluefish   : Makefile 
	x11/gcolor2    : Makefile 
	x11/gmtk       : Makefile 
	x11/gnome/ghex : Makefile 
	x11/gnome/libbonoboui: Makefile 
	x11/gnome/libcryptui: Makefile 
	x11/gnome/libgnomecanvas: Makefile 
	x11/gnome/libgnomeui: Makefile 
	x11/gnome/mono-gnome: Makefile 
	x11/gnome/planner: Makefile 
	x11/gnome/seahorse-nautilus: Makefile 
	x11/gtk-engines2: Makefile 
	x11/gtk2-aurora-engine: Makefile 
	x11/gtk2-equinox-engine: Makefile 
	x11/gtk2-murrine-engine: Makefile 
	x11/gtk2-nodoka-engine: Makefile 
	x11/gtk2-rezlooks-engine: Makefile 
	x11/gtk2mm     : Makefile 
	x11/gtk3-unico-engine: Makefile 
	x11/gtkdatabox : Makefile 
	x11/gtkhotkey  : Makefile 
	x11/gtksourceview: Makefile 
	x11/gtksourceviewmm3: Makefile 
	x11/keybinder  : Makefile 
	x11/keybinder3 : Makefile 
	x11/mono-gtk2  : Makefile 
	x11/ogle_gui   : Makefile 
	x11/openbox    : Makefile 
	x11/partiwm    : Makefile 
	x11/pidgin-guifications: Makefile 
	x11/pidgin-libnotify: Makefile 
	x11/py-gtk2    : Makefile 
	x11/rep-gtk    : Makefile 
	x11/sawfish    : Makefile 
	x11/thewidgetfactory: Makefile 
	x11/winwrangler: Makefile 
	x11/xarchiver  : Makefile 
	x11/xfce4/gtk-xfce-engine: Makefile 
	x11/xfce4/libxfce4ui: Makefile 
	x11/xfce4/orage: Makefile 
	x11/xfce4/thunar-archive: Makefile 
	x11/xfce4/thunar-media-tags: Makefile 
	x11/xfce4/xfce4-appfinder: Makefile 
	x11/xfce4/xfce4-cpugraph: Makefile 
	x11/xfce4/xfce4-diskperf: Makefile 
	x11/xfce4/xfce4-fsguard: Makefile 
	x11/xfce4/xfce4-genmon: Makefile 
	x11/xfce4/xfce4-mailwatch: Makefile 
	x11/xfce4/xfce4-mixer: Makefile 
	x11/xfce4/xfce4-netload: Makefile 
	x11/xfce4/xfce4-notes: Makefile 
	x11/xfce4/xfce4-panel: Makefile 
	x11/xfce4/xfce4-session: Makefile 
	x11/xfce4/xfce4-smartbookmark: Makefile 
	x11/xfce4/xfce4-verve: Makefile 
	x11/xfce4/xfce4-wavelan: Makefile 
	x11/xfce4/xfmpc: Makefile 

Log message:
sync some WANTLIBs


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 09:54:56

Modified files:
	graphics/dmtx-utils: Makefile 

Log message:
sync WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 09:58:46

Modified files:
	audio/squeezelite: Makefile 

Log message:
sync wantlib


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 10:38:34

Modified files:
	graphics/netpbm: Makefile 
	textproc/TclXML: Makefile 
	devel/happy    : Makefile 
	print/foomatic-db-engine: Makefile 
	www/snownews   : Makefile 
	devel/gmc4cc   : Makefile 
	graphics/leptonica: Makefile 
	x11/klavaro    : Makefile 
	japanese/kanatest: Makefile 

Log message:
sync WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 11:00:47

Modified files:
	audio/cmu-sphinxbase: Makefile 
	chinese/libchewing: Makefile 
	databases/strigi: Makefile 
	x11/stumpwm    : Makefile 
	databases/libzdb: Makefile 
	lang/gcc/8     : Makefile 

Log message:
sync WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/13 11:01:11

Modified files:
	mail/mozilla-thunderbird: Makefile distinfo 
	mail/thunderbird-i18n: Makefile.inc distinfo 

Log message:
Update to thunderbird 60.7.1.

See https://www.thunderbird.net/en-US/thunderbird/60.7.1/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-17/
(probable mfsa#)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 11:07:04

Modified files:
	www/chromium   : Makefile 
	www/iridium    : Makefile 

Log message:
sync WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 11:29:23

Modified files:
	graphics/ffmpeg: Makefile 

Log message:
sync WANTLIB - theora (re)addition missed including some of the libraries


CVSROOT:	/cvs
Module name:	www
Changes by:	jcs@cvs.openbsd.org	2019/06/13 11:43:55

Modified files:
	.              : index.html 

Log message:
add a link to groups.html on the sidebar

ok deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	jcs@cvs.openbsd.org	2019/06/13 11:46:01

Modified files:
	build          : groups.skel 

Log message:
remove whitespace that was removed in groups.html


CVSROOT:	/cvs
Module name:	www
Changes by:	jcs@cvs.openbsd.org	2019/06/13 11:46:26

Modified files:
	build          : groups.dat 

Log message:
ChiBUG has been meeting every month


CVSROOT:	/cvs
Module name:	www
Changes by:	jcs@cvs.openbsd.org	2019/06/13 11:46:47

Modified files:
	.              : groups.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/13 13:46:00

Modified files:
	usr.bin/tmux   : Makefile format.c tmux.1 tmux.h window.c 
Added files:
	usr.bin/tmux   : regsub.c 

Log message:
Add regular expression support for the format search, match and
substitute modifiers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/13 14:20:22

Modified files:
	textproc/ruby-rouge: Makefile distinfo 
	textproc/ruby-rouge/pkg: PLIST 

Log message:
Update ruby-rouge to 3.4.1.


CVSROOT:	/cvs
Module name:	www
Changes by:	naddy@cvs.openbsd.org	2019/06/13 14:20:49

Modified files:
	.              : 65.html 

Log message:
7677 mips64el packages


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/13 14:38:05

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Set the cursor x at the same time as changing the y or the end of line
marker may not be redrawn.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/13 14:38:54

Modified files:
	usr.bin/netstat: mbuf.c 

Log message:
Do memory size calculations as unsigned long.  Otherwise
netstat -m would print the result of a signed interger overflow
if kern.maxclusters is 1048576 or above.
OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/13 14:52:36

Modified files:
	sys/kern       : kern_sysctl.c 

Log message:
When tcp_close() is running in parallel with fill_file(), the kernel
could crash due to missing inp_ppcb.  This happend when fstat(1)
was called often and TCP was aborted with reset.  Protect the sysctl
path with the net lock.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/13 15:03:48

Modified files:
	sys/dev/usb    : xhci.c 

Log message:
Do not consider the pipe as halted if the device is gone.

Analysed by and ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 15:03:55

Modified files:
	graphics/ffmpeg: Makefile 

Log message:
further fixes for the libtheora readdition, from Brad.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/13 15:04:21

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 15:11:11

Modified files:
	emulators/qemu : Makefile 
Added files:
	emulators/qemu/patches: patch-util_cacheinfo_c 

Log message:
Re-add a patch for PowerPC which was dropped by mistake. From Brad.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/13 15:12:52

Modified files:
	sys/net        : if_pflog.c 

Log message:
free(9) sizes.

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/13 15:14:53

Modified files:
	sys/net        : bpf.c 

Log message:
free(9) sizes for buffers.

ok anton@, sashan@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/13 15:19:28

Modified files:
	sys/kern       : kern_exit.c 

Log message:
Use PWAIT instead of PUSER in exit1().

When the main thread of a MT process dies, it doesn't matter at which
priority it gets awaken to do the lasts cleanups.  Not using PUSER makes
it easier to understand the existing scheduler logic.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/13 15:24:09

Modified files:
	usr.bin/tmux   : format.c 

Log message:
Do not crash if the environment variable is present but empty.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 15:35:01

Modified files:
	multimedia/libtheora: Makefile 

Log message:
drop unresponsive maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/13 15:44:14

Modified files:
	usr.bin/tmux   : cmd-load-buffer.c cmd-save-buffer.c 

Log message:
Use the right client when working out where to save or load the buffer,
reported by kn@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/13 15:50:36

Modified files:
	x11/xfe        : Makefile distinfo 
	x11/xfe/patches: patch-Makefile_in 

Log message:
Bugfix/translation update to xfe-1.43.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 15:51:46

Modified files:
	databases/mariadb: Makefile 

Log message:
simplify multipackages again, now that they are reunited between architectures.
from Brad.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/13 15:53:34

Modified files:
	x11/icewm      : Makefile distinfo 
	x11/icewm/patches: patch-lib_Makefile_in patch-src_icesh_cc 

Log message:
Update to icewm-1.5.5
Changelog: https://github.com/ice-wm/icewm/releases/tag/1.5.5
ok remi@ cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/13 15:54:24

Modified files:
	math/ebc       : Makefile distinfo 

Log message:
Update to ebc-2.0.3
Changelog: https://github.com/gavinhoward/bc/releases/tag/2.0.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/13 15:58:12

Modified files:
	multimedia/libtheora: Makefile distinfo 
	multimedia/libtheora/patches: patch-configure_ac 
	                              patch-theora_pc_in 
	                              patch-theoradec_pc_in 
	                              patch-theoraenc_pc_in 
Removed files:
	multimedia/libtheora/patches: patch-doc_Makefile_in 
	                              patch-doc_spec_Makefile_in 
	                              patch-examples_Makefile_in 
	                              patch-lib_Makefile_in 

Log message:
Update to a snapshot of libtheora from the master branch in the github repo;
from Brad, plus I added a comment with the commitid. Similar diff been through
a bulk on i386.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/13 15:59:03

Modified files:
	textproc/nfoview: Makefile distinfo 
	textproc/nfoview/pkg: PLIST 

Log message:
Update to nfoview-1.26.1
Changelog: https://github.com/otsaloma/nfoview/releases/tag/1.26.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/13 17:16:05

Modified files:
	math/nlopt     : Makefile distinfo 

Log message:
Update to NLopt 2.6.1

libnlopt_cxx now merged into libnlopt, lots of API additions, various
fixes.

Also set COMPILER and remove broken HOMEPAGE.

Feedback and OK sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/06/13 18:59:39

Modified files:
	sysutils/login_duo: Makefile distinfo 
	sysutils/login_duo/pkg: PLIST 

Log message:
Update login_duo to 1.11.2


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/13 21:28:19

Modified files:
	usr.bin/ssh    : ssh-keysign.c 

Log message:
if passed a bad fd, log what it was


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/13 21:39:59

Modified files:
	usr.bin/ssh    : auth2-pubkey.c 

Log message:
for public key authentication, check AuthorizedKeysFiles files before
consulting AuthorizedKeysCommand; ok dtucker markus


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/13 21:40:55

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Add a barrier after arming a completion queue.  If multiple cqs are using
the same uar page, these writes could be combined, which would result in
a queue not being armed.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/13 21:51:47

Modified files:
	usr.bin/ssh    : ssh-agent.c 

Log message:
process agent requests for RSA certificate private keys using correct
signature algorithm when requested. Patch from Jakub Jelen in bz3016
ok dtucker markus


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/13 22:03:48

Modified files:
	regress/usr.bin/ssh/unittests/conversion: tests.c 

Log message:
check for convtime() refusing to accept times that resolve to LONG_MAX
Reported by Kirk Wolf bz2977; ok dtucker


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/06/13 22:12:33

Modified files:
	sysutils/rsyslog: Makefile distinfo 
	sysutils/rsyslog/pkg: PLIST-main 

Log message:
Update to rsyslog 8.1905.0.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/13 22:13:58

Modified files:
	usr.bin/ssh    : ssh.c 

Log message:
slightly more instructive error message when the user specifies multiple
-J options on the commandline. bz3015 ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/13 23:52:43

Modified files:
	sys/sys        : syscall_mi.h 
	sys/uvm        : uvm_map.c uvm_map.h 

Log message:
The addition of writeable-syscall checking near MAP_STACK checking
damaged the error messages.  Repair that, passing distinct format
strings for the two cases.
ok beck


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/14 00:46:47

Modified files:
	www/sblg       : Makefile distinfo 

Log message:
Update to sblg-0.4.26.

Release notes: https://kristaps.bsd.lv/sblg/archive.html

From Bryan Vyhmeister (maintainer); thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/14 01:02:55

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Only add and remove flow table entries for multicast while the interface is
up, and re-add flow table entries for all existing multicast groups when
bringing the interface up.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/14 04:08:28

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-base_BUILD_gn 
	                      patch-chrome_common_chrome_features_cc 

Log message:
update to 75.0.3770.90


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/14 04:08:52

Modified files:
	databases/mariadb: Makefile 

Log message:
add -latomic for mariadb on hppa, as done on macppc.

drop ONLY_FOR_ARCHS which with hppa added would be equal to the set
of arches with base-clang/ports-gcc as set in COMPILER, req by jca

"couldn't hurt" brad, ok jca


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/14 05:40:37

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
more Intel Apollo Lake ids
from James Hastings


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/14 05:41:35

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/14 05:44:17

Modified files:
	sys/dev/pci    : dwiic_pci.c 

Log message:
match on Intel Apollo Lake ids
from James Hastings


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/14 05:57:16

Modified files:
	sys/dev/usb    : if_urtw.c 

Log message:
Use timeout_add_msec(9)

The timeval is used to represent 100ms, which are converted to Hz so they
can be converted back - simplify this by using the new ms interface
directly.

Tested and OK kevlo


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/14 06:04:11

Modified files:
	usr.bin/tmux   : cmd-parse.y tmux.1 

Log message:
A couple of minor parser changes around conditions: 1) only treat #{
specially after a condition, otherwise as a comment (which is more as
most people expect) 2) allow formats to be quoted after a condition.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/14 06:18:12

Modified files:
	x11/xfce4/orage: Makefile 

Log message:
fix typo that causes a syntax error


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/14 07:20:49

Modified files:
	sys/dev/usb    : if_upgt.c 

Log message:
Use timeout_add_msec(9)

UPGT_LED_ACTION_TMP_DUR is 100ms, avoid converting to Hz and back again.

OK kevlo


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/14 07:34:45

Modified files:
	usr.bin/tmux   : cmd-parse.y 

Log message:
Show filename with -v for source-file.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/14 07:41:31

Modified files:
	lib/libcrypto/man: CONF_modules_load_file.3 
	                   ERR_load_crypto_strings.3 OPENSSL_config.3 
	                   OPENSSL_init_crypto.3 
	                   OPENSSL_load_builtin_modules.3 
	                   OpenSSL_add_all_algorithms.3 
	lib/libssl/man : OPENSSL_init_ssl.3 SSL_library_init.3 ssl.3 

Log message:
Further improve the documentation of library initialization and configuration.
Among other improvements:
* Use a uniform wording at the top of the DECSRIPTION for obsolete pages.
* Better explain how to use a non-standard configuration file.
* Remove obsolete functions from SEE ALSO.
Triggered by some suggestions from tb@.
Tweaks and OK tb@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/14 07:51:01

Modified files:
	audio/lmms     : Makefile distinfo 
	audio/lmms/patches: patch-CMakeLists_txt 
	audio/lmms/pkg : PLIST 

Log message:
update to lmms-1.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/14 07:59:32

Modified files:
	lib/libcrypto/man: ASN1_STRING_TABLE_add.3 ASN1_STRING_length.3 
	                   ASN1_STRING_new.3 ASN1_item_new.3 
	                   OBJ_nid2obj.3 PEM_write_bio_PKCS7_stream.3 
	                   PKCS12_newpass.3 PKCS7_sign_add_signer.3 
	                   SMIME_write_PKCS7.3 X509V3_get_d2i.3 
	                   X509_CRL_get0_by_serial.3 
	                   X509_NAME_ENTRY_get_object.3 
	                   X509_NAME_add_entry_by_txt.3 
	                   X509_NAME_get_index_by_NID.3 
	                   X509_REVOKED_new.3 X509_get_pubkey.3 
	                   X509_get_serialNumber.3 
	                   X509_get_subject_name.3 X509_get_version.3 
	                   X509_sign.3 

Log message:
Improve pages that briefly mentioned ERR - usually below SEE ALSO -
but failed to provide any real information.
OK tb@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/14 08:27:30

Modified files:
	gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/Perldoc: ToMan.pm 

Log message:
Delete totally bogus code specifically targetted at mandoc
which tried to figure out whether mandoc supported UTF-8 output
(which it has been doing since 2011) and which passed the -T locale
option (which has been the default since 2014 and always will)
but which required the -V option to work (which was deleted half
a decade ago and will not come back).
Nowadays, it is safe to assume that mandoc just works with UTF-8
on both the input and output sides - in literally each and every
operating system providing a mandoc port or package, even those
that are seriously lagging behind.
This patch will also be pushed upstream.
OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/14 08:27:42

Modified files:
	usr.bin/mg     : log.c 

Log message:
Note a segv with fprintf if a file with long lines is loaded with
debug code running.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/14 09:35:58

Modified files:
	usr.bin/tmux   : format-draw.c 

Log message:
Do not loop forever if a menu item contains invisible characters,
reported by Thomas Sattler.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/06/14 12:12:55

Modified files:
	sys/dev/fdt    : imxuart.c 

Log message:
timeout_add(9)+hz(9) -> timeout_add_sec(9); ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/14 12:13:55

Modified files:
	sys/arch/amd64/amd64: identcpu.c 
	sys/arch/amd64/include: specialreg.h 
	sys/arch/i386/i386: machdep.c 
	sys/arch/i386/include: specialreg.h 

Log message:
Add TSC_ADJUST CPUID flag.

ok deraadt@, mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/06/14 13:23:53

Modified files:
	regress/sys/kern: Makefile 
Added files:
	regress/sys/kern/clock_gettime: Makefile monotonicrelapse.c 

Log message:
new regress: clock_gettime(2); test if CLOCK_MONOTONIC is really monotonic

suggested by kettenis@, tweaked by anton@.

ok mpi@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/14 13:37:20

ports/devel/doxygen-gui/patches

Update of /cvs/ports/devel/doxygen-gui/patches
In directory cvs.openbsd.org:/tmp/cvs-serv69530/patches

Log Message:
Directory /cvs/ports/devel/doxygen-gui/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/14 13:55:08

Modified files:
	usr.sbin/acme-client: extern.h keyproc.c main.c parse.h parse.y 

Log message:
Track key type (RSA or ECDSA) in an enum and clean up a bit while here.
Originaly from Renaud Allard following input from benno, tweaked by me.
OK benno


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/06/14 13:55:25

Modified files:
	usr.sbin/smtpd : mta.c mta_session.c runq.c smtpd.h 

Log message:
simplify the runq interface:

- remove (unused) per-job callback
- rename runq_schedule() to runq_schedule_at() and runq_delay()
to runq_schedule()
- remove unused runq_next()

ok sunil@ gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/14 14:11:07

Modified files:
	lang/flang/driver: Makefile distinfo 
	lang/flang/libpgmath: Makefile distinfo 
	lang/flang/flang: Makefile distinfo 
Added files:
	lang/flang/driver/patches: 
	                           patch-include_clang_Basic_MacroBuilder_h 
	                           patch-include_clang_Frontend_Utils_h 
	                           patch-lib_CodeGen_CGDebugInfo_cpp 

Log message:
Update to the latest month or so of flang development.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/14 14:19:32

Modified files:
	devel/doxygen  : Makefile 
Added files:
	devel/doxygen/patches: patch-addon_doxyapp_CMakeLists_txt 
	                       patch-addon_doxyparse_CMakeLists_txt 
	                       patch-src_CMakeLists_txt 
	                       patch-vhdlparser_CMakeLists_txt 

Log message:
Unbreak doxygen build with ninja upcoming 1.9.0

Fix "multiple rules generate generated_src/configvalues.h" from upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/14 14:20:54

Modified files:
	devel/doxygen-gui: Makefile 
Added files:
	devel/doxygen-gui/patches: patch-addon_doxyapp_CMakeLists_txt 
	                           patch-addon_doxyparse_CMakeLists_txt 
	                           patch-src_CMakeLists_txt 
	                           patch-vhdlparser_CMakeLists_txt 

Log message:
Unbreak doxygen build with upcoming ninja 1.9.0

Fix "multiple rules generate generated_src/configvalues.h" from upstream.

Spotted by naddy@ thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/06/14 15:02:23

Modified files:
	net/znc        : Tag: OPENBSD_6_5 Makefile distinfo 
	net/znc/pkg    : Tag: OPENBSD_6_5 PLIST 

Log message:
Update to znc-1.7.3

Fix CVE-2019-9917
Maintainer timeout


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/06/14 17:13:30

Modified files:
	math/maxima    : Makefile distinfo 
	math/maxima/pkg: PLIST 

Log message:
Update to Maxima 5.43.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/14 20:21:51

Modified files:
	www/libmicrohttpd: Makefile distinfo 

Log message:
Update to libmicrohttpd-0.9.64. Note the minor bump.
Consumers happy.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/14 20:23:23

Modified files:
	graphics/drawpile: Makefile distinfo 
	graphics/drawpile/pkg: PLIST 

Log message:
Update to drawpile-2.1.10
Changelog: https://github.com/drawpile/Drawpile/compare/2.1.7...2.1.10


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/15 00:33:48

Modified files:
	usr.bin/tmux   : format.c layout-custom.c 

Log message:
Use the right format modifier when comparing, and remove a couple of
unused variables.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/15 01:12:41

Modified files:
	audio/clementine: Makefile 
	audio/clementine/patches: 
	                          patch-3rdparty_libprojectm_CMakeLists_txt 

Log message:
Disable OpenMP for clementine

From j <a-t> bitminer <d-o-t> ca, Thanks. Switch from http to https.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/15 01:30:26

Modified files:
	share/mk       : bsd.regress.mk 

Log message:
simplify cleanup handling
okay bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/15 01:41:46

Modified files:
	infrastructure/lib/DPB: Host.pm 

Log message:
missed localhost normalization as noticed by naddy@
should fix wipe on localhost


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 02:52:09

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/pkg: PLIST 

Log message:
SECURITY update to glib2-2.60.4.
CVE-2019-12450: file_copy_fallback in gio/gfile.c does not properly restrict
file permissions while a copy operation is in progress. Instead, default
permissions are used.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/15 02:53:32

Modified files:
	math/z3        : Makefile 

Log message:
Disable OpenMP with the cmake option

OK rpointel


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 02:53:58

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.169.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 02:54:12

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.169.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 02:54:31

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.179.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/15 02:55:26

Modified files:
	security/keepassxc: Makefile distinfo 

Log message:
Bugfix update keepassxc to  2.4.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 02:57:21

Modified files:
	devel/glib2    : Tag: OPENBSD_6_5 Makefile 
Added files:
	devel/glib2/patches: Tag: OPENBSD_6_5 patch-gio_gfile_c 

Log message:
Merge security fix for:
CVE-2019-12450: file_copy_fallback in gio/gfile.c does not properly restrict
file permissions while a copy operation is in progress. Instead, default
permissions are used.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 02:59:52

Modified files:
	graphics/babl  : Makefile distinfo 

Log message:
Update to babl-0.1.66.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:02:57

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:14:20

Modified files:
	graphics/libgphoto2: Makefile distinfo 
	graphics/libgphoto2/pkg: PLIST 

Log message:
Update to libgphoto-2.5.23.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:14:40

Modified files:
	graphics/gphoto2: Makefile distinfo 

Log message:
Update to gphoto-2.5.23.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:19:04

Modified files:
	sysutils/terraform: Makefile.inc 
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-cloudstack: Makefile distinfo 
	sysutils/terraform/provider-fastly: Makefile distinfo 
	sysutils/terraform/provider-ovh: Makefile distinfo 
	sysutils/terraform/provider-rundeck: Makefile distinfo 
	sysutils/terraform/provider-vault: Makefile distinfo 
	sysutils/terraform/provider-heroku: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:23:28

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.324.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:26:39

Modified files:
	misc/osinfo    : Makefile.inc 
	misc/osinfo/osinfo-db: Makefile distinfo 
	misc/osinfo/osinfo-db/pkg: PLIST 
Removed files:
	misc/osinfo/osinfo-db/files: openbsd-6.5.xml 

Log message:
Update to osinfo-db-20190611.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:29:06

Modified files:
	net/py-s3transfer: Makefile distinfo 

Log message:
Update to py-s3transfer-0.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:29:44

Modified files:
	sysutils/awscli: Makefile 

Log message:
Bump py-s3transfer dependency to 0.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:30:20

Modified files:
	net/glib2-networking: Makefile distinfo 

Log message:
Update to glib2-networking-2.60.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:46:12

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/patches: patch-Makefile_in 
	print/cups-filters/pkg: PLIST 

Log message:
Update to cups-filters-1.25.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/15 03:53:00

Modified files:
	net/libproxy   : Makefile 
Added files:
	net/libproxy/patches: patch-bindings_perl_t_CMakeLists_txt 

Log message:
Unbreak libproxy with upcoming ninja 1.9.0 update.

Rename cmake target "test" to avoid multiple ninja targets.

"sure" ajacoutot@ (maintainer), spotted by naddy@ Thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:53:35

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-250.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 03:59:57

Modified files:
	x11/dbus       : Makefile distinfo 

Log message:
SECURITY update to dbus-1.12.16.
CVE-2019-12749: Do not attempt to carry out DBUS_COOKIE_SHA1 authentication for
identities that differ from the user running the DBusServer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 04:01:21

Modified files:
	x11/dbus       : Tag: OPENBSD_6_5 Makefile 
Added files:
	x11/dbus/patches: Tag: OPENBSD_6_5 patch-dbus_dbus-auth_c 

Log message:
Backport fix for:
CVE-2019-12749: Do not attempt to carry out DBUS_COOKIE_SHA1 authentication
for identities that differ from the user running the DBusServer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 04:02:08

Modified files:
	x11/gnome/yelp-tools: Makefile distinfo 

Log message:
Update to yelp-tools-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 04:19:48

Modified files:
	lang/vala      : Makefile distinfo 

Log message:
Update to vala-0.44.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 04:24:37

Modified files:
	security/heimdal: Makefile distinfo 
	security/heimdal/pkg: PLIST-devel-docs 
Added files:
	security/heimdal/patches: patch-lib_hdb_hdb-mitdb_c 

Log message:
Update to heimdal-7.7.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 04:35:36

Modified files:
	devel/libsigc++-2: Makefile distinfo 
	devel/libsigc++-2/pkg: PLIST 

Log message:
Update to libsigc++-2.10.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 04:47:54

Modified files:
	www/epiphany   : Makefile distinfo 
Removed files:
	www/epiphany/patches: patch-lib_ephy-web-app-utils_c 

Log message:
Update to epiphany-3.32.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 05:00:12

Modified files:
	x11/gnome/builder: Makefile distinfo 
	x11/gnome/builder/pkg: PLIST 
Added files:
	x11/gnome/builder/patches: 
	                           patch-src_libide_foundry_ide-simple-build-system-discovery_c 

Log message:
Update to gnome-builder-3.32.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 05:06:44

Modified files:
	devel/goffice  : Makefile distinfo 
	devel/goffice/pkg: PLIST 

Log message:
Update to goffice-0.10.45.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 05:07:00

Modified files:
	math/gnumeric  : Makefile distinfo 
	math/gnumeric/patches: patch-doc_Makefile_in 
	math/gnumeric/pkg: PLIST 
Removed files:
	math/gnumeric/patches: patch-src_mathfunc_c 

Log message:
Update to gnumeric-1.12.45.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/15 06:05:37

Modified files:
	infrastructure/lib/DPB: Host.pm 

Log message:
oops thx pavel


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:11:14

Modified files:
	infrastructure/db: user.list 

Log message:
add _odoo for the incoming www/odoo port


CVSROOT:	/cvs
Module name:	converters
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:12:29

Log message:
    import py-num2words:
    An easily extensible set of modules to convert numbers to words.
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20190615
    
    N converters/py-num2words/Makefile
    cvs: ERROR: cannot write file /cvs/converters/py-num2words/Makefile,v: No such file or directory
    N converters/py-num2words/distinfo
    cvs: ERROR: cannot write file /cvs/converters/py-num2words/distinfo,v: No such file or directory
    cvs: ERROR: cannot mkdir /cvs/converters/py-num2words/pkg -- not added: No such file or directory
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:13:04

Log message:
    import py-num2words:
    An easily extensible set of modules to convert numbers to words.
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20190615
    
    N ports/converters/py-num2words/Makefile
    N ports/converters/py-num2words/distinfo
    N ports/converters/py-num2words/pkg/DESCR
    N ports/converters/py-num2words/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:13:44

Modified files:
	converters     : Makefile 

Log message:
+py-num2words


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:14:36

Log message:
    import py-PyPDF2:
    
    A Pure-Python library built as a PDF toolkit. It is capable of:
    
    - extracting document information (title, author, ...)
    - splitting documents page by page
    - merging documents page by page
    - cropping pages
    - merging multiple pages into a single page
    - encrypting and decrypting PDF files
    - and more!
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20190615
    
    N ports/textproc/py-PyPDF2/Makefile
    N ports/textproc/py-PyPDF2/distinfo
    N ports/textproc/py-PyPDF2/pkg/DESCR
    N ports/textproc/py-PyPDF2/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:15:15

Modified files:
	textproc       : Makefile 

Log message:
+py-PyPDF2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:16:09

Log message:
    import of py-phonenumbers:
    
    Python version of Google's common library for parsing, formatting, storing and
    validating international phone numbers.
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20190615
    
    N ports/textproc/py-phonenumbers/Makefile
    N ports/textproc/py-phonenumbers/distinfo
    N ports/textproc/py-phonenumbers/pkg/DESCR
    N ports/textproc/py-phonenumbers/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:16:36

Modified files:
	textproc       : Makefile 

Log message:
+py-phonenumbers


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:17:58

Log message:
    import odoo:
    
    Odoo is an all-in-one management software that offers a range of business
    applications that form a complete suite of enterprise management applications
    targeting companies of all sizes. Odoo is an all-in-one business software
    including CRM, website/e-commerce, billing, accounting, manufacturing,
    warehouse - and project management, and inventory.
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20190615
    
    N ports/www/odoo/Makefile
    N ports/www/odoo/distinfo
    N ports/www/odoo/patches/patch-odoo_service_server_py
    N ports/www/odoo/pkg/DESCR
    N ports/www/odoo/pkg/PLIST
    N ports/www/odoo/pkg/odoo.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 06:20:12

Modified files:
	www/odoo       : Makefile 

Log message:
typo: PERMIT_PACKAGE_ -> PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 06:47:23

Modified files:
	www            : Makefile 

Log message:
+odoo


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/15 06:51:19

Modified files:
	usr.sbin/acme-client: parse.y 

Log message:
Print domain key type in config test mode (-n).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/15 08:15:12

Modified files:
	sys/dev/fdt    : imxuart.c 

Log message:
Fix previous commit and unbreak the tree.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 08:33:53

Modified files:
	textproc       : Makefile 
Removed files:
	textproc/py-phonenumbers: Makefile distinfo 
	textproc/py-phonenumbers/pkg: DESCR PLIST 

Log message:
remove textproc/py-phonenumbers because we already have a port of this
python module in telephony


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/15 08:36:38

Modified files:
	www/odoo       : Makefile 

Log message:
add dependency on telephony/py-phonenumbers instead of the removed one


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/15 09:28:55

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Have __realpath() do the pathname==NULL -> EINVAL check itself, eliminating
the need to do this in libc.
btw, it is unfortunate posix went this way, because converting a clearly
illegal condition to not be fatal but instead return an error which is
potentially not checked in the caller, is sadly a large component of the
runaway-train model that makes exploitation of software easy.. illegal
software should crash hard.
ok beck


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/15 09:40:44

Modified files:
	lib/libc/stdlib: realpath.3 

Log message:
realpath(3) doesn't use lstat(2), readlink(2), or getcwd(3) anymore,
it is a thin wrapper over the syscall __readlink(2).  Improve the list
of possible errors.
ok millert beck jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/15 10:16:31

Modified files:
	usr.sbin/acme-client: keyproc.c 

Log message:
Now that we have different key types (rsa and ecdsa) we probably
should do something if the key type on disk differes from the
configured keytype.
Mark this XXX for now.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/15 10:54:19

Modified files:
	usr.sbin/syspatch: syspatch.8 

Log message:
"If any sets are missing, patches are skipped accordingly."

wording help and ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/15 11:05:21

Modified files:
	sys/net        : if.c 

Log message:
Free sizes for hooks and `if_sadl'.

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/15 11:06:44

Modified files:
	usr.sbin/acme-client: acme-client.1 

Log message:
Remove bugs section.
It is missleading to call (parts of) acme-client staying root a bug.
Discussed with deraadt@

Non-RSA account keys are (probably) coming, so remove that as well
while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/15 11:06:46

Modified files:
	lib/libc/stdlib: realpath.3 

Log message:
oops - missing .El in previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/15 11:19:03

Modified files:
	lang/seed7     : Makefile distinfo 

Log message:
Update to seed7-20190610


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/06/15 12:47:47

Modified files:
	astro/celestia : Makefile 
Added files:
	astro/celestia/patches: patch-src_celengine_parseobject_cpp 

Log message:
celestia: fix build with ports-gcc, as it doesn't want a bool method
to return NULL.

While here, move HOMEPAGE to https.

OK naddy@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/15 14:53:39

Log message:
    Import games/dmagnetic, an interpreter for Magnetic Scrolls games.
    Original submission by Thomas Dettbarn (upstream), who also takes
    MAINTAINER -- thanks!
    ok kirby@
    
    DMAGNETIC is a Magnetic Scrolls Interpreter. It can be used to
    play classic text adventure games, such as "The Pawn",
    "The Guild of Thieves", and "Wonderland". Graphics will be
    rendered in glorious ANSI art, so the games can be played in
    any console window.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190615
    
    N ports/games/dmagnetic/Makefile
    N ports/games/dmagnetic/distinfo
    N ports/games/dmagnetic/pkg/DESCR
    N ports/games/dmagnetic/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/15 14:54:03

Modified files:
	games          : Makefile 

Log message:
+dmagnetic


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/15 15:42:27

Log message:
    thingsd is a proxy daemon for clients and client processes to
    communicate with an array of serial and IoT things.
    
    OK sthen@ bcallah@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190615
    
    N ports/net/thingsd/Makefile
    N ports/net/thingsd/distinfo
    N ports/net/thingsd/pkg/thingsd.rc
    N ports/net/thingsd/pkg/DESCR
    N ports/net/thingsd/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/15 15:43:34

Modified files:
	net            : Makefile 

Log message:
Hook net/thingsd into the build


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/15 18:10:37

Modified files:
	sys/net        : if_pppoe.c 

Log message:
Use timeout_add_sec(9)

All ticks arguments to timeout_add() calls are positive multiple of hz, so
simply reduce it and use the appropiate function.

Also, (hz / 50) [ticks] = 1 / 50 [s] = 20 [ms].

OK mpi


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/15 18:56:54

Modified files:
	sys/kern       : kern_sysctl.c 

Log message:
In previous commit I forgot a net unlock if the PCB of the socket
was already gone.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/15 20:32:37

Modified files:
	sys/dev/pci/drm/amd/display/dc/dcn10: dcn10_dpp.c 
	                                      dcn10_hw_sequencer.c 

Log message:
drm/amd/display: Use plane->color_space for dpp if specified

From Nicholas Kazlauskas
668440f6ee3f553252cb52da488d3ac3ba404382 in linux 4.19.y/4.19.51
a1e07ba89d49581471d64c48152dbe03b42bd025 in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/06/16 00:00:57

Modified files:
	net/py-nbxmpp  : Makefile distinfo 

Log message:
Update to nbxmpp 0.6.10

Tests, tweak and OK by kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/16 01:05:09

Modified files:
	x11/kde4/pimlibs: Makefile 
Added files:
	x11/kde4/pimlibs/patches: patch-akonadi_contact_CMakeLists_txt 
	                          patch-akonadi_contact_kcm_CMakeLists_txt 

Log message:
Unbreak with upcoming ninja 1.9.0.

Spotted by naddy@ Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/16 01:24:29

Modified files:
	usr.sbin/acme-client: main.c 

Log message:
acctkey indirection is unnecessary, just pass authority->account


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/16 01:36:25

Modified files:
	usr.sbin/ntpd  : client.c constraint.c ntp.c ntpd.h 

Log message:
Be more aggressive retrying dns while in settime mode. The constraint
engine does not know if we're in startup mode, so use a small interval
the first few times there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/06/16 01:37:33

Log message:
    Import gsimplecal.
    
    Gsimplecal is a lightweight calendar applet written in C++ using GTK.
    
    It was originally made for use with tint2 panel in the openbox window
    manager (to be launched upon clock click), but of course it works in
    any environment (just bind gsimplecal to some hotkey).  For easier
    integration, when started it first shows up, when launched again it
    closes the running instance (no need to write wrapper scripts or
    whatever).
    
    It can be configured to not only show the calendar, but also display
    multiple clocks for different world timezones
    
    Submission from Alessandro De Laurenzis, thanks!
    Tweaks and OK sthen@
    
    Status:
    
    Vendor Tag:	kirby
    Release Tags:	kirby_20190616
    
    N ports/productivity/gsimplecal/Makefile
    N ports/productivity/gsimplecal/distinfo
    N ports/productivity/gsimplecal/patches/patch-src_Unique_cpp
    N ports/productivity/gsimplecal/pkg/DESCR
    N ports/productivity/gsimplecal/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/06/16 01:39:13

Modified files:
	productivity   : Makefile 

Log message:
+gsimplecal


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/16 02:45:44

Modified files:
	devel/gobject-introspection: Makefile distinfo 

Log message:
Update to gobject-introspection-1.60.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/16 02:57:48

Modified files:
	telephony/py-phonenumbers: Makefile distinfo 

Log message:
Update to py-phonenumbers-8.10.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/16 03:03:48

Modified files:
	graphics/GraphicsMagick: Makefile distinfo 
	graphics/GraphicsMagick/patches: patch-configure 
	graphics/GraphicsMagick/pkg: PLIST 

Log message:
Update to GraphicsMagick-1.3.32.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/16 03:12:11

Modified files:
	audio/lmms     : Makefile 

Log message:
Missing BDEP on shells/bash (for completions).


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/06/16 03:30:15

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
Restrict filesystem access to read only _PATH_DEVDB and /dev through unveil(2),
discussed by many.
Additionally call ctime(3) before unveil(2) in order to avoid potential $TZ
expansion and therefore avoiding opening more files that would need to be read,
idea from deraadt@.
While here sort the headers alphabetically.

OK florian@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/16 05:44:22

Modified files:
	usr.sbin/acme-client: acctproc.c 

Log message:
Do not leak rsa keys; nobody is messing with the reference behind our
back so there is no need to get a copy.
Clue & probably OK tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/16 07:17:45

Modified files:
	net/thingsd    : Makefile 
	net/thingsd/pkg: PLIST 
	infrastructure/db: user.list 

Log message:
Unbreak:
Error: newgroup _thingsd: not registered in ports/infrastructure/db/user.list
Error: newuser _thingsd: not registered in ports/infrastructure/db/user.list
Fix UID/GID.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/16 07:41:30

Modified files:
	comms/xastir   : Makefile 
	comms/xastir/patches: patch-Makefile_in patch-configure_ac 
Added files:
	comms/xastir/patches: patch-src_map_geo_c 

Log message:
Unbreak with newer GraphicsMagick.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/06/16 07:45:12

Modified files:
	usr.bin/sndiod : defs.h 

Log message:
Say in comment why we use 1/2400 second as MTC time unit.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/06/16 07:50:39

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Ignore the frame cents component in MMC relocate message.

As MTC requires new position to be transmitted with one frame
precision and then to advance in quarter-frame steps, its not
necessary to pollute out mtc position pointer with a frame cents
information, care about rounding errors and so on.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/16 08:24:42

Modified files:
	share/man/man7 : ports.7 

Log message:
finish killing PLIST_DB as noticed by some anonymous guy


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/16 08:27:43

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
PERMIT_DB has been obsolete for 3 years, use PLIST_REPOSITORY


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/16 09:14:56

Modified files:
	graphics/digikam: Makefile 
	graphics/digikam/patches: patch-core_app_DigikamTarget_cmake 
Added files:
	graphics/digikam/patches: patch-core_CMakeLists_txt 
	                          patch-core_showfoto_CMakeLists_txt 

Log message:
Unbreak build with upcoming ninja 1.9.0.

Generate Info.plist only one time and create a cmake dependency. Fixes a
problem in combination with Ninja v1.9.0 because of duplicate rules for
generating Info.plist.

Spotted by naddy@ Thanks


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/06/16 09:34:35

Modified files:
	.              : plus.html 
	build/mirrors  : ftp.html.end 

Log message:
nasty spaces, we hates them


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/06/16 10:57:34

Modified files:
	net/gajim      : Makefile distinfo 

Log message:
Update to Gajim 1.1.3

OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/16 11:18:10

Modified files:
	mail/mutt      : Makefile distinfo 
Removed files:
	mail/mutt/patches: patch-Makefile_am 

Log message:
update to mutt-1.12.1


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/16 12:16:34

Modified files:
	usr.bin/doas   : doas.c doas.conf.5 doas.h env.c 

Log message:
redo the environment inheritance to not inherit. it was intended to make
life easier, but it can be surprising or even unsafe. instead, reset just
about everything to the target user's values.
ok deraadt martijn
Thanks to Sander Bos in particular for pointing out some nasty edge cases.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/16 13:18:48

Modified files:
	net/lldpd      : Makefile distinfo 
	net/lldpd/patches: patch-src_daemon_priv_c 

Log message:
update to lldpd-1.0.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/16 13:20:45

Modified files:
	graphics/ImageMagick: Makefile distinfo 

Log message:
update to ImageMagick-6.9.10-49


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/16 13:31:07

Modified files:
	app/ssh-askpass: x11-ssh-askpass.c 

Log message:
Fix the size of indicators in multi-monitors setups.

ssh-askpass(1) is computing the size of its indicators relatively to
the screen resolution. When multiple monitors are present, the support
for Xinerama computes the dimensions of the window to be created
relatively to the screen on which it will appear. But the computation
of the indicator size is based on the size of the whole display,
resulting in too small indicators (and too many of them if the screens
hare layed out horizontally).

Fix that by computing the resolution of the whole display before
taking xinerama into account.

ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/16 13:49:13

Modified files:
	usr.sbin/acme-client: chngproc.c extern.h fileproc.c main.c 
	                      revokeproc.c 

Log message:
Trade unveil(2) for chroot(2).
This uses less code and unveil(2) seems to be the better tool here.
The directory one chroots into needs to be carefully setup (they are
not) and comon wisedom is that root can break out of chroots.
There is probably nothing wrong with the chroot code because of pledge
but it still makes me feel uneasy.
input & OK on previous version mestre
OK on previous version deraadt
bug found, input & OK benno


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/06/16 14:07:00

Modified files:
	devel/libelf   : Tag: OPENBSD_6_4 Makefile 
	editors/neovim : Tag: OPENBSD_6_4 Makefile 
Added files:
	editors/neovim/patches: Tag: OPENBSD_6_4 
	                        patch-src_nvim_getchar_c 

Log message:
editors/neovim: backport arbitrary code execution fix to 6.4-stable.

Source command doesn't check for the sandbox.
https://github.com/neovim/neovim/pull/10082

Detailed description:
https://github.com/numirias/security/blob/master/doc/2019-06-04_ace-vim-neovim.md

I also had to add another MASTER_SITE to libelf to get this to build.
Seems they have re-rolled their distfile at some point.

Reads OK, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/16 15:00:42

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
SYS___realpath is legitimately PLEDGE_STDIO, because the other pledge
feature bits checked in namei()


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/16 15:08:56

Modified files:
	www/apache-httpd: Makefile 
	www/apache-httpd/pkg: PLIST 

Log message:
enable mod_authnz_fcgi in Apache httpd, requested by Bartosz Ku��ma


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/16 15:48:30

Modified files:
	infrastructure/db: user.list 

Log message:
reserve 838 for i2pd


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/16 16:13:55

Log message:
    import ports/net/i2pd, from Mikal Villa, tweaks by me, tweaks/ok rsadowski@
    
    i2pd is a full featured client for the I2P network written in C++.
    
    I2P (Invisible Internet Project) is a universal anonymous network layer.
    All communications over I2P are anonymous and end-to-end encrypted.
    Participants don't reveal their real IP address to each other. Peer to
    peer (cryptocorruencies, file sharing) and client-to-server applications
    (websites, instant messengers, chat servers) are supported.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190616
    
    N ports/net/i2pd/Makefile
    N ports/net/i2pd/distinfo
    N ports/net/i2pd/patches/patch-build_CMakeLists_txt
    N ports/net/i2pd/patches/patch-tests_Makefile
    N ports/net/i2pd/pkg/i2pd.rc
    N ports/net/i2pd/pkg/DESCR
    N ports/net/i2pd/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/16 16:14:18

Modified files:
	net            : Makefile 

Log message:
+i2pd


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/16 17:08:38

Modified files:
	net/GeoIP      : Makefile 
	net/GeoIP/pkg  : MESSAGE-main 

Log message:
drop maintainer, tweak MESSAGE


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/06/16 18:21:28

Modified files:
	sys/kern       : subr_log.c 

Log message:
dosendsyslog() must only pass ktrgenio(9) userspace buffers that it can
use copyin() on.  While here: just put the struct iovec for ktrace on the
stack instead of mallocing and freeing it.

problem debugged by patrick@
ok deraadt@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/06/16 18:23:03

Modified files:
	usr.bin/logger : logger.1 logger.c 

Log message:
Add -c option for passing LOG_CONS to syslog(3).
(Option choice matches NetBSD)

ok deraadt@ jmc@ benno@ kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/16 18:34:42

Modified files:
	games/openra   : Makefile 

Log message:
add dlopen'd libs to WANTLIB; missing runtime openal reported by Matthias (AT _xhr_ AT mastodon DOT social) - thanks! ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/06/16 20:03:44

Log message:
    Import java/gradle, a build automation tool.  Includes tweaks by sthen@.
    ok kn@ sthen@
    
    Gradle is an open-source build automation tool focused on flexibility and
    performance.
    
    Status:
    
    Vendor Tag:	lteo
    Release Tags:	lteo_20190616
    
    N ports/java/gradle/Makefile
    N ports/java/gradle/distinfo
    N ports/java/gradle/pkg/DESCR
    N ports/java/gradle/pkg/PLIST
    N ports/java/gradle/patches/patch-bin_gradle
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/06/16 20:07:21

Modified files:
	java           : Makefile 

Log message:
+gradle


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/16 21:13:17

Modified files:
	lib/libc/stdlib: realpath.c 

Log message:
Remove old realpath(3), and the userland-vs-kernel realpath verification
code.  We now user the simple userland wrapper on top of __realpath(2).
The non-POSIX behaviour still remains, that is the next component to fix.
From a diff by beck, but I managed to chainsaw it a bit further.  Tested
in snaps for a couple of days.
ok beck


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/16 22:32:21

Modified files:
	graphics/krita : Makefile distinfo 
	graphics/krita/pkg: PLIST 
Added files:
	graphics/krita/patches: patch-benchmarks_CMakeLists_txt 
	                        patch-libs_widgetutils_tests_KisDialogStateSaverTest_cpp 

Log message:
Update Krita to 4.2.1.

Krita 4.2 release note:
https://krita.org/en/krita-4-2-release-notes

- Fix build with upcoming ninja 1.9.0
- Adopt PERMIT_PACKAGE

Feedback and OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/06/16 23:25:52

Modified files:
	security/ROPgadget: Makefile distinfo 
	security/ROPgadget/pkg: PLIST 

Log message:
update ROPgadget to 5.8.
ok jasper@
PERMIT_PACKAGE_CDROM -> PERMIT_PACKAGE, from kn@, ok kn@.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/16 23:51:25

Modified files:
	share/man/man5 : resolv.conf.5 

Log message:
We do support "options edns0"; ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/16 23:54:45

Modified files:
	lib/libc/asr   : res_init.c 

Log message:
Allow setting of retransmission intervasl via _res.retrans. Ugly API but
it's all we got. ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/06/17 02:14:45

Modified files:
	share/man/man5 : elf.5 

Log message:
Mention the ELF machine type EM_AARCH64.

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/06/17 02:17:21

Modified files:
	sys/dev/pci    : if_alc.c 

Log message:
When reloading station address via TWSI is timed out, try to reload
station address from EEPROM.

From Brad.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rapha@cvs.openbsd.org	2019/06/17 02:17:49

Modified files:
	audio/soundtouch: Makefile distinfo 
	audio/soundtouch/patches: patch-Makefile_am 
	                          patch-source_SoundStretch_Makefile_am 
	                          patch-source_SoundTouch_Makefile_am 
Removed files:
	audio/soundtouch/patches: patch-configure_ac 

Log message:
Update soundtouch to 2.1.2

Help and ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/06/17 02:19:30

Modified files:
	regress/sys/kern/clock_gettime: Makefile monotonicrelapse.c 

Log message:
improve clock_gettime regress:

* fix compilation error due to missing cast
* do not run sysctl during make clean and the other common regress cleanup
targets
* make it work using a separate object directory


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/06/17 02:53:01

Modified files:
	share/man/man5 : elf.5 

Log message:
Mention EM_PPC64; from jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/17 02:59:33

Modified files:
	usr.sbin/acme-client: acctproc.c 

Log message:
s/get1/get0/ in comments


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/06/17 03:12:37

Modified files:
	net/seafile    : Makefile.inc 
	net/seafile/client: Makefile distinfo 
	net/seafile/seafile: distinfo 

Log message:
update to deafile-7.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/06/17 03:39:44

Modified files:
	archivers/unzip: Makefile 

Log message:
update HOMEPAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/17 04:55:37

Modified files:
	infrastructure/lib/DPB/PortBuilder: Rebuild.pm 

Log message:
changing ids and chrooting only happens during exec.
turns out my setup has links so that dpb -R is happy in chroot's...
and no ownership issue either.

Fix it so it works.

Also put the uptodate check earlier since that's internal.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 05:02:20

Modified files:
	usr.sbin/bgpd  : Makefile bgpd.h parse.y printconf.c rde.c rde.h 
	                 rde_attr.c rde_filter.c rde_rib.c rde_update.c 
	                 session.c 
Added files:
	usr.sbin/bgpd  : rde_community.c 

Log message:
Completley rewrite the community matching and handling code. All community
attributes are put into a new data structure when parsing the UPDATE.
The filter code can quickly lookup and modify this data structure.
When creating an UPDATE the data is put back into wire format.
Setups using a lot of communities benefit a lot from this.
Input and OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 05:03:08

Modified files:
	usr.sbin/bgpctl: bgpctl.c parser.c parser.h 

Log message:
Adjust and sync the code with the new struct community code from bgpd.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/17 05:04:06

Modified files:
	sys/dev/pci    : pci_map.c pcivar.h 

Log message:
Split out the code that assigns addresses to BARs into its own function.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/17 05:07:40

Modified files:
	sys/arch/arm64/dev: pci_machdep.c 

Log message:
Make pci_intr_map_msix(9) assign an address to the BAR used by the MSI-X
tables if no address has been assigned yet to prevent a panic in
pci_intr_establish(9) later.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/17 05:39:26

Modified files:
	usr.bin/mg     : basic.c mg.1 region.c 

Log message:
From Leonid Bobrov: add a condition to {beginning,end}-of-buffer to
push mark only if it's not pushed already.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 06:02:44

Modified files:
	usr.sbin/bgpd  : rde_update.c 

Log message:
Adjust comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/17 06:25:49

Modified files:
	sys/arch/arm64/arm64: copy.S 

Log message:
The copyfault handler is supposed to store the old handler in the pcb.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/17 06:42:53

Modified files:
	usr.sbin/acme-client: acctproc.c acme-client.conf.5 extern.h 
	                      json.c main.c parse.h parse.y 

Log message:
Implement elliptic curve account keys.
OK benno
Input & OK tb


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 07:04:45

Modified files:
	regress/usr.sbin/bgpd/config: bgpd.conf.11.ok 

Log message:
Adjust test since the community rewrite changed order of communities in sets.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 07:13:03

Modified files:
	regress/usr.sbin/bgpd/unittests: Makefile 
Added files:
	regress/usr.sbin/bgpd/unittests: rde_community_test.c 
	                                 rde_community_test.h 

Log message:
Add unit test for new community functions. Should cover the basics.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 07:14:23

Modified files:
	regress/usr.sbin/bgpd/unittests: rde_sets_test.c rde_trie_test.c 

Log message:
Too much space


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 07:35:43

Modified files:
	usr.sbin/bgpd  : bgpd.h parse.y pfkey.c printconf.c rde.c rde.h 
	                 session.c util.c 

Log message:
Cleanup, remove some unneded spaces add some other where needed.
No binary change according to clang


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 07:46:33

Modified files:
	usr.sbin/bgpctl: bgpctl.c mrtparser.c parser.c 

Log message:
Cleanup some spaces here as well. Again no binary change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/06/17 07:52:54

Modified files:
	games/ioquake3 : Makefile distinfo 
	games/ioquake3/pkg: PLIST 

Log message:
Bump ioquake3 to 95b9cab4d644fa3bf757cfff821cc4f7d76e38b0

OK kirby@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 08:00:46

Modified files:
	usr.sbin/bgpd  : bgpd.conf.5 

Log message:
Replace spaces with tab for text indent


CVSROOT:	/cvs
Module name:	src
Changes by:	job@cvs.openbsd.org	2019/06/17 08:31:31

Log message:
    Import Kristaps Dzonsons' RPKI validator into the tree
    
    rpki-client(1) is an implementation of the Resource Public Key
    Infrastructure (RPKI), specified by RFC 6480. The client is responsible
    for downloading, validating and converting Route Origin Authorisations
    (ROAs) into Validated ROA Payloads (VRPs). The client's output (VRPs)
    can be used by bgpd(8) to perform BGP Origin Validation (RFC 6811).
    
    The current rpki-client(1) version depends on the CMS functions in
    OpenSSL, this of course needs to be addressed urgently.
    
    Thanks to NetNod, IIS.SE, SUNET & 6connect for supporting this effort!
    
    OK deraadt@
    
    Status:
    
    Vendor Tag:	job
    Release Tags:	job_20190617
    
    N src/usr.sbin/rpki-client/LICENSE.md
    N src/usr.sbin/rpki-client/Makefile
    N src/usr.sbin/rpki-client/README.md
    N src/usr.sbin/rpki-client/TODO.md
    N src/usr.sbin/rpki-client/as.c
    N src/usr.sbin/rpki-client/cert.c
    N src/usr.sbin/rpki-client/cms.c
    N src/usr.sbin/rpki-client/crl.c
    N src/usr.sbin/rpki-client/extern.h
    N src/usr.sbin/rpki-client/io.c
    N src/usr.sbin/rpki-client/ip.c
    N src/usr.sbin/rpki-client/log.c
    N src/usr.sbin/rpki-client/main.c
    N src/usr.sbin/rpki-client/mft.c
    N src/usr.sbin/rpki-client/roa.c
    N src/usr.sbin/rpki-client/rpki-client.1
    N src/usr.sbin/rpki-client/rsync.c
    N src/usr.sbin/rpki-client/tal.c
    N src/usr.sbin/rpki-client/test-cert.c
    N src/usr.sbin/rpki-client/test-ip.c
    N src/usr.sbin/rpki-client/test-mft.c
    N src/usr.sbin/rpki-client/test-roa.c
    N src/usr.sbin/rpki-client/test-tal.c
    N src/usr.sbin/rpki-client/compats.c
    N src/usr.sbin/rpki-client/configure
    N src/usr.sbin/rpki-client/tests.c
    N src/usr.sbin/rpki-client/output-bgpd.c
    N src/usr.sbin/rpki-client/validate.c
    N src/usr.sbin/rpki-client/x509.c
    N src/usr.sbin/rpki-client/tals/afrinic.tal
    N src/usr.sbin/rpki-client/tals/apnic.tal
    N src/usr.sbin/rpki-client/tals/lacnic.tal
    N src/usr.sbin/rpki-client/tals/ripe.tal
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 08:46:35

Added files:
	usr.sbin/rpki-client: rpki-client.8 
Removed files:
	usr.sbin/rpki-client: rpki-client.1 

Log message:
should be rpki-client(8)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 09:01:23

Removed files:
	usr.sbin/rpki-client: LICENSE.md 

Log message:
this file is not needed


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 09:02:39

Modified files:
	usr.sbin/rpki-client: extern.h 

Log message:
This portable code knocking out pledge or unveil is better done
as a C stub, rather than #define.
Anyways, this "-portable by default" approach is not the OpenBSD way.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/17 09:03:34

Modified files:
	usr.sbin/acme-client: acctproc.c 

Log message:
Use non-deprecated API; from Renaud Allard, thanks!
OK tb


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 09:04:59

Modified files:
	usr.sbin/rpki-client: as.c cert.c cms.c crl.c io.c ip.c log.c 
	                      main.c mft.c output-bgpd.c roa.c rsync.c 
	                      tal.c test-cert.c test-ip.c test-mft.c 
	                      test-roa.c test-tal.c validate.c x509.c 
Removed files:
	usr.sbin/rpki-client: configure 

Log message:
Don't do -portable in base.  It is better done outside the tree.
Imagine if we did it throughout the tree, how many copies of strlcpy
would we have, and how much time would all the configure shell scripts
and includes take?  It would be ludicrous.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 09:05:16

Removed files:
	usr.sbin/rpki-client: compats.c 

Log message:
We do not need for the -portable stubs here.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 09:05:42

Modified files:
	usr.sbin/rpki-client: Makefile 

Log message:
Use bsd.prog.mk style for building


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 09:08:08

Modified files:
	usr.sbin/rpki-client: ip.c rsync.c tal.c test-cert.c test-ip.c 

Log message:
system includes first, always.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 09:11:12

Modified files:
	usr.sbin/rpki-client: Makefile 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/17 09:13:08

Modified files:
	sys/net        : if_enc.c 

Log message:
free(9) sizes.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/06/17 09:20:10

Modified files:
	usr.sbin/acme-client: acctproc.c 

Log message:
One NULL-check before EVP_MD_CTX_free() was left in previous.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/17 09:36:56

Modified files:
	usr.sbin/rpki-client: Makefile 

Log message:
rpk-client.8 -> rpki-client.8


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/17 09:41:59

Modified files:
	usr.sbin/acme-client: key.c 

Log message:
It's enough to allocate the EC key once.
OK tb


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/17 10:01:27

Modified files:
	usr.bin/doas   : doas.conf.5 env.c 

Log message:
always reset the "su" variables, which is more consistent and predictable.
ok martijn millert


CVSROOT:	/cvs
Module name:	src
Changes by:	job@cvs.openbsd.org	2019/06/17 10:40:06

Modified files:
	usr.sbin/rpki-client: Makefile 

Log message:
Fix Makefile


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/17 11:11:38

Modified files:
	audio/speexdsp : Makefile distinfo 

Log message:
update to 1.2.0 release; reminded by Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/06/17 11:11:48

Modified files:
	lib/libcrypto/bn: bn_lib.c 

Log message:
Make BN_num_bits_word() constant time.

Previously, this function would leak the most significant word of its
argument due to branching and memory access pattern.  This patch is
enough to fix the use of BN_num_bits() on RSA prime factors in the
library.

The diff is a simplified and more readable (but perhaps less efficient)
version of https://github.com/openssl/openssl/commit/972c87df
by Andy Polyakov and David Benjamin (pre license change). Consult that
commit message for details. Subsequent fixes to follow in the near future.

Issue pointed out by David Schrammel and Samuel Weiser as part of
a larger report.

tests & ok inoguchi, ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/17 11:20:24

Modified files:
	share/mk       : bsd.README bsd.regress.mk 
	share/man/man5 : bsd.regress.mk.5 

Log message:
add REGRESS_EXPECTED_FAILURES variable,
for those tests that are expected to fail because they're not yet
implemented.

okay bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/17 12:28:18

Modified files:
	share/man/man4 : Makefile acpi.4 
	sys/arch/amd64/conf: GENERIC RAMDISK_CD 
	sys/dev/acpi   : files.acpi 
Added files:
	share/man/man4 : aplgpio.4 
	sys/dev/acpi   : aplgpio.c 

Log message:
Add aplgpio(4) a driver for the gpio controllers found on Intel's Apollo
Lake SoC.

From James Hastings
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/17 12:30:06

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/17 12:44:44

Modified files:
	usr.bin/doas   : doas.1 

Log message:
mention environment resetting here as well. ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 13:04:40

Modified files:
	sys/arch/m88k/m88k: trap.c 

Log message:
add code to check stack pointer is within MAP_STACK
from miod


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/06/17 13:21:38

Modified files:
	devel/jdk/1.8  : Makefile 
	devel/jdk/1.8/patches: 
	                       patch-jdk_src_solaris_native_java_lang_childproc_c 

Log message:
Fix return value from closeDescriptors().


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/06/17 13:23:40

Modified files:
	devel/jdk/11   : Makefile 
	devel/jdk/11/patches: 
	                      patch-src_java_base_unix_native_libjava_childproc_c 
Added files:
	devel/jdk/11/patches: 
	                      patch-src_java_base_bsd_native_libjava_ProcessHandleImpl_bsd_c 
	                      patch-src_java_base_unix_native_libjava_ProcessHandleImpl_unix_c 
	                      patch-src_java_base_unix_native_libjava_ProcessHandleImpl_unix_h 

Log message:
Upstream fixes:
* Fix return value from closeDescriptors()
* Emulate waitid(2) with kqueue(2)


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/17 13:51:23

Modified files:
	usr.bin/doas   : doas.c doas.h env.c 

Log message:
setusercontext resets PATH (which we want). but then it becomes
impossible to access the old PATH. save a copy in case we need it later.
bug report from espie.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/17 15:11:43

Modified files:
	devel/p5-forks : Makefile 
Added files:
	devel/p5-forks/patches: patch-lib_forks_pm 

Log message:
Use version(3p) for comparing Perl module versions.

Hint and OK sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/17 15:17:04

Modified files:
	usr.sbin/bgpd  : bgpd.h session.c 

Log message:
A bit more KNF no binary change


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/17 15:33:45

Modified files:
	devel/include-what-you-use: Makefile 
	devel/include-what-you-use/pkg: PLIST 

Log message:
Ship docs, use Python 3, enable tests, drop libexecinfo dependency

libexecinfo is not used at all and Python is merely a RUN_DEPENDS.

Use TLS and derive PKGNAME from DISTNAME while here.

Documentation input ingo
WANTLIB help and OK sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/17 16:18:32

Log message:
    Import libc++ 8.0.0.
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LIBCXX_8_0_0
    
    U src/lib/libcxx/CREDITS.TXT
    U src/lib/libcxx/NOTES.TXT
    U src/lib/libcxx/LICENSE.TXT
    U src/lib/libcxx/CMakeLists.txt
    U src/lib/libcxx/TODO.TXT
    U src/lib/libcxx/include/__tree
    U src/lib/libcxx/include/ios
    U src/lib/libcxx/include/__hash_table
    U src/lib/libcxx/include/condition_variable
    U src/lib/libcxx/include/valarray
    C src/lib/libcxx/include/__locale
    U src/lib/libcxx/include/wctype.h
    U src/lib/libcxx/include/unordered_map
    U src/lib/libcxx/include/limits
    U src/lib/libcxx/include/cfloat
    U src/lib/libcxx/include/__bsd_locale_defaults.h
    U src/lib/libcxx/include/filesystem
    U src/lib/libcxx/include/ratio
    U src/lib/libcxx/include/chrono
    U src/lib/libcxx/include/cassert
    U src/lib/libcxx/include/ccomplex
    U src/lib/libcxx/include/fstream
    U src/lib/libcxx/include/cstdint
    U src/lib/libcxx/include/tuple
    U src/lib/libcxx/include/inttypes.h
    U src/lib/libcxx/include/__config_site.in
    U src/lib/libcxx/include/__bit_reference
    U src/lib/libcxx/include/initializer_list
    U src/lib/libcxx/include/ctgmath
    U src/lib/libcxx/include/regex
    U src/lib/libcxx/include/__functional_base_03
    U src/lib/libcxx/include/__tuple
    U src/lib/libcxx/include/charconv
    U src/lib/libcxx/include/csetjmp
    C src/lib/libcxx/include/__config
    U src/lib/libcxx/include/stdint.h
    U src/lib/libcxx/include/clocale
    U src/lib/libcxx/include/sstream
    U src/lib/libcxx/include/cstdio
    U src/lib/libcxx/include/cwctype
    U src/lib/libcxx/include/stddef.h
    U src/lib/libcxx/include/stack
    U src/lib/libcxx/include/bitset
    U src/lib/libcxx/include/codecvt
    U src/lib/libcxx/include/string_view
    U src/lib/libcxx/include/algorithm
    U src/lib/libcxx/include/locale.h
    U src/lib/libcxx/include/stdio.h
    U src/lib/libcxx/include/ctype.h
    U src/lib/libcxx/include/version
    U src/lib/libcxx/include/system_error
    U src/lib/libcxx/include/cinttypes
    U src/lib/libcxx/include/ciso646
    U src/lib/libcxx/include/memory
    N src/lib/libcxx/include/bit
    U src/lib/libcxx/include/errno.h
    U src/lib/libcxx/include/any
    U src/lib/libcxx/include/complex
    U src/lib/libcxx/include/cfenv
    U src/lib/libcxx/include/utility
    U src/lib/libcxx/include/stdexcept
    U src/lib/libcxx/include/__undef_macros
    U src/lib/libcxx/include/__sso_allocator
    U src/lib/libcxx/include/typeindex
    U src/lib/libcxx/include/compare
    U src/lib/libcxx/include/__string
    U src/lib/libcxx/include/__nullptr
    U src/lib/libcxx/include/cstdbool
    U src/lib/libcxx/include/__mutex_base
    U src/lib/libcxx/include/cstring
    U src/lib/libcxx/include/cerrno
    U src/lib/libcxx/include/__bsd_locale_fallbacks.h
    U src/lib/libcxx/include/mutex
    U src/lib/libcxx/include/random
    U src/lib/libcxx/include/iostream
    U src/lib/libcxx/include/span
    U src/lib/libcxx/include/iosfwd
    U src/lib/libcxx/include/streambuf
    U src/lib/libcxx/include/cwchar
    U src/lib/libcxx/include/complex.h
    U src/lib/libcxx/include/__split_buffer
    U src/lib/libcxx/include/csignal
    U src/lib/libcxx/include/limits.h
    U src/lib/libcxx/include/list
    U src/lib/libcxx/include/locale
    U src/lib/libcxx/include/__std_stream
    U src/lib/libcxx/include/__functional_03
    U src/lib/libcxx/include/cctype
    U src/lib/libcxx/include/__libcpp_version
    U src/lib/libcxx/include/__node_handle
    U src/lib/libcxx/include/float.h
    U src/lib/libcxx/include/iterator
    U src/lib/libcxx/include/unordered_set
    U src/lib/libcxx/include/strstream
    U src/lib/libcxx/include/stdlib.h
    U src/lib/libcxx/include/math.h
    U src/lib/libcxx/include/atomic
    U src/lib/libcxx/include/CMakeLists.txt
    U src/lib/libcxx/include/__errc
    U src/lib/libcxx/include/stdbool.h
    U src/lib/libcxx/include/string
    U src/lib/libcxx/include/wchar.h
    U src/lib/libcxx/include/iomanip
    U src/lib/libcxx/include/tgmath.h
    U src/lib/libcxx/include/deque
    U src/lib/libcxx/include/cmath
    U src/lib/libcxx/include/ostream
    U src/lib/libcxx/include/functional
    U src/lib/libcxx/include/ctime
    U src/lib/libcxx/include/string.h
    U src/lib/libcxx/include/setjmp.h
    U src/lib/libcxx/include/type_traits
    U src/lib/libcxx/include/cstdarg
    U src/lib/libcxx/include/istream
    U src/lib/libcxx/include/thread
    U src/lib/libcxx/include/__functional_base
    U src/lib/libcxx/include/exception
    U src/lib/libcxx/include/optional
    U src/lib/libcxx/include/__debug
    U src/lib/libcxx/include/numeric
    U src/lib/libcxx/include/array
    U src/lib/libcxx/include/set
    U src/lib/libcxx/include/scoped_allocator
    U src/lib/libcxx/include/new
    U src/lib/libcxx/include/typeinfo
    U src/lib/libcxx/include/future
    U src/lib/libcxx/include/queue
    U src/lib/libcxx/include/module.modulemap
    U src/lib/libcxx/include/map
    U src/lib/libcxx/include/shared_mutex
    U src/lib/libcxx/include/cstdlib
    U src/lib/libcxx/include/forward_list
    U src/lib/libcxx/include/variant
    U src/lib/libcxx/include/climits
    U src/lib/libcxx/include/vector
    U src/lib/libcxx/include/cstddef
    U src/lib/libcxx/include/__threading_support
    U src/lib/libcxx/include/support/xlocale/__strtonum_fallback.h
    U src/lib/libcxx/include/support/xlocale/__nop_locale_mgmt.h
    U src/lib/libcxx/include/support/xlocale/xlocale.h
    U src/lib/libcxx/include/support/xlocale/__posix_l_fallback.h
    U src/lib/libcxx/include/support/android/locale_bionic.h
    U src/lib/libcxx/include/support/fuchsia/xlocale.h
    U src/lib/libcxx/include/support/solaris/floatingpoint.h
    U src/lib/libcxx/include/support/solaris/xlocale.h
    U src/lib/libcxx/include/support/solaris/wchar.h
    U src/lib/libcxx/include/support/ibm/support.h
    U src/lib/libcxx/include/support/ibm/limits.h
    U src/lib/libcxx/include/support/ibm/xlocale.h
    U src/lib/libcxx/include/support/ibm/locale_mgmt_aix.h
    U src/lib/libcxx/include/support/musl/xlocale.h
    U src/lib/libcxx/include/support/win32/locale_win32.h
    U src/lib/libcxx/include/support/win32/limits_msvc_win32.h
    U src/lib/libcxx/include/support/newlib/xlocale.h
    U src/lib/libcxx/include/ext/__hash
    U src/lib/libcxx/include/ext/hash_map
    U src/lib/libcxx/include/ext/hash_set
    U src/lib/libcxx/include/experimental/memory_resource
    U src/lib/libcxx/include/experimental/unordered_map
    U src/lib/libcxx/include/experimental/filesystem
    U src/lib/libcxx/include/experimental/ratio
    U src/lib/libcxx/include/experimental/chrono
    U src/lib/libcxx/include/experimental/tuple
    U src/lib/libcxx/include/experimental/regex
    U src/lib/libcxx/include/experimental/__config
    U src/lib/libcxx/include/experimental/string_view
    U src/lib/libcxx/include/experimental/algorithm
    U src/lib/libcxx/include/experimental/system_error
    U src/lib/libcxx/include/experimental/utility
    U src/lib/libcxx/include/experimental/__memory
    U src/lib/libcxx/include/experimental/any
    U src/lib/libcxx/include/experimental/coroutine
    U src/lib/libcxx/include/experimental/list
    U src/lib/libcxx/include/experimental/iterator
    U src/lib/libcxx/include/experimental/unordered_set
    U src/lib/libcxx/include/experimental/propagate_const
    U src/lib/libcxx/include/experimental/string
    U src/lib/libcxx/include/experimental/deque
    U src/lib/libcxx/include/experimental/functional
    U src/lib/libcxx/include/experimental/type_traits
    U src/lib/libcxx/include/experimental/optional
    U src/lib/libcxx/include/experimental/numeric
    U src/lib/libcxx/include/experimental/set
    U src/lib/libcxx/include/experimental/map
    U src/lib/libcxx/include/experimental/forward_list
    U src/lib/libcxx/include/experimental/simd
    U src/lib/libcxx/include/experimental/vector
    U src/lib/libcxx/lib/libc++abi2.exp
    U src/lib/libcxx/lib/libc++abi.exp
    U src/lib/libcxx/lib/libc++unexp.exp
    U src/lib/libcxx/lib/libc++sjlj-abi.exp
    U src/lib/libcxx/lib/weak.exp
    U src/lib/libcxx/lib/CMakeLists.txt
    U src/lib/libcxx/lib/notweak.exp
    U src/lib/libcxx/lib/libc++abi-new-delete.exp
    U src/lib/libcxx/lib/abi/x86_64-unknown-linux-gnu.v1.abilist
    U src/lib/libcxx/lib/abi/README.TXT
    U src/lib/libcxx/lib/abi/CMakeLists.txt
    U src/lib/libcxx/lib/abi/CHANGELOG.TXT
    U src/lib/libcxx/lib/abi/x86_64-apple-darwin.v2.abilist
    U src/lib/libcxx/lib/abi/x86_64-apple-darwin.v1.abilist
    U src/lib/libcxx/lib/abi/3.9/x86_64-linux-gnu.abilist
    U src/lib/libcxx/lib/abi/3.9/x86_64-apple-darwin16.abilist
    U src/lib/libcxx/lib/abi/5.0/x86_64-unknown-linux-gnu.abilist
    U src/lib/libcxx/lib/abi/5.0/x86_64-apple-darwin16.abilist
    U src/lib/libcxx/lib/abi/6.0/x86_64-unknown-linux-gnu.abilist
    U src/lib/libcxx/lib/abi/6.0/x86_64-apple-darwin16.abilist
    U src/lib/libcxx/lib/abi/4.0/x86_64-unknown-linux-gnu.abilist
    U src/lib/libcxx/lib/abi/4.0/x86_64-apple-darwin16.abilist
    U src/lib/libcxx/cmake/config-ix.cmake
    U src/lib/libcxx/cmake/Modules/HandleLibcxxFlags.cmake
    U src/lib/libcxx/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake
    U src/lib/libcxx/cmake/Modules/HandleOutOfTreeLLVM.cmake
    U src/lib/libcxx/cmake/Modules/HandleCompilerRT.cmake
    U src/lib/libcxx/cmake/Modules/CodeCoverage.cmake
    U src/lib/libcxx/cmake/Modules/HandleLibCXXABI.cmake
    U src/lib/libcxx/cmake/Modules/CheckLibcxxAtomic.cmake
    U src/lib/libcxx/docs/BuildingLibcxx.rst
    U src/lib/libcxx/docs/README.txt
    U src/lib/libcxx/docs/TestingLibcxx.rst
    U src/lib/libcxx/docs/conf.py
    N src/lib/libcxx/docs/ReleaseNotes.rst
    U src/lib/libcxx/docs/CMakeLists.txt
    U src/lib/libcxx/docs/index.rst
    N src/lib/libcxx/docs/FeatureTestMacroTable.rst
    U src/lib/libcxx/docs/Makefile.sphinx
    U src/lib/libcxx/docs/UsingLibcxx.rst
    U src/lib/libcxx/docs/DesignDocs/DebugMode.rst
    U src/lib/libcxx/docs/DesignDocs/ABIVersioning.rst
    U src/lib/libcxx/docs/DesignDocs/ThreadingSupportAPI.rst
    N src/lib/libcxx/docs/DesignDocs/FeatureTestMacros.rst
    U src/lib/libcxx/docs/DesignDocs/AvailabilityMarkup.rst
    U src/lib/libcxx/docs/DesignDocs/VisibilityMacros.rst
    U src/lib/libcxx/docs/DesignDocs/FileTimeType.rst
    U src/lib/libcxx/docs/DesignDocs/CapturingConfigInfo.rst
    U src/lib/libcxx/utils/sym_match.py
    U src/lib/libcxx/utils/not.py
    U src/lib/libcxx/utils/sym_extract.py
    U src/lib/libcxx/utils/merge_archives.py
    U src/lib/libcxx/utils/cat_files.py
    U src/lib/libcxx/utils/gen_link_script.py
    U src/lib/libcxx/utils/sym_diff.py
    N src/lib/libcxx/utils/docker/build_docker_image.sh
    N src/lib/libcxx/utils/docker/debian9/Dockerfile
    N src/lib/libcxx/utils/docker/scripts/docker_start_buildbots.sh
    N src/lib/libcxx/utils/docker/scripts/build_install_llvm.sh
    N src/lib/libcxx/utils/docker/scripts/checkout_git.sh
    N src/lib/libcxx/utils/docker/scripts/run_buildbot.sh
    N src/lib/libcxx/utils/docker/scripts/build_gcc.sh
    N src/lib/libcxx/utils/docker/scripts/install_clang_packages.sh
    U src/lib/libcxx/utils/libcxx/util.py
    U src/lib/libcxx/utils/libcxx/compiler.py
    U src/lib/libcxx/utils/libcxx/__init__.py
    U src/lib/libcxx/utils/libcxx/test/target_info.py
    C src/lib/libcxx/utils/libcxx/test/config.py
    N src/lib/libcxx/utils/libcxx/test/googlebenchmark.py
    U src/lib/libcxx/utils/libcxx/test/format.py
    U src/lib/libcxx/utils/libcxx/test/executor.py
    U src/lib/libcxx/utils/libcxx/test/tracing.py
    U src/lib/libcxx/utils/libcxx/test/__init__.py
    U src/lib/libcxx/utils/libcxx/sym_check/extract.py
    U src/lib/libcxx/utils/libcxx/sym_check/util.py
    U src/lib/libcxx/utils/libcxx/sym_check/match.py
    U src/lib/libcxx/utils/libcxx/sym_check/diff.py
    U src/lib/libcxx/utils/libcxx/sym_check/__init__.py
    U src/lib/libcxx/utils/symcheck-blacklists/osx_blacklist.txt
    U src/lib/libcxx/utils/symcheck-blacklists/linux_blacklist.txt
    N src/lib/libcxx/utils/google-benchmark/.travis.yml
    U src/lib/libcxx/utils/google-benchmark/CONTRIBUTING.md
    U src/lib/libcxx/utils/google-benchmark/releasing.md
    N src/lib/libcxx/utils/google-benchmark/WORKSPACE
    U src/lib/libcxx/utils/google-benchmark/CONTRIBUTORS
    U src/lib/libcxx/utils/google-benchmark/AUTHORS
    U src/lib/libcxx/utils/google-benchmark/LICENSE
    N src/lib/libcxx/utils/google-benchmark/.clang-format
    U src/lib/libcxx/utils/google-benchmark/mingw.py
    U src/lib/libcxx/utils/google-benchmark/.gitignore
    U src/lib/libcxx/utils/google-benchmark/CMakeLists.txt
    U src/lib/libcxx/utils/google-benchmark/README.md
    U src/lib/libcxx/utils/google-benchmark/README.LLVM
    N src/lib/libcxx/utils/google-benchmark/.travis-libcxx-setup.sh
    N src/lib/libcxx/utils/google-benchmark/.ycm_extra_conf.py
    N src/lib/libcxx/utils/google-benchmark/appveyor.yml
    U src/lib/libcxx/utils/google-benchmark/include/benchmark/benchmark.h
    U src/lib/libcxx/utils/google-benchmark/test/basic_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/output_test_helper.cc
    U src/lib/libcxx/utils/google-benchmark/test/link_main_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/cxx03_test.cc
    N src/lib/libcxx/utils/google-benchmark/test/report_aggregates_only_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/options_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/state_assembly_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/multiple_ranges_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/skip_with_error_test.cc
    N src/lib/libcxx/utils/google-benchmark/test/user_counters_thousands_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/string_util_gtest.cc
    U src/lib/libcxx/utils/google-benchmark/test/reporter_output_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/diagnostics_test.cc
    N src/lib/libcxx/utils/google-benchmark/test/memory_manager_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/donotoptimize_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/output_test.h
    U src/lib/libcxx/utils/google-benchmark/test/benchmark_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/benchmark_gtest.cc
    U src/lib/libcxx/utils/google-benchmark/test/donotoptimize_assembly_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/clobber_memory_assembly_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/register_benchmark_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/CMakeLists.txt
    U src/lib/libcxx/utils/google-benchmark/test/complexity_test.cc
    N src/lib/libcxx/utils/google-benchmark/test/display_aggregates_only_test.cc
    N src/lib/libcxx/utils/google-benchmark/test/AssemblyTests.cmake
    U src/lib/libcxx/utils/google-benchmark/test/statistics_gtest.cc
    U src/lib/libcxx/utils/google-benchmark/test/templated_fixture_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/user_counters_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/user_counters_tabular_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/filter_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/fixture_test.cc
    U src/lib/libcxx/utils/google-benchmark/test/map_test.cc
    U src/lib/libcxx/utils/google-benchmark/cmake/benchmark.pc.in
    U src/lib/libcxx/utils/google-benchmark/cmake/steady_clock.cpp
    U src/lib/libcxx/utils/google-benchmark/cmake/thread_safety_attributes.cpp
    U src/lib/libcxx/utils/google-benchmark/cmake/llvm-toolchain.cmake
    U src/lib/libcxx/utils/google-benchmark/cmake/std_regex.cpp
    U src/lib/libcxx/utils/google-benchmark/cmake/posix_regex.cpp
    U src/lib/libcxx/utils/google-benchmark/cmake/split_list.cmake
    U src/lib/libcxx/utils/google-benchmark/cmake/gnu_posix_regex.cpp
    U src/lib/libcxx/utils/google-benchmark/cmake/Config.cmake.in
    U src/lib/libcxx/utils/google-benchmark/cmake/AddCXXCompilerFlag.cmake
    U src/lib/libcxx/utils/google-benchmark/cmake/GetGitVersion.cmake
    U src/lib/libcxx/utils/google-benchmark/cmake/CXXFeatureCheck.cmake
    U src/lib/libcxx/utils/google-benchmark/cmake/HandleGTest.cmake
    U src/lib/libcxx/utils/google-benchmark/docs/tools.md
    U src/lib/libcxx/utils/google-benchmark/docs/AssemblyTests.md
    U src/lib/libcxx/utils/google-benchmark/src/commandlineflags.cc
    U src/lib/libcxx/utils/google-benchmark/src/reporter.cc
    U src/lib/libcxx/utils/google-benchmark/src/colorprint.h
    U src/lib/libcxx/utils/google-benchmark/src/log.h
    U src/lib/libcxx/utils/google-benchmark/src/commandlineflags.h
    U src/lib/libcxx/utils/google-benchmark/src/sleep.h
    U src/lib/libcxx/utils/google-benchmark/src/thread_timer.h
    U src/lib/libcxx/utils/google-benchmark/src/console_reporter.cc
    N src/lib/libcxx/utils/google-benchmark/src/benchmark_runner.cc
    N src/lib/libcxx/utils/google-benchmark/src/benchmark_api_internal.cc
    U src/lib/libcxx/utils/google-benchmark/src/string_util.cc
    U src/lib/libcxx/utils/google-benchmark/src/thread_manager.h
    N src/lib/libcxx/utils/google-benchmark/src/benchmark_runner.h
    U src/lib/libcxx/utils/google-benchmark/src/arraysize.h
    U src/lib/libcxx/utils/google-benchmark/src/benchmark_register.cc
    U src/lib/libcxx/utils/google-benchmark/src/sleep.cc
    U src/lib/libcxx/utils/google-benchmark/src/counter.cc
    U src/lib/libcxx/utils/google-benchmark/src/string_util.h
    U src/lib/libcxx/utils/google-benchmark/src/internal_macros.h
    U src/lib/libcxx/utils/google-benchmark/src/check.h
    U src/lib/libcxx/utils/google-benchmark/src/benchmark_register.h
    U src/lib/libcxx/utils/google-benchmark/src/statistics.cc
    U src/lib/libcxx/utils/google-benchmark/src/timers.cc
    U src/lib/libcxx/utils/google-benchmark/src/statistics.h
    U src/lib/libcxx/utils/google-benchmark/src/CMakeLists.txt
    U src/lib/libcxx/utils/google-benchmark/src/re.h
    U src/lib/libcxx/utils/google-benchmark/src/mutex.h
    U src/lib/libcxx/utils/google-benchmark/src/benchmark.cc
    U src/lib/libcxx/utils/google-benchmark/src/colorprint.cc
    U src/lib/libcxx/utils/google-benchmark/src/benchmark_api_internal.h
    U src/lib/libcxx/utils/google-benchmark/src/benchmark_main.cc
    U src/lib/libcxx/utils/google-benchmark/src/sysinfo.cc
    U src/lib/libcxx/utils/google-benchmark/src/json_reporter.cc
    U src/lib/libcxx/utils/google-benchmark/src/complexity.cc
    U src/lib/libcxx/utils/google-benchmark/src/timers.h
    U src/lib/libcxx/utils/google-benchmark/src/csv_reporter.cc
    U src/lib/libcxx/utils/google-benchmark/src/cycleclock.h
    U src/lib/libcxx/utils/google-benchmark/src/complexity.h
    U src/lib/libcxx/utils/google-benchmark/src/counter.h
    U src/lib/libcxx/utils/google-benchmark/tools/compare.py
    U src/lib/libcxx/utils/google-benchmark/tools/strip_asm.py
    U src/lib/libcxx/utils/google-benchmark/tools/gbench/util.py
    U src/lib/libcxx/utils/google-benchmark/tools/gbench/report.py
    U src/lib/libcxx/utils/google-benchmark/tools/gbench/__init__.py
    U src/lib/libcxx/utils/google-benchmark/tools/gbench/Inputs/test1_run1.json
    U src/lib/libcxx/utils/google-benchmark/tools/gbench/Inputs/test1_run2.json
    U src/lib/libcxx/utils/google-benchmark/tools/gbench/Inputs/test3_run0.json
    U src/lib/libcxx/utils/google-benchmark/tools/gbench/Inputs/test2_run.json
    U src/lib/libcxx/utils/google-benchmark/tools/gbench/Inputs/test3_run1.json
    N src/lib/libcxx/utils/ci/macos-trunk.sh
    N src/lib/libcxx/utils/ci/macos-backdeployment.sh
    U src/lib/libcxx/benchmarks/vector_operations.bench.cpp
    U src/lib/libcxx/benchmarks/unordered_set_operations.bench.cpp
    U src/lib/libcxx/benchmarks/filesystem.bench.cpp
    N src/lib/libcxx/benchmarks/function.bench.cpp
    U src/lib/libcxx/benchmarks/stringstream.bench.cpp
    N src/lib/libcxx/benchmarks/algorithms.partition_point.bench.cpp
    N src/lib/libcxx/benchmarks/ordered_set.bench.cpp
    U src/lib/libcxx/benchmarks/algorithms.bench.cpp
    U src/lib/libcxx/benchmarks/ContainerBenchmarks.hpp
    N src/lib/libcxx/benchmarks/lit.cfg.py
    U src/lib/libcxx/benchmarks/CMakeLists.txt
    U src/lib/libcxx/benchmarks/string.bench.cpp
    U src/lib/libcxx/benchmarks/util_smartptr.bench.cpp
    U src/lib/libcxx/benchmarks/GenerateInput.hpp
    N src/lib/libcxx/benchmarks/lit.site.cfg.py.in
    N src/lib/libcxx/benchmarks/CartesianBenchmarks.hpp
    U src/lib/libcxx/src/utility.cpp
    U src/lib/libcxx/src/variant.cpp
    U src/lib/libcxx/src/vector.cpp
    U src/lib/libcxx/src/functional.cpp
    U src/lib/libcxx/src/regex.cpp
    U src/lib/libcxx/src/iostream.cpp
    U src/lib/libcxx/src/algorithm.cpp
    C src/lib/libcxx/src/thread.cpp
    U src/lib/libcxx/src/future.cpp
    U src/lib/libcxx/src/hash.cpp
    U src/lib/libcxx/src/chrono.cpp
    U src/lib/libcxx/src/locale.cpp
    U src/lib/libcxx/src/strstream.cpp
    U src/lib/libcxx/src/new.cpp
    U src/lib/libcxx/src/optional.cpp
    U src/lib/libcxx/src/random.cpp
    U src/lib/libcxx/src/valarray.cpp
    U src/lib/libcxx/src/charconv.cpp
    U src/lib/libcxx/src/system_error.cpp
    U src/lib/libcxx/src/ios.cpp
    U src/lib/libcxx/src/condition_variable.cpp
    U src/lib/libcxx/src/bind.cpp
    U src/lib/libcxx/src/typeinfo.cpp
    U src/lib/libcxx/src/any.cpp
    U src/lib/libcxx/src/debug.cpp
    U src/lib/libcxx/src/exception.cpp
    U src/lib/libcxx/src/shared_mutex.cpp
    U src/lib/libcxx/src/mutex.cpp
    U src/lib/libcxx/src/stdexcept.cpp
    U src/lib/libcxx/src/string.cpp
    U src/lib/libcxx/src/memory.cpp
    U src/lib/libcxx/src/include/atomic_support.h
    U src/lib/libcxx/src/include/refstring.h
    U src/lib/libcxx/src/include/config_elast.h
    U src/lib/libcxx/src/include/apple_availability.h
    U src/lib/libcxx/src/filesystem/operations.cpp
    U src/lib/libcxx/src/filesystem/filesystem_common.h
    U src/lib/libcxx/src/filesystem/int128_builtins.cpp
    U src/lib/libcxx/src/filesystem/directory_iterator.cpp
    U src/lib/libcxx/src/support/solaris/README
    U src/lib/libcxx/src/support/solaris/wcsnrtombs.inc
    U src/lib/libcxx/src/support/solaris/xlocale.cpp
    U src/lib/libcxx/src/support/solaris/mbsnrtowcs.inc
    U src/lib/libcxx/src/support/runtime/exception_libcxxrt.ipp
    U src/lib/libcxx/src/support/runtime/exception_pointer_cxxabi.ipp
    U src/lib/libcxx/src/support/runtime/exception_pointer_glibcxx.ipp
    U src/lib/libcxx/src/support/runtime/exception_glibcxx.ipp
    U src/lib/libcxx/src/support/runtime/new_handler_fallback.ipp
    U src/lib/libcxx/src/support/runtime/exception_fallback.ipp
    U src/lib/libcxx/src/support/runtime/exception_libcxxabi.ipp
    U src/lib/libcxx/src/support/runtime/exception_msvc.ipp
    U src/lib/libcxx/src/support/runtime/exception_pointer_unimplemented.ipp
    U src/lib/libcxx/src/support/runtime/exception_pointer_msvc.ipp
    U src/lib/libcxx/src/support/win32/support.cpp
    U src/lib/libcxx/src/support/win32/locale_win32.cpp
    U src/lib/libcxx/src/support/win32/thread_win32.cpp
    U src/lib/libcxx/src/experimental/memory_resource.cpp
    
    4 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jLLVM:yesterday -jLLVM src/lib/libcxx

CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/17 16:19:32

Log message:
    Import libc++abi 8.0.0.
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LIBCXXABI_8_0_0
    
    U src/lib/libcxxabi/CREDITS.TXT
    U src/lib/libcxxabi/LICENSE.TXT
    U src/lib/libcxxabi/CMakeLists.txt
    U src/lib/libcxxabi/include/__cxxabi_config.h
    U src/lib/libcxxabi/include/cxxabi.h
    U src/lib/libcxxabi/lib/buildit
    U src/lib/libcxxabi/cmake/config-ix.cmake
    U src/lib/libcxxabi/cmake/Modules/MacroEnsureOutOfSourceBuild.cmake
    U src/lib/libcxxabi/cmake/Modules/HandleOutOfTreeLLVM.cmake
    U src/lib/libcxxabi/cmake/Modules/HandleCompilerRT.cmake
    U src/lib/libcxxabi/cmake/Modules/HandleLibcxxabiFlags.cmake
    U src/lib/libcxxabi/src/cxa_exception_storage.cpp
    U src/lib/libcxxabi/src/fallback_malloc.h
    U src/lib/libcxxabi/src/fallback_malloc.cpp
    U src/lib/libcxxabi/src/stdlib_typeinfo.cpp
    U src/lib/libcxxabi/src/stdlib_exception.cpp
    U src/lib/libcxxabi/src/cxa_demangle.cpp
    U src/lib/libcxxabi/src/cxa_personality.cpp
    U src/lib/libcxxabi/src/cxa_handlers.hpp
    U src/lib/libcxxabi/src/cxa_aux_runtime.cpp
    U src/lib/libcxxabi/src/cxa_handlers.cpp
    U src/lib/libcxxabi/src/abort_message.h
    U src/lib/libcxxabi/src/cxa_guard.cpp
    U src/lib/libcxxabi/src/stdlib_stdexcept.cpp
    U src/lib/libcxxabi/src/abort_message.cpp
    U src/lib/libcxxabi/src/stdlib_new_delete.cpp
    U src/lib/libcxxabi/src/cxa_virtual.cpp
    U src/lib/libcxxabi/src/cxa_thread_atexit.cpp
    U src/lib/libcxxabi/src/cxa_default_handlers.cpp
    U src/lib/libcxxabi/src/CMakeLists.txt
    U src/lib/libcxxabi/src/cxa_exception.cpp
    U src/lib/libcxxabi/src/private_typeinfo.h
    U src/lib/libcxxabi/src/cxa_vector.cpp
    U src/lib/libcxxabi/src/cxa_noexception.cpp
    U src/lib/libcxxabi/src/private_typeinfo.cpp
    U src/lib/libcxxabi/src/cxa_unexpected.cpp
    U src/lib/libcxxabi/src/cxa_exception.hpp
    U src/lib/libcxxabi/src/include/atomic_support.h
    U src/lib/libcxxabi/src/include/refstring.h
    U src/lib/libcxxabi/src/demangle/Utility.h
    U src/lib/libcxxabi/src/demangle/Compiler.h
    U src/lib/libcxxabi/src/demangle/StringView.h
    N src/lib/libcxxabi/src/demangle/ItaniumDemangle.h
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/17 16:20:15

Log message:
    Import libunwind 8.0.0.
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LIBUNWIND_8_0_0
    
    U src/lib/libunwind/LICENSE.TXT
    U src/lib/libunwind/CMakeLists.txt
    C src/lib/libunwind/include/__libunwind_config.h
    U src/lib/libunwind/include/unwind.h
    C src/lib/libunwind/include/libunwind.h
    U src/lib/libunwind/include/mach-o/compact_unwind_encoding.h
    U src/lib/libunwind/cmake/config-ix.cmake
    U src/lib/libunwind/cmake/Modules/HandleCompilerRT.cmake
    C src/lib/libunwind/src/UnwindCursor.hpp
    C src/lib/libunwind/src/EHHeaderParser.hpp
    C src/lib/libunwind/src/DwarfParser.hpp
    U src/lib/libunwind/src/Unwind-sjlj.c
    U src/lib/libunwind/src/Unwind-EHABI.h
    C src/lib/libunwind/src/Registers.hpp
    N src/lib/libunwind/src/Unwind-seh.cpp
    C src/lib/libunwind/src/UnwindRegistersSave.S
    U src/lib/libunwind/src/CompactUnwinder.hpp
    C src/lib/libunwind/src/assembly.h
    U src/lib/libunwind/src/RWMutex.hpp
    U src/lib/libunwind/src/libunwind_ext.h
    U src/lib/libunwind/src/Unwind_AppleExtras.cpp
    C src/lib/libunwind/src/AddressSpace.hpp
    U src/lib/libunwind/src/CMakeLists.txt
    U src/lib/libunwind/src/UnwindLevel1.c
    C src/lib/libunwind/src/libunwind.cpp
    U src/lib/libunwind/src/UnwindLevel1-gcc-ext.c
    U src/lib/libunwind/src/config.h
    C src/lib/libunwind/src/UnwindRegistersRestore.S
    U src/lib/libunwind/src/dwarf2.h
    C src/lib/libunwind/src/DwarfInstructions.hpp
    U src/lib/libunwind/src/Unwind-EHABI.cpp
    
    12 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jLLVM:yesterday -jLLVM src/lib/libunwind

CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/17 16:28:51

Modified files:
	lib/libcxx     : Makefile shlib_version 
	lib/libcxx/include: __config __locale 
	lib/libcxx/src : thread.cpp 
	lib/libcxx/utils/libcxx/test: config.py 
	lib/libcxxabi  : shlib_version 
	lib/libunwind/include: __libunwind_config.h libunwind.h 
	lib/libunwind/src: AddressSpace.hpp DwarfInstructions.hpp 
	                   DwarfParser.hpp EHHeaderParser.hpp 
	                   Registers.hpp UnwindCursor.hpp 
	                   UnwindRegistersRestore.S 
	                   UnwindRegistersSave.S assembly.h 
	                   libunwind.cpp 
Removed files:
	lib/libcxx/include/experimental: dynarray 
	lib/libcxx/utils/google-benchmark/tools: compare_bench.py 

Log message:
Merge libc++, libc++abi and libunwind version 8.0.0.

Ports build by naddy@
Tested by visa on octeon
Tested by kettenis on macppc and sparc64


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/17 16:30:49

Modified files:
	textproc/py-natsort: Makefile 

Log message:
Changes to allow py-natsort tests to work completely.

Added TEST_DEPENDS, MODPY_PYTEST, and changed PERMIT_ line while here.

OK jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/17 16:31:48

Modified files:
	distrib/sets/lists/base: md.amd64 md.arm64 md.armv7 md.i386 
	                         md.loongson md.macppc md.octeon md.sgi 
	                         md.sparc64 
	distrib/sets/lists/comp: clang.amd64 clang.arm64 clang.armv7 
	                         clang.i386 clang.loongson clang.macppc 
	                         clang.octeon clang.sgi clang.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/06/17 22:13:54

Modified files:
	devel/git-cola : Makefile distinfo 
	devel/git-cola/pkg: PLIST 

Log message:
Update to git-cola-3.4.

Changelog can be found at
https://github.com/git-cola/git-cola/blob/master/share/doc/git-cola/relnotes.rst


CVSROOT:	/cvs
Module name:	www
Changes by:	tedu@cvs.openbsd.org	2019/06/17 23:47:48

Modified files:
	faq            : current.html 

Log message:
add a minimal hint that doas environment handling has changed.
perhaps to be expanded.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/17 23:48:54

Modified files:
	usr.sbin/rpki-client: rpki-client.8 

Log message:
missing ,


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 00:15:54

Modified files:
	usr.sbin/rpki-client: Makefile 

Log message:
There is no need to -I${.OBJDIR}


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/06/18 01:33:24

Modified files:
	sys/ufs/ffs    : ffs_inode.c 

Log message:
Ensure the length passed to ffs_truncate() is within bounds before calling
uvm_vnp_setsize() which is not free from side-effects.

ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/18 02:19:19

Modified files:
	x11/xwallpaper : Makefile distinfo 

Log message:
update to new shiny version.
okay rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/18 05:08:36

Modified files:
	graphics/openbsd-backgrounds: Makefile distinfo 
	graphics/openbsd-backgrounds/pkg: PLIST 

Log message:
+kristaps wonderful diving pictures
thx!


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/18 05:08:42

Modified files:
	usr.bin/tmux   : cfg.c cmd-display-panes.c cmd-if-shell.c 
	                 cmd-load-buffer.c cmd-queue.c cmd-run-shell.c 
	                 cmd-wait-for.c menu.c tmux.h window.c 

Log message:
Add a cmdq_continue function rather than twiddling the flag directly.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/18 05:17:40

Modified files:
	usr.bin/tmux   : cmd-parse.y 

Log message:
Handle comments more correctly inside {}, from Avi Halachmi.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/18 05:35:39

Modified files:
	audio/schismtracker: Makefile distinfo 
	audio/schismtracker/patches: patch-configure_ac 

Log message:
Update schismtracker to 20190614.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 05:55:53

Removed files:
	usr.sbin/rpki-client: tests.c 

Log message:
This is part of the old configure setup. Not needed here.
OK job@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 05:56:36

Removed files:
	usr.sbin/rpki-client: test-cert.c test-ip.c test-mft.c 
	                      test-roa.c test-tal.c 

Log message:
Remove tests here and move them to regress. At least then they can use
the existing framework.
OK job@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 05:56:54

src/regress/usr.sbin/rpki-client

Update of /cvs/src/regress/usr.sbin/rpki-client
In directory cvs.openbsd.org:/tmp/cvs-serv84279/rpki-client

Log Message:
Directory /cvs/src/regress/usr.sbin/rpki-client added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 05:59:06

src/regress/usr.sbin/rpki-client/cer

Update of /cvs/src/regress/usr.sbin/rpki-client/cer
In directory cvs.openbsd.org:/tmp/cvs-serv53154/cer

Log Message:
Directory /cvs/src/regress/usr.sbin/rpki-client/cer added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 05:59:06

src/regress/usr.sbin/rpki-client/mft

Update of /cvs/src/regress/usr.sbin/rpki-client/mft
In directory cvs.openbsd.org:/tmp/cvs-serv53154/mft

Log Message:
Directory /cvs/src/regress/usr.sbin/rpki-client/mft added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 05:59:06

src/regress/usr.sbin/rpki-client/roa

Update of /cvs/src/regress/usr.sbin/rpki-client/roa
In directory cvs.openbsd.org:/tmp/cvs-serv53154/roa

Log Message:
Directory /cvs/src/regress/usr.sbin/rpki-client/roa added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 05:59:06

src/regress/usr.sbin/rpki-client/ta

Update of /cvs/src/regress/usr.sbin/rpki-client/ta
In directory cvs.openbsd.org:/tmp/cvs-serv53154/ta

Log Message:
Directory /cvs/src/regress/usr.sbin/rpki-client/ta added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 05:59:06

src/regress/usr.sbin/rpki-client/tal

Update of /cvs/src/regress/usr.sbin/rpki-client/tal
In directory cvs.openbsd.org:/tmp/cvs-serv53154/tal

Log Message:
Directory /cvs/src/regress/usr.sbin/rpki-client/tal added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/18 06:09:07

Added files:
	regress/usr.sbin/rpki-client: Makefile test-cert.c test-ip.c 
	                              test-mft.c test-roa.c test-tal.c 
	regress/usr.sbin/rpki-client/cer: 
	                                  2a7dd1d787d793e4c8af56e197d4eed92af6ba13.cer 
	                                  aaI5ikDRYL7nJH9kwrv4b80iIAI.cer 
	regress/usr.sbin/rpki-client/mft: 
	                                  Kn3R14fXk-TIr1bhl9Tu2Sr2uhM.mft 
	                                  RjQZ5pSL7riIcFGhdm4iFtIalko.mft 
	                                  ripe-ncc-ta.mft 
	regress/usr.sbin/rpki-client/roa: 
	                                  4DAr1VXnjh69GoQkxjmIQdkRVtQ.roa 
	                                  Hf1ZR31W9DN5QSF6xJEO5qgH4ac.roa 
	                                  Zs_svFDVb-_DZnjgkN8DLKk_IRI.roa 
	                                  xZEe_HUX98kANKreh2ZIpdaDnAI.roa 
	regress/usr.sbin/rpki-client/ta: AfriNIC.cer 
	                                 apnic-rpki-root-iana-origin.cer 
	                                 ripe-ncc-ta.cer 
	regress/usr.sbin/rpki-client/tal: apnic.tal ripe.tal 

Log message:
Use the test-files from rpki-client and some files from the rpki cache to
implement a basic regress test. Needs more work but should be a start.


CVSROOT:	/cvs
Module name:	src
Changes by:	job@cvs.openbsd.org	2019/06/18 07:28:37

Modified files:
	usr.sbin/rpki-client: rpki-client.8 

Log message:
Use correct terminilogy in rpki-client manpage


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/18 08:55:14

Modified files:
	usr.sbin/rpki-client: main.c 

Log message:
do not need to allocate memory for execvp arguments


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/06/18 09:01:52

Modified files:
	.              : events.html 

Log message:
add links to BSDCan 2019 videos of florian@ stsp@ bluhm@ jan@;
diff from Ross L Richardson <rlr dot id dot au>, tweaked by me


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/18 09:53:11

Modified files:
	sys/kern       : kern_synch.c 

Log message:
Ensure that timeout p_sleep_to is not left running when finishing sleep.
This is necessary when invoking sleep_finish_timeout() without the
kernel lock. If not cancelled properly, an already running endtsleep()
might cause a spurious wakeup on the thread if the thread re-enters
a sleep queue very quickly before the handler completes.

The flag P_TIMEOUT should stay cleared across the timeout cancellation.
Add an assertion for that.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/18 12:50:07

Modified files:
	usr.sbin/acme-client: json.c 

Log message:
When the parser detects that it needs more tokens it returns
JSMN_ERROR_NOMEM.
We then need to allocate more tokens and call the parser with its
current state again. It will continue where it left of.
For this to work we also need to pass in the old tokens from the
previous run and not just more space.

Found the hard way by Renaud Allard.
OK millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/18 14:30:01

Modified files:
	archivers/libarchive: Makefile distinfo 
	archivers/libarchive/patches: patch-tar_bsdtar_1 
	archivers/libarchive/pkg: DESCR PLIST 
Removed files:
	archivers/libarchive/patches: patch-configure 

Log message:
Update to 3.4.0:
* Fixes for reading Android APK and JAR archives
* Support for non-recursive list and extract
* New tar option: --exclude-vcs
* Important fixes for storing file attributes and flags
* Support for xz, lzma, ppmd8 and bzip2 decompression in ZIP files
* RAR 5.0 reader


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/06/18 14:32:37

Modified files:
	mail/offlineimap: Makefile distinfo 

Log message:
Update OfflineIMAP to version 7.2.4.

OK kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/06/18 15:04:52

Modified files:
	sys/net80211   : ieee80211_mira.c 

Log message:
Stop probing a Tx rate if transmission failure or too many retries occur.
Fixes stalling TCP connections on wifi in some situations.
testing jmatthew@, jmc@, Bruno Flueckiger, Micah Muer, Matthias Schmidt


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/18 18:04:58

Log message:
    Import games/freesynd, an open source reimplementation of Syndicate game.
    ok kirby@
    
    FreeSynd is a cross-platform, GPLed reimplementation of the engine for
    the classic Bullfrog game, Syndicate.
    
    While freesynd is a game engine and is open source software, Syndicate
    is proprietary software and must be purchased in order for freesynd to
    work.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190618
    
    N ports/games/freesynd/Makefile
    N ports/games/freesynd/distinfo
    N ports/games/freesynd/pkg/README
    N ports/games/freesynd/pkg/PLIST
    N ports/games/freesynd/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/18 18:05:14

Modified files:
	games          : Makefile 

Log message:
+freesynd


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/06/18 19:51:14

Modified files:
	usr.bin/openssl: genrsa.c 

Log message:
Move variables into struct in openssl(1) genrsa

- Move local variables in genrsa_main() to struct genrsa_config
- Leave long lines more than 80, still

ok bcook@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/18 20:02:28

Modified files:
	usr.sbin/rpki-client: cert.c main.c rsync.c 

Log message:
swap comparisons


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/06/18 22:01:21

Modified files:
	emulators/mednafen: Makefile distinfo 
	emulators/mednafen/pkg: PLIST 
Removed files:
	emulators/mednafen/patches: patch-src_sexyal_drivers_openbsd_cpp 

Log message:
Update to mednafen 1.22.2

From Micah Muer <micah@fastmail.net>


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/18 22:21:43

Modified files:
	usr.sbin/rpki-client: as.c cert.c cms.c crl.c extern.h ip.c 
	                      log.c main.c mft.c output-bgpd.c roa.c 
	                      rsync.c tal.c validate.c x509.c 

Log message:
indentation adjustments, in particular near warn statements
ok claudio


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/18 22:48:32

Modified files:
	geo/openbsd-developers: Makefile 
	geo/openbsd-developers/files: OpenBSD 

Log message:
bye Oregon, hello Montana


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/18 23:19:33

Modified files:
	productivity/homebank: Makefile distinfo 
	productivity/homebank/patches: patch-po_POTFILES_in 
	productivity/homebank/pkg: PLIST 

Log message:
Update homebank to 5.2.6

Maintainer timeout


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/18 23:22:32

Modified files:
	devel/cpptest  : Makefile distinfo 

Log message:
Update cpptest to 2.0.0


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 01:14:16

Modified files:
	regress/usr.sbin/rpki-client: Makefile 

Log message:
This currently needs the openssl-1.0.2 package to run. So skip test if
the package is not installed.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 01:14:57

Modified files:
	regress/usr.sbin: Makefile 

Log message:
Add rpki-client


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/19 01:43:28

Modified files:
	textproc/enchant2: Makefile distinfo 

Log message:
Update to enchant2-2.2.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/19 02:00:18

Modified files:
	sys/arch/arm64/arm64: copy.S copystr.S 

Log message:
Add checks to copyin(9), copyout(9), copyinstr(9) and copyoutstr(9)
to make sure that we don't even attempt to access user-provided
addresses that look like kernel space.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 02:15:07

Modified files:
	usr.sbin/bgpd  : rde_update.c 

Log message:
With the community rewrite the output code needs to also check the
communities member of struct prefix to decide if prefixes can be
put together into the same update. This bug results in prefixes
being sent out with the wrong comminities.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/19 02:23:42

Modified files:
	www/odoo       : Makefile 

Log message:
add dependency on devel/py-xlsxwriter for the people export to xlsx (yuck!)


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/06/19 03:18:19

Modified files:
	devel/dune     : Makefile distinfo 
	devel/dune/pkg : PLIST 
	devel/ocaml-parmap: Makefile distinfo 
	devel/ocaml-ocamlbuild: Makefile distinfo 
	x11/lablgtk2   : Makefile distinfo 
	x11/lablgtk2/patches: patch-src_Makefile 
Added files:
	devel/ocaml-parmap/patches: patch-bytearray_ml patch-parmap_ml 

Log message:
Update some OCaml ports in preparation of OCaml 4.08.0

ok avsm@


CVSROOT:	/cvs
Module name:	src
Changes by:	job@cvs.openbsd.org	2019/06/19 03:41:25

Modified files:
	usr.sbin/rpki-client: README.md TODO.md main.c output-bgpd.c 

Log message:
Improve terminology used


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/19 03:50:13

Modified files:
	usr.bin/doas   : doas.1 

Log message:
mention that doas(1) resets the umask(2);
OK tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/19 03:55:55

Modified files:
	usr.bin/doas   : doas.conf.5 

Log message:
more precisely describe what happens to the environment without keepenv;
OK tedu@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 06:33:36

Modified files:
	regress/usr.sbin/rpki-client: Makefile 

Log message:
Adjust file glob so that CVS is not picked up anymore.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/19 06:52:06

Modified files:
	regress/usr.sbin/pkg_add: Makefile 

Log message:
use new REGRESS_EXPECT_FAILURES
okay bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/19 06:53:26

Modified files:
	regress/usr.bin/make: Makefile 

Log message:
use REGRESS_EXPECTED_FAILURES
okay bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	job@cvs.openbsd.org	2019/06/19 07:35:04

Modified files:
	usr.sbin/rpki-client: README.md 

Log message:
rpki-client(1) -> rpki-client(8)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/19 09:29:47

Modified files:
	graphics/simgear/patches: patch-CMakeLists_txt 

Log message:
fix a forgotten reference "version" -> "version.txt"


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/19 09:44:21

Modified files:
	games/flightgear/base: Makefile 
	games/flightgear/base/patches: patch-CMakeLists_txt 

Log message:
llvm8: rename "version" file so it isn't picked up by C++ #include <version>


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 09:47:34

Modified files:
	usr.sbin/rpki-client: extern.h ip.c output-bgpd.c 

Log message:
Instead of the strange ASN.1 encoding of IP addresses with a size in bytes
and a count of how many bits of the last byte are unused switch to a much
more normal prefixlen in bits encoding for internal use. This makes the
code easier to understand. Also switch to inet_ntop() for converting a
struct ip_addr into a string.
OK job@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 09:49:54

Modified files:
	regress/usr.sbin/rpki-client: test-ip.c 

Log message:
Adjust a bit since string representation of IPv6 addrs changed.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 09:50:42

Added files:
	regress/usr.sbin/rpki-client/cer: arin-to-afrinic.cer 

Log message:
Add another test file, this way CERT_IP_RANGE is also tested.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 09:59:51

Modified files:
	usr.sbin/rpki-client: output-bgpd.c 

Log message:
use asprintf, rather than an intermediate buffer
ok claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 10:06:12

Modified files:
	usr.sbin/rpki-client: output-bgpd.c 

Log message:
indent


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 10:19:13

src/etc/rpki

Update of /cvs/src/etc/rpki
In directory cvs.openbsd.org:/usr/src/etc/rpki

Log Message:
Directory /cvs/src/etc/rpki added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 10:21:00

Modified files:
	etc            : Makefile 
	etc/mtree      : 4.4BSD.dist 
Added files:
	etc/rpki       : afrinic.tal apnic.tal lacnic.tal ripe.tal 
Removed files:
	usr.sbin/rpki-client/tals: afrinic.tal apnic.tal lacnic.tal 
	                           ripe.tal 

Log message:
move tals to /etc, where they can be upgraded by a "sysupgrade" if
such a circumstance ever occurs.
ok job


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 10:21:05

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/06/19 10:26:27

Modified files:
	usr.bin/su     : su.c 

Log message:
Fix regression introduced in rev. 1.59 where the wrong shell is
checked in -m mode for non-root.  The intent is that non-root
shouldn't be able to run their own shell as the target user if the
target user has a shell that is not listed in /etc/shells.
This makes the code match the manual once again.  OK schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 10:29:19

Modified files:
	usr.sbin/rpki-client: main.c 

Log message:
repair a cluster of "< 0" error checks for libc / syscalls, which
should be "== -1"


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 10:30:37

Modified files:
	usr.sbin/rpki-client: as.c cert.c cms.c crl.c extern.h io.c ip.c 
	                      log.c main.c mft.c output-bgpd.c roa.c 
	                      rsync.c tal.c validate.c x509.c 

Log message:
use $OpenBSD$ headers


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 10:36:36

Modified files:
	usr.sbin/rpki-client: main.c 

Log message:
Close proc fd used to talk to proc_parser when spaning the rsync process
else the fd leaks into the rsync process.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/19 10:39:02

Modified files:
	usr.sbin/rpki-client: main.c 

Log message:
The main process does not need to toggle the sockets from blocking to
nonblocking just for poll().
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 10:55:51

Modified files:
	sys/sys        : pledge.h 
	sys/kern       : kern_unveil.c vfs_syscalls.c 

Log message:
the pledge STATLIE code is no longer needed, as discussed with beck.
it actually isn't reached...


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/19 11:24:20

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 75.0.3770.100


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/06/19 12:18:22

Modified files:
	bin/ksh        : c_test.c ksh.1 

Log message:
Allow string greater/less than than operators to work with test aka [.
Previously they were only recognized in [[ ... ]] expressions.  This
changes sh/ksh to be consistent with test(1) as well as shells like
bash and dash.  OK jca@ jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/06/19 13:12:45

Modified files:
	games/lgeneral : Makefile distinfo 
	games/lgeneral/pkg: DESCR PLIST 
Removed files:
	games/lgeneral/patches: patch-configure_in 
	                        patch-lgeneral_deploy_h 
	                        patch-lgeneral_gui_c 

Log message:
Update to lgeneral-1.4.3.
Port related changes:
- add license marker
- use CC BY-SA 3.0 licensed data by default
- enable SEPARATE_BUILD
- PERMIT_PACKAGE_CDROM > PERMIT_PACKAGE (rsadowski@)
- typo in DESCR (bcallah@)

OK rsadowski@ and bcallah@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/19 13:26:36

Modified files:
	lib/libXfont2  : Makefile.bsd-wrapper 

Log message:
Disable font server client code. ok mortimer@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/19 13:29:23

Modified files:
	lib/libXcomposite: ChangeLog Makefile.am Makefile.in aclocal.m4 
	                   configure configure.ac 
	lib/libXcomposite/man: Xcomposite.man 
	lib/libXcomposite/src: Xcomposite.c 
Added files:
	lib/libXcomposite: README.md 
Removed files:
	lib/libXcomposite: README 

Log message:
Update to libXcomposite 0.4.5. ok tb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/19 13:30:32

Modified files:
	lib/libXcursor : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac 
	lib/libXcursor/src: library.c 
Added files:
	lib/libXcursor : README.md 
Removed files:
	lib/libXcursor : README 

Log message:
Update to libXcursor 1.2.0. ok tb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/19 13:31:20

Modified files:
	lib/libXdamage : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac 
	lib/libXdamage/src: Makefile.am Makefile.in Xdamage.c 
Added files:
	lib/libXdamage : README.md 
Removed files:
	lib/libXdamage : README 

Log message:
Update to libXdamage 1.1.5. ok tb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/19 13:32:03

xenocara/lib/libXext/m4

Update of /cvs/xenocara/lib/libXext/m4
In directory cvs.openbsd.org:/tmp/cvs-serv7507/m4

Log Message:
Directory /cvs/xenocara/lib/libXext/m4 added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/19 13:33:30

Modified files:
	lib/libXext    : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 config.h.in configure configure.ac 
	lib/libXext/man: DBE.man DPMSSetTimeouts.man Makefile.in 
	lib/libXext/specs: Makefile.in 
	lib/libXext/src: Makefile.in XSecurity.c 
Added files:
	lib/libXext    : README.md 
	lib/libXext/m4 : ax_gcc_builtin.m4 libtool.m4 ltoptions.m4 
	                 ltsugar.m4 ltversion.m4 lt~obsolete.m4 
Removed files:
	lib/libXext    : README 

Log message:
Update to libXext 1.3.4. ok tb@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/19 13:36:36

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/06/19 13:39:14

Modified files:
	print/poppler  : Makefile distinfo 
	print/poppler/patches: patch-poppler_Form_cc 
	                       patch-poppler_XRef_cc 

Log message:
Update to poppler-0.77.0.

While here, drop the no_qt5 and bootstrap pseudo flavors.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/06/19 13:45:59

Modified files:
	devel/kf5/kfilemetadata: Makefile 
	editors/kile   : Makefile 
	editors/calligra: Makefile 
	editors/ktikz  : Makefile 
	editors/texworks: Makefile 
	emulators/gr-lida: Makefile 
	graphics/krita : Makefile 
	textproc/calibre: Makefile 
	x11/kde-applications/okular: Makefile 
	x11/lumina     : Makefile 
	x11/tellico    : Makefile 

Log message:
Explicitely empty flavor is no longer needed for print/poppler.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/19 14:12:44

Modified files:
	usr.bin/ssh    : sftp.1 sftp.c 

Log message:
from tim:
- for reput, it is remote-path which is optional, not local-path
- sync help

from deraadt:
- prefer -R and undocument -r (but add a comment for future editors)

from schwarze:
- prefer -p and undocument -P (as above. the comment was schwarze's too)

more:
- add the -f flag to reput and reget
- sort help (i can;t remember who suggested this originally)

djm and deraadt were ok with earlier versions of this;
tim and schwarze ok


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/06/19 15:07:05

Modified files:
	security/keybase: Makefile distinfo 
	security/keybase/pkg: PLIST 
Added files:
	security/keybase/patches: 
	                          patch-go_kbfs_libkbfs_disk_limits_unix_go 
	                          patch-go_vendor_gopkg_in_src_d_go_git_v4_worktree_bsd_go 

Log message:
Update to keybase 4.1.0 + git-remote-keybase. OK abieber@ (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/06/19 15:44:39

Modified files:
	mail/courier-unicode: Makefile distinfo 

Log message:
bugfix update to 2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/06/19 15:59:01

Modified files:
	mail/courier-imap: Makefile distinfo 
	mail/courier-imap/patches: patch-Makefile_in 
	                           patch-libs_maildir_Makefile_in 
	                           patch-libs_maildir_configure 
	mail/courier-imap/pkg: PLIST-main PLIST-pop3 
Removed files:
	mail/courier-imap/patches: patch-libs_imap_imapd-ssl_dist_in 
	                           patch-libs_imap_pop3d-ssl_dist_in 
	                           patch-libs_tcpd_configure_ac 

Log message:
Major update to 5.0.7

Starting from courier-imap-5.x full utf8 support is enabled,
if you are using imap folders with utf8 names you should check and/or
convert them using maildirmake(1) --checkutf8 and --convutf8 options.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/06/19 16:06:01

Modified files:
	mail/maildrop  : Makefile distinfo 

Log message:
UTF-8 bugfix update to 3.0.0


CVSROOT:	/cvs
Module name:	www
Changes by:	giovanni@cvs.openbsd.org	2019/06/19 16:23:20

Modified files:
	faq            : current.html 

Log message:
Heads-up about courier-imap utf-8 update


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/19 18:41:18

Modified files:
	usr.bin/su     : su.c 

Log message:
auth_approval() returns 0 on failure, so don't test for <= 0
(error has no effect. just striving for an accurate following of contract)
ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/19 22:31:33

Modified files:
	sys/kern       : subr_log.c 

Log message:
Work around locking issues in logwakeup(). Instead of actually waking up
waiters, just set a flag in logwakeup(). The flag is later noted through
periodic polling. This lets the wakeup code run with sufficient locking.

logwakeup() is a very tricky place to take locks because the function
can be called in many different contexts. By not requiring locks in
the routine helps to keep printf(9) as usable as possible.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 00:51:36

Modified files:
	usr.bin/tmux   : cfg.c format.c server-client.c server.c 

Log message:
Expand command formats in %if and move the config file loading later (to
when the first client has identified) so all the client formats are
available, fixes problems reported by Thomas Sattler.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 01:10:56

Modified files:
	usr.bin/tmux   : arguments.c cmd-show-options.c tmux.1 

Log message:
Add a -A flag to show-options to show parent options as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/20 01:28:18

Modified files:
	usr.sbin/ntpd  : client.c ntp.c ntp_dns.c ntpd.h 

Log message:
Do a quick DNS probe to decide to stay in the forground and attempt
an (auto) settime or give up. 15s timeout is still in effect. ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 01:41:29

Modified files:
	usr.bin/tmux   : cmd-set-option.c cmd-show-options.c options.c 
	                 tmux.h 

Log message:
Add a helper function to work out option table from name.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/20 02:26:13

Modified files:
	usr.sbin/ntpd  : ntpd.8 

Log message:
Tell a bit about automatic mode; ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 06:00:00

Modified files:
	usr.bin/tmux   : cmd-break-pane.c cmd-join-pane.c 
	                 cmd-select-pane.c cmd-set-option.c 
	                 cmd-show-options.c cmd-swap-pane.c format.c 
	                 input.c options-table.c options.c server-fn.c 
	                 tmux.1 tmux.c tmux.h tty.c window.c 

Log message:
Add a per-pane option set. Pane options inherit from window options (so
there should be no change to existing behaviour) and are set and shown
with set-option -p and show-options -p.

Change remain-on-exit and window-style/window-active-style to be pane
options (some others will be changed later).

This makes select-pane -P and -g unnecessary so no longer document them
(they still work) and no longer document set-window-option and
show-window-options in favour of set-option -w and show-options -w.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/20 06:20:20

Modified files:
	usr.sbin/ntpd  : ntpd.8 

Log message:
tweaks with help from jmc@


CVSROOT:	/cvs
Module name:	www
Changes by:	otto@cvs.openbsd.org	2019/06/20 07:08:17

Modified files:
	openntpd       : features.html 

Log message:
Mention constraints and recent settime work


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/20 07:18:19

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_rib.c 

Log message:
Change nexthop_update to run the list walk over all prefixes to run
asynchronously and therefor other tasks can make progress at the same
time. Additionally prefixes belonging to a RIB which does not run the
the decision process are no longer linked into the nexthop list.
This replaces the early return in prefix_updateall() and reduces the
time spent in nexthop_update().
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/20 07:38:21

Modified files:
	usr.sbin/bgpd  : rde.h rde_rib.c 

Log message:
prefix_updateall() is only used internally, make it a static function.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 07:39:18

Modified files:
	usr.bin/tmux   : cmd-show-options.c 

Log message:
Still need to walk the options tree for user options.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 07:40:22

Modified files:
	usr.bin/tmux   : input.c options-table.c tmux.1 window.c 

Log message:
allow-rename and alternate-screen can be pane options.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/20 07:43:10

Modified files:
	usr.sbin/rpki-client: ip.c 

Log message:
If the ASN1_BIT_STRING has a length of 0 the unused bit count must be 0.
Check this and also adjust the upper limit check to >= 8 since only the
values 0 - 7 are valid.
Found by jsg@ with afl. OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/20 07:50:03

Modified files:
	usr.sbin/rpki-client: cert.c 

Log message:
Rewrite some if () { } else if () {} chains into multiple independent
if () blocks. Improves readability in my opinion since I skip some
branches to fast when reading.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/20 07:59:39

Modified files:
	sys/arch/octeon/octeon: machdep.c 

Log message:
Fix misleading code. The kernel keeps using the original boot
descriptors even after bootstrap.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/20 08:05:34

Modified files:
	security/py-bcrypt: Makefile distinfo 

Log message:
update to py-bcrypt 3.1.7, basically a noop for us


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/20 08:19:25

Modified files:
	lib/libc/sys   : connect.2 
	lib/libc/net   : sockatmark.3 

Log message:
sockatmark(3), recv(2), getsockopt(2), and connect(2) return specifically
-1 to mark failure, not arbitrary values < 0.  I believe manual pages
should follow the described contract precisely and accurately.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/20 08:34:21

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190612


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/20 08:44:20

Modified files:
	net/isc-bind   : Makefile distinfo 

Log message:
update to BIND 9.11.8

CVE-2019-6471:  A race condition when discarding malformed
packets can cause BIND to exit with an assertion failure
https://kb.isc.org/docs/cve-2019-6471


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/20 08:44:22

Modified files:
	net/isc-bind   : Tag: OPENBSD_6_5 Makefile distinfo 
	net/isc-bind/patches: Tag: OPENBSD_6_5 
	                      patch-lib_isc_unix_socket_c 

Log message:
update to BIND 9.11.8

CVE-2019-6471:  A race condition when discarding malformed
packets can cause BIND to exit with an assertion failure
https://kb.isc.org/docs/cve-2019-6471


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/06/20 08:55:22

Modified files:
	sys/kern       : init_main.c subr_kubsan.c 

Log message:
Undefined behavior (UB) can potentially be present anywhere in the
kernel. kubsan reports findings using printf() and assuming that calling
printf() is safe in all contexts can be problematic. Instead, defer
reporting of findings to the systq task queue.

Storage for findings is allocated early in the boot process in order to
catch potential UB during boot. The same findings are reported once the
task queue subsystem has been initialized.

Feedback from kettenis@ and ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/20 08:59:57

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 67.0.3.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-18/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/20 09:01:26

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Update to firefox-esr 60.7.1.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-18/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/20 09:05:15

Modified files:
	www/mozilla-firefox: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: update to firefox 67.0.3.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-18/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/20 09:05:43

Modified files:
	www/firefox-esr: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: update to firefox-esr 60.7.1.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-18/


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/20 09:26:49

Modified files:
	usr.sbin/rpki-client: mft.c tal.c x509.c 

Log message:
Don't use assert to validate user input. assert() is not for that, instead
check and error out like it is done one other parsing issues.
Agreed by deraadt@
Fixes another afl "crash" found by jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/20 09:29:01

Modified files:
	usr.sbin/rpki-client: mft.c x509.c 

Log message:
Those changes should not have been in last commit. Revert them for now.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 09:40:14

Modified files:
	usr.bin/tmux   : regsub.c 

Log message:
Fix how regex substitution works with empty matches.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/20 09:47:45

Modified files:
	lib/libtls/man : tls_read.3 

Log message:
tls_read() & tls_write() return 4 possible values: TLS_WANT_POLLOUT,
TLS_WANT_POLLIN, -1, or 0.  After handling the first two, check for -1
rather than vaguely "< 0".
ok jsing


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/20 10:09:15

Modified files:
	usr.sbin/rpki-client: x509.c 

Log message:
If x509_get_ski_aki() fails because one of the ski or aki objects are
missing, free the other object but also set the pointer back to NULL so
that the caller does not do a double free().
Found with afl by jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/20 10:15:22

Modified files:
	lib/libelf     : elf_begin.3 elf_memory.3 

Log message:
open() and fstat() return precisely -1 on error, not a vague value < 0.
Follow the contract.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 12:13:04

Modified files:
	usr.bin/tmux   : options.c 

Log message:
FIx return of options_scope_from_name on error.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 13:29:38

Modified files:
	usr.bin/tmux   : server-client.c 

Log message:
Need to always check focus even if not current window.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/20 13:32:16

Modified files:
	usr.sbin/bgpd  : rde_rib.c 

Log message:
prefix_add() is only called by path_update() and path_update already
knows if the prefix exists or not (by calling prefix_get()). So doing
the same check again in prefix_add() is silly and actually rather
expensive with lots of peers.
OK phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/20 14:31:04

Modified files:
	usr.bin/tmux   : cmd-find-window.c tmux.1 

Log message:
Add -r to find-window for regex instead of fnmatch.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/20 14:53:56

Modified files:
	libexec/reorder_kernel: reorder_kernel.sh 

Log message:
after installing new kernel, do a sync(8) to encourage lazy buffers to
make it to disk (discussion with tedu)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/20 15:03:03

Modified files:
	devel/meson    : Makefile distinfo meson.port.mk 
	devel/meson/patches: patch-mesonbuild_build_py 
	devel/meson/pkg: PLIST 
Removed files:
	devel/meson/patches: patch-mesonbuild_compilers_c_py 
	                     patch-mesonbuild_compilers_compilers_py 
	                     patch-mesonbuild_modules_cmake_py 
	                     patch-run_unittests_py 

Log message:
Update to meson-0.51.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	bentley@cvs.openbsd.org	2019/06/20 20:28:34

Modified files:
	share/man/man7 : operator.7 

Log message:
Don't try to fake a horizontal rule with a bunch of hyphens.

ok jmc@ schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/20 21:19:59

Modified files:
	usr.bin/ssh    : auth2-pubkey.c 

Log message:
print the correct AuthorizedPrincipalsCommand rather than an
uninitialised variable; spotted by dtucker@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/20 21:43:49

Added files:
	x11/gnome/builder/patches: patch-src_plugins_clang_meson_build 

Log message:
Unbreak if cmake(1) is installed.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/20 22:21:05

Modified files:
	usr.bin/ssh    : authfd.c authfd.h krl.c krl.h ssh-agent.c 
	                 ssh-keygen.c sshconnect.c sshconnect.h sshd.c 
	                 sshkey.c sshkey.h 

Log message:
Add protection for private keys at rest in RAM against speculation
and memory sidechannel attacks like Spectre, Meltdown, Rowhammer and
Rambleed. This change encrypts private keys when they are not in use
with a symmetic key that is derived from a relatively large "prekey"
consisting of random data (currently 16KB).

Attackers must recover the entire prekey with high accuracy before
they can attempt to decrypt the shielded private key, but the current
generation of attacks have bit error rates that, when applied
cumulatively to the entire prekey, make this unlikely.

Implementation-wise, keys are encrypted "shielded" when loaded and then
automatically and transparently unshielded when used for signatures or
when being saved/serialised.

Hopefully we can remove this in a few years time when computer
architecture has become less unsafe.

been in snaps for a bit already; thanks deraadt@

ok dtucker@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/20 22:21:45

Modified files:
	regress/usr.bin/ssh/unittests/sshkey: test_sshkey.c 

Log message:
adapt for key shielding API changes (const removal)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/21 00:24:44

Modified files:
	www/py-urllib3 : Makefile distinfo 
	www/py-urllib3/pkg: PLIST 

Log message:
Update to 1.24.3, which contains security fix for CVE-2019-9740

CVE pointed out by feinerer@

OK feinerer@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/21 00:26:36

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add www/py-urllib3 to the CVE list

pointed out by feinerer@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/21 00:27:49

Modified files:
	textproc/py-elasticsearch: Makefile 

Log message:
relax the dependency to just updated www/py-urllib3, must have been a leftover
from older versions


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/21 01:11:01

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Man page fixes from lacygoill at lacygoill dot me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/21 01:43:46

Modified files:
	devel/py-voluptuous: Makefile distinfo 

Log message:
update to 0.11.5

elasticsearch-curator still seems to be happy with it


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/21 02:12:35

Modified files:
	sys/arch/sparc64/dev: led.c 

Log message:
Use timeout_add_msec(9)

The current code wants to wait 1/100 [s] = 10 [ms] but at least one tick,
that's exactly what the millisecond version provides.

OK cheloha mpi claudio


CVSROOT:	/cvs
Module name:	www
Changes by:	bentley@cvs.openbsd.org	2019/06/21 02:22:16

Modified files:
	faq            : faq17.html 

Log message:
Missing period.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/21 03:39:49

Modified files:
	share/man/man9 : Makefile uvm.9 
	sys/kern       : exec_subr.c init_main.c kern_descrip.c 
	                 kern_exec.c kern_exit.c kern_fork.c 
	                 kern_resource.c kern_sig.c sys_generic.c 
	                 vfs_vnops.c 
	sys/sys        : proc.h resourcevar.h sysctl.h 
	sys/uvm        : uvm_extern.h uvm_glue.c uvm_mmap.c uvm_unix.c 
Added files:
	share/man/man9 : lim_cur.9 

Log message:
Make resource limit access MP-safe. So far, the copy-on-write sharing
of resource limit structs has been done between processes. By applying
copy-on-write also between threads, threads can read rlimits in
a nearly lock-free manner.

Inspired by code in DragonFly BSD and FreeBSD.

OK mpi@, agreement from jmatthew@ and anton@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/21 03:42:47

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/06/21 04:27:52

Modified files:
	net/powerdns   : Makefile distinfo 

Log message:
Update to PowerDNS server 4.1.10


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/21 04:49:18

Modified files:
	bin/ksh        : ksh.1 

Log message:
zap trailing whitespace;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/21 05:28:18

Modified files:
	devel/leatherman: Makefile distinfo 

Log message:
Update to 1.7.0


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/21 06:56:46

Modified files:
	share/man/man9 : lim_cur.9 

Log message:
Improve wording

Suggested by jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/21 09:34:07

Modified files:
	sys/arch/alpha/conf: Makefile.alpha 
	sys/arch/amd64/conf: Makefile.amd64 
	sys/arch/arm64/conf: Makefile.arm64 
	sys/arch/armv7/conf: Makefile.armv7 
	sys/arch/hppa/conf: Makefile.hppa 
	sys/arch/i386/conf: Makefile.i386 
	sys/arch/landisk/conf: Makefile.landisk 
	sys/arch/loongson/conf: Makefile.loongson 
	sys/arch/luna88k/conf: Makefile.luna88k 
	sys/arch/macppc/conf: Makefile.macppc 
	sys/arch/octeon/conf: Makefile.octeon 
	sys/arch/sgi/conf: Makefile.sgi 
	sys/arch/sparc64/conf: Makefile.sparc64 

Log message:
Further improve the filesystem stability of kernel installation by KARL.
Use install -F to instead of cp, for fsync(2).  Coupled with the new
sync(8) in the reorder_kernel script, the window for a incomplete /bsd
file on-disk due to a crash has now shrunk substantially.
Discussion with kettenis, millert and tedu


CVSROOT:	/cvs
Module name:	ports
Changes by:	kevlo@cvs.openbsd.org	2019/06/21 10:34:55

Log message:
    Import fcitx-m17n, a m17n wrapper for fcitx.
    
    ok kn@
    
    Status:
    
    Vendor Tag:	kevlo
    Release Tags:	kevlo_20190622
    
    N ports/inputmethods/fcitx-m17n/Makefile
    N ports/inputmethods/fcitx-m17n/distinfo
    N ports/inputmethods/fcitx-m17n/pkg/DESCR
    N ports/inputmethods/fcitx-m17n/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kevlo@cvs.openbsd.org	2019/06/21 10:35:44

Modified files:
	inputmethods   : Makefile 

Log message:
+fcitx-m17n


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/21 10:39:41

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 67.0.4.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-19/

Same diff sent by Henry Jensen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/21 10:40:36

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Update to firefox-esr 60.7.2.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-19/

Same diff sent by Henry Jensen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/21 10:41:48

Modified files:
	mail/mozilla-thunderbird: Makefile distinfo 
	mail/thunderbird-i18n: Makefile.inc distinfo 

Log message:
Update to thunderbird 60.7.2.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-20/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/21 10:45:41

Modified files:
	www/firefox-esr: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: update to firefox-esr 60.7.2.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-19/

6.5-stable packages being built..


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/21 10:46:04

Modified files:
	www/mozilla-firefox: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: update to firefox 67.0.4.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-19/

6.5-stable packages being built..


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/21 10:50:26

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Try harder to have a complete /bsd.upgrade on disk.
Adapted from recent changes to the KARL infrastructure.
OK deraadt, sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/06/21 11:00:58

Modified files:
	lib/libc/arch/sparc64/fpu: fpu_explode.c fpu_qp.c 

Log message:
Fix conversions to long double on sparc64

Bug exposed by erratic sqlite3 behavior used in ports/devel/proj,
as pointed out by landry@.  Richard Hipps (SQLite) pointed at the
culprit (_Qp_div), many thanks.

Adapted from FreeBSD revision 146673 by Stephen Paskaluk and
stefanf@FreeBSD.  FreeBSD commit message:

"""
Fix long (and long long) to long double, unsigned to long double and
unsigned long (and unsigned long long) to long double conversions.
- Add a parameter that specifies the position of the sign bit to the _QP_TTOQ
macro, previously it always looked at bit 31.  Pass a negative number to
disable sign inspection for unsigned types.  This fixes _Qp_xtoq(),
_Qp_uitoq() and _Qp_uxtoq().
- In the functions __fpu_itof() and __fpu_xtof(), look at the sign
bit to decide whether we're doing a conversion from an unsigned type. If so, don't
negate the mantissa if the integer exceeds the biggest signed number.
"""

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/21 11:02:27

Modified files:
	usr.bin/doas   : doas.1 doas.conf.5 

Log message:
tweak wording a bit. always talk about creating a new environment.
also document DOAS_USER.
ok deraadt jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/21 11:11:43

Modified files:
	sys/net        : if_spppsubr.c route.c route.h rtable.c rtable.h 
	                 rtsock.c 
	sys/netinet    : ip_mroute.c 
	sys/netinet6   : ip6_mroute.c nd6.h nd6_rtr.c 

Log message:
Prevent recursions by not deleting entries inside rtable_walk(9).

rtable_walk(9) now passes a routing entry back to the caller when
a non zero value is returned and if it asked for it.
This allows us to call rtdeletemsg()/rtrequest_delete() from the
caller without creating a recursion because of rtflushclone().

Multicast code hasn't been adapted and is still possibly creating
recursions.  However multicast route entries aren't cloned so if
a recursion exists it isn't because of rtflushclone().

Fix stack exhaustion triggered by the use of "-msave-args".

Issue reported by D��niel L��vai on bugs@ confirmed by and ok bluhm@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/21 14:46:36

Log message:
    Import cpputest 3.8; Tweaks and OK kn@
    
    Comment:
    unit testing and mocking framework for C/C++
    
    Description:
    CppUTest is a C /C++ based unit xUnit test framework for unit testing and for
    test-driving your code. It is written in C++ but is used in C and C++ projects
    and frequently used in embedded systems but it works for any C/C++ project.
    
    Maintainer: The OpenBSD ports mailing-list <ports@openbsd.org>
    
    WWW: https://cpputest.github.io
    
    Status:
    
    Vendor Tag:	rsadowski
    Release Tags:	rsadowski_20190621
    
    N ports/devel/cpputest/Makefile
    N ports/devel/cpputest/distinfo
    N ports/devel/cpputest/pkg/DESCR
    N ports/devel/cpputest/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/21 14:49:25

Modified files:
	devel          : Makefile 

Log message:
+cpputest


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2019/06/21 15:05:36

Modified files:
	databases/postgresql: Makefile distinfo 
	databases/postgresql/pkg: PLIST-docs 

Log message:
Upgrade to 11.4.
ok jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2019/06/21 15:09:26

Modified files:
	databases/postgresql: Tag: OPENBSD_6_5 Makefile distinfo 
	databases/postgresql/pkg: Tag: OPENBSD_6_5 PLIST-docs 

Log message:
Security update to 11.4
ok jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/21 16:44:14

Modified files:
	graphics/blender: Makefile 
Added files:
	graphics/blender/patches: 
	                          patch-source_blender_python_intern_bpy_rna_c 

Log message:
Backport python3.7 upstream fix and switch back to default python3 version

ok danj@ pascal@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/21 17:14:05

Modified files:
	infrastructure/lib/DPB: Job.pm 
	infrastructure/lib/DPB/Job: Fetch.pm Port.pm 

Log message:
be more specific in the transient KILLED (stuck) messages.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/21 23:36:40

Modified files:
	usr.sbin/bgpd  : session.c bgpd.h parse.y rde.c 

Log message:
Adjust peer id allocation a bit. Use defines for the various special
values and intervals. Mostly the same with the exception that peerself
is now id 1 and the first peer has id 2 -- was 0 and 1 before.
OK kn@, benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/21 23:44:05

Modified files:
	usr.sbin/bgpd  : mrt.c rde.c rde.h rde_filter.c rde_rib.c 
	                 rde_update.c 

Log message:
Add a direct pointer from struct prefix to struct pt_entry.
This changes makes it possible to not use the struct rib_entry pointer
which will be used to optimize the Adj-RIB-Out.
Also adjust pt_ref() and pt_unref() so that the code can be written
a bit more compact. Also prefix_cmp() no longer needs to go via
rib_compare() and calls pt_prefix_cmp() directly.
OK phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/06/22 00:48:25

Modified files:
	sys/kern       : sys_generic.c sys_pipe.c vfs_vnops.c 
	sys/sys        : file.h 

Log message:
push the KERNEL_LOCK deeper on read(2) and write(2)

unlocks read(2) and write(2) syscalls families, and push the KERNEL_LOCK
deeper in the code path. KERNEL_LOCK is managed per file type in fileops
handlers (fo_read, fo_write, and fo_close). read(2) and write(2) on
socket are KERNEL_LOCK-free.

initial work from mpi@ and ians@

ok mpi@ kettenis@ visa@ ians@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/06/22 00:49:14

Modified files:
	sys/kern       : syscalls.master 

Log message:
push the KERNEL_LOCK deeper on read(2) and write(2)

unlocks read(2) and write(2) syscalls families, and push the KERNEL_LOCK
deeper in the code path. KERNEL_LOCK is managed per file type in fileops
handlers (fo_read, fo_write, and fo_close). read(2) and write(2) on
socket are KERNEL_LOCK-free.

initial work from mpi@ and ians@

ok mpi@ kettenis@ visa@ ians@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/06/22 00:51:46

Modified files:
	sys/sys        : syscall.h syscallargs.h 
	sys/kern       : init_sysent.c syscalls.c 

Log message:
push the KERNEL_LOCK deeper on read(2) and write(2)

unlocks read(2) and write(2) syscalls families, and push the KERNEL_LOCK
deeper in the code path. KERNEL_LOCK is managed per file type in fileops
handlers (fo_read, fo_write, and fo_close). read(2) and write(2) on
socket are KERNEL_LOCK-free.

initial work from mpi@ and ians@

ok mpi@ kettenis@ visa@ ians@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/06/22 01:07:58

Modified files:
	devel/py-llvmlite: Makefile distinfo 

Log message:
update llvmlite to 0.29.0.
ok lteo@.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/22 02:26:26

Modified files:
	regress/usr.sbin/bgpd/integrationtests: Makefile 
Added files:
	regress/usr.sbin/bgpd/integrationtests: bgpd.mrt.conf 
	                                        mrt-table-mp.ok 
	                                        mrt-table-v2.ok 
	                                        mrt-table.ok mrt.sh 

Log message:
Add a basic test to check that mrt table dumps work.
Hint: they don't right now


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/06/22 02:36:56

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Set if_link_state based on the PAOS port register, and update it when
we get a port change event.

ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:06:22

Modified files:
	x11/gnome/sushi: Makefile distinfo 

Log message:
Update to sushi-3.32.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/22 04:14:30

Modified files:
	sys/net        : if_spppsubr.c 

Log message:
Remove duplicate initialisation

OK claudio semarie


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/22 04:16:14

Modified files:
	sys/net        : if_spppsubr.c 

Log message:
Revert accidentially committed hunk from previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:21:22

Modified files:
	graphics/graphene: Makefile distinfo 
Removed files:
	graphics/graphene/patches: patch-meson_build 

Log message:
Update to graphene-1.9.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/22 04:21:57

Modified files:
	usr.bin/mg     : def.h file.c fileio.c 

Log message:
This diff moves the check for a newline at the end of a buffer (when
saving it) earlier. This means data doesn't 'disappear' from the file
on disk while the user answers 'yes' or 'no'.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:25:51

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.32.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:35:48

Modified files:
	x11/gnome/settings-daemon: Makefile distinfo 
	x11/gnome/settings-daemon/patches: 
	                                   patch-plugins_media-keys_gsd-media-keys-manager_c 
	                                   patch-plugins_power_gsd-power-manager_c 
Removed files:
	x11/gnome/settings-daemon/patches: 
	                                   patch-plugins_color_gcm-self-test_c 
	                                   patch-plugins_color_gsd-night-light-common_c 
	                                   patch-plugins_color_gsd-night-light_c 
	                                   patch-plugins_common_gsd-shell-helper_c 
	                                   patch-plugins_common_gsd-shell-helper_h 
	                                   patch-plugins_media-keys_mpris-controller_c 
	                                   patch-plugins_power_gsd-backlight_c 
	                                   patch-plugins_power_gsd-backlight_h 

Log message:
Update to gnome-settings-daemon-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:39:51

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-dnsimple: Makefile distinfo 
	sysutils/terraform/provider-heroku: Makefile distinfo 
	sysutils/terraform/provider-vault: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:44:50

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.662.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:49:46

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.174.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:50:02

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.174.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:50:42

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.184.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 04:57:17

Modified files:
	sysutils/exoscale-cli: Makefile distinfo 

Log message:
Update to exoscale-cli-1.4.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 05:01:11

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-251.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 05:12:43

Modified files:
	mail/evolution : Makefile distinfo 

Log message:
Update to evolution-3.32.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/06/22 06:16:56

Log message:
    Import woboq_codebrowser 2.1pl0; tweaks from rsadowski@ and kn@; OK kn@
    
    Comment:
    generator for the woboq code browser
    
    Description:
    The generator generates static HTML pages that can be served by any web
    server. It can be run automatically manually or with a hook on your
    version control or CI system.
    
    It functions as the source code indexer (using libclang). In contrast to
    other solutions (LXR, OpenGrok) it semantically analyzes the code as a
    compile step.
    
    The generation is a two-step process: First is a compile step that
    creates a .h.html and .cpp.html (and some other) files from the syntax
    tree (AST) of the source source. The second step generates an index.html
    for each directory.
    
    A server-side database or CGI script are currently not needed, so it is
    easy to host. Your normal HTML5 web browser is the source code navigator
    (from your local machine or your network).
    
    Please note that the license does not allow you to use the code browser
    to assist the development of your commercial software. If you intent to
    do so, consider purchasing a commercial licence.
    
    Homepage: https://woboq.com/codebrowser.html
    
    Status:
    
    Vendor Tag:	semarie
    Release Tags:	semarie_20190622
    
    N ports/devel/woboq_codebrowser/Makefile
    N ports/devel/woboq_codebrowser/distinfo
    N ports/devel/woboq_codebrowser/pkg/PLIST
    N ports/devel/woboq_codebrowser/pkg/DESCR
    N ports/devel/woboq_codebrowser/pkg/README
    N ports/devel/woboq_codebrowser/patches/patch-generator_main_cpp
    N ports/devel/woboq_codebrowser/patches/patch-indexgenerator_indexer_cpp
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/06/22 06:18:50

Modified files:
	devel          : Makefile 

Log message:
+ woboq_codebrowser


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/22 07:09:53

Modified files:
	usr.bin/mg     : log.c log.h 

Log message:
Log window pointer and other window data to a file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 08:08:25

Modified files:
	lang/vala      : Makefile distinfo 

Log message:
Update to vala-0.44.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 08:11:11

Modified files:
	x11/gtk+3      : Makefile distinfo 
	x11/gtk+3/patches: patch-gtk_gtksettings_c 

Log message:
Update to gtk+3-3.24.9.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/22 09:03:43

Modified files:
	usr.bin/mg     : file.c 

Log message:
Offering to add a new line at the end of the buffer didn't consider if
the user pressed C-g. Now it does.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/22 09:19:31

Log message:
    import glslang for Vulkan API support; ok jsg@
    
    DESCR:
    An OpenGL and OpenGL ES shader front end and validator.
    
    There are several components:
    
    A GLSL/ESSL front-end for reference validation and translation of
    GLSL/ESSL into an AST.
    
    An HLSL front-end for translation of a broad generic HLL into the AST.
    
    A SPIR-V back end for translating the AST to SPIR-V.
    
    A standalone wrapper, glslangValidator, that can be used as a
    command-line tool for the above.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190622
    
    N ports/graphics/glslang/Makefile
    N ports/graphics/glslang/distinfo
    N ports/graphics/glslang/pkg/DESCR
    N ports/graphics/glslang/pkg/PLIST
    N ports/graphics/glslang/patches/patch-Test_runtests
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/22 09:22:27

Log message:
    import spirv-headers for Vulkan API support; ok jsg@
    
    DESCR:
    Machine-readable files for the SPIR-V Registry. This includes:
    
    * Header files for various languages.
    * JSON files describing the grammar for the SPIR-V core instruction set
    and the extended instruction sets.
    * The XML registry file.
    * A tool to build the headers from the JSON grammar.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190622
    
    N ports/graphics/spirv-headers/Makefile
    N ports/graphics/spirv-headers/distinfo
    N ports/graphics/spirv-headers/pkg/DESCR
    N ports/graphics/spirv-headers/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/22 09:24:31

Log message:
    import spirv-tools for Vulkan API support; ok jsg@
    
    DESCR:
    The SPIR-V Tools project provides an API and commands for processing
    SPIR-V modules.
    
    The project includes an assembler, binary module parser, disassembler,
    validator, and optimizer for SPIR-V. Except for the optimizer, all are
    based on a common static library. The library contains all of the
    implementation details, and is used in the standalone tools whilst also
    enabling integration into other code bases directly. The optimizer
    implementation resides in its own library, which depends on the core
    library.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190622
    
    N ports/graphics/spirv-tools/Makefile
    N ports/graphics/spirv-tools/distinfo
    N ports/graphics/spirv-tools/patches/patch-CMakeLists_txt
    N ports/graphics/spirv-tools/patches/patch-external_CMakeLists_txt
    N ports/graphics/spirv-tools/patches/patch-source_print_cpp
    N ports/graphics/spirv-tools/pkg/DESCR
    N ports/graphics/spirv-tools/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/22 09:26:43

Log message:
    import vulkan-headers for Vulkan API support; ok jsg@
    
    DESCR:
    Vulkan header files and API registry
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190622
    
    N ports/graphics/vulkan-headers/Makefile
    N ports/graphics/vulkan-headers/distinfo
    N ports/graphics/vulkan-headers/pkg/DESCR
    N ports/graphics/vulkan-headers/pkg/PLIST
    N ports/graphics/vulkan-headers/patches/patch-registry_cgenerator_py
    N ports/graphics/vulkan-headers/patches/patch-registry_conventions_py
    N ports/graphics/vulkan-headers/patches/patch-registry_generator_py
    N ports/graphics/vulkan-headers/patches/patch-registry_genvk_py
    N ports/graphics/vulkan-headers/patches/patch-registry_reg_py
    N ports/graphics/vulkan-headers/patches/patch-registry_vkconventions_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/22 09:28:42

Log message:
    import vulkan-loader for Vulkan API support; ok jsg@
    
    DESCR:
    Vulkan is an explicit API, enabling direct control over how GPUs
    actually work.  As such, Vulkan supports systems that have multiple
    GPUs, each running with a different driver, or ICD (Installable Client
    Driver).  Vulkan also supports multiple global contexts (instances, in
    Vulkan terminology).  The ICD loader is a library that is placed between
    a Vulkan application and any number of Vulkan drivers, in order to
    support multiple drivers and the instance-level functionality that
    works across these drivers.  Additionally, the loader manages inserting
    Vulkan layer libraries, such as validation layers, between an
    application and the drivers.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190622
    
    N ports/graphics/vulkan-loader/Makefile
    N ports/graphics/vulkan-loader/distinfo
    N ports/graphics/vulkan-loader/patches/patch-CMakeLists_txt
    N ports/graphics/vulkan-loader/patches/patch-loader_CMakeLists_txt
    N ports/graphics/vulkan-loader/patches/patch-loader_loader_c
    N ports/graphics/vulkan-loader/patches/patch-loader_vk_loader_platform_h
    N ports/graphics/vulkan-loader/patches/patch-loader_trampoline_c
    N ports/graphics/vulkan-loader/pkg/DESCR
    N ports/graphics/vulkan-loader/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/22 09:30:16

Log message:
    import vulkan-tools for Vulkan API support; ok jsg@
    
    DESCR:
    Vulkan tools and utilities that can assist development by enabling
    developers to verify their applications correct use of the Vulkan API.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190622
    
    N ports/graphics/vulkan-tools/Makefile
    N ports/graphics/vulkan-tools/distinfo
    N ports/graphics/vulkan-tools/patches/patch-cube_cube_cpp
    N ports/graphics/vulkan-tools/patches/patch-icd_CMakeLists_txt
    N ports/graphics/vulkan-tools/pkg/DESCR
    N ports/graphics/vulkan-tools/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/22 09:32:36

Log message:
    import vulkan-validation-layers for Vulkan API support; ok jsg@
    
    DESCR:
    Vulkan is an Explicit API, enabling direct control over how GPUs
    actually work. By design, minimal error checking is done inside a Vulkan
    driver. Applications have full control and responsibility for correct
    operation. Any errors in how Vulkan is used can result in a crash. This
    project provides Vulkan validation layers that can be enabled to assist
    development by enabling developers to verify their applications correct
    use of the Vulkan API.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190622
    
    N ports/graphics/vulkan-validation-layers/Makefile
    N ports/graphics/vulkan-validation-layers/distinfo
    N ports/graphics/vulkan-validation-layers/patches/patch-CMakeLists_txt
    N ports/graphics/vulkan-validation-layers/patches/patch-layers_vk_loader_platform_h
    N ports/graphics/vulkan-validation-layers/patches/patch-layers_vk_mem_alloc_h
    N ports/graphics/vulkan-validation-layers/patches/patch-layers_CMakeLists_txt
    N ports/graphics/vulkan-validation-layers/pkg/DESCR
    N ports/graphics/vulkan-validation-layers/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/22 09:38:15

Modified files:
	usr.bin/mg     : buffer.c def.h extend.c key.h log.c main.c 
	                 util.c 

Log message:
Tidy up the comments:
1. two spelling mistakes.
2. change references to keystrokes, same as man page (UP-low).
3. update a filename reference to reality.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/22 09:40:43

Modified files:
	graphics       : Makefile 

Log message:
+{glslang,spirv-headers,spirv-tools,vulkan-headers,vulkan-loader,vulkan-tools,vulkan-validation-layers}


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/06/22 09:51:54

Modified files:
	regress/usr.bin/openssl: appstest.sh 

Log message:
Add more option tests to ca in appstest.sh


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 10:48:25

Modified files:
	graphics/glslang: Makefile 

Log message:
PERMIT_PACKAGE_CDROM -> PERMIT_PACKAGE
Please try not to add more PERMIT_PACKAGE_CDROM when importing ports.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 10:51:06

Modified files:
	graphics/spirv-headers: Makefile 
	graphics/spirv-tools: Makefile 
	graphics/vulkan-headers: Makefile 
	graphics/vulkan-loader: Makefile 
	graphics/vulkan-tools: Makefile 
	graphics/vulkan-validation-layers: Makefile 

Log message:
PERMIT_PACKAGE_CDROM -> PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 11:02:24

Modified files:
	graphics/vulkan-loader: Makefile 
	graphics/vulkan-loader/patches: patch-CMakeLists_txt 

Log message:
Don't hardcode /usr/local, /usr/X11R6 and /etc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/22 11:12:27

Modified files:
	graphics/vulkan-headers: Makefile 
	graphics/vulkan-headers/pkg: DESCR 

Log message:
Missing full stop.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/22 12:23:34

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/lam      : Makefile distinfo 
	devel/lam/patches: patch-config_cxx_find_template_repository_m4 
	                   patch-config_cxx_have_bool_m4 
	                   patch-config_cxx_have_nothrow_new_m4 
	                   patch-config_cxx_have_true_false_m4 
	                   patch-config_lam_check_bsd43_fd_passing_m4 
	                   patch-config_lam_check_stdc_m4 
	                   patch-config_lam_get_alignment_cache_m4 
	                   patch-config_lam_get_alignment_m4 
	                   patch-config_lam_get_shmmax_m4 
	                   patch-config_lam_mutex_pshared_m4 
	                   patch-etc_Makefile_in 
	                   patch-man_mans_mpi_share 
	                   patch-mpi2c++_configure 
	                   patch-share_args_all_opt_c 
	devel/lam/pkg  : DESCR PLIST 

Log message:
Remove LAM, the port is outdated and the project is discontinued upstream.

Last user of lang/g77 with our rusty devel/openmpi port.
ok kn@ sthen@, maintainer timeout.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/22 12:24:05

Modified files:
	devel/p5-ExtUtils-CppGuess: Makefile distinfo 

Log message:
Update ExtUtils-CppGuess to 0.19

Various minor improvements/fixes, all tests pass.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/06/22 13:47:12

Modified files:
	sbin/dhclient  : options.c 

Log message:
Swap (opcount >= opleft || opcount == -1) to (opcount == -1 || opcount >= opleft) like
the rest of tree.

Spotted by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/22 14:15:10

Modified files:
	sys/net        : if_spppsubr.c 

Log message:
Make computation of re-challenge timeout more obvious

Instead of masking the difference between lower and upper bound to yield
a random summand that fits, instruct the API to limit their result
accordingly.  0x01fe = 510 = 810 - 300.

arc4random_uniform(upper_bound) returns `upper_bound - 1' as maximum, so
add one to make 810 a possible value for `i'.

OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/22 14:18:00

Modified files:
	cad/qucs-s     : Makefile 
	cad/qucs-s/patches: patch-contrib_CMakeLists_txt 
	                    patch-qucs-attenuator_CMakeLists_txt 
	                    patch-qucs_CMakeLists_txt 
Added files:
	cad/qucs-s/patches: patch-CMakeLists_txt 
	                    patch-qucs-activefilter_CMakeLists_txt 
	                    patch-qucs-filter_CMakeLists_txt 
	                    patch-qucs-lib_CMakeLists_txt 

Log message:
Unbreak with upcoming ninja 1.9.0

Maintainer timeout


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/22 14:23:04

Modified files:
	devel/ninja    : Makefile distinfo 

Log message:
Update ninja to 1.9.0

Changelog:
https://groups.google.com/forum/#!topic/ninja-build/nY5Kb7zUvcg

AMD64 bulk build by naddy@ Thanks! Errors detected by this have already
been fixed.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/22 14:30:42

Modified files:
	sys/arch/sparc64/dev: beep.c beeper.c 

Log message:
Use timeout_add_msec(9)

hz can simply be reduced has the code wants to wait
(period * hz) / 1000 [ticks] = period / 1000 [s] = period [ms].

With the zero check, this perfectly matches the millisecond version.

This conversion by itself also lifts the implicit expection of the period
to be evenly divisible by ten;  in case it was not, integer division
would truncate it.

See /sys/wscons/wskbd.c for how the period is set up.

OK mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/22 16:44:07

Modified files:
	databases/lmdb : Makefile 
	databases/tdb  : Makefile 
	devel/libtalloc: Makefile 
	devel/liburcu  : Makefile 
	devel/llvm     : Makefile 
	devel/p5-Parse-Yapp: Makefile 
	lang/mawk      : Makefile 
	mail/rmail     : Makefile 
	mail/swaks     : Makefile 
	net/iodine     : Makefile 
	net/knot       : Makefile 
	net/libpsl     : Makefile 
	net/mosh       : Makefile 
	net/openvpn    : Makefile 
	net/samba      : Makefile 
	security/gnupg : Makefile 
	shells/dash    : Makefile 
	textproc/diffstat: Makefile 
	x11/autocutsel : Makefile 
	x11/ratpoison  : Makefile 

Log message:
Move the ports I maintain to PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/22 17:04:49

Modified files:
	databases/tdb  : Makefile 
	databases/tdb/pkg: PLIST 

Log message:
Byte-compile _tdb_text.py to avoid leaving the .pyc file around


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/22 17:58:23

Modified files:
	net/samba      : Makefile 
	net/samba/pkg  : README-main 

Log message:
Fix path in README, found by portcheck


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/06/22 23:05:07

Modified files:
	regress/usr.bin/openssl: appstest.sh 

Log message:
Add more option test to dgst in appstest.sh


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/22 23:24:00

Modified files:
	devel/kf5      : Makefile.inc 
	x11/kde-applications: Makefile.inc 

Log message:
Move KDE5 (kf5,kde-applications) to PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/06/23 00:18:09

Modified files:
	games/quakespasm: Makefile 

Log message:
build with DO_USERDIRS=1 so ~/.quakespasm/ will be used


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/23 00:50:52

Log message:
    Import epubcheck-4.2.1.
    
    EPUBCheck is a tool to validate the conformance of EPUB publications against
    the EPUB specifications. EPUBCheck can be run as a standalone command-line
    tool or used as a Java library.
    
    EPUBCheck is open source software, maintained by the DAISY Consortium on
    behalf of the W3C.
    
    ok rsadowski@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190623
    
    N ports/textproc/epubcheck/Makefile
    N ports/textproc/epubcheck/distinfo
    N ports/textproc/epubcheck/pkg/DESCR
    N ports/textproc/epubcheck/pkg/PLIST
    N ports/textproc/epubcheck/files/epubcheck
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/23 00:51:24

Modified files:
	textproc       : Makefile 

Log message:
+epubcheck


CVSROOT:	/cvs
Module name:	ports
Changes by:	rapha@cvs.openbsd.org	2019/06/23 03:00:21

Modified files:
	audio/taglib   : Makefile 
Added files:
	audio/taglib/patches: patch-CMakeLists_txt 
	                      patch-ConfigureChecks_cmake 
	                      patch-taglib_ogg_oggfile_cpp 

Log message:
Fix possible ogg packet losses (https://github.com/taglib/taglib/issues/864)
and enable tests.

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/23 03:22:19

Modified files:
	emulators/gxemul: Makefile distinfo 
	emulators/gxemul/patches: patch-configure 
	emulators/gxemul/pkg: PLIST 

Log message:
Update gxemul to 0.6.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/23 04:00:29

Modified files:
	usr.bin/tmux   : options.c 

Log message:
Do not always set scope for panes because the window check might fail,
GitHub issue 1810.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/06/23 04:28:32

Modified files:
	usr.bin/rsync  : flist.c 

Log message:
fix free() on uninitialized pointer with -rx and same
suggestions and ok naddy@ and ok previois diff florian@.
from Hiltjo Posthuma hiltjo AT codemadness DOT org and
Bjoern Ketelaars bjorn DOT ketelaars AT hydroxide DOT nl,
Thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/23 05:22:31

ports/productivity/mcds/patches

Update of /cvs/ports/productivity/mcds/patches
In directory cvs.openbsd.org:/tmp/cvs-serv13975/patches

Log Message:
Directory /cvs/ports/productivity/mcds/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/23 06:21:46

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
fix mismatch proto/decl from key shielding change; spotted via oss-fuzz


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/23 06:56:10

Modified files:
	sys/sys        : task.h 
	sys/kern       : kern_task.c 

Log message:
Make taskq_barrier(9) work for multi-threaded task queues.

ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/23 08:01:53

Modified files:
	www/pelican    : Makefile distinfo 
	www/pelican/pkg: PLIST 

Log message:
Update to pelican-4.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/23 08:32:22

Modified files:
	databases/py-psycopg2: Makefile distinfo 
	databases/py-psycopg2/pkg: PLIST 

Log message:
Update to py-psycopg2-2.8.3


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/23 08:34:09

Modified files:
	distrib/arm64/ramdisk: Makefile install.md 

Log message:
Create space for the bootloader/firmware for Rockchip SoCs by leaving
more empty space before the MS-DOS and OpenBSD partitions.
Also make sure we don't overwrite the firmware with the Pine64 on anything
but the Pine64 and Pine64+.

With help from jsg@

ok deraadt@, jsg@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/23 08:49:23

Modified files:
	sysutils/upt/upt-cpan: Makefile distinfo 

Log message:
Update to upt-cpan-0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/23 08:52:53

Modified files:
	sysutils/upt/upt: Makefile distinfo 
	sysutils/upt/upt/pkg: PLIST 

Log message:
Update to upt-0.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/23 08:56:55

Modified files:
	sysutils/upt/upt-rubygems: Makefile distinfo 
	sysutils/upt/upt-rubygems/pkg: PLIST 

Log message:
Update to upt-rubygems-0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/23 08:59:18

Modified files:
	sysutils/upt/upt-pypi: Makefile distinfo 
	sysutils/upt/upt-pypi/pkg: PLIST 

Log message:
Update to upt-pypi-0.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/23 09:01:50

Modified files:
	sysutils/upt/upt-openbsd: Makefile distinfo 
	sysutils/upt/upt-openbsd/pkg: PLIST 

Log message:
Update to upt-openbsd-0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/23 09:03:08

Modified files:
	sysutils/upt   : Makefile.inc 

Log message:
Switch to PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/23 09:03:37

Modified files:
	emulators/mupen64plus/video-glide64: Makefile 
	emulators/mupen64plus/video-glide64/patches: 
	                                             patch-src_wrapper_filter_cpp 

Log message:
Sync patch with upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/23 09:26:42

Modified files:
	sys/arch/mips64/mips64: pmap.c 

Log message:
Invalidate icache when changing mapping

On octeon, the instruction cache appears to fulfill instruction fetches
on icache hit even if the virtual address mapping no longer exists or
does not allow execution. Prevent running of lingering instructions
by invalidating the icache when changing a mapping that has previously
been executable.

This fix is somewhat rough and relies on the availability of the XI bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/23 09:41:00

Modified files:
	sys/arch/arm64/dev: agintc.c 

Log message:
The MAPTI command has no valid bit.  Pointed out by Jared McNeill.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/23 10:06:23

Modified files:
	infrastructure/bin: portcheck 

Log message:
Convert portcheck to the new PERMIT_PACKAGE/PERMIT_DISTFILES world.

Convert the checks over to versions for the new options and add a
couple of checks to throw errors if the old versions are found.

Input, review, and corrections from pamela@

ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/23 10:09:57

Modified files:
	devel/py-arrow : Makefile distinfo 

Log message:
Update devel/py-arrow 0.13.1 -> 0.14.2

Update port and convert to PERMIT_PACKAGE usage.

OK danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/23 10:28:30

Modified files:
	textproc/py-yaml: Makefile distinfo 
	textproc/py-yaml/patches: patch-setup_cfg 

Log message:
Update textproc/py-yaml 3.13 -> 5.1.1

Update to latest py-yaml

Original diff by Remi Pointel for 5.1, updated by myself to 5.1.1

maintainer timeout

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/23 10:57:02

Modified files:
	sys/sys        : sysctl.h 
	bin/ps         : keyword.c print.c ps.1 
	lib/libkvm     : kvm_proc2.c 

Log message:
Export unveil state so that ps(8) can show it.  Two new status flags,
you'll see one, or neither.
'u' - process installed unveils, but not yet locked with unveil(0,0)
or pledge w/o "unveil"
'U' - process has installed unveils, and locked.
ok rob


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/23 11:14:49

Modified files:
	sys/arch/arm64/arm64: cpu.c 

Log message:
Sort operatinmg points by (increasing) frequency.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/23 11:18:50

Modified files:
	sys/sys        : sysctl.h 
	bin/ps         : extern.h keyword.c print.c 

Log message:
add "ps -o pledge" option, which prints a comma-seperated list of pledges
active on each process.  So go forth and "ps agux -o pledge" to find pledges
which can be improved.

(I hesitated adding this before because I am afraid of people
enforcing extra-strict pledge in programs without testing all the use
cases -- thereby breaking software).


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/06/23 11:20:43

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
youtube-dl: update to 2019.06.21, unbreak youtube
Original diff from Nam Nguyen, OK'd by bket@ and pirofti@ (maintainer).
Then updated by me as the proposed version was broken with youtube
in the meantime.

While here move to PERMIT_PACKAGE.

OK danj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/23 11:35:03

Modified files:
	mail/mozilla-thunderbird: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: Update to thunderbird 60.7.2.

Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-20/


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/06/23 12:54:24

Modified files:
	libexec/getty  : main.c 

Log message:
Explicitly lock unveil. Noticed when testing the recent ps(1) commit exposing
the unveil state of running processes.
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/23 13:00:14

Log message:
    import games/vkquake; DO_USERDIRS tweak and ok jsg@
    
    DESCR:
    vkQuake is a Quake 1 port using Vulkan instead of OpenGL for
    rendering. It is based on the popular QuakeSpasm port and runs all
    mods compatible with it like Arcane Dimensions or In The Shadows.
    
    Compared to QuakeSpasm vkQuake also features a software Quake like
    underwater effect, has better color precision, generates mipmap for
    water surfaces at runtime and has native support for anti-aliasing
    and AF.
    
    vkQuake also serves as a Vulkan demo application that shows basic
    usage of the API. For example it demonstrates render passes & sub
    passes, pipeline barriers & synchronization, compute shaders, push
    & specialization constants, CPU/GPU parallelism and memory pooling.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190623
    
    N ports/games/vkquake/Makefile
    N ports/games/vkquake/distinfo
    N ports/games/vkquake/patches/patch-Quake_r_world_c
    N ports/games/vkquake/patches/patch-Quake_r_brush_c
    N ports/games/vkquake/patches/patch-Quake_Makefile
    N ports/games/vkquake/pkg/DESCR
    N ports/games/vkquake/pkg/PLIST
    N ports/games/vkquake/pkg/README
    N ports/games/vkquake/files/vkquake.sh
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/23 13:01:34

Modified files:
	games          : Makefile 

Log message:
+vkquake


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/23 13:38:31

Added files:
	editors/libreoffice/patches: 
	                             patch-sw_qa_extras_odfexport_odfexport_cxx 

Log message:
llvm8: upstream fix for C++20 char8_t; ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/23 14:25:53

Modified files:
	bin/ps         : ps.1 

Log message:
sort previous; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/23 15:37:54

Log message:
    Import LLVM 8.0.0 release including clang, lld and lldb.
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LLVM_8_0_0
    
    U src/gnu/llvm/CREDITS.TXT
    U src/gnu/llvm/llvm.spec.in
    U src/gnu/llvm/.arcconfig
    U src/gnu/llvm/README.txt
    U src/gnu/llvm/CODE_OWNERS.TXT
    U src/gnu/llvm/.clang-format
    U src/gnu/llvm/LLVMBuild.txt
    U src/gnu/llvm/LICENSE.TXT
    U src/gnu/llvm/CMakeLists.txt
    U src/gnu/llvm/RELEASE_TESTERS.TXT
    U src/gnu/llvm/configure
    U src/gnu/llvm/.clang-tidy
    U src/gnu/llvm/include/llvm/PassAnalysisSupport.h
    U src/gnu/llvm/include/llvm/PassInfo.h
    N src/gnu/llvm/include/llvm/module.install.modulemap
    N src/gnu/llvm/include/llvm/module.extern.modulemap
    U src/gnu/llvm/include/llvm/LinkAllIR.h
    U src/gnu/llvm/include/llvm/PassRegistry.h
    U src/gnu/llvm/include/llvm/CMakeLists.txt
    U src/gnu/llvm/include/llvm/PassSupport.h
    U src/gnu/llvm/include/llvm/Pass.h
    U src/gnu/llvm/include/llvm/module.modulemap.build
    U src/gnu/llvm/include/llvm/LinkAllPasses.h
    C src/gnu/llvm/include/llvm/InitializePasses.h
    U src/gnu/llvm/include/llvm/module.modulemap
    U src/gnu/llvm/include/llvm/ObjectYAML/ObjectYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/WasmYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h
    U src/gnu/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.h
    U src/gnu/llvm/include/llvm/ObjectYAML/DWARFEmitter.h
    U src/gnu/llvm/include/llvm/ObjectYAML/DWARFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/COFFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/ELFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h
    U src/gnu/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypes.h
    U src/gnu/llvm/include/llvm/ObjectYAML/MachOYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/YAML.h
    U src/gnu/llvm/include/llvm/Target/TargetIntrinsicInfo.h
    U src/gnu/llvm/include/llvm/Target/GenericOpcodes.td
    C src/gnu/llvm/include/llvm/Target/TargetLoweringObjectFile.h
    U src/gnu/llvm/include/llvm/Target/TargetCallingConv.td
    U src/gnu/llvm/include/llvm/Target/TargetMachine.h
    U src/gnu/llvm/include/llvm/Target/TargetSchedule.td
    U src/gnu/llvm/include/llvm/Target/CodeGenCWrappers.h
    U src/gnu/llvm/include/llvm/Target/TargetSelectionDAG.td
    U src/gnu/llvm/include/llvm/Target/TargetItinerary.td
    U src/gnu/llvm/include/llvm/Target/TargetOptions.h
    N src/gnu/llvm/include/llvm/Target/TargetPfmCounters.td
    U src/gnu/llvm/include/llvm/Target/Target.td
    U src/gnu/llvm/include/llvm/Target/TargetInstrPredicate.td
    U src/gnu/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
    U src/gnu/llvm/include/llvm/Target/GlobalISel/RegisterBank.td
    U src/gnu/llvm/include/llvm/Target/GlobalISel/Target.td
    U src/gnu/llvm/include/llvm/Object/Binary.h
    U src/gnu/llvm/include/llvm/Object/MachO.h
    U src/gnu/llvm/include/llvm/Object/IRObjectFile.h
    U src/gnu/llvm/include/llvm/Object/Archive.h
    U src/gnu/llvm/include/llvm/Object/Wasm.h
    U src/gnu/llvm/include/llvm/Object/ModuleSymbolTable.h
    U src/gnu/llvm/include/llvm/Object/SymbolicFile.h
    U src/gnu/llvm/include/llvm/Object/Decompressor.h
    U src/gnu/llvm/include/llvm/Object/SymbolSize.h
    U src/gnu/llvm/include/llvm/Object/ELFTypes.h
    U src/gnu/llvm/include/llvm/Object/ELFObjectFile.h
    U src/gnu/llvm/include/llvm/Object/ObjectFile.h
    U src/gnu/llvm/include/llvm/Object/COFF.h
    U src/gnu/llvm/include/llvm/Object/WasmTraits.h
    U src/gnu/llvm/include/llvm/Object/WindowsResource.h
    U src/gnu/llvm/include/llvm/Object/StackMapParser.h
    U src/gnu/llvm/include/llvm/Object/Error.h
    U src/gnu/llvm/include/llvm/Object/ArchiveWriter.h
    U src/gnu/llvm/include/llvm/Object/RelocVisitor.h
    U src/gnu/llvm/include/llvm/Object/COFFModuleDefinition.h
    U src/gnu/llvm/include/llvm/Object/CVDebugRecord.h
    U src/gnu/llvm/include/llvm/Object/IRSymtab.h
    U src/gnu/llvm/include/llvm/Object/ELF.h
    U src/gnu/llvm/include/llvm/Object/COFFImportFile.h
    U src/gnu/llvm/include/llvm/Object/MachOUniversal.h
    U src/gnu/llvm/include/llvm/Passes/PassBuilder.h
    U src/gnu/llvm/include/llvm/Passes/PassPlugin.h
    N src/gnu/llvm/include/llvm/Passes/StandardInstrumentations.h
    U src/gnu/llvm/include/llvm/CodeGen/SDNodeProperties.td
    U src/gnu/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveVariables.h
    U src/gnu/llvm/include/llvm/CodeGen/IntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h
    U src/gnu/llvm/include/llvm/CodeGen/ExecutionDomainFix.h
    N src/gnu/llvm/include/llvm/CodeGen/DebugHandlerBase.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetOpcodes.h
    N src/gnu/llvm/include/llvm/CodeGen/BuiltinGCs.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGISel.h
    U src/gnu/llvm/include/llvm/CodeGen/MachORelocation.h
    U src/gnu/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRYamlMapping.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterScavenging.h
    U src/gnu/llvm/include/llvm/CodeGen/ParallelCG.h
    U src/gnu/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/FastISel.h
    U src/gnu/llvm/include/llvm/CodeGen/FaultMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/CalcSpillWeights.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineConstantPool.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineDominators.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervals.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveInterval.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetPassConfig.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
    U src/gnu/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/SchedulerRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionPass.h
    U src/gnu/llvm/include/llvm/CodeGen/TailDuplicator.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDFS.h
    U src/gnu/llvm/include/llvm/CodeGen/BasicTTIImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundle.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/Analysis.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/DAGCombine.h
    U src/gnu/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
    U src/gnu/llvm/include/llvm/CodeGen/CallingConvLower.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/DIEValue.def
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/DFAPacketizer.h
    U src/gnu/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRangeEdit.h
    U src/gnu/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/StackProtector.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LoopTraversal.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineMemOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
    U src/gnu/llvm/include/llvm/CodeGen/UnreachableBlockElim.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.td
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.h
    U src/gnu/llvm/include/llvm/CodeGen/EdgeBundles.h
    U src/gnu/llvm/include/llvm/CodeGen/RegAllocPBQP.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetInstrInfo.h
    N src/gnu/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetCallingConv.h
    U src/gnu/llvm/include/llvm/CodeGen/AccelTable.h
    U src/gnu/llvm/include/llvm/CodeGen/GCStrategy.h
    U src/gnu/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
    U src/gnu/llvm/include/llvm/CodeGen/MacroFusion.h
    U src/gnu/llvm/include/llvm/CodeGen/CommandFlags.inc
    N src/gnu/llvm/include/llvm/CodeGen/AsmPrinterHandler.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterClassInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
    U src/gnu/llvm/include/llvm/CodeGen/DIE.h
    U src/gnu/llvm/include/llvm/CodeGen/LivePhysRegs.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LowLevelType.h
    U src/gnu/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
    C src/gnu/llvm/include/llvm/CodeGen/Passes.h
    U src/gnu/llvm/include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
    U src/gnu/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
    U src/gnu/llvm/include/llvm/CodeGen/SlotIndexes.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/RegAllocRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePassRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/StackMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBasicBlock.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadata.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveStacks.h
    C src/gnu/llvm/include/llvm/CodeGen/TargetFrameLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePostDominators.h
    U src/gnu/llvm/include/llvm/CodeGen/LexicalScopes.h
    U src/gnu/llvm/include/llvm/CodeGen/CostTable.h
    C src/gnu/llvm/include/llvm/CodeGen/MachineFrameInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetSchedule.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineScheduler.h
    U src/gnu/llvm/include/llvm/CodeGen/VirtRegMap.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRegUnits.h
    C src/gnu/llvm/include/llvm/CodeGen/AsmPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstr.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterPressure.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineLoopInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunction.h
    U src/gnu/llvm/include/llvm/CodeGen/PseudoSourceValue.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegionInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRegMatrix.h
    U src/gnu/llvm/include/llvm/CodeGen/ISDOpcodes.h
    N src/gnu/llvm/include/llvm/CodeGen/MachinePipeliner.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOutliner.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/ExpandReductions.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Types.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
    N src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Solution.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Graph.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/CostAllocator.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Math.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamReader.h
    U src/gnu/llvm/include/llvm/Bitcode/BitCodes.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamWriter.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeReader.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeWriter.h
    U src/gnu/llvm/include/llvm/Bitcode/LLVMBitCodes.h
    U src/gnu/llvm/include/llvm/ToolDrivers/llvm-lib/LibDriver.h
    U src/gnu/llvm/include/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h
    N src/gnu/llvm/include/llvm/Demangle/Utility.h
    U src/gnu/llvm/include/llvm/Demangle/Demangle.h
    N src/gnu/llvm/include/llvm/Demangle/Compiler.h
    N src/gnu/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
    N src/gnu/llvm/include/llvm/Demangle/MicrosoftDemangle.h
    N src/gnu/llvm/include/llvm/Demangle/StringView.h
    N src/gnu/llvm/include/llvm/Demangle/ItaniumDemangle.h
    U src/gnu/llvm/include/llvm/AsmParser/Parser.h
    U src/gnu/llvm/include/llvm/AsmParser/SlotMapping.h
    N src/gnu/llvm/include/llvm/MCA/Pipeline.h
    N src/gnu/llvm/include/llvm/MCA/Support.h
    N src/gnu/llvm/include/llvm/MCA/Context.h
    N src/gnu/llvm/include/llvm/MCA/Instruction.h
    N src/gnu/llvm/include/llvm/MCA/SourceMgr.h
    N src/gnu/llvm/include/llvm/MCA/HWEventListener.h
    N src/gnu/llvm/include/llvm/MCA/InstrBuilder.h
    N src/gnu/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
    N src/gnu/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
    N src/gnu/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
    N src/gnu/llvm/include/llvm/MCA/HardwareUnits/HardwareUnit.h
    N src/gnu/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
    N src/gnu/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
    N src/gnu/llvm/include/llvm/MCA/Stages/EntryStage.h
    N src/gnu/llvm/include/llvm/MCA/Stages/ExecuteStage.h
    N src/gnu/llvm/include/llvm/MCA/Stages/RetireStage.h
    N src/gnu/llvm/include/llvm/MCA/Stages/InstructionTables.h
    N src/gnu/llvm/include/llvm/MCA/Stages/Stage.h
    N src/gnu/llvm/include/llvm/MCA/Stages/DispatchStage.h
    U src/gnu/llvm/include/llvm/Analysis/AliasSetTracker.h
    U src/gnu/llvm/include/llvm/Analysis/MustExecute.h
    U src/gnu/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfo.h
    U src/gnu/llvm/include/llvm/Analysis/Interval.h
    U src/gnu/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/PostDominators.h
    U src/gnu/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
    U src/gnu/llvm/include/llvm/Analysis/EHPersonalities.h
    U src/gnu/llvm/include/llvm/Analysis/ValueTracking.h
    N src/gnu/llvm/include/llvm/Analysis/GuardUtils.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPass.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.h
    U src/gnu/llvm/include/llvm/Analysis/ValueLattice.h
    U src/gnu/llvm/include/llvm/Analysis/RegionInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/AssumptionCache.h
    U src/gnu/llvm/include/llvm/Analysis/PHITransAddr.h
    U src/gnu/llvm/include/llvm/Analysis/OptimizationRemarkEmitter.h
    U src/gnu/llvm/include/llvm/Analysis/CmpInstAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/InstructionSimplify.h
    U src/gnu/llvm/include/llvm/Analysis/LoopIterator.h
    U src/gnu/llvm/include/llvm/Analysis/VectorUtils.h
    U src/gnu/llvm/include/llvm/Analysis/Trace.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryLocation.h
    U src/gnu/llvm/include/llvm/Analysis/IVUsers.h
    U src/gnu/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/PtrUseVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/MemorySSA.h
    U src/gnu/llvm/include/llvm/Analysis/LoopPass.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCInstKind.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
    U src/gnu/llvm/include/llvm/Analysis/LazyValueInfo.h
    U src/gnu/llvm/include/llvm/Analysis/TypeMetadataUtils.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/CaptureTracking.h
    U src/gnu/llvm/include/llvm/Analysis/ValueLatticeUtils.h
    N src/gnu/llvm/include/llvm/Analysis/IVDescriptors.h
    U src/gnu/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/Analysis/TargetFolder.h
    U src/gnu/llvm/include/llvm/Analysis/LazyCallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalPartition.h
    U src/gnu/llvm/include/llvm/Analysis/ConstantFolding.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryBuiltins.h
    U src/gnu/llvm/include/llvm/Analysis/LoopAnalysisManager.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolution.h
    U src/gnu/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
    N src/gnu/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/DivergenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfo.h
    U src/gnu/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/CFGPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/InlineCost.h
    U src/gnu/llvm/include/llvm/Analysis/Passes.h
    U src/gnu/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/CallPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/MemorySSAUpdater.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/OrderedBasicBlock.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
    N src/gnu/llvm/include/llvm/Analysis/OrderedInstructions.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraphSCCPass.h
    N src/gnu/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
    U src/gnu/llvm/include/llvm/Analysis/DependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/Loads.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/SparsePropagation.h
    U src/gnu/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
    N src/gnu/llvm/include/llvm/Analysis/StackSafetyAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.def
    U src/gnu/llvm/include/llvm/Analysis/CGSCCPassManager.h
    U src/gnu/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/PhiValues.h
    U src/gnu/llvm/include/llvm/Analysis/CFG.h
    U src/gnu/llvm/include/llvm/Analysis/Lint.h
    U src/gnu/llvm/include/llvm/Analysis/GlobalsModRef.h
    N src/gnu/llvm/include/llvm/Analysis/IndirectCallVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalIterator.h
    U src/gnu/llvm/include/llvm/Analysis/DomPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/DemandedBits.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/RegionIterator.h
    U src/gnu/llvm/include/llvm/Analysis/RegionInfo.h
    U src/gnu/llvm/include/llvm/Analysis/CodeMetrics.h
    U src/gnu/llvm/include/llvm/Analysis/CFLAliasAnalysisUtils.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPrinter.h
    N src/gnu/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/Utils/Local.h
    N src/gnu/llvm/include/llvm/TextAPI/ELF/ELFStub.h
    N src/gnu/llvm/include/llvm/TextAPI/ELF/TBEHandler.h
    U src/gnu/llvm/include/llvm/Support/ARMEHABI.h
    U src/gnu/llvm/include/llvm/Support/TargetSelect.h
    U src/gnu/llvm/include/llvm/Support/StringPool.h
    U src/gnu/llvm/include/llvm/Support/CodeGen.h
    U src/gnu/llvm/include/llvm/Support/Win64EH.h
    U src/gnu/llvm/include/llvm/Support/AArch64TargetParser.def
    U src/gnu/llvm/include/llvm/Support/ScopedPrinter.h
    U src/gnu/llvm/include/llvm/Support/DOTGraphTraits.h
    U src/gnu/llvm/include/llvm/Support/ArrayRecycler.h
    U src/gnu/llvm/include/llvm/Support/WithColor.h
    U src/gnu/llvm/include/llvm/Support/JSON.h
    U src/gnu/llvm/include/llvm/Support/MachineValueType.h
    U src/gnu/llvm/include/llvm/Support/raw_os_ostream.h
    U src/gnu/llvm/include/llvm/Support/FormatVariadic.h
    U src/gnu/llvm/include/llvm/Support/MutexGuard.h
    U src/gnu/llvm/include/llvm/Support/LockFileManager.h
    U src/gnu/llvm/include/llvm/Support/VersionTuple.h
    U src/gnu/llvm/include/llvm/Support/SystemUtils.h
    U src/gnu/llvm/include/llvm/Support/LowLevelTypeImpl.h
    U src/gnu/llvm/include/llvm/Support/PluginLoader.h
    N src/gnu/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
    U src/gnu/llvm/include/llvm/Support/TaskQueue.h
    U src/gnu/llvm/include/llvm/Support/FileUtilities.h
    N src/gnu/llvm/include/llvm/Support/CFGUpdate.h
    U src/gnu/llvm/include/llvm/Support/CodeGenCoverage.h
    U src/gnu/llvm/include/llvm/Support/Registry.h
    U src/gnu/llvm/include/llvm/Support/JamCRC.h
    N src/gnu/llvm/include/llvm/Support/BuryPointer.h
    N src/gnu/llvm/include/llvm/Support/MSVCErrorWorkarounds.h
    U src/gnu/llvm/include/llvm/Support/Host.h
    U src/gnu/llvm/include/llvm/Support/FormatAdapters.h
    U src/gnu/llvm/include/llvm/Support/Errc.h
    U src/gnu/llvm/include/llvm/Support/DataTypes.h
    U src/gnu/llvm/include/llvm/Support/GraphWriter.h
    U src/gnu/llvm/include/llvm/Support/Options.h
    U src/gnu/llvm/include/llvm/Support/X86TargetParser.def
    U src/gnu/llvm/include/llvm/Support/ConvertUTF.h
    U src/gnu/llvm/include/llvm/Support/Regex.h
    U src/gnu/llvm/include/llvm/Support/Debug.h
    U src/gnu/llvm/include/llvm/Support/ARMWinEH.h
    U src/gnu/llvm/include/llvm/Support/DebugCounter.h
    U src/gnu/llvm/include/llvm/Support/ToolOutputFile.h
    U src/gnu/llvm/include/llvm/Support/ErrorOr.h
    N src/gnu/llvm/include/llvm/Support/AArch64TargetParser.h
    U src/gnu/llvm/include/llvm/Support/ARMAttributeParser.h
    U src/gnu/llvm/include/llvm/Support/InitLLVM.h
    U src/gnu/llvm/include/llvm/Support/AMDGPUMetadata.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTree.h
    U src/gnu/llvm/include/llvm/Support/Threading.h
    U src/gnu/llvm/include/llvm/Support/Watchdog.h
    U src/gnu/llvm/include/llvm/Support/SmallVectorMemoryBuffer.h
    U src/gnu/llvm/include/llvm/Support/MemoryBuffer.h
    U src/gnu/llvm/include/llvm/Support/BranchProbability.h
    U src/gnu/llvm/include/llvm/Support/NativeFormatting.h
    U src/gnu/llvm/include/llvm/Support/KnownBits.h
    U src/gnu/llvm/include/llvm/Support/raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/TrigramIndex.h
    U src/gnu/llvm/include/llvm/Support/AlignOf.h
    U src/gnu/llvm/include/llvm/Support/ThreadPool.h
    U src/gnu/llvm/include/llvm/Support/ARMBuildAttributes.h
    U src/gnu/llvm/include/llvm/Support/Signals.h
    U src/gnu/llvm/include/llvm/Support/Mutex.h
    U src/gnu/llvm/include/llvm/Support/Casting.h
    U src/gnu/llvm/include/llvm/Support/RecyclingAllocator.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamReader.h
    U src/gnu/llvm/include/llvm/Support/FileSystem.h
    U src/gnu/llvm/include/llvm/Support/CheckedArithmetic.h
    U src/gnu/llvm/include/llvm/Support/Recycler.h
    U src/gnu/llvm/include/llvm/Support/Format.h
    U src/gnu/llvm/include/llvm/Support/ThreadLocal.h
    U src/gnu/llvm/include/llvm/Support/SMLoc.h
    U src/gnu/llvm/include/llvm/Support/FormattedStream.h
    U src/gnu/llvm/include/llvm/Support/Atomic.h
    U src/gnu/llvm/include/llvm/Support/CachePruning.h
    U src/gnu/llvm/include/llvm/Support/BlockFrequency.h
    U src/gnu/llvm/include/llvm/Support/Error.h
    U src/gnu/llvm/include/llvm/Support/Chrono.h
    U src/gnu/llvm/include/llvm/Support/FormatCommon.h
    U src/gnu/llvm/include/llvm/Support/ReverseIteration.h
    U src/gnu/llvm/include/llvm/Support/DynamicLibrary.h
    U src/gnu/llvm/include/llvm/Support/TargetRegistry.h
    U src/gnu/llvm/include/llvm/Support/MipsABIFlags.h
    U src/gnu/llvm/include/llvm/Support/Process.h
    U src/gnu/llvm/include/llvm/Support/RandomNumberGenerator.h
    U src/gnu/llvm/include/llvm/Support/FormatVariadicDetails.h
    U src/gnu/llvm/include/llvm/Support/COM.h
    U src/gnu/llvm/include/llvm/Support/RWMutex.h
    U src/gnu/llvm/include/llvm/Support/LineIterator.h
    U src/gnu/llvm/include/llvm/Support/raw_sha1_ostream.h
    U src/gnu/llvm/include/llvm/Support/PointerLikeTypeTraits.h
    U src/gnu/llvm/include/llvm/Support/PrettyStackTrace.h
    U src/gnu/llvm/include/llvm/Support/ScaledNumber.h
    U src/gnu/llvm/include/llvm/Support/Allocator.h
    U src/gnu/llvm/include/llvm/Support/WindowsError.h
    U src/gnu/llvm/include/llvm/Support/Valgrind.h
    U src/gnu/llvm/include/llvm/Support/BinaryByteStream.h
    U src/gnu/llvm/include/llvm/Support/YAMLParser.h
    U src/gnu/llvm/include/llvm/Support/DataExtractor.h
    U src/gnu/llvm/include/llvm/Support/SpecialCaseList.h
    U src/gnu/llvm/include/llvm/Support/ErrorHandling.h
    U src/gnu/llvm/include/llvm/Support/Compression.h
    U src/gnu/llvm/include/llvm/Support/SwapByteOrder.h
    U src/gnu/llvm/include/llvm/Support/LEB128.h
    U src/gnu/llvm/include/llvm/Support/SHA1.h
    U src/gnu/llvm/include/llvm/Support/TrailingObjects.h
    U src/gnu/llvm/include/llvm/Support/Compiler.h
    U src/gnu/llvm/include/llvm/Support/StringSaver.h
    U src/gnu/llvm/include/llvm/Support/LICENSE.TXT
    U src/gnu/llvm/include/llvm/Support/CMakeLists.txt
    U src/gnu/llvm/include/llvm/Support/AMDHSAKernelDescriptor.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTreeConstruction.h
    U src/gnu/llvm/include/llvm/Support/MathExtras.h
    U src/gnu/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h
    U src/gnu/llvm/include/llvm/Support/Capacity.h
    U src/gnu/llvm/include/llvm/Support/OnDiskHashTable.h
    U src/gnu/llvm/include/llvm/Support/SaveAndRestore.h
    U src/gnu/llvm/include/llvm/Support/TarWriter.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamArray.h
    U src/gnu/llvm/include/llvm/Support/Program.h
    U src/gnu/llvm/include/llvm/Support/EndianStream.h
    U src/gnu/llvm/include/llvm/Support/Endian.h
    U src/gnu/llvm/include/llvm/Support/FileOutputBuffer.h
    U src/gnu/llvm/include/llvm/Support/xxhash.h
    U src/gnu/llvm/include/llvm/Support/Timer.h
    U src/gnu/llvm/include/llvm/Support/SourceMgr.h
    U src/gnu/llvm/include/llvm/Support/UnicodeCharRanges.h
    U src/gnu/llvm/include/llvm/Support/Path.h
    U src/gnu/llvm/include/llvm/Support/Printable.h
    U src/gnu/llvm/include/llvm/Support/GlobPattern.h
    U src/gnu/llvm/include/llvm/Support/Memory.h
    U src/gnu/llvm/include/llvm/Support/Parallel.h
    U src/gnu/llvm/include/llvm/Support/ManagedStatic.h
    U src/gnu/llvm/include/llvm/Support/Errno.h
    U src/gnu/llvm/include/llvm/Support/ARMTargetParser.def
    U src/gnu/llvm/include/llvm/Support/BinaryItemStream.h
    U src/gnu/llvm/include/llvm/Support/CrashRecoveryContext.h
    U src/gnu/llvm/include/llvm/Support/FormatProviders.h
    U src/gnu/llvm/include/llvm/Support/thread.h
    U src/gnu/llvm/include/llvm/Support/MD5.h
    U src/gnu/llvm/include/llvm/Support/circular_raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/TypeName.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamWriter.h
    U src/gnu/llvm/include/llvm/Support/BinaryStream.h
    U src/gnu/llvm/include/llvm/Support/CBindingWrapping.h
    N src/gnu/llvm/include/llvm/Support/FileCheck.h
    U src/gnu/llvm/include/llvm/Support/DJB.h
    N src/gnu/llvm/include/llvm/Support/VirtualFileSystem.h
    U src/gnu/llvm/include/llvm/Support/CommandLine.h
    U src/gnu/llvm/include/llvm/Support/type_traits.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamRef.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamError.h
    U src/gnu/llvm/include/llvm/Support/Unicode.h
    U src/gnu/llvm/include/llvm/Support/TargetOpcodes.def
    U src/gnu/llvm/include/llvm/Support/MemAlloc.h
    N src/gnu/llvm/include/llvm/Support/SymbolRemappingReader.h
    N src/gnu/llvm/include/llvm/Support/ARMTargetParser.h
    U src/gnu/llvm/include/llvm/Support/AtomicOrdering.h
    U src/gnu/llvm/include/llvm/Support/TargetParser.h
    U src/gnu/llvm/include/llvm/Support/YAMLTraits.h
    U src/gnu/llvm/include/llvm/Support/Locale.h
    U src/gnu/llvm/include/llvm/Support/UniqueLock.h
    U src/gnu/llvm/include/llvm/Support/Solaris/sys/regset.h
    U src/gnu/llvm/include/llvm/FuzzMutate/Random.h
    U src/gnu/llvm/include/llvm/FuzzMutate/OpDescriptor.h
    U src/gnu/llvm/include/llvm/FuzzMutate/FuzzerCLI.h
    U src/gnu/llvm/include/llvm/FuzzMutate/Operations.h
    U src/gnu/llvm/include/llvm/FuzzMutate/IRMutator.h
    U src/gnu/llvm/include/llvm/FuzzMutate/RandomIRBuilder.h
    U src/gnu/llvm/include/llvm/Config/abi-breaking.h.cmake
    U src/gnu/llvm/include/llvm/Config/Disassemblers.def.in
    U src/gnu/llvm/include/llvm/Config/Targets.def.in
    U src/gnu/llvm/include/llvm/Config/llvm-config.h.cmake
    U src/gnu/llvm/include/llvm/Config/AsmParsers.def.in
    U src/gnu/llvm/include/llvm/Config/AsmPrinters.def.in
    U src/gnu/llvm/include/llvm/Config/config.h.cmake
    U src/gnu/llvm/include/llvm/LineEditor/LineEditor.h
    U src/gnu/llvm/include/llvm/WindowsManifest/WindowsManifestMerger.h
    U src/gnu/llvm/include/llvm/Linker/IRMover.h
    U src/gnu/llvm/include/llvm/Linker/Linker.h
    U src/gnu/llvm/include/llvm/Testing/Support/SupportHelpers.h
    U src/gnu/llvm/include/llvm/Testing/Support/Error.h
    U src/gnu/llvm/include/llvm/IR/GVMaterializer.h
    U src/gnu/llvm/include/llvm/IR/DerivedTypes.h
    U src/gnu/llvm/include/llvm/IR/DomTreeUpdater.h
    U src/gnu/llvm/include/llvm/IR/PassManagerInternal.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsNVVM.td
    U src/gnu/llvm/include/llvm/IR/GlobalIndirectSymbol.h
    U src/gnu/llvm/include/llvm/IR/PatternMatch.h
    U src/gnu/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsPowerPC.td
    U src/gnu/llvm/include/llvm/IR/LegacyPassNameParser.h
    U src/gnu/llvm/include/llvm/IR/Attributes.td
    U src/gnu/llvm/include/llvm/IR/IRBuilder.h
    U src/gnu/llvm/include/llvm/IR/IRPrintingPasses.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsMips.td
    U src/gnu/llvm/include/llvm/IR/LegacyPassManager.h
    U src/gnu/llvm/include/llvm/IR/Type.h
    U src/gnu/llvm/include/llvm/IR/Function.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticPrinter.h
    U src/gnu/llvm/include/llvm/IR/InstVisitor.h
    U src/gnu/llvm/include/llvm/IR/SymbolTableListTraits.h
    U src/gnu/llvm/include/llvm/IR/Mangler.h
    U src/gnu/llvm/include/llvm/IR/GlobalObject.h
    U src/gnu/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
    U src/gnu/llvm/include/llvm/IR/AssemblyAnnotationWriter.h
    U src/gnu/llvm/include/llvm/IR/Dominators.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
    U src/gnu/llvm/include/llvm/IR/GlobalIFunc.h
    U src/gnu/llvm/include/llvm/IR/DebugInfo.h
    U src/gnu/llvm/include/llvm/IR/RuntimeLibcalls.def
    U src/gnu/llvm/include/llvm/IR/LLVMContext.h
    U src/gnu/llvm/include/llvm/IR/DebugInfoFlags.def
    N src/gnu/llvm/include/llvm/IR/IntrinsicsRISCV.td
    U src/gnu/llvm/include/llvm/IR/Value.h
    U src/gnu/llvm/include/llvm/IR/Instructions.h
    U src/gnu/llvm/include/llvm/IR/InlineAsm.h
    U src/gnu/llvm/include/llvm/IR/SafepointIRVerifier.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.h
    U src/gnu/llvm/include/llvm/IR/Value.def
    U src/gnu/llvm/include/llvm/IR/Instruction.h
    U src/gnu/llvm/include/llvm/IR/InstIterator.h
    U src/gnu/llvm/include/llvm/IR/UseListOrder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsARM.td
    U src/gnu/llvm/include/llvm/IR/IntrinsicsAArch64.td
    U src/gnu/llvm/include/llvm/IR/GlobalValue.h
    U src/gnu/llvm/include/llvm/IR/GlobalAlias.h
    U src/gnu/llvm/include/llvm/IR/ValueMap.h
    U src/gnu/llvm/include/llvm/IR/ConstantFolder.h
    U src/gnu/llvm/include/llvm/IR/Constant.h
    U src/gnu/llvm/include/llvm/IR/AutoUpgrade.h
    U src/gnu/llvm/include/llvm/IR/TrackingMDRef.h
    U src/gnu/llvm/include/llvm/IR/ModuleSummaryIndex.h
    U src/gnu/llvm/include/llvm/IR/ValueSymbolTable.h
    U src/gnu/llvm/include/llvm/IR/Operator.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticInfo.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.td
    U src/gnu/llvm/include/llvm/IR/OperandTraits.h
    U src/gnu/llvm/include/llvm/IR/CMakeLists.txt
    N src/gnu/llvm/include/llvm/IR/PassInstrumentation.h
    U src/gnu/llvm/include/llvm/IR/Metadata.h
    U src/gnu/llvm/include/llvm/IR/GlobalVariable.h
    U src/gnu/llvm/include/llvm/IR/Use.h
    U src/gnu/llvm/include/llvm/IR/InstrTypes.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicInst.h
    U src/gnu/llvm/include/llvm/IR/CallSite.h
    U src/gnu/llvm/include/llvm/IR/ConstantRange.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsX86.td
    U src/gnu/llvm/include/llvm/IR/NoFolder.h
    U src/gnu/llvm/include/llvm/IR/DebugLoc.h
    U src/gnu/llvm/include/llvm/IR/DerivedUser.h
    N src/gnu/llvm/include/llvm/IR/CFGDiff.h
    U src/gnu/llvm/include/llvm/IR/BasicBlock.h
    U src/gnu/llvm/include/llvm/IR/DebugInfoMetadata.h
    U src/gnu/llvm/include/llvm/IR/Comdat.h
    U src/gnu/llvm/include/llvm/IR/User.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticHandler.h
    U src/gnu/llvm/include/llvm/IR/Module.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsXCore.td
    U src/gnu/llvm/include/llvm/IR/ModuleSlotTracker.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsHexagon.td
    U src/gnu/llvm/include/llvm/IR/Argument.h
    U src/gnu/llvm/include/llvm/IR/Metadata.def
    U src/gnu/llvm/include/llvm/IR/CFG.h
    U src/gnu/llvm/include/llvm/IR/MDBuilder.h
    U src/gnu/llvm/include/llvm/IR/TypeFinder.h
    N src/gnu/llvm/include/llvm/IR/PassTimingInfo.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsSystemZ.td
    U src/gnu/llvm/include/llvm/IR/ProfileSummary.h
    U src/gnu/llvm/include/llvm/IR/DIBuilder.h
    U src/gnu/llvm/include/llvm/IR/LegacyPassManagers.h
    U src/gnu/llvm/include/llvm/IR/PredIteratorCache.h
    U src/gnu/llvm/include/llvm/IR/Instruction.def
    U src/gnu/llvm/include/llvm/IR/Statepoint.h
    U src/gnu/llvm/include/llvm/IR/DataLayout.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsBPF.td
    U src/gnu/llvm/include/llvm/IR/PassManager.h
    U src/gnu/llvm/include/llvm/IR/CallingConv.h
    U src/gnu/llvm/include/llvm/IR/OptBisect.h
    U src/gnu/llvm/include/llvm/IR/Constants.h
    U src/gnu/llvm/include/llvm/IR/Attributes.h
    U src/gnu/llvm/include/llvm/IR/ValueHandle.h
    U src/gnu/llvm/include/llvm/IR/Verifier.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
    U src/gnu/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/GenericValue.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Interpreter.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/MCJIT.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/JITSymbol.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/JITEventListener.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ObjectCache.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/Core.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
    N src/gnu/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
    U src/gnu/llvm/include/llvm/WindowsResource/ResourceScriptToken.h
    U src/gnu/llvm/include/llvm/WindowsResource/ResourceProcessor.h
    U src/gnu/llvm/include/llvm/WindowsResource/ResourceScriptTokenList.h
    U src/gnu/llvm/include/llvm/IRReader/IRReader.h
    U src/gnu/llvm/include/llvm/BinaryFormat/MachO.h
    U src/gnu/llvm/include/llvm/BinaryFormat/DynamicTags.def
    U src/gnu/llvm/include/llvm/BinaryFormat/Wasm.h
    U src/gnu/llvm/include/llvm/BinaryFormat/Dwarf.h
    U src/gnu/llvm/include/llvm/BinaryFormat/Magic.h
    U src/gnu/llvm/include/llvm/BinaryFormat/MachO.def
    U src/gnu/llvm/include/llvm/BinaryFormat/COFF.h
    N src/gnu/llvm/include/llvm/BinaryFormat/MsgPack.def
    C src/gnu/llvm/include/llvm/BinaryFormat/Dwarf.def
    N src/gnu/llvm/include/llvm/BinaryFormat/MsgPack.h
    N src/gnu/llvm/include/llvm/BinaryFormat/MsgPackWriter.h
    U src/gnu/llvm/include/llvm/BinaryFormat/WasmRelocs.def
    N src/gnu/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
    N src/gnu/llvm/include/llvm/BinaryFormat/MsgPackReader.h
    U src/gnu/llvm/include/llvm/BinaryFormat/ELF.h
    N src/gnu/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/AMDGPU.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/AArch64.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/i386.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/ARM.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/Mips.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/SystemZ.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/x86_64.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/Lanai.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/Hexagon.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC.def
    N src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/MSP430.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/RISCV.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/AVR.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/BPF.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/Sparc.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/ARC.def
    U src/gnu/llvm/include/llvm/Option/OptTable.h
    U src/gnu/llvm/include/llvm/Option/OptSpecifier.h
    U src/gnu/llvm/include/llvm/Option/ArgList.h
    U src/gnu/llvm/include/llvm/Option/Option.h
    U src/gnu/llvm/include/llvm/Option/OptParser.td
    U src/gnu/llvm/include/llvm/Option/Arg.h
    U src/gnu/llvm/include/llvm/LTO/Caching.h
    U src/gnu/llvm/include/llvm/LTO/LTO.h
    U src/gnu/llvm/include/llvm/LTO/Config.h
    U src/gnu/llvm/include/llvm/LTO/LTOBackend.h
    N src/gnu/llvm/include/llvm/LTO/SummaryBasedOptimizations.h
    U src/gnu/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
    U src/gnu/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
    U src/gnu/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.h
    U src/gnu/llvm/include/llvm/LTO/legacy/LTOModule.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize.h
    U src/gnu/llvm/include/llvm/Transforms/ObjCARC.h
    U src/gnu/llvm/include/llvm/Transforms/Utils.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation.h
    U src/gnu/llvm/include/llvm/Transforms/IPO.h
    U src/gnu/llvm/include/llvm/Transforms/Coroutines.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/RewriteStatepointsForGC.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/InstSimplifyPass.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/Scalarizer.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/NewGVN.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GVN.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/BDCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SCCP.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopSink.h
    N src/gnu/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ADCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Float2Int.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LICM.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopLoadElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Reassociate.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Sink.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerAtomic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DivRemPairs.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopPredication.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SROA.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GuardWidening.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/Internalize.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/SyntheticCountsPropagation.h
    N src/gnu/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/SCCP.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/CalledValuePropagation.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/Inliner.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalOpt.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PartialInlining.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ArgumentPromotion.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionImport.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/SampleProfile.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
    N src/gnu/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/GCOVProfiler.h
    N src/gnu/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
    N src/gnu/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/CGProfile.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/BoundsChecking.h
    N src/gnu/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/EntryExitInstrumenter.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/GuardUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Local.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Evaluator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LCSSA.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdaterBulk.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SanitizerStats.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ValueMapper.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BreakCriticalEdges.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CallPromotionUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CtorUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
    N src/gnu/llvm/include/llvm/Transforms/Utils/CanonicalizeAliases.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Cloning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SplitModule.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LowerInvoke.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/VNCoercion.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
    U src/gnu/llvm/include/llvm/ADT/IndexedMap.h
    U src/gnu/llvm/include/llvm/ADT/MapVector.h
    U src/gnu/llvm/include/llvm/ADT/SparseMultiSet.h
    N src/gnu/llvm/include/llvm/ADT/bit.h
    U src/gnu/llvm/include/llvm/ADT/Sequence.h
    U src/gnu/llvm/include/llvm/ADT/SparseSet.h
    U src/gnu/llvm/include/llvm/ADT/BitVector.h
    U src/gnu/llvm/include/llvm/ADT/BitmaskEnum.h
    U src/gnu/llvm/include/llvm/ADT/Hashing.h
    U src/gnu/llvm/include/llvm/ADT/ilist.h
    U src/gnu/llvm/include/llvm/ADT/APInt.h
    U src/gnu/llvm/include/llvm/ADT/StringMap.h
    U src/gnu/llvm/include/llvm/ADT/ArrayRef.h
    U src/gnu/llvm/include/llvm/ADT/DenseSet.h
    U src/gnu/llvm/include/llvm/ADT/None.h
    U src/gnu/llvm/include/llvm/ADT/Statistic.h
    U src/gnu/llvm/include/llvm/ADT/Any.h
    U src/gnu/llvm/include/llvm/ADT/SmallBitVector.h
    U src/gnu/llvm/include/llvm/ADT/ilist_base.h
    U src/gnu/llvm/include/llvm/ADT/StringSet.h
    U src/gnu/llvm/include/llvm/ADT/StringExtras.h
    U src/gnu/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
    U src/gnu/llvm/include/llvm/ADT/ScopeExit.h
    U src/gnu/llvm/include/llvm/ADT/PriorityQueue.h
    U src/gnu/llvm/include/llvm/ADT/Triple.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node_base.h
    U src/gnu/llvm/include/llvm/ADT/Optional.h
    U src/gnu/llvm/include/llvm/ADT/FunctionExtras.h
    U src/gnu/llvm/include/llvm/ADT/PointerEmbeddedInt.h
    U src/gnu/llvm/include/llvm/ADT/PostOrderIterator.h
    U src/gnu/llvm/include/llvm/ADT/APFloat.h
    U src/gnu/llvm/include/llvm/ADT/PointerSumType.h
    U src/gnu/llvm/include/llvm/ADT/PriorityWorklist.h
    U src/gnu/llvm/include/llvm/ADT/SCCIterator.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableMap.h
    U src/gnu/llvm/include/llvm/ADT/DepthFirstIterator.h
    U src/gnu/llvm/include/llvm/ADT/edit_distance.h
    U src/gnu/llvm/include/llvm/ADT/BreadthFirstIterator.h
    U src/gnu/llvm/include/llvm/ADT/STLExtras.h
    U src/gnu/llvm/include/llvm/ADT/GraphTraits.h
    U src/gnu/llvm/include/llvm/ADT/StringRef.h
    U src/gnu/llvm/include/llvm/ADT/SmallSet.h
    U src/gnu/llvm/include/llvm/ADT/IntEqClasses.h
    U src/gnu/llvm/include/llvm/ADT/TinyPtrVector.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableList.h
    U src/gnu/llvm/include/llvm/ADT/CachedHashString.h
    U src/gnu/llvm/include/llvm/ADT/AllocatorList.h
    U src/gnu/llvm/include/llvm/ADT/iterator_range.h
    U src/gnu/llvm/include/llvm/ADT/IntervalMap.h
    U src/gnu/llvm/include/llvm/ADT/APSInt.h
    U src/gnu/llvm/include/llvm/ADT/UniqueVector.h
    U src/gnu/llvm/include/llvm/ADT/DenseMapInfo.h
    U src/gnu/llvm/include/llvm/ADT/DeltaAlgorithm.h
    U src/gnu/llvm/include/llvm/ADT/PointerIntPair.h
    U src/gnu/llvm/include/llvm/ADT/PackedVector.h
    U src/gnu/llvm/include/llvm/ADT/DenseMap.h
    U src/gnu/llvm/include/llvm/ADT/simple_ilist.h
    U src/gnu/llvm/include/llvm/ADT/SmallPtrSet.h
    U src/gnu/llvm/include/llvm/ADT/SetVector.h
    U src/gnu/llvm/include/llvm/ADT/VariadicFunction.h
    U src/gnu/llvm/include/llvm/ADT/SparseBitVector.h
    U src/gnu/llvm/include/llvm/ADT/ScopedHashTable.h
    U src/gnu/llvm/include/llvm/ADT/Twine.h
    U src/gnu/llvm/include/llvm/ADT/PointerUnion.h
    U src/gnu/llvm/include/llvm/ADT/FoldingSet.h
    U src/gnu/llvm/include/llvm/ADT/iterator.h
    U src/gnu/llvm/include/llvm/ADT/ilist_iterator.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node_options.h
    U src/gnu/llvm/include/llvm/ADT/SetOperations.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableSet.h
    U src/gnu/llvm/include/llvm/ADT/SmallVector.h
    U src/gnu/llvm/include/llvm/ADT/StringSwitch.h
    U src/gnu/llvm/include/llvm/ADT/SmallString.h
    U src/gnu/llvm/include/llvm/ADT/EquivalenceClasses.h
    U src/gnu/llvm/include/llvm/ADT/EpochTracker.h
    U src/gnu/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
    U src/gnu/llvm/include/llvm/TableGen/StringToOffsetTable.h
    U src/gnu/llvm/include/llvm/TableGen/Main.h
    U src/gnu/llvm/include/llvm/TableGen/StringMatcher.h
    U src/gnu/llvm/include/llvm/TableGen/Record.h
    U src/gnu/llvm/include/llvm/TableGen/SetTheory.h
    U src/gnu/llvm/include/llvm/TableGen/Error.h
    U src/gnu/llvm/include/llvm/TableGen/TableGenBackend.h
    U src/gnu/llvm/include/llvm/TableGen/SearchableTable.td
    N src/gnu/llvm/include/llvm/XRay/FDRTraceWriter.h
    N src/gnu/llvm/include/llvm/XRay/FDRTraceExpander.h
    N src/gnu/llvm/include/llvm/XRay/BlockIndexer.h
    N src/gnu/llvm/include/llvm/XRay/BlockPrinter.h
    N src/gnu/llvm/include/llvm/XRay/FDRRecords.h
    U src/gnu/llvm/include/llvm/XRay/Trace.h
    N src/gnu/llvm/include/llvm/XRay/RecordPrinter.h
    N src/gnu/llvm/include/llvm/XRay/BlockVerifier.h
    N src/gnu/llvm/include/llvm/XRay/FileHeaderReader.h
    N src/gnu/llvm/include/llvm/XRay/FDRLogBuilder.h
    U src/gnu/llvm/include/llvm/XRay/InstrumentationMap.h
    U src/gnu/llvm/include/llvm/XRay/Graph.h
    U src/gnu/llvm/include/llvm/XRay/XRayRecord.h
    N src/gnu/llvm/include/llvm/XRay/Profile.h
    N src/gnu/llvm/include/llvm/XRay/FDRRecordProducer.h
    N src/gnu/llvm/include/llvm/XRay/FDRRecordConsumer.h
    U src/gnu/llvm/include/llvm/XRay/YAMLXRayRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/DIContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBInjectedSource.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDB.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/GenericError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSectionContrib.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIATable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAUtils.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/RawError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/InfoStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/Formatters.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/SymbolStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/TpiHashing.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/EnumTables.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
    N src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PDBFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/RawConstants.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/Hash.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/StringsAndChecksums.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
    N src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/GUID.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeCollection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/Formatters.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewTypes.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewSymbols.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/Line.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeHashing.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeTableCollection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/RecordName.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFError.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFCommon.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/IMSFFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProf.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/ProfileCommon.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/GCOV.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfData.inc
    U src/gnu/llvm/include/llvm/ProfileData/SampleProf.h
    U src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMappingReader.h
    U src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
    U src/gnu/llvm/include/llvm/MC/MCInstrAnalysis.h
    U src/gnu/llvm/include/llvm/MC/MCStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCSectionWasm.h
    U src/gnu/llvm/include/llvm/MC/LaneBitmask.h
    U src/gnu/llvm/include/llvm/MC/MCSchedule.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCInstrDesc.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolMachO.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoDarwin.h
    U src/gnu/llvm/include/llvm/MC/MCInstrInfo.h
    U src/gnu/llvm/include/llvm/MC/MCInstPrinter.h
    U src/gnu/llvm/include/llvm/MC/ConstantPools.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCELFStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCRegisterInfo.h
    U src/gnu/llvm/include/llvm/MC/MachineLocation.h
    U src/gnu/llvm/include/llvm/MC/MCWinEH.h
    U src/gnu/llvm/include/llvm/MC/MCAsmMacro.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolWasm.h
    U src/gnu/llvm/include/llvm/MC/MCSymbol.h
    U src/gnu/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfo.h
    U src/gnu/llvm/include/llvm/MC/MCWin64EH.h
    U src/gnu/llvm/include/llvm/MC/MCTargetOptions.h
    U src/gnu/llvm/include/llvm/MC/MCELFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCInstrItineraries.h
    U src/gnu/llvm/include/llvm/MC/MCCodeEmitter.h
    U src/gnu/llvm/include/llvm/MC/MCAsmBackend.h
    U src/gnu/llvm/include/llvm/MC/MCAssembler.h
    U src/gnu/llvm/include/llvm/MC/MCDwarf.h
    U src/gnu/llvm/include/llvm/MC/MCSectionELF.h
    U src/gnu/llvm/include/llvm/MC/MCWasmStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCSectionCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCAsmLayout.h
    U src/gnu/llvm/include/llvm/MC/MCSubtargetInfo.h
    U src/gnu/llvm/include/llvm/MC/MCFixup.h
    U src/gnu/llvm/include/llvm/MC/MCValue.h
    U src/gnu/llvm/include/llvm/MC/MCInst.h
    U src/gnu/llvm/include/llvm/MC/MCCodePadder.h
    U src/gnu/llvm/include/llvm/MC/MCLabel.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoWasm.h
    U src/gnu/llvm/include/llvm/MC/MCFragment.h
    U src/gnu/llvm/include/llvm/MC/MCSectionMachO.h
    U src/gnu/llvm/include/llvm/MC/MCMachObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolELF.h
    U src/gnu/llvm/include/llvm/MC/MCDirectives.h
    U src/gnu/llvm/include/llvm/MC/MCWasmObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCExpr.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoELF.h
    U src/gnu/llvm/include/llvm/MC/StringTableBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCObjectFileInfo.h
    U src/gnu/llvm/include/llvm/MC/MCFixedLenDisassembler.h
    U src/gnu/llvm/include/llvm/MC/MCObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/SubtargetFeature.h
    U src/gnu/llvm/include/llvm/MC/MCSection.h
    U src/gnu/llvm/include/llvm/MC/MCObjectStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCFixupKindInfo.h
    U src/gnu/llvm/include/llvm/MC/MCContext.h
    U src/gnu/llvm/include/llvm/MC/SectionKind.h
    U src/gnu/llvm/include/llvm/MC/MCInstBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCCodeView.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/AsmCond.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParser.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
    U src/gnu/llvm/include/llvm/MC/MCParser/AsmLexer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
    U src/gnu/llvm/include/llvm-c/BitReader.h
    N src/gnu/llvm/include/llvm-c/OptRemarks.h
    U src/gnu/llvm/include/llvm-c/ExecutionEngine.h
    U src/gnu/llvm/include/llvm-c/TargetMachine.h
    U src/gnu/llvm/include/llvm-c/DataTypes.h
    U src/gnu/llvm/include/llvm-c/Analysis.h
    U src/gnu/llvm/include/llvm-c/Types.h
    U src/gnu/llvm/include/llvm-c/Support.h
    U src/gnu/llvm/include/llvm-c/DebugInfo.h
    U src/gnu/llvm/include/llvm-c/Target.h
    U src/gnu/llvm/include/llvm-c/lto.h
    U src/gnu/llvm/include/llvm-c/Core.h
    U src/gnu/llvm/include/llvm-c/IRReader.h
    U src/gnu/llvm/include/llvm-c/Object.h
    N src/gnu/llvm/include/llvm-c/Error.h
    U src/gnu/llvm/include/llvm-c/OrcBindings.h
    U src/gnu/llvm/include/llvm-c/ErrorHandling.h
    U src/gnu/llvm/include/llvm-c/Disassembler.h
    U src/gnu/llvm/include/llvm-c/LinkTimeOptimizer.h
    U src/gnu/llvm/include/llvm-c/BitWriter.h
    U src/gnu/llvm/include/llvm-c/Comdat.h
    U src/gnu/llvm/include/llvm-c/DisassemblerTypes.h
    U src/gnu/llvm/include/llvm-c/module.modulemap
    U src/gnu/llvm/include/llvm-c/Initialization.h
    U src/gnu/llvm/include/llvm-c/Linker.h
    U src/gnu/llvm/include/llvm-c/Transforms/Scalar.h
    U src/gnu/llvm/include/llvm-c/Transforms/InstCombine.h
    U src/gnu/llvm/include/llvm-c/Transforms/Vectorize.h
    U src/gnu/llvm/include/llvm-c/Transforms/Utils.h
    N src/gnu/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
    U src/gnu/llvm/include/llvm-c/Transforms/IPO.h
    U src/gnu/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
    N src/gnu/llvm/include/llvm-c/Transforms/Coroutines.h
    U src/gnu/llvm/lib/LLVMBuild.txt
    U src/gnu/llvm/lib/CMakeLists.txt
    U src/gnu/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
    U src/gnu/llvm/lib/ObjectYAML/DWARFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/WasmYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/MachOYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/DWARFVisitor.h
    U src/gnu/llvm/lib/ObjectYAML/LLVMBuild.txt
    U src/gnu/llvm/lib/ObjectYAML/DWARFEmitter.cpp
    U src/gnu/llvm/lib/ObjectYAML/DWARFVisitor.cpp
    U src/gnu/llvm/lib/ObjectYAML/COFFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/ObjectYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/YAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/CMakeLists.txt
    U src/gnu/llvm/lib/ObjectYAML/CodeViewYAMLTypes.cpp
    U src/gnu/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
    U src/gnu/llvm/lib/ObjectYAML/ELFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/CodeViewYAMLTypeHashing.cpp
    U src/gnu/llvm/lib/Target/README.txt
    U src/gnu/llvm/lib/Target/TargetLoweringObjectFile.cpp
    U src/gnu/llvm/lib/Target/Target.cpp
    U src/gnu/llvm/lib/Target/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/TargetIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/CMakeLists.txt
    U src/gnu/llvm/lib/Target/TargetMachineC.cpp
    U src/gnu/llvm/lib/Target/TargetMachine.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.h
    U src/gnu/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.h
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/LeonPasses.cpp
    U src/gnu/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.td
    U src/gnu/llvm/lib/Target/Sparc/Sparc.td
    U src/gnu/llvm/lib/Target/Sparc/README.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcCallingConv.td
    C src/gnu/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.h
    U src/gnu/llvm/lib/Target/Sparc/LeonPasses.h
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Sparc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.td
    U src/gnu/llvm/lib/Target/Sparc/LeonFeatures.td
    U src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.h
    U src/gnu/llvm/lib/Target/Sparc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrVIS.td
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrFormats.td
    U src/gnu/llvm/lib/Target/Sparc/SparcInstr64Bit.td
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrAliases.td
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.h
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Sparc/SparcSchedule.td
    U src/gnu/llvm/lib/Target/Sparc/Sparc.h
    C src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
    U src/gnu/llvm/lib/Target/Sparc/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
    N src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AVR/AVR.h
    U src/gnu/llvm/lib/Target/AVR/AVRMCInstLower.h
    U src/gnu/llvm/lib/Target/AVR/AVRFrameLowering.h
    U src/gnu/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRISelLowering.h
    U src/gnu/llvm/lib/Target/AVR/TODO.md
    U src/gnu/llvm/lib/Target/AVR/AVR.td
    U src/gnu/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRISelLowering.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRSubtarget.h
    U src/gnu/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AVR/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRInstrFormats.td
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.h
    U src/gnu/llvm/lib/Target/AVR/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/AVRSubtarget.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRDevices.td
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.td
    U src/gnu/llvm/lib/Target/AVR/AVRCallingConv.td
    U src/gnu/llvm/lib/Target/AVR/README.md
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.td
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.h
    U src/gnu/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
    U src/gnu/llvm/lib/Target/AVR/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
    U src/gnu/llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.cpp
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430CallingConv.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430.h
    U src/gnu/llvm/lib/Target/MSP430/README.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
    U src/gnu/llvm/lib/Target/MSP430/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrFormats.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
    U src/gnu/llvm/lib/Target/MSP430/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430.td
    N src/gnu/llvm/lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
    N src/gnu/llvm/lib/Target/MSP430/AsmParser/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/MSP430/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/Target/MSP430/Disassembler/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/MSP430/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
    N src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/MSP430/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleA2.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG5.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule440.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
    C src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
    U src/gnu/llvm/lib/Target/PowerPC/README.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h
    U src/gnu/llvm/lib/Target/PowerPC/P9InstrResources.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
    U src/gnu/llvm/lib/Target/PowerPC/README_ALTIVEC.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG3.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrSPE.td
    U src/gnu/llvm/lib/Target/PowerPC/PPC.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCExpandISEL.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE500.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCCCState.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP8.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
    U src/gnu/llvm/lib/Target/PowerPC/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCCState.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h
    U src/gnu/llvm/lib/Target/PowerPC/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
    N src/gnu/llvm/lib/Target/PowerPC/PPCPfmCounters.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP7.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrQPX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPC.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrVSX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrBuilder.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP9.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrHTM.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCFastISel.cpp
    U src/gnu/llvm/lib/Target/PowerPC/README_P9.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrFormats.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
    U src/gnu/llvm/lib/Target/PowerPC/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
    U src/gnu/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
    U src/gnu/llvm/lib/Target/PowerPC/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
    N src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
    U src/gnu/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiAluCode.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Lanai/Lanai.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiSchedule.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrFormats.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiCondCode.h
    U src/gnu/llvm/lib/Target/Lanai/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Lanai/Lanai.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiCallingConv.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelLowering.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMCInstLower.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
    U src/gnu/llvm/lib/Target/Lanai/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiFixupKinds.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiBaseInfo.h
    U src/gnu/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.h
    U src/gnu/llvm/lib/Target/Lanai/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAddMissingPrototypes.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/README.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h
    U src/gnu/llvm/lib/Target/WebAssembly/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
    N src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
    U src/gnu/llvm/lib/Target/XCore/XCoreISelLowering.h
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.h
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetStreamer.h
    U src/gnu/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreISelLowering.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
    U src/gnu/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
    U src/gnu/llvm/lib/Target/XCore/XCore.h
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrFormats.td
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.h
    U src/gnu/llvm/lib/Target/XCore/README.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.td
    U src/gnu/llvm/lib/Target/XCore/XCore.td
    U src/gnu/llvm/lib/Target/XCore/XCoreCallingConv.td
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.cpp
    U src/gnu/llvm/lib/Target/XCore/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/XCore/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.h
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.h
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.td
    U src/gnu/llvm/lib/Target/XCore/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/ARMFeatures.h
    U src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA8.td
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMParallelDSP.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
    U src/gnu/llvm/lib/Target/ARM/README-Thumb.txt
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMMacroFusion.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrFormats.td
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.td
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFastISel.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSystemRegister.td
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleR52.td
    U src/gnu/llvm/lib/Target/ARM/README.txt
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSubtarget.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMCInstLower.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARMInstrNEON.td
    U src/gnu/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb2.td
    U src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMLegalizerInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMacroFusion.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterBanks.td
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrVFP.td
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.h
    U src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMCallLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb.td
    U src/gnu/llvm/lib/Target/ARM/ARM.h
    U src/gnu/llvm/lib/Target/ARM/ARMCallLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.h
    U src/gnu/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleV6.td
    U src/gnu/llvm/lib/Target/ARM/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA57.td
    U src/gnu/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleSwift.td
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleM3.td
    U src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.h
    U src/gnu/llvm/lib/Target/ARM/LICENSE.TXT
    U src/gnu/llvm/lib/Target/ARM/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.h
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSchedule.td
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSubtarget.h
    U src/gnu/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA9.td
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARM.td
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA57WriteRes.td
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMPerfectShuffle.h
    U src/gnu/llvm/lib/Target/ARM/README-Thumb2.txt
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.h
    U src/gnu/llvm/lib/Target/ARM/A15SDOptimizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/ARM/MLxExpansionPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
    U src/gnu/llvm/lib/Target/ARM/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
    U src/gnu/llvm/lib/Target/ARM/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/Utils/ARMBaseInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIIntrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/CaymanInstructions.td
    N src/gnu/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/BUFInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VOP1Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULowerKernelAttributes.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFixFunctionBitcasts.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600OpenCLImageTypeLoweringPass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R700Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600AsmPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600Processors.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
    N src/gnu/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Schedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/FLATInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNProcessors.td
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/VOPInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/VOPCInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/GCNRegPressure.h
    U src/gnu/llvm/lib/Target/AMDGPU/SMInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
    N src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600Defines.h
    U src/gnu/llvm/lib/Target/AMDGPU/VOP2Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MIMGInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFeatures.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SOPInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIProgramInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegAsmNames.inc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULibFunc.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
    N src/gnu/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VOP3Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIDefines.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUOpenCLEnqueuedBlockLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/DSInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SISchedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
    U src/gnu/llvm/lib/Target/AMDGPU/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUFixupKinds.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfo.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetObjectFile.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCV.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrFormatsC.td
    N src/gnu/llvm/lib/Target/RISCV/RISCVSystemOperands.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetMachine.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVSubtarget.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVMCInstLower.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVSubtarget.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
    N src/gnu/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
    U src/gnu/llvm/lib/Target/RISCV/RISCV.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfo.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
    U src/gnu/llvm/lib/Target/RISCV/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/RISCVFrameLowering.h
    U src/gnu/llvm/lib/Target/RISCV/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVCallingConv.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVISelLowering.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrFormats.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
    U src/gnu/llvm/lib/Target/RISCV/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
    U src/gnu/llvm/lib/Target/RISCV/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
    U src/gnu/llvm/lib/Target/RISCV/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/Disassembler/CMakeLists.txt
    N src/gnu/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp
    N src/gnu/llvm/lib/Target/RISCV/Utils/LLVMBuild.txt
    N src/gnu/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h
    N src/gnu/llvm/lib/Target/RISCV/Utils/CMakeLists.txt
    N src/gnu/llvm/lib/Target/RISCV/Utils/RISCVMatInt.cpp
    N src/gnu/llvm/lib/Target/RISCV/Utils/RISCVMatInt.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVFixupKinds.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.h
    N src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.cpp
    U src/gnu/llvm/lib/Target/RISCV/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.h
    U src/gnu/llvm/lib/Target/BPF/BPFSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.h
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.cpp
    N src/gnu/llvm/lib/Target/BPF/BPFMIChecking.cpp
    U src/gnu/llvm/lib/Target/BPF/BPF.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.h
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.h
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrFormats.td
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.td
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.h
    N src/gnu/llvm/lib/Target/BPF/BTF.def
    U src/gnu/llvm/lib/Target/BPF/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/BPFSelectionDAGInfo.cpp
    N src/gnu/llvm/lib/Target/BPF/BTFDebug.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
    N src/gnu/llvm/lib/Target/BPF/BTFDebug.h
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.h
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFCallingConv.td
    U src/gnu/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.td
    U src/gnu/llvm/lib/Target/BPF/BPFMIPeephole.cpp
    N src/gnu/llvm/lib/Target/BPF/BTF.h
    U src/gnu/llvm/lib/Target/BPF/BPF.td
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
    U src/gnu/llvm/lib/Target/BPF/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
    U src/gnu/llvm/lib/Target/BPF/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
    U src/gnu/llvm/lib/Target/BPF/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZOperators.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTDC.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZ.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZPatterns.td
    U src/gnu/llvm/lib/Target/SystemZ/README.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrHFP.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZ.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSchedule.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZProcessors.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrSystem.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.h
    U src/gnu/llvm/lib/Target/SystemZ/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFeatures.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrVector.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZOperands.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFP.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrDFP.td
    U src/gnu/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
    U src/gnu/llvm/lib/Target/SystemZ/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/X86ScheduleZnver1.td
    U src/gnu/llvm/lib/Target/X86/X86InstrXOP.td
    U src/gnu/llvm/lib/Target/X86/X86IntrinsicsInfo.h
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.h
    U src/gnu/llvm/lib/Target/X86/X86RegisterBankInfo.h
    U src/gnu/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/X86/X86CallLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedSkylakeClient.td
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
    U src/gnu/llvm/lib/Target/X86/X86InstrMMX.td
    U src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86Schedule.td
    U src/gnu/llvm/lib/Target/X86/X86PadShortFunction.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedSandyBridge.td
    U src/gnu/llvm/lib/Target/X86/X86RegisterBanks.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
    U src/gnu/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetMachine.h
    U src/gnu/llvm/lib/Target/X86/X86InstrSSE.td
    U src/gnu/llvm/lib/Target/X86/X86InstrControl.td
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.h
    U src/gnu/llvm/lib/Target/X86/X86ScheduleSLM.td
    N src/gnu/llvm/lib/Target/X86/X86CondBrFolding.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFoldTables.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrCMovSetCC.td
    C src/gnu/llvm/lib/Target/X86/X86InstrCompiler.td
    U src/gnu/llvm/lib/Target/X86/X86Instr3DNow.td
    U src/gnu/llvm/lib/Target/X86/X86InstrSGX.td
    U src/gnu/llvm/lib/Target/X86/X86CallLowering.h
    U src/gnu/llvm/lib/Target/X86/README.txt
    U src/gnu/llvm/lib/Target/X86/X86FixupLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.cpp
    U src/gnu/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86FastISel.cpp
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.h
    U src/gnu/llvm/lib/Target/X86/X86MacroFusion.h
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA.td
    U src/gnu/llvm/lib/Target/X86/X86WinEHState.cpp
    C src/gnu/llvm/lib/Target/X86/X86Subtarget.cpp
    C src/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
    U src/gnu/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.h
    C src/gnu/llvm/lib/Target/X86/X86InstrFPStack.td
    U src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/X86/X86FixupSetCC.cpp
    C src/gnu/llvm/lib/Target/X86/X86.h
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrVecCompiler.td
    U src/gnu/llvm/lib/Target/X86/X86InstrAVX512.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFoldTables.h
    C src/gnu/llvm/lib/Target/X86/X86TargetMachine.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedHaswell.td
    U src/gnu/llvm/lib/Target/X86/LLVMBuild.txt
    C src/gnu/llvm/lib/Target/X86/X86RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrTSX.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFormats.td
    U src/gnu/llvm/lib/Target/X86/X86LegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/X86/README-SSE.txt
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.h
    U src/gnu/llvm/lib/Target/X86/ShadowCallStack.cpp
    N src/gnu/llvm/lib/Target/X86/X86DiscriminateMemOps.cpp
    U src/gnu/llvm/lib/Target/X86/X86InterleavedAccess.cpp
    U src/gnu/llvm/lib/Target/X86/X86FloatingPoint.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86CmovConversion.cpp
    C src/gnu/llvm/lib/Target/X86/X86InstrInfo.td
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstructionSelector.cpp
    U src/gnu/llvm/lib/Target/X86/X86ScheduleBtVer2.td
    U src/gnu/llvm/lib/Target/X86/README-X86-64.txt
    U src/gnu/llvm/lib/Target/X86/X86SchedBroadwell.td
    C src/gnu/llvm/lib/Target/X86/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/X86GenRegisterBankInfo.def
    U src/gnu/llvm/lib/Target/X86/X86RetpolineThunks.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrArithmetic.td
    C src/gnu/llvm/lib/Target/X86/X86.td
    C src/gnu/llvm/lib/Target/X86/X86RegisterInfo.td
    U src/gnu/llvm/lib/Target/X86/X86InstrExtension.td
    U src/gnu/llvm/lib/Target/X86/X86SchedSkylakeServer.td
    U src/gnu/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
    U src/gnu/llvm/lib/Target/X86/X86LegalizerInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrBuilder.h
    U src/gnu/llvm/lib/Target/X86/X86FixupBWInsts.cpp
    U src/gnu/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedPredicates.td
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.td
    U src/gnu/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
    U src/gnu/llvm/lib/Target/X86/X86InstrVMX.td
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.h
    U src/gnu/llvm/lib/Target/X86/X86ScheduleAtom.td
    U src/gnu/llvm/lib/Target/X86/X86InstrShiftRotate.td
    C src/gnu/llvm/lib/Target/X86/X86Subtarget.h
    U src/gnu/llvm/lib/Target/X86/X86PfmCounters.td
    N src/gnu/llvm/lib/Target/X86/X86ScheduleBdVer2.td
    N src/gnu/llvm/lib/Target/X86/X86InsertPrefetch.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSystem.td
    U src/gnu/llvm/lib/Target/X86/X86InstrSVM.td
    U src/gnu/llvm/lib/Target/X86/X86MacroFusion.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrMPX.td
    U src/gnu/llvm/lib/Target/X86/X86EvexToVex.cpp
    U src/gnu/llvm/lib/Target/X86/README-FPStack.txt
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
    C src/gnu/llvm/lib/Target/X86/X86ISelLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86VZeroUpper.cpp
    U src/gnu/llvm/lib/Target/X86/X86DomainReassignment.cpp
    C src/gnu/llvm/lib/Target/X86/X86MCInstLower.cpp
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/X86ExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA3Info.h
    U src/gnu/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
    U src/gnu/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
    U src/gnu/llvm/lib/Target/X86/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
    C src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86Operand.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
    U src/gnu/llvm/lib/Target/X86/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCExpr.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86TargetStreamer.h
    C src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
    U src/gnu/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
    U src/gnu/llvm/lib/Target/X86/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.cpp
    C src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.h
    C src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstComments.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/InstPrinter/CMakeLists.txt
    C src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
    C src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTX.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTX.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
    U src/gnu/llvm/lib/Target/NVPTX/NVVMReflect.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
    U src/gnu/llvm/lib/Target/NVPTX/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrFormats.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
    U src/gnu/llvm/lib/Target/NVPTX/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.h
    U src/gnu/llvm/lib/Target/NVPTX/ManagedStringPool.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
    U src/gnu/llvm/lib/Target/NVPTX/cl_common_defines.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
    N src/gnu/llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.cpp
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips.h
    U src/gnu/llvm/lib/Target/Mips/MipsScheduleGeneric.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsLegalizerInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
    U src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.h
    U src/gnu/llvm/lib/Target/Mips/MipsMTInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsFastISel.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16FrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsTargetStreamer.h
    U src/gnu/llvm/lib/Target/Mips/MipsCallingConv.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsScheduleP5600.td
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsCondMov.td
    U src/gnu/llvm/lib/Target/Mips/MipsMTInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsOs16.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/Mips.td
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
    C src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.h
    U src/gnu/llvm/lib/Target/Mips/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MSA.txt
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.h
    U src/gnu/llvm/lib/Target/Mips/Relocation.txt
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.h
    U src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloat.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSchedule.td
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.h
    U src/gnu/llvm/lib/Target/Mips/Mips64InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterBanks.td
    U src/gnu/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFPU.td
    N src/gnu/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsOptionRecord.h
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsCallLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsCallLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Mips/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
    U src/gnu/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
    U src/gnu/llvm/lib/Target/Mips/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
    C src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
    U src/gnu/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h
    U src/gnu/llvm/lib/Target/Mips/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV65.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV62.gen.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPatterns.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOperands.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCallingConv.td
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepIICHVX.td
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIICHVX.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
    N src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV5.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFCopy.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
    N src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV5.td
    U src/gnu/llvm/lib/Target/Hexagon/RDFRegisters.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSchedule.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
    U src/gnu/llvm/lib/Target/Hexagon/LLVMBuild.txt
    C src/gnu/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPatternsV65.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV65.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.h
    U src/gnu/llvm/lib/Target/Hexagon/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepOperands.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIICScalar.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepMappings.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV65.gen.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepArch.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPseudo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepITypes.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepITypes.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepInstrFormats.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFRegisters.cpp
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFCopy.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepArch.h
    U src/gnu/llvm/lib/Target/Hexagon/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCExpandPseudos.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCSubtarget.h
    U src/gnu/llvm/lib/Target/ARC/ARCFrameLowering.h
    U src/gnu/llvm/lib/Target/ARC/ARCInstrFormats.td
    U src/gnu/llvm/lib/Target/ARC/ARCISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCISelLowering.h
    U src/gnu/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/ARCTargetMachine.h
    U src/gnu/llvm/lib/Target/ARC/ARCTargetMachine.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCTargetStreamer.h
    U src/gnu/llvm/lib/Target/ARC/ARCSubtarget.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARC/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/ARCISelLowering.cpp
    U src/gnu/llvm/lib/Target/ARC/ARC.td
    U src/gnu/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/ARC/ARCMCInstLower.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCRegisterInfo.td
    U src/gnu/llvm/lib/Target/ARC/ARCTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/ARC/ARCMCInstLower.h
    U src/gnu/llvm/lib/Target/ARC/ARC.h
    U src/gnu/llvm/lib/Target/ARC/ARCInstrInfo.h
    U src/gnu/llvm/lib/Target/ARC/ARCInstrInfo.td
    U src/gnu/llvm/lib/Target/ARC/ARCCallingConv.td
    U src/gnu/llvm/lib/Target/ARC/ARCFrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
    U src/gnu/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
    U src/gnu/llvm/lib/Target/ARC/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCInfo.h
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.h
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.h
    U src/gnu/llvm/lib/Target/ARC/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp
    U src/gnu/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.h
    U src/gnu/llvm/lib/Target/ARC/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64SystemOperands.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.h
    N src/gnu/llvm/lib/Target/AArch64/AArch64PfmCounters.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBanks.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64MacroFusion.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
    C src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
    C src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
    C src/gnu/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
    U src/gnu/llvm/lib/Target/AArch64/LLVMBuild.txt
    C src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrFormats.td
    U src/gnu/llvm/lib/Target/AArch64/SVEInstrFormats.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA53.td
    N src/gnu/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedThunderX.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
    C src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/CMakeLists.txt
    N src/gnu/llvm/lib/Target/AArch64/AArch64BranchTargets.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
    C src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64Schedule.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64FastISel.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
    U src/gnu/llvm/lib/Target/AArch64/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64FixupKinds.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
    U src/gnu/llvm/lib/Object/ArchiveWriter.cpp
    U src/gnu/llvm/lib/Object/MachOObjectFile.cpp
    U src/gnu/llvm/lib/Object/MachOUniversal.cpp
    U src/gnu/llvm/lib/Object/ObjectFile.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.h
    U src/gnu/llvm/lib/Object/SymbolSize.cpp
    U src/gnu/llvm/lib/Object/Error.cpp
    U src/gnu/llvm/lib/Object/Decompressor.cpp
    U src/gnu/llvm/lib/Object/ModuleSymbolTable.cpp
    U src/gnu/llvm/lib/Object/SymbolicFile.cpp
    U src/gnu/llvm/lib/Object/IRSymtab.cpp
    U src/gnu/llvm/lib/Object/Object.cpp
    U src/gnu/llvm/lib/Object/LLVMBuild.txt
    U src/gnu/llvm/lib/Object/IRObjectFile.cpp
    U src/gnu/llvm/lib/Object/Binary.cpp
    U src/gnu/llvm/lib/Object/Archive.cpp
    U src/gnu/llvm/lib/Object/CMakeLists.txt
    U src/gnu/llvm/lib/Object/ELFObjectFile.cpp
    U src/gnu/llvm/lib/Object/WindowsResource.cpp
    U src/gnu/llvm/lib/Object/COFFObjectFile.cpp
    U src/gnu/llvm/lib/Object/COFFModuleDefinition.cpp
    U src/gnu/llvm/lib/Object/COFFImportFile.cpp
    U src/gnu/llvm/lib/Object/ELF.cpp
    U src/gnu/llvm/lib/Object/WasmObjectFile.cpp
    N src/gnu/llvm/lib/Passes/StandardInstrumentations.cpp
    U src/gnu/llvm/lib/Passes/PassRegistry.def
    U src/gnu/llvm/lib/Passes/PassBuilder.cpp
    U src/gnu/llvm/lib/Passes/LLVMBuild.txt
    U src/gnu/llvm/lib/Passes/PassPlugin.cpp
    U src/gnu/llvm/lib/Passes/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/WasmEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/FEntryInserter.cpp
    U src/gnu/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
    U src/gnu/llvm/lib/CodeGen/MachinePipeliner.cpp
    U src/gnu/llvm/lib/CodeGen/Analysis.cpp
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.h
    U src/gnu/llvm/lib/CodeGen/LivePhysRegs.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterUsageInfo.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCSE.cpp
    C src/gnu/llvm/lib/CodeGen/StackProtector.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackLayout.h
    U src/gnu/llvm/lib/CodeGen/PseudoSourceValue.cpp
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
    U src/gnu/llvm/lib/CodeGen/BuiltinGCs.cpp
    U src/gnu/llvm/lib/CodeGen/LLVMTargetMachine.cpp
    U src/gnu/llvm/lib/CodeGen/EdgeBundles.cpp
    U src/gnu/llvm/lib/CodeGen/LoopTraversal.cpp
    U src/gnu/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadata.cpp
    U src/gnu/llvm/lib/CodeGen/PHIElimination.cpp
    C src/gnu/llvm/lib/CodeGen/TargetPassConfig.cpp
    U src/gnu/llvm/lib/CodeGen/FuncletLayout.cpp
    U src/gnu/llvm/lib/CodeGen/GCStrategy.cpp
    U src/gnu/llvm/lib/CodeGen/BranchRelaxation.cpp
    U src/gnu/llvm/lib/CodeGen/MacroFusion.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.cpp
    U src/gnu/llvm/lib/CodeGen/ImplicitNullChecks.cpp
    U src/gnu/llvm/lib/CodeGen/DwarfEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackColoring.h
    U src/gnu/llvm/lib/CodeGen/MachineSink.cpp
    U src/gnu/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.cpp
    U src/gnu/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
    U src/gnu/llvm/lib/CodeGen/CFIInstrInserter.cpp
    N src/gnu/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBasic.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLICM.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/XRayInstrumentation.cpp
    U src/gnu/llvm/lib/CodeGen/CodeGen.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.h
    U src/gnu/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.h
    U src/gnu/llvm/lib/CodeGen/CalcSpillWeights.cpp
    U src/gnu/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
    U src/gnu/llvm/lib/CodeGen/GCRootLowering.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCombiner.cpp
    U src/gnu/llvm/lib/CodeGen/ValueTypes.cpp
    U src/gnu/llvm/lib/CodeGen/ExpandReductions.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterPressure.cpp
    U src/gnu/llvm/lib/CodeGen/TargetRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/AtomicExpandPass.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/CodeGen/PatchableFunction.cpp
    U src/gnu/llvm/lib/CodeGen/StackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.h
    U src/gnu/llvm/lib/CodeGen/MachineScheduler.cpp
    U src/gnu/llvm/lib/CodeGen/Spiller.h
    U src/gnu/llvm/lib/CodeGen/MachineFrameInfo.cpp
    U src/gnu/llvm/lib/CodeGen/UnreachableBlockElim.cpp
    U src/gnu/llvm/lib/CodeGen/LiveVariables.cpp
    C src/gnu/llvm/lib/CodeGen/PrologEpilogInserter.cpp
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/MachinePostDominators.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBasicBlock.cpp
    U src/gnu/llvm/lib/CodeGen/README.txt
    U src/gnu/llvm/lib/CodeGen/RegisterClassInfo.cpp
    U src/gnu/llvm/lib/CodeGen/MachineOperand.cpp
    U src/gnu/llvm/lib/CodeGen/IndirectBrExpandPass.cpp
    U src/gnu/llvm/lib/CodeGen/MachineSSAUpdater.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRegMatrix.cpp
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
    U src/gnu/llvm/lib/CodeGen/InlineSpiller.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalMerge.cpp
    U src/gnu/llvm/lib/CodeGen/CodeGenPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/TargetSchedule.cpp
    U src/gnu/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.h
    U src/gnu/llvm/lib/CodeGen/ScheduleDAG.cpp
    U src/gnu/llvm/lib/CodeGen/CallingConvLower.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeShrink.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugValues.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.h
    U src/gnu/llvm/lib/CodeGen/IntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegionInfo.cpp
    C src/gnu/llvm/lib/CodeGen/TargetLoweringBase.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/SjLjEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/ExecutionDomainFix.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunction.cpp
    U src/gnu/llvm/lib/CodeGen/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplication.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.cpp
    U src/gnu/llvm/lib/CodeGen/OptimizePHIs.cpp
    U src/gnu/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrintingPass.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeUtils.h
    U src/gnu/llvm/lib/CodeGen/LowerEmuTLS.cpp
    U src/gnu/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
    U src/gnu/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
    U src/gnu/llvm/lib/CodeGen/TargetInstrInfo.cpp
    U src/gnu/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
    U src/gnu/llvm/lib/CodeGen/FaultMaps.cpp
    U src/gnu/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterScavenging.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstr.cpp
    U src/gnu/llvm/lib/CodeGen/EarlyIfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/SlotIndexes.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.h
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.h
    U src/gnu/llvm/lib/CodeGen/ExpandISelPseudos.cpp
    C src/gnu/llvm/lib/CodeGen/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.cpp
    U src/gnu/llvm/lib/CodeGen/VirtRegMap.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackLayout.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeEdit.cpp
    U src/gnu/llvm/lib/CodeGen/ShrinkWrap.cpp
    U src/gnu/llvm/lib/CodeGen/TargetOptionsImpl.cpp
    U src/gnu/llvm/lib/CodeGen/ExpandMemCmp.cpp
    U src/gnu/llvm/lib/CodeGen/DetectDeadLanes.cpp
    U src/gnu/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplicator.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/BreakFalseDeps.cpp
    U src/gnu/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStack.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervals.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocGreedy.cpp
    U src/gnu/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocFast.cpp
    U src/gnu/llvm/lib/CodeGen/IfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervalUnion.cpp
    U src/gnu/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPass.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRegUnits.cpp
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfo.cpp
    U src/gnu/llvm/lib/CodeGen/ParallelCG.cpp
    U src/gnu/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstrBundle.cpp
    U src/gnu/llvm/lib/CodeGen/StackMaps.cpp
    U src/gnu/llvm/lib/CodeGen/StackSlotColoring.cpp
    U src/gnu/llvm/lib/CodeGen/LiveInterval.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLoopInfo.cpp
    U src/gnu/llvm/lib/CodeGen/WinEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocPBQP.cpp
    U src/gnu/llvm/lib/CodeGen/DFAPacketizer.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCopyPropagation.cpp
    U src/gnu/llvm/lib/CodeGen/MachineOutliner.cpp
    U src/gnu/llvm/lib/CodeGen/LexicalScopes.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.h
    U src/gnu/llvm/lib/CodeGen/MachineTraceMetrics.cpp
    U src/gnu/llvm/lib/CodeGen/PostRASchedulerList.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominators.cpp
    U src/gnu/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
    U src/gnu/llvm/lib/CodeGen/PeepholeOptimizer.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.h
    U src/gnu/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/LowLevelType.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/MachineVerifier.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadataPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/LiveStacks.cpp
    U src/gnu/llvm/lib/CodeGen/AntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/InterleavedAccessPass.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/MIParser.h
    U src/gnu/llvm/lib/CodeGen/MIRParser/MILexer.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/MIRParser/MIParser.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/MIRParser/MILexer.h
    U src/gnu/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
    N src/gnu/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Utils.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalityPredicates.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizeMutations.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LLVMBuild.txt
    N src/gnu/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/WasmException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AccelTable.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
    C src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
    N src/gnu/llvm/lib/CodeGen/AsmPrinter/WasmException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHashAttributes.def
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
    U src/gnu/llvm/lib/Bitcode/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Writer/BitWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/Writer/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.h
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/ValueList.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/BitReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/Reader/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Reader/ValueList.h
    U src/gnu/llvm/lib/Bitcode/Reader/MetadataLoader.h
    U src/gnu/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
    U src/gnu/llvm/lib/ToolDrivers/LLVMBuild.txt
    U src/gnu/llvm/lib/ToolDrivers/CMakeLists.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
    U src/gnu/llvm/lib/ToolDrivers/llvm-lib/Options.td
    U src/gnu/llvm/lib/ToolDrivers/llvm-lib/LLVMBuild.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-lib/CMakeLists.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-dlltool/Options.td
    U src/gnu/llvm/lib/ToolDrivers/llvm-dlltool/LLVMBuild.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-dlltool/CMakeLists.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
    N src/gnu/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
    U src/gnu/llvm/lib/Demangle/ItaniumDemangle.cpp
    U src/gnu/llvm/lib/Demangle/LLVMBuild.txt
    U src/gnu/llvm/lib/Demangle/CMakeLists.txt
    U src/gnu/llvm/lib/Demangle/MicrosoftDemangle.cpp
    U src/gnu/llvm/lib/AsmParser/LLLexer.cpp
    U src/gnu/llvm/lib/AsmParser/LLToken.h
    U src/gnu/llvm/lib/AsmParser/LLParser.h
    U src/gnu/llvm/lib/AsmParser/LLParser.cpp
    U src/gnu/llvm/lib/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/AsmParser/LLLexer.h
    U src/gnu/llvm/lib/AsmParser/Parser.cpp
    U src/gnu/llvm/lib/AsmParser/CMakeLists.txt
    N src/gnu/llvm/lib/MCA/InstrBuilder.cpp
    N src/gnu/llvm/lib/MCA/Context.cpp
    N src/gnu/llvm/lib/MCA/Pipeline.cpp
    N src/gnu/llvm/lib/MCA/LLVMBuild.txt
    N src/gnu/llvm/lib/MCA/Support.cpp
    N src/gnu/llvm/lib/MCA/CMakeLists.txt
    N src/gnu/llvm/lib/MCA/HWEventListener.cpp
    N src/gnu/llvm/lib/MCA/Instruction.cpp
    N src/gnu/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp
    N src/gnu/llvm/lib/MCA/HardwareUnits/Scheduler.cpp
    N src/gnu/llvm/lib/MCA/HardwareUnits/LSUnit.cpp
    N src/gnu/llvm/lib/MCA/HardwareUnits/RetireControlUnit.cpp
    N src/gnu/llvm/lib/MCA/HardwareUnits/HardwareUnit.cpp
    N src/gnu/llvm/lib/MCA/HardwareUnits/RegisterFile.cpp
    N src/gnu/llvm/lib/MCA/Stages/ExecuteStage.cpp
    N src/gnu/llvm/lib/MCA/Stages/EntryStage.cpp
    N src/gnu/llvm/lib/MCA/Stages/InstructionTables.cpp
    N src/gnu/llvm/lib/MCA/Stages/DispatchStage.cpp
    N src/gnu/llvm/lib/MCA/Stages/RetireStage.cpp
    N src/gnu/llvm/lib/MCA/Stages/Stage.cpp
    U src/gnu/llvm/lib/Fuzzer/README.txt
    U src/gnu/llvm/lib/Analysis/CFG.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
    U src/gnu/llvm/lib/Analysis/Analysis.cpp
    U src/gnu/llvm/lib/Analysis/Loads.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Analysis/AliasSetTracker.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/MemorySSAUpdater.cpp
    U src/gnu/llvm/lib/Analysis/TypeMetadataUtils.cpp
    U src/gnu/llvm/lib/Analysis/ProfileSummaryInfo.cpp
    U src/gnu/llvm/lib/Analysis/DivergenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/MemoryLocation.cpp
    U src/gnu/llvm/lib/Analysis/DemandedBits.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/CodeMetrics.cpp
    U src/gnu/llvm/lib/Analysis/ValueLatticeUtils.cpp
    U src/gnu/llvm/lib/Analysis/ConstantFolding.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
    U src/gnu/llvm/lib/Analysis/LazyCallGraph.cpp
    N src/gnu/llvm/lib/Analysis/IVDescriptors.cpp
    U src/gnu/llvm/lib/Analysis/CaptureTracking.cpp
    U src/gnu/llvm/lib/Analysis/ValueTracking.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.h
    U src/gnu/llvm/lib/Analysis/PtrUseVisitor.cpp
    N src/gnu/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
    N src/gnu/llvm/lib/Analysis/OrderedInstructions.cpp
    U src/gnu/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
    U src/gnu/llvm/lib/Analysis/ScopedNoAliasAA.cpp
    U src/gnu/llvm/lib/Analysis/BasicAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
    U src/gnu/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/MemoryBuiltins.cpp
    U src/gnu/llvm/lib/Analysis/DominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/MemDerefPrinter.cpp
    U src/gnu/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/VectorUtils.cpp
    U src/gnu/llvm/lib/Analysis/CFLGraph.h
    U src/gnu/llvm/lib/Analysis/CostModel.cpp
    U src/gnu/llvm/lib/Analysis/MemDepPrinter.cpp
    N src/gnu/llvm/lib/Analysis/GuardUtils.cpp
    U src/gnu/llvm/lib/Analysis/GlobalsModRef.cpp
    U src/gnu/llvm/lib/Analysis/Delinearization.cpp
    U src/gnu/llvm/lib/Analysis/README.txt
    U src/gnu/llvm/lib/Analysis/OrderedBasicBlock.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.cpp
    U src/gnu/llvm/lib/Analysis/RegionPrinter.cpp
    U src/gnu/llvm/lib/Analysis/Lint.cpp
    U src/gnu/llvm/lib/Analysis/InstructionSimplify.cpp
    U src/gnu/llvm/lib/Analysis/TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
    U src/gnu/llvm/lib/Analysis/EHPersonalities.cpp
    U src/gnu/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/DomPrinter.cpp
    U src/gnu/llvm/lib/Analysis/IntervalPartition.cpp
    U src/gnu/llvm/lib/Analysis/InlineCost.cpp
    U src/gnu/llvm/lib/Analysis/LLVMBuild.txt
    U src/gnu/llvm/lib/Analysis/RegionInfo.cpp
    U src/gnu/llvm/lib/Analysis/LoopAnalysisManager.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp
    U src/gnu/llvm/lib/Analysis/RegionPass.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolution.cpp
    N src/gnu/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/LoopAccessAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/MustExecute.cpp
    U src/gnu/llvm/lib/Analysis/InstCount.cpp
    U src/gnu/llvm/lib/Analysis/PostDominators.cpp
    U src/gnu/llvm/lib/Analysis/Trace.cpp
    N src/gnu/llvm/lib/Analysis/StackSafetyAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CmpInstAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/AssumptionCache.cpp
    U src/gnu/llvm/lib/Analysis/TargetLibraryInfo.cpp
    U src/gnu/llvm/lib/Analysis/LazyValueInfo.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/lib/Analysis/PHITransAddr.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
    U src/gnu/llvm/lib/Analysis/CallGraphSCCPass.cpp
    U src/gnu/llvm/lib/Analysis/CFGPrinter.cpp
    U src/gnu/llvm/lib/Analysis/CallPrinter.cpp
    U src/gnu/llvm/lib/Analysis/MemorySSA.cpp
    U src/gnu/llvm/lib/Analysis/StratifiedSets.h
    N src/gnu/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ValueLattice.cpp
    U src/gnu/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/PhiValues.cpp
    U src/gnu/llvm/lib/Analysis/CGSCCPassManager.cpp
    U src/gnu/llvm/lib/Analysis/IVUsers.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/LoopPass.cpp
    U src/gnu/llvm/lib/Analysis/BranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/SyntheticCountsUtils.cpp
    U src/gnu/llvm/lib/Analysis/DependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCInstKind.cpp
    U src/gnu/llvm/lib/Analysis/Interval.cpp
    U src/gnu/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/lib/Analysis/LoopInfo.cpp
    N src/gnu/llvm/lib/TextAPI/LLVMBuild.txt
    N src/gnu/llvm/lib/TextAPI/CMakeLists.txt
    N src/gnu/llvm/lib/TextAPI/ELF/ELFStub.cpp
    N src/gnu/llvm/lib/TextAPI/ELF/TBEHandler.cpp
    U src/gnu/llvm/lib/Support/Hashing.cpp
    U src/gnu/llvm/lib/Support/SmallVector.cpp
    U src/gnu/llvm/lib/Support/regex_impl.h
    U src/gnu/llvm/lib/Support/DynamicLibrary.cpp
    U src/gnu/llvm/lib/Support/BinaryStreamRef.cpp
    U src/gnu/llvm/lib/Support/xxhash.cpp
    U src/gnu/llvm/lib/Support/NativeFormatting.cpp
    U src/gnu/llvm/lib/Support/Memory.cpp
    U src/gnu/llvm/lib/Support/FoldingSet.cpp
    U src/gnu/llvm/lib/Support/StringSaver.cpp
    U src/gnu/llvm/lib/Support/regengine.inc
    U src/gnu/llvm/lib/Support/APSInt.cpp
    U src/gnu/llvm/lib/Support/README.txt.system
    U src/gnu/llvm/lib/Support/Compression.cpp
    U src/gnu/llvm/lib/Support/Timer.cpp
    U src/gnu/llvm/lib/Support/DJB.cpp
    U src/gnu/llvm/lib/Support/ManagedStatic.cpp
    U src/gnu/llvm/lib/Support/DataExtractor.cpp
    U src/gnu/llvm/lib/Support/WithColor.cpp
    U src/gnu/llvm/lib/Support/regutils.h
    U src/gnu/llvm/lib/Support/SmallPtrSet.cpp
    U src/gnu/llvm/lib/Support/GraphWriter.cpp
    U src/gnu/llvm/lib/Support/ScopedPrinter.cpp
    U src/gnu/llvm/lib/Support/StringMap.cpp
    U src/gnu/llvm/lib/Support/BinaryStreamError.cpp
    U src/gnu/llvm/lib/Support/DebugCounter.cpp
    U src/gnu/llvm/lib/Support/SystemUtils.cpp
    U src/gnu/llvm/lib/Support/COM.cpp
    U src/gnu/llvm/lib/Support/CrashRecoveryContext.cpp
    U src/gnu/llvm/lib/Support/LockFileManager.cpp
    U src/gnu/llvm/lib/Support/circular_raw_ostream.cpp
    U src/gnu/llvm/lib/Support/GlobPattern.cpp
    U src/gnu/llvm/lib/Support/regex2.h
    U src/gnu/llvm/lib/Support/RandomNumberGenerator.cpp
    U src/gnu/llvm/lib/Support/COPYRIGHT.regex
    U src/gnu/llvm/lib/Support/regerror.c
    U src/gnu/llvm/lib/Support/ThreadLocal.cpp
    U src/gnu/llvm/lib/Support/Errno.cpp
    U src/gnu/llvm/lib/Support/regstrlcpy.c
    U src/gnu/llvm/lib/Support/APInt.cpp
    U src/gnu/llvm/lib/Support/ARMBuildAttrs.cpp
    U src/gnu/llvm/lib/Support/BlockFrequency.cpp
    U src/gnu/llvm/lib/Support/Chrono.cpp
    U src/gnu/llvm/lib/Support/IntEqClasses.cpp
    U src/gnu/llvm/lib/Support/SpecialCaseList.cpp
    U src/gnu/llvm/lib/Support/YAMLTraits.cpp
    U src/gnu/llvm/lib/Support/ScaledNumber.cpp
    U src/gnu/llvm/lib/Support/Triple.cpp
    U src/gnu/llvm/lib/Support/MathExtras.cpp
    N src/gnu/llvm/lib/Support/BuryPointer.cpp
    U src/gnu/llvm/lib/Support/UnicodeCaseFold.cpp
    U src/gnu/llvm/lib/Support/Error.cpp
    U src/gnu/llvm/lib/Support/DeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/SHA1.cpp
    U src/gnu/llvm/lib/Support/Valgrind.cpp
    U src/gnu/llvm/lib/Support/StringRef.cpp
    U src/gnu/llvm/lib/Support/Program.cpp
    U src/gnu/llvm/lib/Support/StringPool.cpp
    U src/gnu/llvm/lib/Support/BinaryStreamWriter.cpp
    U src/gnu/llvm/lib/Support/RWMutex.cpp
    U src/gnu/llvm/lib/Support/BranchProbability.cpp
    U src/gnu/llvm/lib/Support/FormatVariadic.cpp
    U src/gnu/llvm/lib/Support/VersionTuple.cpp
    N src/gnu/llvm/lib/Support/ARMTargetParser.cpp
    U src/gnu/llvm/lib/Support/CommandLine.cpp
    U src/gnu/llvm/lib/Support/CodeGenCoverage.cpp
    U src/gnu/llvm/lib/Support/ConvertUTFWrapper.cpp
    U src/gnu/llvm/lib/Support/Signals.cpp
    N src/gnu/llvm/lib/Support/AArch64TargetParser.cpp
    U src/gnu/llvm/lib/Support/ThreadPool.cpp
    U src/gnu/llvm/lib/Support/Unicode.cpp
    U src/gnu/llvm/lib/Support/Statistic.cpp
    U src/gnu/llvm/lib/Support/LEB128.cpp
    U src/gnu/llvm/lib/Support/APFloat.cpp
    U src/gnu/llvm/lib/Support/LLVMBuild.txt
    U src/gnu/llvm/lib/Support/Options.cpp
    U src/gnu/llvm/lib/Support/LineIterator.cpp
    U src/gnu/llvm/lib/Support/AMDGPUMetadata.cpp
    N src/gnu/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
    U src/gnu/llvm/lib/Support/Locale.cpp
    U src/gnu/llvm/lib/Support/StringExtras.cpp
    U src/gnu/llvm/lib/Support/DAGDeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/Allocator.cpp
    U src/gnu/llvm/lib/Support/PluginLoader.cpp
    U src/gnu/llvm/lib/Support/IntervalMap.cpp
    U src/gnu/llvm/lib/Support/TrigramIndex.cpp
    U src/gnu/llvm/lib/Support/FileUtilities.cpp
    N src/gnu/llvm/lib/Support/SymbolRemappingReader.cpp
    U src/gnu/llvm/lib/Support/ErrorHandling.cpp
    U src/gnu/llvm/lib/Support/Debug.cpp
    N src/gnu/llvm/lib/Support/FileCheck.cpp
    U src/gnu/llvm/lib/Support/regcomp.c
    U src/gnu/llvm/lib/Support/SourceMgr.cpp
    U src/gnu/llvm/lib/Support/InitLLVM.cpp
    U src/gnu/llvm/lib/Support/CMakeLists.txt
    U src/gnu/llvm/lib/Support/ARMWinEH.cpp
    U src/gnu/llvm/lib/Support/KnownBits.cpp
    U src/gnu/llvm/lib/Support/FileOutputBuffer.cpp
    U src/gnu/llvm/lib/Support/TargetRegistry.cpp
    U src/gnu/llvm/lib/Support/regexec.c
    U src/gnu/llvm/lib/Support/Process.cpp
    U src/gnu/llvm/lib/Support/Atomic.cpp
    U src/gnu/llvm/lib/Support/Twine.cpp
    U src/gnu/llvm/lib/Support/TargetParser.cpp
    U src/gnu/llvm/lib/Support/raw_os_ostream.cpp
    U src/gnu/llvm/lib/Support/Threading.cpp
    U src/gnu/llvm/lib/Support/Path.cpp
    U src/gnu/llvm/lib/Support/Regex.cpp
    U src/gnu/llvm/lib/Support/raw_ostream.cpp
    U src/gnu/llvm/lib/Support/FormattedStream.cpp
    U src/gnu/llvm/lib/Support/Parallel.cpp
    U src/gnu/llvm/lib/Support/ARMAttributeParser.cpp
    U src/gnu/llvm/lib/Support/JSON.cpp
    U src/gnu/llvm/lib/Support/MD5.cpp
    U src/gnu/llvm/lib/Support/CachePruning.cpp
    U src/gnu/llvm/lib/Support/Watchdog.cpp
    U src/gnu/llvm/lib/Support/JamCRC.cpp
    U src/gnu/llvm/lib/Support/YAMLParser.cpp
    N src/gnu/llvm/lib/Support/VirtualFileSystem.cpp
    U src/gnu/llvm/lib/Support/MemoryBuffer.cpp
    U src/gnu/llvm/lib/Support/TarWriter.cpp
    U src/gnu/llvm/lib/Support/ToolOutputFile.cpp
    U src/gnu/llvm/lib/Support/Mutex.cpp
    U src/gnu/llvm/lib/Support/ConvertUTF.cpp
    U src/gnu/llvm/lib/Support/BinaryStreamReader.cpp
    U src/gnu/llvm/lib/Support/PrettyStackTrace.cpp
    U src/gnu/llvm/lib/Support/LowLevelType.cpp
    U src/gnu/llvm/lib/Support/Host.cpp
    U src/gnu/llvm/lib/Support/regfree.c
    U src/gnu/llvm/lib/Support/Windows/Mutex.inc
    U src/gnu/llvm/lib/Support/Windows/Program.inc
    U src/gnu/llvm/lib/Support/Windows/COM.inc
    U src/gnu/llvm/lib/Support/Windows/Threading.inc
    U src/gnu/llvm/lib/Support/Windows/DynamicLibrary.inc
    U src/gnu/llvm/lib/Support/Windows/Signals.inc
    U src/gnu/llvm/lib/Support/Windows/ThreadLocal.inc
    U src/gnu/llvm/lib/Support/Windows/Memory.inc
    U src/gnu/llvm/lib/Support/Windows/Path.inc
    U src/gnu/llvm/lib/Support/Windows/Watchdog.inc
    U src/gnu/llvm/lib/Support/Windows/Host.inc
    U src/gnu/llvm/lib/Support/Windows/explicit_symbols.inc
    U src/gnu/llvm/lib/Support/Windows/WindowsSupport.h
    U src/gnu/llvm/lib/Support/Windows/Process.inc
    U src/gnu/llvm/lib/Support/Windows/RWMutex.inc
    U src/gnu/llvm/lib/Support/Unix/Mutex.inc
    U src/gnu/llvm/lib/Support/Unix/Program.inc
    U src/gnu/llvm/lib/Support/Unix/COM.inc
    U src/gnu/llvm/lib/Support/Unix/Threading.inc
    U src/gnu/llvm/lib/Support/Unix/Unix.h
    U src/gnu/llvm/lib/Support/Unix/README.txt
    U src/gnu/llvm/lib/Support/Unix/DynamicLibrary.inc
    U src/gnu/llvm/lib/Support/Unix/Signals.inc
    U src/gnu/llvm/lib/Support/Unix/ThreadLocal.inc
    U src/gnu/llvm/lib/Support/Unix/Memory.inc
    U src/gnu/llvm/lib/Support/Unix/Path.inc
    U src/gnu/llvm/lib/Support/Unix/Watchdog.inc
    U src/gnu/llvm/lib/Support/Unix/Host.inc
    U src/gnu/llvm/lib/Support/Unix/Process.inc
    U src/gnu/llvm/lib/Support/Unix/RWMutex.inc
    U src/gnu/llvm/lib/FuzzMutate/OpDescriptor.cpp
    U src/gnu/llvm/lib/FuzzMutate/IRMutator.cpp
    U src/gnu/llvm/lib/FuzzMutate/RandomIRBuilder.cpp
    U src/gnu/llvm/lib/FuzzMutate/FuzzerCLI.cpp
    U src/gnu/llvm/lib/FuzzMutate/LLVMBuild.txt
    U src/gnu/llvm/lib/FuzzMutate/Operations.cpp
    U src/gnu/llvm/lib/FuzzMutate/CMakeLists.txt
    U src/gnu/llvm/lib/LineEditor/LineEditor.cpp
    U src/gnu/llvm/lib/LineEditor/LLVMBuild.txt
    U src/gnu/llvm/lib/LineEditor/CMakeLists.txt
    U src/gnu/llvm/lib/WindowsManifest/LLVMBuild.txt
    U src/gnu/llvm/lib/WindowsManifest/CMakeLists.txt
    U src/gnu/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
    U src/gnu/llvm/lib/Linker/IRMover.cpp
    U src/gnu/llvm/lib/Linker/LLVMBuild.txt
    U src/gnu/llvm/lib/Linker/LinkModules.cpp
    U src/gnu/llvm/lib/Linker/LinkDiagnosticInfo.h
    U src/gnu/llvm/lib/Linker/CMakeLists.txt
    U src/gnu/llvm/lib/Testing/LLVMBuild.txt
    U src/gnu/llvm/lib/Testing/CMakeLists.txt
    U src/gnu/llvm/lib/Testing/Support/Error.cpp
    U src/gnu/llvm/lib/Testing/Support/LLVMBuild.txt
    U src/gnu/llvm/lib/Testing/Support/CMakeLists.txt
    N src/gnu/llvm/lib/Testing/Support/SupportHelpers.cpp
    U src/gnu/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
    U src/gnu/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/TargetSelect.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
    U src/gnu/llvm/lib/ExecutionEngine/PerfJITEvents/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
    N src/gnu/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/Layer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/Core.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
    U src/gnu/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
    N src/gnu/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
    U src/gnu/llvm/lib/IR/PassManager.cpp
    U src/gnu/llvm/lib/IR/Type.cpp
    U src/gnu/llvm/lib/IR/Dominators.cpp
    U src/gnu/llvm/lib/IR/Value.cpp
    U src/gnu/llvm/lib/IR/AttributeImpl.h
    U src/gnu/llvm/lib/IR/ConstantsContext.h
    U src/gnu/llvm/lib/IR/ValueSymbolTable.cpp
    U src/gnu/llvm/lib/IR/LLVMContextImpl.cpp
    U src/gnu/llvm/lib/IR/AsmWriter.cpp
    U src/gnu/llvm/lib/IR/AttributesCompatFunc.td
    U src/gnu/llvm/lib/IR/Use.cpp
    U src/gnu/llvm/lib/IR/Statepoint.cpp
    U src/gnu/llvm/lib/IR/LLVMContext.cpp
    U src/gnu/llvm/lib/IR/Instructions.cpp
    U src/gnu/llvm/lib/IR/DiagnosticPrinter.cpp
    U src/gnu/llvm/lib/IR/ConstantFold.h
    U src/gnu/llvm/lib/IR/SymbolTableListTraitsImpl.h
    U src/gnu/llvm/lib/IR/ConstantRange.cpp
    U src/gnu/llvm/lib/IR/Pass.cpp
    U src/gnu/llvm/lib/IR/Metadata.cpp
    U src/gnu/llvm/lib/IR/IRBuilder.cpp
    U src/gnu/llvm/lib/IR/PassRegistry.cpp
    U src/gnu/llvm/lib/IR/DomTreeUpdater.cpp
    U src/gnu/llvm/lib/IR/DiagnosticInfo.cpp
    U src/gnu/llvm/lib/IR/DebugInfo.cpp
    U src/gnu/llvm/lib/IR/DebugLoc.cpp
    U src/gnu/llvm/lib/IR/OptBisect.cpp
    N src/gnu/llvm/lib/IR/PassTimingInfo.cpp
    U src/gnu/llvm/lib/IR/LLVMBuild.txt
    U src/gnu/llvm/lib/IR/TypeFinder.cpp
    U src/gnu/llvm/lib/IR/BasicBlock.cpp
    U src/gnu/llvm/lib/IR/Comdat.cpp
    U src/gnu/llvm/lib/IR/InlineAsm.cpp
    U src/gnu/llvm/lib/IR/Verifier.cpp
    U src/gnu/llvm/lib/IR/DataLayout.cpp
    U src/gnu/llvm/lib/IR/LegacyPassManager.cpp
    U src/gnu/llvm/lib/IR/Attributes.cpp
    U src/gnu/llvm/lib/IR/User.cpp
    U src/gnu/llvm/lib/IR/ConstantFold.cpp
    U src/gnu/llvm/lib/IR/CMakeLists.txt
    U src/gnu/llvm/lib/IR/Module.cpp
    U src/gnu/llvm/lib/IR/LLVMContextImpl.h
    U src/gnu/llvm/lib/IR/Mangler.cpp
    U src/gnu/llvm/lib/IR/ModuleSummaryIndex.cpp
    U src/gnu/llvm/lib/IR/DiagnosticHandler.cpp
    U src/gnu/llvm/lib/IR/DIBuilder.cpp
    U src/gnu/llvm/lib/IR/ProfileSummary.cpp
    U src/gnu/llvm/lib/IR/IntrinsicInst.cpp
    U src/gnu/llvm/lib/IR/IRPrintingPasses.cpp
    U src/gnu/llvm/lib/IR/Instruction.cpp
    U src/gnu/llvm/lib/IR/SafepointIRVerifier.cpp
    U src/gnu/llvm/lib/IR/DebugInfoMetadata.cpp
    U src/gnu/llvm/lib/IR/MetadataImpl.h
    U src/gnu/llvm/lib/IR/Globals.cpp
    U src/gnu/llvm/lib/IR/Function.cpp
    U src/gnu/llvm/lib/IR/Operator.cpp
    U src/gnu/llvm/lib/IR/Core.cpp
    U src/gnu/llvm/lib/IR/MDBuilder.cpp
    U src/gnu/llvm/lib/IR/AutoUpgrade.cpp
    U src/gnu/llvm/lib/IR/Constants.cpp
    N src/gnu/llvm/lib/IR/PassInstrumentation.cpp
    U src/gnu/llvm/lib/IR/GVMaterializer.cpp
    U src/gnu/llvm/lib/IRReader/IRReader.cpp
    U src/gnu/llvm/lib/IRReader/LLVMBuild.txt
    U src/gnu/llvm/lib/IRReader/CMakeLists.txt
    N src/gnu/llvm/lib/BinaryFormat/MsgPackTypes.cpp
    N src/gnu/llvm/lib/BinaryFormat/MsgPackReader.cpp
    U src/gnu/llvm/lib/BinaryFormat/LLVMBuild.txt
    N src/gnu/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
    U src/gnu/llvm/lib/BinaryFormat/CMakeLists.txt
    N src/gnu/llvm/lib/BinaryFormat/MsgPackWriter.cpp
    U src/gnu/llvm/lib/BinaryFormat/Magic.cpp
    U src/gnu/llvm/lib/BinaryFormat/Dwarf.cpp
    U src/gnu/llvm/lib/BinaryFormat/Wasm.cpp
    U src/gnu/llvm/lib/Option/ArgList.cpp
    U src/gnu/llvm/lib/Option/Option.cpp
    U src/gnu/llvm/lib/Option/LLVMBuild.txt
    U src/gnu/llvm/lib/Option/OptTable.cpp
    U src/gnu/llvm/lib/Option/CMakeLists.txt
    U src/gnu/llvm/lib/Option/Arg.cpp
    U src/gnu/llvm/lib/LTO/LTOCodeGenerator.cpp
    U src/gnu/llvm/lib/LTO/LTOBackend.cpp
    U src/gnu/llvm/lib/LTO/UpdateCompilerUsed.cpp
    U src/gnu/llvm/lib/LTO/LTOModule.cpp
    U src/gnu/llvm/lib/LTO/LLVMBuild.txt
    U src/gnu/llvm/lib/LTO/CMakeLists.txt
    U src/gnu/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
    N src/gnu/llvm/lib/LTO/SummaryBasedOptimizations.cpp
    U src/gnu/llvm/lib/LTO/LTO.cpp
    U src/gnu/llvm/lib/LTO/Caching.cpp
    N src/gnu/llvm/lib/OptRemarks/OptRemarksParser.cpp
    N src/gnu/llvm/lib/OptRemarks/LLVMBuild.txt
    N src/gnu/llvm/lib/OptRemarks/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Scalar/LoopPredication.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantProp.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalarizer.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVNHoist.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GuardWidening.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ADCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Float2Int.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Sink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Reassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/IVUsersPrinter.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/BDCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/NewGVN.cpp
    C src/gnu/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopSink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalar.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
    N src/gnu/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SCCP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MergeICmps.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRotation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SROA.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/JumpThreading.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVN.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVNSink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroInstr.h
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroElide.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/Coroutines.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroInternal.h
    U src/gnu/llvm/lib/Transforms/Coroutines/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalOpt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPO.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ExtractGV.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/MergeFunctions.cpp
    U src/gnu/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ConstantMerge.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PartialInlining.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PruneEH.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/FunctionImport.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SampleProfile.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
    N src/gnu/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
    U src/gnu/llvm/lib/Transforms/IPO/InlineSimple.cpp
    U src/gnu/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripSymbols.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalSplit.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/IPO/LoopExtractor.cpp
    U src/gnu/llvm/lib/Transforms/IPO/Internalize.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalDCE.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SCCP.cpp
    U src/gnu/llvm/lib/Transforms/IPO/Inliner.cpp
    U src/gnu/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
    U src/gnu/llvm/lib/Transforms/IPO/BlockExtractor.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.h
    U src/gnu/llvm/lib/Transforms/Vectorize/Vectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
    N src/gnu/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanDominatorTree.h
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanVerifier.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanValue.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanLoopInfo.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlan.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlan.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h
    U src/gnu/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/CFGMST.h
    N src/gnu/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
    N src/gnu/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
    U src/gnu/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SSAUpdaterBulk.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ModuleUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/InlineFunction.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CtorUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FunctionComparator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnroll.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FlattenCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/MetaRenamer.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/GlobalStatus.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CodeExtractor.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Utils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerInvoke.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SSAUpdater.cpp
    U src/gnu/llvm/lib/Transforms/Utils/PredicateInfo.cpp
    U src/gnu/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
    N src/gnu/llvm/lib/Transforms/Utils/GuardUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopVersioning.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneFunction.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
    U src/gnu/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
    U src/gnu/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CallPromotionUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/VNCoercion.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LCSSA.cpp
    U src/gnu/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Evaluator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Utils/IntegerDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
    U src/gnu/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerSwitch.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SanitizerStats.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ValueMapper.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Local.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SplitModule.cpp
    U src/gnu/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Mem2Reg.cpp
    U src/gnu/llvm/lib/Transforms/Utils/InstructionNamer.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneModule.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Hello/Hello.exports
    U src/gnu/llvm/lib/Transforms/Hello/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Hello/Hello.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineTables.td
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
    U src/gnu/llvm/lib/TableGen/TGLexer.cpp
    U src/gnu/llvm/lib/TableGen/TableGenBackend.cpp
    U src/gnu/llvm/lib/TableGen/TGLexer.h
    U src/gnu/llvm/lib/TableGen/Record.cpp
    U src/gnu/llvm/lib/TableGen/Error.cpp
    U src/gnu/llvm/lib/TableGen/TGParser.h
    U src/gnu/llvm/lib/TableGen/Main.cpp
    U src/gnu/llvm/lib/TableGen/LLVMBuild.txt
    U src/gnu/llvm/lib/TableGen/CMakeLists.txt
    U src/gnu/llvm/lib/TableGen/SetTheory.cpp
    U src/gnu/llvm/lib/TableGen/TGParser.cpp
    U src/gnu/llvm/lib/TableGen/JSONBackend.cpp
    U src/gnu/llvm/lib/TableGen/StringMatcher.cpp
    N src/gnu/llvm/lib/XRay/BlockVerifier.cpp
    N src/gnu/llvm/lib/XRay/FDRTraceWriter.cpp
    N src/gnu/llvm/lib/XRay/BlockPrinter.cpp
    N src/gnu/llvm/lib/XRay/FileHeaderReader.cpp
    N src/gnu/llvm/lib/XRay/LogBuilderConsumer.cpp
    N src/gnu/llvm/lib/XRay/LLVMBuild.txt
    N src/gnu/llvm/lib/XRay/RecordPrinter.cpp
    N src/gnu/llvm/lib/XRay/FDRRecordProducer.cpp
    U src/gnu/llvm/lib/XRay/Trace.cpp
    N src/gnu/llvm/lib/XRay/FDRTraceExpander.cpp
    N src/gnu/llvm/lib/XRay/RecordInitializer.cpp
    U src/gnu/llvm/lib/XRay/CMakeLists.txt
    N src/gnu/llvm/lib/XRay/FDRRecords.cpp
    U src/gnu/llvm/lib/XRay/InstrumentationMap.cpp
    N src/gnu/llvm/lib/XRay/BlockIndexer.cpp
    N src/gnu/llvm/lib/XRay/Profile.cpp
    U src/gnu/llvm/lib/DebugInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDB.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/GenericError.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBContext.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/Hash.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/SymbolCache.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/InfoStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PublicsStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/RawError.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/SymbolStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PDBStringTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/GlobalsStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NamedStreamMap.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
    N src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeVTShape.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/EnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/HashTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/Symbolize/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
    U src/gnu/llvm/lib/DebugInfo/CodeView/SimpleTypeSerializer.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/Formatters.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/RecordName.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/Line.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeTableCollection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/MergingTypeTableBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/StringsAndChecksums.cpp
    N src/gnu/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFCommon.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFError.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/GCOV.cpp
    U src/gnu/llvm/lib/ProfileData/LLVMBuild.txt
    U src/gnu/llvm/lib/ProfileData/InstrProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/CMakeLists.txt
    U src/gnu/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProf.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProf.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/LLVMBuild.txt
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCELFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCMachOStreamer.cpp
    U src/gnu/llvm/lib/MC/MCAsmBackend.cpp
    U src/gnu/llvm/lib/MC/MCSectionCOFF.cpp
    U src/gnu/llvm/lib/MC/MCFragment.cpp
    U src/gnu/llvm/lib/MC/SubtargetFeature.cpp
    U src/gnu/llvm/lib/MC/MCInstrDesc.cpp
    U src/gnu/llvm/lib/MC/MCWasmStreamer.cpp
    U src/gnu/llvm/lib/MC/MCSymbol.cpp
    U src/gnu/llvm/lib/MC/ConstantPools.cpp
    U src/gnu/llvm/lib/MC/MCExpr.cpp
    U src/gnu/llvm/lib/MC/MCWinCOFFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfo.cpp
    U src/gnu/llvm/lib/MC/MCSchedule.cpp
    U src/gnu/llvm/lib/MC/MachObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCSymbolELF.cpp
    U src/gnu/llvm/lib/MC/MCInst.cpp
    U src/gnu/llvm/lib/MC/MCAssembler.cpp
    U src/gnu/llvm/lib/MC/MCNullStreamer.cpp
    U src/gnu/llvm/lib/MC/MCObjectStreamer.cpp
    U src/gnu/llvm/lib/MC/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCELFObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/MCSectionMachO.cpp
    U src/gnu/llvm/lib/MC/MCStreamer.cpp
    U src/gnu/llvm/lib/MC/MCObjectWriter.cpp
    U src/gnu/llvm/lib/MC/ELFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoWasm.cpp
    U src/gnu/llvm/lib/MC/MCContext.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoCOFF.cpp
    U src/gnu/llvm/lib/MC/MCSectionELF.cpp
    U src/gnu/llvm/lib/MC/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCRegisterInfo.cpp
    U src/gnu/llvm/lib/MC/MCSectionWasm.cpp
    U src/gnu/llvm/lib/MC/MCSubtargetInfo.cpp
    U src/gnu/llvm/lib/MC/MCValue.cpp
    U src/gnu/llvm/lib/MC/MCTargetOptions.cpp
    U src/gnu/llvm/lib/MC/MCAsmStreamer.cpp
    U src/gnu/llvm/lib/MC/MCLinkerOptimizationHint.cpp
    U src/gnu/llvm/lib/MC/MCCodeEmitter.cpp
    U src/gnu/llvm/lib/MC/MCDwarf.cpp
    U src/gnu/llvm/lib/MC/MCLabel.cpp
    U src/gnu/llvm/lib/MC/MCInstPrinter.cpp
    U src/gnu/llvm/lib/MC/MCCodePadder.cpp
    U src/gnu/llvm/lib/MC/MCAsmMacro.cpp
    U src/gnu/llvm/lib/MC/MCInstrAnalysis.cpp
    U src/gnu/llvm/lib/MC/MCMachObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/WasmObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCObjectFileInfo.cpp
    U src/gnu/llvm/lib/MC/MCWin64EH.cpp
    U src/gnu/llvm/lib/MC/StringTableBuilder.cpp
    U src/gnu/llvm/lib/MC/MCSection.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoDarwin.cpp
    U src/gnu/llvm/lib/MC/MCWinEH.cpp
    U src/gnu/llvm/lib/MC/WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCCodeView.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoELF.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.h
    U src/gnu/llvm/lib/MC/MCDisassembler/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
    C src/gnu/llvm/lib/MC/MCParser/AsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/AsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParserExtension.cpp
    U src/gnu/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/ELFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParser.cpp
    N src/gnu/llvm/lib/MC/MCParser/WasmAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/COFFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCParser/CMakeLists.txt
    U src/gnu/llvm/unittests/CMakeLists.txt
    N src/gnu/llvm/unittests/unittest.cfg.in
    U src/gnu/llvm/unittests/ObjectYAML/YAMLTest.cpp
    U src/gnu/llvm/unittests/ObjectYAML/CMakeLists.txt
    U src/gnu/llvm/unittests/Target/CMakeLists.txt
    U src/gnu/llvm/unittests/Target/WebAssembly/CMakeLists.txt
    U src/gnu/llvm/unittests/Target/WebAssembly/WebAssemblyExceptionInfoTest.cpp
    U src/gnu/llvm/unittests/Target/AArch64/InstSizes.cpp
    U src/gnu/llvm/unittests/Target/AArch64/CMakeLists.txt
    U src/gnu/llvm/unittests/Object/SymbolSizeTest.cpp
    U src/gnu/llvm/unittests/Object/SymbolicFileTest.cpp
    U src/gnu/llvm/unittests/Object/CMakeLists.txt
    U src/gnu/llvm/unittests/Passes/TestPlugin.cpp
    U src/gnu/llvm/unittests/Passes/PluginsTest.cpp
    U src/gnu/llvm/unittests/Passes/TestPlugin.h
    U src/gnu/llvm/unittests/Passes/CMakeLists.txt
    U src/gnu/llvm/unittests/CodeGen/DIEHashTest.cpp
    U src/gnu/llvm/unittests/CodeGen/ScalableVectorMVTsTest.cpp
    U src/gnu/llvm/unittests/CodeGen/LowLevelTypeTest.cpp
    U src/gnu/llvm/unittests/CodeGen/MachineOperandTest.cpp
    U src/gnu/llvm/unittests/CodeGen/MachineInstrTest.cpp
    N src/gnu/llvm/unittests/CodeGen/AArch64SelectionDAGTest.cpp
    U src/gnu/llvm/unittests/CodeGen/CMakeLists.txt
    U src/gnu/llvm/unittests/CodeGen/MachineInstrBundleIteratorTest.cpp
    N src/gnu/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h
    N src/gnu/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
    N src/gnu/llvm/unittests/CodeGen/GlobalISel/LegalizerHelperTest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/PatternMatchTest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/CMakeLists.txt
    U src/gnu/llvm/unittests/Bitcode/BitstreamReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitstreamWriterTest.cpp
    U src/gnu/llvm/unittests/Bitcode/CMakeLists.txt
    U src/gnu/llvm/unittests/MI/LiveIntervalTest.cpp
    U src/gnu/llvm/unittests/MI/CMakeLists.txt
    U src/gnu/llvm/unittests/Demangle/PartialDemangleTest.cpp
    N src/gnu/llvm/unittests/Demangle/ItaniumDemangleTest.cpp
    U src/gnu/llvm/unittests/Demangle/CMakeLists.txt
    U src/gnu/llvm/unittests/AsmParser/AsmParserTest.cpp
    U src/gnu/llvm/unittests/AsmParser/CMakeLists.txt
    U src/gnu/llvm/unittests/Analysis/TBAATest.cpp
    U src/gnu/llvm/unittests/Analysis/BranchProbabilityInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/AliasAnalysisTest.cpp
    U src/gnu/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/AliasSetTrackerTest.cpp
    N src/gnu/llvm/unittests/Analysis/UnrollAnalyzerTest.cpp
    U src/gnu/llvm/unittests/Analysis/ValueLatticeTest.cpp
    U src/gnu/llvm/unittests/Analysis/CGSCCPassManagerTest.cpp
    N src/gnu/llvm/unittests/Analysis/OrderedInstructionsTest.cpp
    N src/gnu/llvm/unittests/Analysis/BasicAliasAnalysisTest.cpp
    U src/gnu/llvm/unittests/Analysis/GlobalsModRefTest.cpp
    N src/gnu/llvm/unittests/Analysis/CaptureTrackingTest.cpp
    U src/gnu/llvm/unittests/Analysis/LazyCallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/ValueTrackingTest.cpp
    U src/gnu/llvm/unittests/Analysis/CFGTest.cpp
    U src/gnu/llvm/unittests/Analysis/LoopInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/PhiValuesTest.cpp
    U src/gnu/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
    N src/gnu/llvm/unittests/Analysis/MemorySSATest.cpp
    U src/gnu/llvm/unittests/Analysis/CMakeLists.txt
    U src/gnu/llvm/unittests/Analysis/CallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/SparsePropagation.cpp
    N src/gnu/llvm/unittests/Analysis/DivergenceAnalysisTest.cpp
    U src/gnu/llvm/unittests/Analysis/ProfileSummaryInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/OrderedBasicBlockTest.cpp
    U src/gnu/llvm/unittests/Analysis/MemoryBuiltinsTest.cpp
    U src/gnu/llvm/unittests/Analysis/BlockFrequencyInfoTest.cpp
    N src/gnu/llvm/unittests/TextAPI/CMakeLists.txt
    N src/gnu/llvm/unittests/TextAPI/ELFYAMLTest.cpp
    N src/gnu/llvm/unittests/Support/VirtualFileSystemTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLParserTest.cpp
    U src/gnu/llvm/unittests/Support/EndianStreamTest.cpp
    U src/gnu/llvm/unittests/Support/NativeFormatTests.cpp
    U src/gnu/llvm/unittests/Support/MathExtrasTest.cpp
    U src/gnu/llvm/unittests/Support/TrigramIndexTest.cpp
    U src/gnu/llvm/unittests/Support/BranchProbabilityTest.cpp
    U src/gnu/llvm/unittests/Support/MemoryBufferTest.cpp
    U src/gnu/llvm/unittests/Support/ReplaceFileTest.cpp
    U src/gnu/llvm/unittests/Support/formatted_raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/ManagedStatic.cpp
    U src/gnu/llvm/unittests/Support/TimerTest.cpp
    U src/gnu/llvm/unittests/Support/CommandLineTest.cpp
    U src/gnu/llvm/unittests/Support/GlobPatternTest.cpp
    U src/gnu/llvm/unittests/Support/ErrnoTest.cpp
    U src/gnu/llvm/unittests/Support/ThreadLocalTest.cpp
    U src/gnu/llvm/unittests/Support/DataExtractorTest.cpp
    U src/gnu/llvm/unittests/Support/ArrayRecyclerTest.cpp
    U src/gnu/llvm/unittests/Support/CachePruningTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLIOTest.cpp
    U src/gnu/llvm/unittests/Support/FormatVariadicTest.cpp
    U src/gnu/llvm/unittests/Support/xxhashTest.cpp
    U src/gnu/llvm/unittests/Support/LEB128Test.cpp
    N src/gnu/llvm/unittests/Support/ItaniumManglingCanonicalizerTest.cpp
    U src/gnu/llvm/unittests/Support/Chrono.cpp
    U src/gnu/llvm/unittests/Support/AlignOfTest.cpp
    U src/gnu/llvm/unittests/Support/LockFileManagerTest.cpp
    U src/gnu/llvm/unittests/Support/EndianTest.cpp
    U src/gnu/llvm/unittests/Support/DebugCounterTest.cpp
    U src/gnu/llvm/unittests/Support/JSONTest.cpp
    U src/gnu/llvm/unittests/Support/StringPool.cpp
    U src/gnu/llvm/unittests/Support/TarWriterTest.cpp
    U src/gnu/llvm/unittests/Support/Casting.cpp
    U src/gnu/llvm/unittests/Support/ProgramTest.cpp
    U src/gnu/llvm/unittests/Support/SourceMgrTest.cpp
    U src/gnu/llvm/unittests/Support/TaskQueueTest.cpp
    U src/gnu/llvm/unittests/Support/TypeTraitsTest.cpp
    U src/gnu/llvm/unittests/Support/MD5Test.cpp
    U src/gnu/llvm/unittests/Support/BinaryStreamTest.cpp
    U src/gnu/llvm/unittests/Support/SwapByteOrderTest.cpp
    U src/gnu/llvm/unittests/Support/RegexTest.cpp
    U src/gnu/llvm/unittests/Support/BlockFrequencyTest.cpp
    U src/gnu/llvm/unittests/Support/raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/SpecialCaseListTest.cpp
    U src/gnu/llvm/unittests/Support/ErrorOrTest.cpp
    U src/gnu/llvm/unittests/Support/ThreadPool.cpp
    U src/gnu/llvm/unittests/Support/ParallelTest.cpp
    U src/gnu/llvm/unittests/Support/ScaledNumberTest.cpp
    U src/gnu/llvm/unittests/Support/VersionTupleTest.cpp
    N src/gnu/llvm/unittests/Support/SymbolRemappingReaderTest.cpp
    U src/gnu/llvm/unittests/Support/DJBTest.cpp
    U src/gnu/llvm/unittests/Support/ConvertUTFTest.cpp
    U src/gnu/llvm/unittests/Support/raw_sha1_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/MemoryTest.cpp
    U src/gnu/llvm/unittests/Support/CMakeLists.txt
    U src/gnu/llvm/unittests/Support/UnicodeTest.cpp
    U src/gnu/llvm/unittests/Support/CompressionTest.cpp
    U src/gnu/llvm/unittests/Support/TargetParserTest.cpp
    U src/gnu/llvm/unittests/Support/CrashRecoveryTest.cpp
    U src/gnu/llvm/unittests/Support/ProcessTest.cpp
    U src/gnu/llvm/unittests/Support/TypeNameTest.cpp
    U src/gnu/llvm/unittests/Support/Threading.cpp
    U src/gnu/llvm/unittests/Support/Path.cpp
    U src/gnu/llvm/unittests/Support/raw_pwrite_stream_test.cpp
    U src/gnu/llvm/unittests/Support/ARMAttributeParser.cpp
    U src/gnu/llvm/unittests/Support/ErrorTest.cpp
    U src/gnu/llvm/unittests/Support/CheckedArithmeticTest.cpp
    U src/gnu/llvm/unittests/Support/ReverseIterationTest.cpp
    U src/gnu/llvm/unittests/Support/Host.cpp
    U src/gnu/llvm/unittests/Support/TrailingObjectsTest.cpp
    U src/gnu/llvm/unittests/Support/AllocatorTest.cpp
    U src/gnu/llvm/unittests/Support/LineIteratorTest.cpp
    U src/gnu/llvm/unittests/Support/FileOutputBufferTest.cpp
    U src/gnu/llvm/unittests/Support/DebugTest.cpp
    U src/gnu/llvm/unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp
    U src/gnu/llvm/unittests/Support/DynamicLibrary/CMakeLists.txt
    U src/gnu/llvm/unittests/Support/DynamicLibrary/PipSqueak.cpp
    U src/gnu/llvm/unittests/Support/DynamicLibrary/PipSqueak.h
    U src/gnu/llvm/unittests/Support/DynamicLibrary/ExportedFuncs.cpp
    U src/gnu/llvm/unittests/FuzzMutate/RandomIRBuilderTest.cpp
    U src/gnu/llvm/unittests/FuzzMutate/StrategiesTest.cpp
    U src/gnu/llvm/unittests/FuzzMutate/CMakeLists.txt
    U src/gnu/llvm/unittests/FuzzMutate/OperationsTest.cpp
    U src/gnu/llvm/unittests/FuzzMutate/ReservoirSamplerTest.cpp
    U src/gnu/llvm/unittests/LineEditor/LineEditor.cpp
    U src/gnu/llvm/unittests/LineEditor/CMakeLists.txt
    U src/gnu/llvm/unittests/Linker/LinkModulesTest.cpp
    U src/gnu/llvm/unittests/Linker/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTests.def
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMemoryManagerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestAPICommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/IndirectionUtilsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/GlobalMappingLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/ThreadSafeModuleTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/RemoteObjectLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LazyEmittingLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/LegacyCompileOnDemandLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectTransformLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/LegacyRTDyldObjectLinkingLayerTest.cpp
    N src/gnu/llvm/unittests/ExecutionEngine/Orc/JITTargetMachineBuilderTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LegacyAPIInteropTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/QueueChannel.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/QueueChannel.cpp
    U src/gnu/llvm/unittests/IR/BasicBlockTest.cpp
    U src/gnu/llvm/unittests/IR/ModuleTest.cpp
    U src/gnu/llvm/unittests/IR/MDBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/InstructionsTest.cpp
    U src/gnu/llvm/unittests/IR/PassBuilderCallbacksTest.cpp
    U src/gnu/llvm/unittests/IR/IRBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/ValueMapTest.cpp
    U src/gnu/llvm/unittests/IR/CFGBuilder.cpp
    U src/gnu/llvm/unittests/IR/CFGBuilder.h
    U src/gnu/llvm/unittests/IR/AsmWriterTest.cpp
    U src/gnu/llvm/unittests/IR/ValueTest.cpp
    U src/gnu/llvm/unittests/IR/UserTest.cpp
    U src/gnu/llvm/unittests/IR/DebugInfoTest.cpp
    U src/gnu/llvm/unittests/IR/AttributesTest.cpp
    U src/gnu/llvm/unittests/IR/MetadataTest.cpp
    U src/gnu/llvm/unittests/IR/UseTest.cpp
    U src/gnu/llvm/unittests/IR/ManglerTest.cpp
    U src/gnu/llvm/unittests/IR/IntrinsicsTest.cpp
    U src/gnu/llvm/unittests/IR/DominatorTreeTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantsTest.cpp
    U src/gnu/llvm/unittests/IR/ValueHandleTest.cpp
    U src/gnu/llvm/unittests/IR/WaymarkTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantRangeTest.cpp
    U src/gnu/llvm/unittests/IR/PatternMatch.cpp
    U src/gnu/llvm/unittests/IR/CMakeLists.txt
    U src/gnu/llvm/unittests/IR/DomTreeUpdaterTest.cpp
    U src/gnu/llvm/unittests/IR/DominatorTreeBatchUpdatesTest.cpp
    U src/gnu/llvm/unittests/IR/TypesTest.cpp
    U src/gnu/llvm/unittests/IR/FunctionTest.cpp
    U src/gnu/llvm/unittests/IR/DebugTypeODRUniquingTest.cpp
    U src/gnu/llvm/unittests/IR/LegacyPassManagerTest.cpp
    U src/gnu/llvm/unittests/IR/VerifierTest.cpp
    U src/gnu/llvm/unittests/IR/PassManagerTest.cpp
    N src/gnu/llvm/unittests/BinaryFormat/MsgPackTypesTest.cpp
    N src/gnu/llvm/unittests/BinaryFormat/MsgPackWriterTest.cpp
    U src/gnu/llvm/unittests/BinaryFormat/TestFileMagic.cpp
    U src/gnu/llvm/unittests/BinaryFormat/DwarfTest.cpp
    U src/gnu/llvm/unittests/BinaryFormat/MachOTest.cpp
    N src/gnu/llvm/unittests/BinaryFormat/MsgPackReaderTest.cpp
    U src/gnu/llvm/unittests/BinaryFormat/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp
    U src/gnu/llvm/unittests/tools/llvm-cfi-verify/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-cfi-verify/FileAnalysis.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/PerfHelperTest.cpp
    N src/gnu/llvm/unittests/tools/llvm-exegesis/RegisterValueTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/CMakeLists.txt
    N src/gnu/llvm/unittests/tools/llvm-exegesis/BenchmarkRunnerTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/ClusteringTest.cpp
    N src/gnu/llvm/unittests/tools/llvm-exegesis/PowerPC/TargetTest.cpp
    N src/gnu/llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp
    N src/gnu/llvm/unittests/tools/llvm-exegesis/PowerPC/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-exegesis/ARM/AssemblerTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/ARM/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-exegesis/Common/AssemblerUtils.h
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/TargetTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/AnalysisTest.cpp
    N src/gnu/llvm/unittests/tools/llvm-exegesis/X86/BenchmarkResultTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/RegisterAliasingTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/SnippetGeneratorTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/AArch64/TargetTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/AArch64/CMakeLists.txt
    U src/gnu/llvm/unittests/Option/OptionParsingTest.cpp
    U src/gnu/llvm/unittests/Option/CMakeLists.txt
    U src/gnu/llvm/unittests/Option/Opts.td
    N src/gnu/llvm/unittests/OptRemarks/CMakeLists.txt
    N src/gnu/llvm/unittests/OptRemarks/OptRemarksParsingTest.cpp
    U src/gnu/llvm/unittests/Transforms/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp
    U src/gnu/llvm/unittests/Transforms/Scalar/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/IPO/WholeProgramDevirt.cpp
    U src/gnu/llvm/unittests/Transforms/IPO/LowerTypeTests.cpp
    U src/gnu/llvm/unittests/Transforms/IPO/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanHCFGTest.cpp
    N src/gnu/llvm/unittests/Transforms/Vectorize/VPlanSlpTest.cpp
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanLoopInfoTest.cpp
    U src/gnu/llvm/unittests/Transforms/Vectorize/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanTestBase.h
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanDominatorTreeTest.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/UnrollLoopTest.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/LocalTest.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/SSAUpdaterBulkTest.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ASanStackFrameLayoutTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/BasicBlockUtilsTest.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/IntegerDivisionTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/CMakeLists.txt
    N src/gnu/llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp
    N src/gnu/llvm/unittests/Transforms/Utils/CloningTest.cpp
    U src/gnu/llvm/unittests/ADT/IListNodeBaseTest.cpp
    U src/gnu/llvm/unittests/ADT/OptionalTest.cpp
    U src/gnu/llvm/unittests/ADT/MakeUniqueTest.cpp
    U src/gnu/llvm/unittests/ADT/FoldingSet.cpp
    U src/gnu/llvm/unittests/ADT/DepthFirstIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallPtrSetTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerUnionTest.cpp
    N src/gnu/llvm/unittests/ADT/ImmutableListTest.cpp
    U src/gnu/llvm/unittests/ADT/TinyPtrVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/APSIntTest.cpp
    U src/gnu/llvm/unittests/ADT/IListIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/DeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/VariadicFunctionTest.cpp
    U src/gnu/llvm/unittests/ADT/FunctionRefTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableMapTest.cpp
    U src/gnu/llvm/unittests/ADT/RangeAdapterTest.cpp
    U src/gnu/llvm/unittests/ADT/BreadthFirstIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/StringExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/TripleTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerSumTypeTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseSetTest.cpp
    U src/gnu/llvm/unittests/ADT/FunctionExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableSetTest.cpp
    U src/gnu/llvm/unittests/ADT/IteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/MapVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallStringTest.cpp
    U src/gnu/llvm/unittests/ADT/BumpPtrListTest.cpp
    U src/gnu/llvm/unittests/ADT/IntervalMapTest.cpp
    U src/gnu/llvm/unittests/ADT/IListTest.cpp
    U src/gnu/llvm/unittests/ADT/SCCIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/AnyTest.cpp
    U src/gnu/llvm/unittests/ADT/StringMapTest.cpp
    U src/gnu/llvm/unittests/ADT/STLExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/SetVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/APIntTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerEmbeddedIntTest.cpp
    U src/gnu/llvm/unittests/ADT/IListBaseTest.cpp
    U src/gnu/llvm/unittests/ADT/PriorityWorklistTest.cpp
    U src/gnu/llvm/unittests/ADT/ScopeExitTest.cpp
    U src/gnu/llvm/unittests/ADT/HashingTest.cpp
    U src/gnu/llvm/unittests/ADT/StringRefTest.cpp
    U src/gnu/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/SimpleIListTest.cpp
    U src/gnu/llvm/unittests/ADT/TestGraph.h
    U src/gnu/llvm/unittests/ADT/BitmaskEnumTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/PackedVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/PostOrderIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseMapTest.cpp
    U src/gnu/llvm/unittests/ADT/IListNodeTest.cpp
    U src/gnu/llvm/unittests/ADT/CMakeLists.txt
    U src/gnu/llvm/unittests/ADT/MappedIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/StatisticTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallSetTest.cpp
    U src/gnu/llvm/unittests/ADT/IListSentinelTest.cpp
    U src/gnu/llvm/unittests/ADT/IntEqClassesTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseBitVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseMultiSetTest.cpp
    U src/gnu/llvm/unittests/ADT/APFloatTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseSetTest.cpp
    U src/gnu/llvm/unittests/ADT/BitVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerIntPairTest.cpp
    U src/gnu/llvm/unittests/ADT/ArrayRefTest.cpp
    U src/gnu/llvm/unittests/ADT/StringSwitchTest.cpp
    U src/gnu/llvm/unittests/ADT/EquivalenceClassesTest.cpp
    U src/gnu/llvm/unittests/ADT/TwineTest.cpp
    U src/gnu/llvm/unittests/ADT/SequenceTest.cpp
    N src/gnu/llvm/unittests/XRay/ProfileTest.cpp
    U src/gnu/llvm/unittests/XRay/GraphTest.cpp
    N src/gnu/llvm/unittests/XRay/FDRRecordPrinterTest.cpp
    U src/gnu/llvm/unittests/XRay/CMakeLists.txt
    N src/gnu/llvm/unittests/XRay/FDRTraceWriterTest.cpp
    N src/gnu/llvm/unittests/XRay/FDRProducerConsumerTest.cpp
    N src/gnu/llvm/unittests/XRay/FDRBlockVerifierTest.cpp
    N src/gnu/llvm/unittests/XRay/FDRBlockIndexerTest.cpp
    N src/gnu/llvm/unittests/XRay/FDRRecordsTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/PDB/StringTableBuilderTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/HashTableTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp
    N src/gnu/llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/CMakeLists.txt
    N src/gnu/llvm/unittests/DebugInfo/PDB/Inputs/empty.pdb
    U src/gnu/llvm/unittests/DebugInfo/CodeView/TypeIndexDiscoveryTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/CodeView/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/CodeView/TypeHashingTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/MSF/MSFBuilderTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/MSF/MSFCommonTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/MSF/MappedBlockStreamTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/MSF/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfUtils.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfUtils.h
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.h
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFDebugLineTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/CMakeLists.txt
    U src/gnu/llvm/unittests/ProfileData/SampleProfTest.cpp
    U src/gnu/llvm/unittests/ProfileData/InstrProfTest.cpp
    U src/gnu/llvm/unittests/ProfileData/CMakeLists.txt
    U src/gnu/llvm/unittests/ProfileData/CoverageMappingTest.cpp
    U src/gnu/llvm/unittests/MC/StringTableBuilderTest.cpp
    U src/gnu/llvm/unittests/MC/Disassembler.cpp
    U src/gnu/llvm/unittests/MC/CMakeLists.txt
    U src/gnu/llvm/unittests/MC/DwarfLineTables.cpp
    U src/gnu/llvm/unittests/MC/TargetRegistry.cpp
    U src/gnu/llvm/resources/windows_version_resource.rc
    U src/gnu/llvm/cmake/README
    U src/gnu/llvm/cmake/nsis_icon.ico
    U src/gnu/llvm/cmake/nsis_logo.bmp
    U src/gnu/llvm/cmake/config.guess
    U src/gnu/llvm/cmake/dummy.cpp
    U src/gnu/llvm/cmake/config-ix.cmake
    U src/gnu/llvm/cmake/platforms/ClangClCMakeCompileRules.cmake
    U src/gnu/llvm/cmake/platforms/WinMsvc.cmake
    U src/gnu/llvm/cmake/platforms/Android.cmake
    U src/gnu/llvm/cmake/platforms/iOS.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfigVersion.cmake.in
    U src/gnu/llvm/cmake/modules/FindOCaml.cmake
    U src/gnu/llvm/cmake/modules/AddSphinxTarget.cmake
    U src/gnu/llvm/cmake/modules/LLVMProcessSources.cmake
    U src/gnu/llvm/cmake/modules/GenerateVersionFromCVS.cmake
    U src/gnu/llvm/cmake/modules/GetSVN.cmake
    U src/gnu/llvm/cmake/modules/LLVMInstallSymlink.cmake
    U src/gnu/llvm/cmake/modules/LLVM-Config.cmake
    U src/gnu/llvm/cmake/modules/FindSphinx.cmake
    U src/gnu/llvm/cmake/modules/AddLLVMDefinitions.cmake
    U src/gnu/llvm/cmake/modules/DetermineGCCCompatible.cmake
    U src/gnu/llvm/cmake/modules/CheckCompilerVersion.cmake
    U src/gnu/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
    U src/gnu/llvm/cmake/modules/CMakeLists.txt
    U src/gnu/llvm/cmake/modules/ChooseMSVCCRT.cmake
    U src/gnu/llvm/cmake/modules/AddLLVM.cmake
    U src/gnu/llvm/cmake/modules/CrossCompile.cmake
    U src/gnu/llvm/cmake/modules/AddOCaml.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMOptions.cmake
    U src/gnu/llvm/cmake/modules/VersionFromVCS.cmake
    U src/gnu/llvm/cmake/modules/CheckLinkerFlag.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMStdlib.cmake
    U src/gnu/llvm/cmake/modules/TableGen.cmake
    U src/gnu/llvm/cmake/modules/FindLibpfm.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfig.cmake.in
    U src/gnu/llvm/cmake/modules/CheckAtomic.cmake
    U src/gnu/llvm/cmake/modules/GetHostTriple.cmake
    U src/gnu/llvm/docs/ARM-BE-ld1.png
    U src/gnu/llvm/docs/ProgrammersManual.rst
    U src/gnu/llvm/docs/SpeculativeLoadHardening.md
    U src/gnu/llvm/docs/CMake.rst
    U src/gnu/llvm/docs/HowToCrossCompileLLVM.rst
    U src/gnu/llvm/docs/SystemLibrary.rst
    U src/gnu/llvm/docs/Passes.rst
    U src/gnu/llvm/docs/AMDGPUOperandSyntax.rst
    U src/gnu/llvm/docs/TestSuiteMakefileGuide.rst
    U src/gnu/llvm/docs/WritingAnLLVMPass.rst
    U src/gnu/llvm/docs/MCJITDesignAndImplementation.rst
    U src/gnu/llvm/docs/BlockFrequencyTerminology.rst
    U src/gnu/llvm/docs/YamlIO.rst
    N src/gnu/llvm/docs/AMDGPUInstructionNotation.rst
    U src/gnu/llvm/docs/TableGenFundamentals.rst
    U src/gnu/llvm/docs/MCJIT-resolve-relocations.png
    U src/gnu/llvm/docs/HowToSubmitABug.rst
    U src/gnu/llvm/docs/CompilerWriterInfo.rst
    U src/gnu/llvm/docs/ARM-BE-bitcastsuccess.png
    U src/gnu/llvm/docs/MCJIT-load-object.png
    N src/gnu/llvm/docs/AMDGPUModifierSyntax.rst
    U src/gnu/llvm/docs/ExtendedIntegerResults.txt
    N src/gnu/llvm/docs/HowToBuildWithPGO.rst
    U src/gnu/llvm/docs/MCJIT-dyld-load.png
    U src/gnu/llvm/docs/Projects.rst
    U src/gnu/llvm/docs/FuzzingLLVM.rst
    N src/gnu/llvm/docs/llvm-objdump.1
    U src/gnu/llvm/docs/HowToUseInstrMappings.rst
    U src/gnu/llvm/docs/gcc-loops.png
    U src/gnu/llvm/docs/SphinxQuickstartTemplate.rst
    U src/gnu/llvm/docs/Statepoints.rst
    U src/gnu/llvm/docs/Packaging.rst
    U src/gnu/llvm/docs/GoldPlugin.rst
    U src/gnu/llvm/docs/CodingStandards.rst
    U src/gnu/llvm/docs/Docker.rst
    U src/gnu/llvm/docs/Phabricator.rst
    N src/gnu/llvm/docs/MarkdownQuickstartTemplate.md
    U src/gnu/llvm/docs/README.txt
    U src/gnu/llvm/docs/Benchmarking.rst
    N src/gnu/llvm/docs/SupportLibrary.rst
    U src/gnu/llvm/docs/MCJIT-load.png
    U src/gnu/llvm/docs/ARM-BE-bitcastfail.png
    U src/gnu/llvm/docs/XRayFDRFormat.rst
    U src/gnu/llvm/docs/conf.py
    U src/gnu/llvm/docs/HowToReleaseLLVM.rst
    U src/gnu/llvm/docs/ReportingGuide.rst
    U src/gnu/llvm/docs/ARM-BE-ldr.png
    U src/gnu/llvm/docs/BitCodeFormat.rst
    U src/gnu/llvm/docs/HowToUseAttributes.rst
    U src/gnu/llvm/docs/LinkTimeOptimization.rst
    U src/gnu/llvm/docs/make.bat
    U src/gnu/llvm/docs/TestingGuide.rst
    U src/gnu/llvm/docs/CodeGenerator.rst
    U src/gnu/llvm/docs/GlobalISel.rst
    U src/gnu/llvm/docs/yaml2obj.rst
    U src/gnu/llvm/docs/XRayExample.rst
    U src/gnu/llvm/docs/FaultMaps.rst
    U src/gnu/llvm/docs/GettingStarted.rst
    U src/gnu/llvm/docs/Atomics.rst
    U src/gnu/llvm/docs/MCJIT-creation.png
    U src/gnu/llvm/docs/DeveloperPolicy.rst
    U src/gnu/llvm/docs/ReleaseNotes.rst
    U src/gnu/llvm/docs/MCJIT-engine-builder.png
    N src/gnu/llvm/docs/StackSafetyAnalysis.rst
    U src/gnu/llvm/docs/LLVMBuild.txt
    U src/gnu/llvm/docs/WritingAnLLVMBackend.rst
    U src/gnu/llvm/docs/ExtendingLLVM.rst
    U src/gnu/llvm/docs/ScudoHardenedAllocator.rst
    U src/gnu/llvm/docs/GarbageCollection.rst
    U src/gnu/llvm/docs/LLVMBuild.rst
    U src/gnu/llvm/docs/HowToBuildOnARM.rst
    U src/gnu/llvm/docs/TypeMetadata.rst
    N src/gnu/llvm/docs/BugLifeCycle.rst
    U src/gnu/llvm/docs/StackMaps.rst
    U src/gnu/llvm/docs/ReleaseProcess.rst
    U src/gnu/llvm/docs/CompileCudaWithLLVM.rst
    U src/gnu/llvm/docs/GetElementPtr.rst
    U src/gnu/llvm/docs/GettingStartedVS.rst
    U src/gnu/llvm/docs/MemorySSA.rst
    U src/gnu/llvm/docs/CommandLine.rst
    U src/gnu/llvm/docs/SourceLevelDebugging.rst
    U src/gnu/llvm/docs/CMakeLists.txt
    U src/gnu/llvm/docs/HowToCrossCompileBuiltinsOnArm.rst
    U src/gnu/llvm/docs/Extensions.rst
    U src/gnu/llvm/docs/CFIVerify.rst
    U src/gnu/llvm/docs/ExceptionHandling.rst
    U src/gnu/llvm/docs/linpack-pc.png
    U src/gnu/llvm/docs/Vectorizers.rst
    U src/gnu/llvm/docs/index.rst
    U src/gnu/llvm/docs/AMDGPUUsage.rst
    U src/gnu/llvm/docs/LangRef.rst
    U src/gnu/llvm/docs/LibFuzzer.rst
    U src/gnu/llvm/docs/AdvancedBuilds.rst
    U src/gnu/llvm/docs/CMakePrimer.rst
    U src/gnu/llvm/docs/doxygen-mainpage.dox
    U src/gnu/llvm/docs/Coroutines.rst
    U src/gnu/llvm/docs/MIRLangRef.rst
    U src/gnu/llvm/docs/Bugpoint.rst
    U src/gnu/llvm/docs/Lexicon.rst
    U src/gnu/llvm/docs/BranchWeightMetadata.rst
    U src/gnu/llvm/docs/doxygen.cfg.in
    N src/gnu/llvm/docs/TransformMetadata.rst
    U src/gnu/llvm/docs/Makefile.sphinx
    U src/gnu/llvm/docs/DebuggingJITedCode.rst
    U src/gnu/llvm/docs/CodeOfConduct.rst
    U src/gnu/llvm/docs/FAQ.rst
    U src/gnu/llvm/docs/Contributing.rst
    U src/gnu/llvm/docs/CoverageMappingFormat.rst
    U src/gnu/llvm/docs/AliasAnalysis.rst
    U src/gnu/llvm/docs/MarkedUpDisassembly.rst
    U src/gnu/llvm/docs/speculative_load_hardening_microbenchmarks.png
    U src/gnu/llvm/docs/XRay.rst
    N src/gnu/llvm/docs/AMDGPUInstructionSyntax.rst
    U src/gnu/llvm/docs/SegmentedStacks.rst
    N src/gnu/llvm/docs/TestSuiteGuide.md
    U src/gnu/llvm/docs/BigEndianNEON.rst
    U src/gnu/llvm/docs/NVPTXUsage.rst
    U src/gnu/llvm/docs/HowToSetUpLLVMStyleRTTI.rst
    U src/gnu/llvm/docs/OptBisect.rst
    U src/gnu/llvm/docs/HowToAddABuilder.rst
    U src/gnu/llvm/docs/MergeFunctions.rst
    U src/gnu/llvm/docs/re_format.7
    U src/gnu/llvm/docs/InAlloca.rst
    U src/gnu/llvm/docs/PDB/TpiStream.rst
    U src/gnu/llvm/docs/PDB/GlobalStream.rst
    U src/gnu/llvm/docs/PDB/DbiStream.rst
    U src/gnu/llvm/docs/PDB/PublicStream.rst
    U src/gnu/llvm/docs/PDB/CodeViewTypes.rst
    U src/gnu/llvm/docs/PDB/HashStream.rst
    U src/gnu/llvm/docs/PDB/MsfFile.rst
    U src/gnu/llvm/docs/PDB/ModiStream.rst
    U src/gnu/llvm/docs/PDB/CodeViewSymbols.rst
    U src/gnu/llvm/docs/PDB/PdbStream.rst
    U src/gnu/llvm/docs/PDB/index.rst
    U src/gnu/llvm/docs/_static/lines.gif
    U src/gnu/llvm/docs/_static/llvm.css
    U src/gnu/llvm/docs/Frontend/PerformanceTips.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_type_dev.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_base_smem_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_param.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdst32_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_dst_flat_atomic32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_uimm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_rsrc_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vdata128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc64_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdst256_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_base_smem_addr.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_smem_atomic128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_addr_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_simm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_d16_96.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_addr_flat.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_3.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_d16_32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_bimm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdst128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vsrc128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_smem_atomic32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_samp_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_data_buf_atomic64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_data_mimg_store.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_type_dev.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_perm_smem.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vdata96_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_dst_buf_96.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_buf_atomic64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_samp_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdata64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vdata64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_uimm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_lds.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_msg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vdst64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_addr_ds.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vdst64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vdst64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_flat_atomic64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vdst96_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_tgt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdata128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_label.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_atomic128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_bimm32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_opt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vdata32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_imm4.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_mimg_atomic_cmp.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc64_3.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_samp_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_d16_64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_src32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_src_exp.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_src32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_atomic32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_bimm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_mimg_store_d16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_src32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_fimm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_fimm32.rst
    N src/gnu/llvm/docs/AMDGPU/AMDGPUAsmGFX7.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_label.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_mimg_atomic_cmp.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_data_mimg_atomic_reg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_hwreg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vdst32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_mod_vop3_abs_neg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vdata96_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_rsrc_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_simm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_fimm32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_addr_ds.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_rsrc_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ret.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_bimm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_flat_atomic32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vdata64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdst128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_opt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_msg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_src32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vcc_64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_atomic64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_data_buf_atomic32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_base_smem_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_mimg_store.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_src_exp.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_addr_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdata64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdst64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_offset_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_offset_smem_store.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_src32_3.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_base_smem_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdst32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vcc_64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_opt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vdst96_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_offset_smem.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_attr.rst
    N src/gnu/llvm/docs/AMDGPU/AMDGPUAsmGFX9.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_sdst128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vaddr_flat_scratch.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_offset_smem_plain.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_3.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_addr_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_addr_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_mimg_gather4.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_rsrc_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_mod_vop3_abs_neg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_d16_32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_src32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_d16_96.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc64_3.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_mod_dpp_sdwa_abs_neg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_rsrc_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_dst_mimg_gather4.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdst64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_sdst256_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vsrc64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_offset_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vsrc128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vdata32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_perm_smem.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_src64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdst64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_bimm32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_4.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_type_dev.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vdst128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc64_3.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vdst32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_fimm32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_buf_atomic32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_data_buf_atomic128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_waitcnt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_src32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_waitcnt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdst32_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_sdst64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_dst_flat_atomic64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_flat_atomic64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vcc_64.rst
    N src/gnu/llvm/docs/AMDGPU/AMDGPUAsmGFX8.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_saddr_flat_scratch.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_mimg_atomic_reg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_src64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vdata96_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_src32_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_mod.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_base_smem_scratch.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_addr_flat.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdata128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_fimm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_param.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ret.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_offset_smem_load.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_attr.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdata32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vdata128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_sdst512_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_mimg_regular_d16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdst64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdata32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc64_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_mimg_regular_d16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vdata64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_buf_atomic128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_sdst32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_dst_mimg_regular.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc64_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_src_exp.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_mad_type_dev.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_tgt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vdata128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_offset_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_attr.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_src64_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_mimg_regular.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_mimg_store_d16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_base_smem_addr.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_src64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_lds.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_4.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_mimg_atomic_reg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdst32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_mimg_regular.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_flat_atomic32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_data_mimg_atomic_cmp.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vsrc32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vdata32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_bimm32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_saddr_flat_global.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_src64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_msg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_96.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_hwreg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_dst_buf_128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_addr_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_d16_128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vsrc32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_d16_64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vsrc128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vdst128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vdst128_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_sdst32_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_waitcnt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_4.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vsrc32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_dst_buf_64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_uimm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_d16_128.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_mod_sdwa_sext.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_mimg_gather4.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_dst_buf_lds.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_label.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_hwreg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdst32_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_imm4.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdst512_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ret.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_addr_ds.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdst512_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vdst32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_vaddr_flat_global.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_data_smem_atomic64.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_offset_smem_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_32.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_addr_flat.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_2.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_param.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_ssrc64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_tgt.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_data_mimg_store.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vsrc64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_96.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_addr_buf.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_sdst32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_mod_sdwa_sext.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_vsrc64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_sdst256_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_src64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_simm16.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_sdst32_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_vdst96_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_3.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_sdst64_1.rst
    N src/gnu/llvm/docs/AMDGPU/gfx7_rsrc_mimg.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_base_smem_addr.rst
    N src/gnu/llvm/docs/AMDGPU/gfx9_src64_0.rst
    N src/gnu/llvm/docs/AMDGPU/gfx8_mod_dpp_sdwa_abs_neg.rst
    U src/gnu/llvm/docs/_themes/llvm-theme/layout.html
    U src/gnu/llvm/docs/_themes/llvm-theme/theme.conf
    U src/gnu/llvm/docs/_themes/llvm-theme/static/logo.png
    U src/gnu/llvm/docs/_themes/llvm-theme/static/contents.png
    U src/gnu/llvm/docs/_themes/llvm-theme/static/navigation.png
    U src/gnu/llvm/docs/_themes/llvm-theme/static/llvm-theme.css
    U src/gnu/llvm/docs/HistoricalNotes/2001-04-16-DynamicCompilation.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-07-06-LoweringIRForCodeGen.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-06-26-Reoptimizer2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-MemoryResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-MeetingSummary.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeasResp.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-06-25-Reoptimizer1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveComments.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-01-23-CygwinNotes.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeas.txt
    U src/gnu/llvm/docs/HistoricalNotes/2002-06-25-MegaPatchInfo.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-09-18-OptimizeExceptions.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-20-.NET-Differences.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-01-31-UniversalIRIdea.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-Memory.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp4.txt
    U src/gnu/llvm/docs/HistoricalNotes/2007-OriginalClangReadme.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-05-18-ExceptionHandling.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-EncodingIdea.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations.txt
    U src/gnu/llvm/docs/HistoricalNotes/2002-05-12-InstListChange.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveCommentsResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebate.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-05-19-ExceptionResponse.txt
    U src/gnu/llvm/docs/CommandGuide/llvm-build.rst
    U src/gnu/llvm/docs/CommandGuide/bugpoint.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-extract.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-readobj.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-nm.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-objdump.rst
    N src/gnu/llvm/docs/CommandGuide/llvm-cxxmap.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-stress.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-bcanalyzer.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-profdata.rst
    U src/gnu/llvm/docs/CommandGuide/opt.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-mca.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-ar.rst
    U src/gnu/llvm/docs/CommandGuide/lit.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dis.rst
    U src/gnu/llvm/docs/CommandGuide/dsymutil.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-config.rst
    U src/gnu/llvm/docs/CommandGuide/lli.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-pdbutil.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-diff.rst
    U src/gnu/llvm/docs/CommandGuide/llc.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-as.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-exegesis.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-symbolizer.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-link.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dwarfdump.rst
    U src/gnu/llvm/docs/CommandGuide/index.rst
    U src/gnu/llvm/docs/CommandGuide/tblgen.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-exegesis-analysis.png
    U src/gnu/llvm/docs/CommandGuide/FileCheck.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-cov.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-lib.rst
    U src/gnu/llvm/docs/_templates/indexsidebar.html
    U src/gnu/llvm/docs/_templates/layout.html
    U src/gnu/llvm/docs/_ocamldoc/style.css
    N src/gnu/llvm/docs/Proposals/TestSuite.rst
    U src/gnu/llvm/docs/Proposals/GitHubMove.rst
    U src/gnu/llvm/docs/Proposals/VectorizationPlan.rst
    U src/gnu/llvm/docs/TableGen/LangIntro.rst
    U src/gnu/llvm/docs/TableGen/BackEnds.rst
    U src/gnu/llvm/docs/TableGen/index.rst
    U src/gnu/llvm/docs/TableGen/LangRef.rst
    U src/gnu/llvm/docs/TableGen/Deficiencies.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl6.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT1.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT3.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl3.rst
    U src/gnu/llvm/docs/tutorial/LangImpl07.rst
    U src/gnu/llvm/docs/tutorial/LangImpl10.rst
    U src/gnu/llvm/docs/tutorial/LangImpl09.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT4.rst
    U src/gnu/llvm/docs/tutorial/LangImpl01.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT2.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl2.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl5.rst
    U src/gnu/llvm/docs/tutorial/LangImpl05.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl4.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl1.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl8.rst
    U src/gnu/llvm/docs/tutorial/index.rst
    U src/gnu/llvm/docs/tutorial/LangImpl06.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl7.rst
    U src/gnu/llvm/docs/tutorial/LangImpl08.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT5.rst
    U src/gnu/llvm/docs/tutorial/LangImpl05-cfg.png
    U src/gnu/llvm/docs/tutorial/LangImpl02.rst
    U src/gnu/llvm/docs/tutorial/LangImpl03.rst
    U src/gnu/llvm/docs/tutorial/LangImpl04.rst
    U src/gnu/llvm/bindings/README.txt
    U src/gnu/llvm/bindings/LLVMBuild.txt
    U src/gnu/llvm/bindings/ocaml/README.txt
    U src/gnu/llvm/bindings/ocaml/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/bitwriter/llvm_bitwriter.ml
    U src/gnu/llvm/bindings/ocaml/bitwriter/llvm_bitwriter.mli
    U src/gnu/llvm/bindings/ocaml/bitwriter/bitwriter_ocaml.c
    U src/gnu/llvm/bindings/ocaml/bitwriter/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/bitreader/llvm_bitreader.mli
    U src/gnu/llvm/bindings/ocaml/bitreader/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/bitreader/bitreader_ocaml.c
    U src/gnu/llvm/bindings/ocaml/bitreader/llvm_bitreader.ml
    U src/gnu/llvm/bindings/ocaml/target/llvm_target.mli
    U src/gnu/llvm/bindings/ocaml/target/target_ocaml.c
    U src/gnu/llvm/bindings/ocaml/target/llvm_target.ml
    U src/gnu/llvm/bindings/ocaml/target/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/irreader/llvm_irreader.ml
    U src/gnu/llvm/bindings/ocaml/irreader/irreader_ocaml.c
    U src/gnu/llvm/bindings/ocaml/irreader/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/irreader/llvm_irreader.mli
    U src/gnu/llvm/bindings/ocaml/llvm/META.llvm.in
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.ml
    U src/gnu/llvm/bindings/ocaml/llvm/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/llvm/llvm_ocaml.c
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.mli
    U src/gnu/llvm/bindings/ocaml/transforms/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/llvm_passmgr_builder.mli
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/llvm_passmgr_builder.ml
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/passmgr_builder_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/utils/llvm_transform_utils.ml
    U src/gnu/llvm/bindings/ocaml/transforms/utils/transform_utils_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/utils/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/utils/llvm_transform_utils.mli
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/ipo_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/llvm_ipo.ml
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/llvm_ipo.mli
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/scalar_opts_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/llvm_scalar_opts.ml
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/llvm_scalar_opts.mli
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/vectorize_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.mli
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.ml
    U src/gnu/llvm/bindings/ocaml/backends/llvm_backend.mli.in
    U src/gnu/llvm/bindings/ocaml/backends/META.llvm_backend.in
    U src/gnu/llvm/bindings/ocaml/backends/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/backends/backend_ocaml.c
    U src/gnu/llvm/bindings/ocaml/backends/llvm_backend.ml.in
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.mli
    U src/gnu/llvm/bindings/ocaml/analysis/analysis_ocaml.c
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.ml
    U src/gnu/llvm/bindings/ocaml/analysis/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.mli
    U src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.ml
    U src/gnu/llvm/bindings/ocaml/all_backends/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/all_backends/all_backends_ocaml.c
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.ml
    U src/gnu/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.mli
    U src/gnu/llvm/bindings/ocaml/executionengine/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/linker/linker_ocaml.c
    U src/gnu/llvm/bindings/ocaml/linker/llvm_linker.mli
    U src/gnu/llvm/bindings/ocaml/linker/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/linker/llvm_linker.ml
    U src/gnu/llvm/bindings/python/README.txt
    U src/gnu/llvm/bindings/python/llvm/enumerations.py
    U src/gnu/llvm/bindings/python/llvm/common.py
    U src/gnu/llvm/bindings/python/llvm/bit_reader.py
    U src/gnu/llvm/bindings/python/llvm/object.py
    U src/gnu/llvm/bindings/python/llvm/core.py
    U src/gnu/llvm/bindings/python/llvm/disassembler.py
    U src/gnu/llvm/bindings/python/llvm/__init__.py
    U src/gnu/llvm/bindings/python/llvm/tests/base.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_core.py
    U src/gnu/llvm/bindings/python/llvm/tests/test.bc
    U src/gnu/llvm/bindings/python/llvm/tests/test_file
    U src/gnu/llvm/bindings/python/llvm/tests/test_object.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_disassembler.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_bitreader.py
    U src/gnu/llvm/bindings/python/llvm/tests/__init__.py
    U src/gnu/llvm/bindings/go/conftest.go
    U src/gnu/llvm/bindings/go/README.txt
    U src/gnu/llvm/bindings/go/build.sh
    U src/gnu/llvm/bindings/go/llvm/linker.go
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.h
    U src/gnu/llvm/bindings/go/llvm/transforms_pmbuilder.go
    U src/gnu/llvm/bindings/go/llvm/llvm_config.go.in
    U src/gnu/llvm/bindings/go/llvm/executionengine_test.go
    N src/gnu/llvm/bindings/go/llvm/transforms_coroutines.go
    U src/gnu/llvm/bindings/go/llvm/bitwriter.go
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/target.go
    U src/gnu/llvm/bindings/go/llvm/support.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.h
    U src/gnu/llvm/bindings/go/llvm/executionengine.go
    U src/gnu/llvm/bindings/go/llvm/bitreader.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/analysis.go
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/dibuilder.go
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.h
    U src/gnu/llvm/bindings/go/llvm/ir_test.go
    U src/gnu/llvm/bindings/go/llvm/string.go
    U src/gnu/llvm/bindings/go/llvm/transforms_instrumentation.go
    U src/gnu/llvm/bindings/go/llvm/transforms_scalar.go
    U src/gnu/llvm/bindings/go/llvm/ir.go
    U src/gnu/llvm/bindings/go/llvm/transforms_ipo.go
    U src/gnu/llvm/bindings/go/llvm/string_test.go
    U src/gnu/llvm/bindings/go/llvm/llvm_dep.go
    U src/gnu/llvm/bindings/go/llvm/version.go
    U src/gnu/llvm/examples/LLVMBuild.txt
    U src/gnu/llvm/examples/CMakeLists.txt
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/lexer.ml
    U src/gnu/llvm/examples/ExceptionDemo/ExceptionDemo.cpp
    U src/gnu/llvm/examples/ExceptionDemo/CMakeLists.txt
    U src/gnu/llvm/examples/ParallelJIT/ParallelJIT.cpp
    U src/gnu/llvm/examples/ParallelJIT/CMakeLists.txt
    U src/gnu/llvm/examples/ModuleMaker/README.txt
    U src/gnu/llvm/examples/ModuleMaker/ModuleMaker.cpp
    U src/gnu/llvm/examples/ModuleMaker/CMakeLists.txt
    U src/gnu/llvm/examples/Fibonacci/fibonacci.cpp
    U src/gnu/llvm/examples/Fibonacci/CMakeLists.txt
    U src/gnu/llvm/examples/BrainF/BrainF.cpp
    U src/gnu/llvm/examples/BrainF/BrainF.h
    U src/gnu/llvm/examples/BrainF/CMakeLists.txt
    U src/gnu/llvm/examples/BrainF/BrainFDriver.cpp
    U src/gnu/llvm/examples/Kaleidoscope/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/Chapter2/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter2/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/toy-jit.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/split-lib.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/toy-jit.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/server.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter9/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter9/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter6/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter6/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter4/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter4/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter8/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter8/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter5/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter5/CMakeLists.txt
    U src/gnu/llvm/examples/HowToUseJIT/CMakeLists.txt
    U src/gnu/llvm/examples/HowToUseJIT/HowToUseJIT.cpp
    U src/gnu/llvm/utils/llvm-compilers-check
    U src/gnu/llvm/utils/unicode-case-fold.py
    U src/gnu/llvm/utils/create_ladder_graph.py
    U src/gnu/llvm/utils/abtest.py
    U src/gnu/llvm/utils/update_test_checks.py
    U src/gnu/llvm/utils/bisect
    N src/gnu/llvm/utils/collect_and_build_with_pgo.py
    U src/gnu/llvm/utils/llvm.grm
    U src/gnu/llvm/utils/findmisopt
    U src/gnu/llvm/utils/sort_includes.py
    U src/gnu/llvm/utils/DSAclean.py
    U src/gnu/llvm/utils/GetRepositoryPath
    U src/gnu/llvm/utils/findsym.pl
    U src/gnu/llvm/utils/update_mca_test_checks.py
    U src/gnu/llvm/utils/shuffle_fuzz.py
    U src/gnu/llvm/utils/countloc.sh
    U src/gnu/llvm/utils/GenLibDeps.pl
    U src/gnu/llvm/utils/wciia.py
    N src/gnu/llvm/utils/extract_vplan.py
    U src/gnu/llvm/utils/lldbDataFormatters.py
    N src/gnu/llvm/utils/demangle_tree.py
    U src/gnu/llvm/utils/llvm-native-gxx
    U src/gnu/llvm/utils/llvm-gisel-cov.py
    U src/gnu/llvm/utils/update_cc_test_checks.py
    U src/gnu/llvm/utils/LLVMBuild.txt
    U src/gnu/llvm/utils/update_mir_test_checks.py
    U src/gnu/llvm/utils/schedcover.py
    U src/gnu/llvm/utils/update_llc_test_checks.py
    U src/gnu/llvm/utils/indirect_calls.py
    U src/gnu/llvm/utils/extract_symbols.py
    U src/gnu/llvm/utils/check-each-file
    U src/gnu/llvm/utils/bugpoint_gisel_reducer.py
    U src/gnu/llvm/utils/getsrcs.sh
    U src/gnu/llvm/utils/GetSourceVersion
    U src/gnu/llvm/utils/llvmgrep
    U src/gnu/llvm/utils/DSAextract.py
    U src/gnu/llvm/utils/bisect-skip-count
    U src/gnu/llvm/utils/shuffle_select_fuzz_tester.py
    U src/gnu/llvm/utils/findoptdiff
    U src/gnu/llvm/utils/llvmdo
    U src/gnu/llvm/utils/prepare-code-coverage-artifact.py
    U src/gnu/llvm/utils/UpdateCMakeLists.pl
    U src/gnu/llvm/utils/clang-parse-diagnostics-file
    U src/gnu/llvm/utils/update_analyze_test_checks.py
    U src/gnu/llvm/utils/codegen-diff
    N src/gnu/llvm/utils/benchmark/CONTRIBUTING.md
    N src/gnu/llvm/utils/benchmark/releasing.md
    N src/gnu/llvm/utils/benchmark/WORKSPACE
    N src/gnu/llvm/utils/benchmark/CONTRIBUTORS
    N src/gnu/llvm/utils/benchmark/AUTHORS
    N src/gnu/llvm/utils/benchmark/LICENSE
    N src/gnu/llvm/utils/benchmark/mingw.py
    N src/gnu/llvm/utils/benchmark/CMakeLists.txt
    N src/gnu/llvm/utils/benchmark/README.md
    N src/gnu/llvm/utils/benchmark/README.LLVM
    N src/gnu/llvm/utils/benchmark/appveyor.yml
    N src/gnu/llvm/utils/benchmark/include/benchmark/benchmark.h
    N src/gnu/llvm/utils/benchmark/test/basic_test.cc
    N src/gnu/llvm/utils/benchmark/test/output_test_helper.cc
    N src/gnu/llvm/utils/benchmark/test/link_main_test.cc
    N src/gnu/llvm/utils/benchmark/test/cxx03_test.cc
    N src/gnu/llvm/utils/benchmark/test/options_test.cc
    N src/gnu/llvm/utils/benchmark/test/state_assembly_test.cc
    N src/gnu/llvm/utils/benchmark/test/multiple_ranges_test.cc
    N src/gnu/llvm/utils/benchmark/test/skip_with_error_test.cc
    N src/gnu/llvm/utils/benchmark/test/reporter_output_test.cc
    N src/gnu/llvm/utils/benchmark/test/diagnostics_test.cc
    N src/gnu/llvm/utils/benchmark/test/donotoptimize_test.cc
    N src/gnu/llvm/utils/benchmark/test/benchmark_test.cc
    N src/gnu/llvm/utils/benchmark/test/output_test.h
    N src/gnu/llvm/utils/benchmark/test/benchmark_gtest.cc
    N src/gnu/llvm/utils/benchmark/test/donotoptimize_assembly_test.cc
    N src/gnu/llvm/utils/benchmark/test/clobber_memory_assembly_test.cc
    N src/gnu/llvm/utils/benchmark/test/register_benchmark_test.cc
    N src/gnu/llvm/utils/benchmark/test/CMakeLists.txt
    N src/gnu/llvm/utils/benchmark/test/complexity_test.cc
    N src/gnu/llvm/utils/benchmark/test/AssemblyTests.cmake
    N src/gnu/llvm/utils/benchmark/test/statistics_gtest.cc
    N src/gnu/llvm/utils/benchmark/test/templated_fixture_test.cc
    N src/gnu/llvm/utils/benchmark/test/user_counters_test.cc
    N src/gnu/llvm/utils/benchmark/test/user_counters_tabular_test.cc
    N src/gnu/llvm/utils/benchmark/test/filter_test.cc
    N src/gnu/llvm/utils/benchmark/test/fixture_test.cc
    N src/gnu/llvm/utils/benchmark/test/map_test.cc
    N src/gnu/llvm/utils/benchmark/cmake/benchmark.pc.in
    N src/gnu/llvm/utils/benchmark/cmake/steady_clock.cpp
    N src/gnu/llvm/utils/benchmark/cmake/thread_safety_attributes.cpp
    N src/gnu/llvm/utils/benchmark/cmake/llvm-toolchain.cmake
    N src/gnu/llvm/utils/benchmark/cmake/std_regex.cpp
    N src/gnu/llvm/utils/benchmark/cmake/posix_regex.cpp
    N src/gnu/llvm/utils/benchmark/cmake/split_list.cmake
    N src/gnu/llvm/utils/benchmark/cmake/gnu_posix_regex.cpp
    N src/gnu/llvm/utils/benchmark/cmake/Config.cmake.in
    N src/gnu/llvm/utils/benchmark/cmake/AddCXXCompilerFlag.cmake
    N src/gnu/llvm/utils/benchmark/cmake/GetGitVersion.cmake
    N src/gnu/llvm/utils/benchmark/cmake/CXXFeatureCheck.cmake
    N src/gnu/llvm/utils/benchmark/cmake/HandleGTest.cmake
    N src/gnu/llvm/utils/benchmark/cmake/Modules/FindLLVMRanLib.cmake
    N src/gnu/llvm/utils/benchmark/cmake/Modules/FindLLVMAr.cmake
    N src/gnu/llvm/utils/benchmark/cmake/Modules/FindLLVMNm.cmake
    N src/gnu/llvm/utils/benchmark/docs/tools.md
    N src/gnu/llvm/utils/benchmark/docs/AssemblyTests.md
    N src/gnu/llvm/utils/benchmark/src/commandlineflags.cc
    N src/gnu/llvm/utils/benchmark/src/reporter.cc
    N src/gnu/llvm/utils/benchmark/src/colorprint.h
    N src/gnu/llvm/utils/benchmark/src/log.h
    N src/gnu/llvm/utils/benchmark/src/commandlineflags.h
    N src/gnu/llvm/utils/benchmark/src/sleep.h
    N src/gnu/llvm/utils/benchmark/src/thread_timer.h
    N src/gnu/llvm/utils/benchmark/src/console_reporter.cc
    N src/gnu/llvm/utils/benchmark/src/string_util.cc
    N src/gnu/llvm/utils/benchmark/src/thread_manager.h
    N src/gnu/llvm/utils/benchmark/src/arraysize.h
    N src/gnu/llvm/utils/benchmark/src/benchmark_register.cc
    N src/gnu/llvm/utils/benchmark/src/sleep.cc
    N src/gnu/llvm/utils/benchmark/src/counter.cc
    N src/gnu/llvm/utils/benchmark/src/string_util.h
    N src/gnu/llvm/utils/benchmark/src/internal_macros.h
    N src/gnu/llvm/utils/benchmark/src/benchmark_register.h
    N src/gnu/llvm/utils/benchmark/src/statistics.cc
    N src/gnu/llvm/utils/benchmark/src/check.h
    N src/gnu/llvm/utils/benchmark/src/timers.cc
    N src/gnu/llvm/utils/benchmark/src/re.h
    N src/gnu/llvm/utils/benchmark/src/statistics.h
    N src/gnu/llvm/utils/benchmark/src/CMakeLists.txt
    N src/gnu/llvm/utils/benchmark/src/mutex.h
    N src/gnu/llvm/utils/benchmark/src/benchmark.cc
    N src/gnu/llvm/utils/benchmark/src/colorprint.cc
    N src/gnu/llvm/utils/benchmark/src/benchmark_api_internal.h
    N src/gnu/llvm/utils/benchmark/src/benchmark_main.cc
    N src/gnu/llvm/utils/benchmark/src/sysinfo.cc
    N src/gnu/llvm/utils/benchmark/src/json_reporter.cc
    N src/gnu/llvm/utils/benchmark/src/complexity.cc
    N src/gnu/llvm/utils/benchmark/src/timers.h
    N src/gnu/llvm/utils/benchmark/src/csv_reporter.cc
    N src/gnu/llvm/utils/benchmark/src/cycleclock.h
    N src/gnu/llvm/utils/benchmark/src/complexity.h
    N src/gnu/llvm/utils/benchmark/src/counter.h
    N src/gnu/llvm/utils/benchmark/tools/compare.py
    N src/gnu/llvm/utils/benchmark/tools/strip_asm.py
    N src/gnu/llvm/utils/benchmark/tools/gbench/util.py
    N src/gnu/llvm/utils/benchmark/tools/gbench/report.py
    N src/gnu/llvm/utils/benchmark/tools/gbench/__init__.py
    N src/gnu/llvm/utils/benchmark/tools/gbench/Inputs/test1_run1.json
    N src/gnu/llvm/utils/benchmark/tools/gbench/Inputs/test1_run2.json
    N src/gnu/llvm/utils/benchmark/tools/gbench/Inputs/test2_run.json
    U src/gnu/llvm/utils/Reviewing/find_interesting_reviews.py
    U src/gnu/llvm/utils/vscode/README
    U src/gnu/llvm/utils/vscode/tablegen/CHANGELOG.md
    U src/gnu/llvm/utils/vscode/tablegen/vsc-extension-quickstart.md
    U src/gnu/llvm/utils/vscode/tablegen/package.json
    U src/gnu/llvm/utils/vscode/tablegen/README.md
    U src/gnu/llvm/utils/vscode/tablegen/language-configuration.json
    U src/gnu/llvm/utils/vscode/tablegen/.vscode/launch.json
    U src/gnu/llvm/utils/vscode/tablegen/syntaxes/TableGen.tmLanguage
    U src/gnu/llvm/utils/KillTheDoctor/KillTheDoctor.cpp
    U src/gnu/llvm/utils/KillTheDoctor/CMakeLists.txt
    U src/gnu/llvm/utils/sanitizers/ubsan_blacklist.txt
    U src/gnu/llvm/utils/release/build_llvm_package.bat
    U src/gnu/llvm/utils/release/merge.sh
    U src/gnu/llvm/utils/release/export.sh
    U src/gnu/llvm/utils/release/findRegressions-nightly.py
    U src/gnu/llvm/utils/release/merge-git.sh
    U src/gnu/llvm/utils/release/findRegressions-simple.py
    U src/gnu/llvm/utils/release/tag.sh
    U src/gnu/llvm/utils/release/merge-request.sh
    U src/gnu/llvm/utils/release/test-release.sh
    U src/gnu/llvm/utils/crosstool/create-snapshots.sh
    U src/gnu/llvm/utils/crosstool/ARM/README
    U src/gnu/llvm/utils/crosstool/ARM/build-install-linux.sh
    U src/gnu/llvm/utils/Target/ARM/analyze-match-table.py
    U src/gnu/llvm/utils/emacs/README
    U src/gnu/llvm/utils/emacs/tablegen-mode.el
    U src/gnu/llvm/utils/emacs/llvm-mode.el
    U src/gnu/llvm/utils/emacs/emacs.el
    U src/gnu/llvm/utils/not/not.cpp
    U src/gnu/llvm/utils/not/CMakeLists.txt
    U src/gnu/llvm/utils/llvm-lit/llvm-lit.in
    U src/gnu/llvm/utils/llvm-lit/CMakeLists.txt
    U src/gnu/llvm/utils/valgrind/x86_64-pc-linux-gnu.supp
    U src/gnu/llvm/utils/valgrind/i386-pc-linux-gnu.supp
    U src/gnu/llvm/utils/PerfectShuffle/PerfectShuffle.cpp
    U src/gnu/llvm/utils/PerfectShuffle/CMakeLists.txt
    U src/gnu/llvm/utils/docker/README
    U src/gnu/llvm/utils/docker/build_docker_image.sh
    U src/gnu/llvm/utils/docker/nvidia-cuda/Dockerfile
    U src/gnu/llvm/utils/docker/debian8/Dockerfile
    U src/gnu/llvm/utils/docker/scripts/checkout.sh
    U src/gnu/llvm/utils/docker/scripts/build_install_llvm.sh
    U src/gnu/llvm/utils/docker/scripts/llvm_checksum/llvm_checksum.py
    U src/gnu/llvm/utils/docker/scripts/llvm_checksum/project_tree.py
    U src/gnu/llvm/utils/docker/example/Dockerfile
    U src/gnu/llvm/utils/UpdateTestChecks/common.py
    U src/gnu/llvm/utils/UpdateTestChecks/asm.py
    U src/gnu/llvm/utils/UpdateTestChecks/__init__.py
    U src/gnu/llvm/utils/vim/README
    U src/gnu/llvm/utils/vim/vimrc
    U src/gnu/llvm/utils/vim/indent/llvm.vim
    U src/gnu/llvm/utils/vim/ftplugin/llvm.vim
    U src/gnu/llvm/utils/vim/ftplugin/tablegen.vim
    U src/gnu/llvm/utils/vim/ftdetect/llvm-lit.vim
    U src/gnu/llvm/utils/vim/ftdetect/llvm.vim
    U src/gnu/llvm/utils/vim/ftdetect/tablegen.vim
    U src/gnu/llvm/utils/vim/syntax/llvm.vim
    U src/gnu/llvm/utils/vim/syntax/tablegen.vim
    U src/gnu/llvm/utils/lit/MANIFEST.in
    U src/gnu/llvm/utils/lit/README.txt
    U src/gnu/llvm/utils/lit/lit.py
    U src/gnu/llvm/utils/lit/setup.py
    U src/gnu/llvm/utils/lit/CMakeLists.txt
    U src/gnu/llvm/utils/lit/lit/util.py
    U src/gnu/llvm/utils/lit/lit/TestingConfig.py
    U src/gnu/llvm/utils/lit/lit/run.py
    U src/gnu/llvm/utils/lit/lit/LitConfig.py
    U src/gnu/llvm/utils/lit/lit/BooleanExpression.py
    U src/gnu/llvm/utils/lit/lit/Test.py
    U src/gnu/llvm/utils/lit/lit/LitTestCase.py
    U src/gnu/llvm/utils/lit/lit/ShCommands.py
    U src/gnu/llvm/utils/lit/lit/ShUtil.py
    U src/gnu/llvm/utils/lit/lit/TestRunner.py
    U src/gnu/llvm/utils/lit/lit/discovery.py
    U src/gnu/llvm/utils/lit/lit/ProgressBar.py
    U src/gnu/llvm/utils/lit/lit/main.py
    U src/gnu/llvm/utils/lit/lit/__init__.py
    U src/gnu/llvm/utils/lit/lit/llvm/subst.py
    U src/gnu/llvm/utils/lit/lit/llvm/config.py
    U src/gnu/llvm/utils/lit/lit/llvm/__init__.py
    U src/gnu/llvm/utils/lit/lit/ExampleTests.ObjDir/lit.site.cfg
    U src/gnu/llvm/utils/lit/lit/builtin_commands/cat.py
    U src/gnu/llvm/utils/lit/lit/builtin_commands/__init__.py
    U src/gnu/llvm/utils/lit/lit/formats/base.py
    U src/gnu/llvm/utils/lit/lit/formats/googletest.py
    U src/gnu/llvm/utils/lit/lit/formats/shtest.py
    U src/gnu/llvm/utils/lit/lit/formats/__init__.py
    U src/gnu/llvm/utils/lit/examples/README.txt
    U src/gnu/llvm/utils/lit/examples/many-tests/README.txt
    U src/gnu/llvm/utils/lit/examples/many-tests/lit.cfg
    N src/gnu/llvm/utils/lit/examples/many-tests/ManyTests.py
    U src/gnu/llvm/utils/lit/utils/check-coverage
    U src/gnu/llvm/utils/lit/utils/README.txt
    U src/gnu/llvm/utils/lit/utils/check-sdist
    U src/gnu/llvm/utils/lit/tests/shtest-output-printing.py
    U src/gnu/llvm/utils/lit/tests/test-output.py
    U src/gnu/llvm/utils/lit/tests/boolean-parsing.py
    U src/gnu/llvm/utils/lit/tests/selecting.py
    U src/gnu/llvm/utils/lit/tests/test-data-micro.py
    U src/gnu/llvm/utils/lit/tests/test-data.py
    U src/gnu/llvm/utils/lit/tests/shtest-timeout.py
    U src/gnu/llvm/utils/lit/tests/googletest-timeout.py
    U src/gnu/llvm/utils/lit/tests/usage.py
    U src/gnu/llvm/utils/lit/tests/shtest-run-at-line.py
    U src/gnu/llvm/utils/lit/tests/lit.site.cfg.in
    U src/gnu/llvm/utils/lit/tests/shtest-shell.py
    U src/gnu/llvm/utils/lit/tests/googletest-format.py
    U src/gnu/llvm/utils/lit/tests/max-failures.py
    U src/gnu/llvm/utils/lit/tests/lit.cfg
    U src/gnu/llvm/utils/lit/tests/unittest-adaptor.py
    U src/gnu/llvm/utils/lit/tests/test-output-micro.py
    U src/gnu/llvm/utils/lit/tests/shell-parsing.py
    U src/gnu/llvm/utils/lit/tests/shtest-encoding.py
    U src/gnu/llvm/utils/lit/tests/discovery.py
    U src/gnu/llvm/utils/lit/tests/.coveragerc
    U src/gnu/llvm/utils/lit/tests/shtest-format.py
    U src/gnu/llvm/utils/lit/tests/googletest-upstream-format.py
    U src/gnu/llvm/utils/lit/tests/xunit-output.py
    U src/gnu/llvm/utils/lit/tests/progress-bar.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-output-printing/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-output-printing/basic.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-one.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-two.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/test-one.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data-micro/dummy_format.py
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data-micro/micro-tests.ini
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data-micro/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/py-config-discovery/lit.site.cfg.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/mixed.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/shtest-env.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/env.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/env-u.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py
    U src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery/lit.site.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-one.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-two.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subdir/test-three.py
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subdir/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/test-one.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/test-two.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-upstream-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-upstream-format/DummySubDir/OneTest.py
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/dummy_format.py
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/metrics.ini
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-any-missing.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported-expr-true.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/pass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-star.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-expr-false.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-triple.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-missing.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/fail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported-expr-false.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-expr-true.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/argv0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported-star.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-feature.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/no-test-line.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-present.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xpass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-any-present.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-target.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/pass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/fail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/fail_with_bad_encoding.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/write-bad-encoding.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported_dir/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported_dir/some-test.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest.py
    U src/gnu/llvm/utils/lit/tests/Inputs/xunit-output/dummy_format.py
    U src/gnu/llvm/utils/lit/tests/Inputs/xunit-output/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/xunit-output/bad&name.ini
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/mkdir-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-5.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/valid-shell.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/cat-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-4.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/mkdir-error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-6.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/check_path.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/cat-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/dev-null.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-4.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/rm-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/rm-error-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-5.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/rm-error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/redirects.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/cat_nonprinting.bin
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/mkdir-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-6.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/rm-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/colon-error.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/testrunner-custom-parsers/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/testrunner-custom-parsers/test.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-4.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/lit.alt.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/invalid-test.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/driver.py
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/main-config/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/tests/test2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/tests/test1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/short.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/infinite_loop.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/external-shell/line-continuation.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/external-shell/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/external-shell/basic.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/internal-shell/line-continuation.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/internal-shell/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/internal-shell/basic.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/max-failures/lit.cfg
    U src/gnu/llvm/utils/lit/tests/unit/ShUtil.py
    U src/gnu/llvm/utils/lit/tests/unit/TestRunner.py
    U src/gnu/llvm/utils/count/CMakeLists.txt
    U src/gnu/llvm/utils/count/count.c
    U src/gnu/llvm/utils/Misc/zkill
    N src/gnu/llvm/utils/gn/.gn
    N src/gnu/llvm/utils/gn/TODO.txt
    N src/gnu/llvm/utils/gn/README.rst
    N src/gnu/llvm/utils/gn/gn.py
    N src/gnu/llvm/utils/gn/secondary/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/triples.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/version.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/include/llvm/Support/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/include/llvm/Config/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/include/llvm/IR/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ObjectYAML/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/targets.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/targets_string.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/AsmParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/Disassembler/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/MCTargetDesc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/TargetInfo/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/InstPrinter/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/AsmParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/Disassembler/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/MCTargetDesc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/TargetInfo/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/InstPrinter/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/AsmParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/Disassembler/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/MCTargetDesc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/TargetInfo/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/InstPrinter/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/AsmParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/Disassembler/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/Utils/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/MCTargetDesc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/TargetInfo/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/InstPrinter/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/AsmParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Disassembler/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/MCTargetDesc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/TargetInfo/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/InstPrinter/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Object/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Passes/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/MIRParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/GlobalISel/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/AsmPrinter/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/SelectionDAG/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Bitcode/Writer/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Bitcode/Reader/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ToolDrivers/llvm-lib/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ToolDrivers/llvm-dlltool/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Demangle/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/AsmParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/MCA/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Analysis/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/TextAPI/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/FuzzMutate/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/LineEditor/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/WindowsManifest/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Linker/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Testing/Support/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/RuntimeDyld/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/MCJIT/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Interpreter/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Orc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/IR/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/IRReader/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/BinaryFormat/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Option/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/LTO/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/OptRemarks/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Scalar/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Coroutines/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/IPO/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Vectorize/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Instrumentation/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Utils/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/ObjCARC/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/AggressiveInstCombine/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Hello/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/InstCombine/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/TableGen/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/XRay/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/PDB/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/PDB/enable_dia.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/Symbolize/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/CodeView/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/MSF/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/DWARF/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ProfileData/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/ProfileData/Coverage/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/MC/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/MC/MCDisassembler/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/lib/MC/MCParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/test/llvm_lit_site_cfg_files.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/ObjectYAML/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Target/WebAssembly/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Target/AArch64/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Object/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Passes/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/CodeGen/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/CodeGen/GlobalISel/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Bitcode/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/MI/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Demangle/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/AsmParser/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Analysis/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/TextAPI/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Support/DynamicLibrary/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/FuzzMutate/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/LineEditor/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Linker/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/ExecutionEngine/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/ExecutionEngine/MCJIT/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/ExecutionEngine/Orc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/IR/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/BinaryFormat/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-cfi-verify/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/PowerPC/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/ARM/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/X86/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/AArch64/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Option/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/OptRemarks/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Transforms/Scalar/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Transforms/IPO/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Transforms/Vectorize/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/Transforms/Utils/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/ADT/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/XRay/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/PDB/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/CodeView/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/MSF/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/DWARF/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/ProfileData/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/unittests/MC/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/not/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/llvm-lit/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/count/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/FileCheck/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/unittest/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/unittest/unittest.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/unittest/UnitTestMain/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/TableGen/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/TableGen/tablegen.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/utils/yaml-bench/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/binutils_symlinks.gni
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/obj2yaml/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-lto2/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-symbolizer/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-readobj/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-nm/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-dwp/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-elfabi/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-split/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/dsymutil/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cxxfilt/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cfi-verify/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cfi-verify/lib/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cxxmap/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cvtres/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-ar/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-size/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-mca/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-strings/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-rtdyld/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-objcopy/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cat/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-objdump/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/PowerPC/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/X86/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/AArch64/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-bcanalyzer/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/sancov/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-profdata/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-isel-fuzzer/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/yaml2obj/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-rc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-c-test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cov/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-undname/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-opt-fuzzer/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-modextract/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-mc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/bugpoint-passes/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-diff/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-dwarfdump/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/bugpoint/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-config/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-link/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cxxdump/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-mt/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-pdbutil/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-lto/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/lto/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-xray/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/sanstats/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-as/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-extract/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-opt-report/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/verify-uselistorder/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llc/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-dis/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/opt/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/lli/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/llvm/tools/lli/ChildTarget/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/include/lld/Common/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/lib/Driver/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/lib/ReaderWriter/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/lib/ReaderWriter/YAML/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/lib/ReaderWriter/MachO/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/lib/Core/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/test/lld_lit_site_cfg_files.gni
    N src/gnu/llvm/utils/gn/secondary/lld/test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/unittests/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/unittests/MachOTests/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/unittests/DriverTests/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/Common/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/MinGW/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/ELF/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/COFF/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/wasm/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/lld/tools/lld/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/resource_dir.gni
    N src/gnu/llvm/utils/gn/secondary/clang/include/clang/Parse/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/include/clang/Basic/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/include/clang/Sema/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/include/clang/Driver/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/include/clang/StaticAnalyzer/Checkers/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/include/clang/Config/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/include/clang/Serialization/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/include/clang/AST/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Parse/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/CodeGen/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Frontend/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Frontend/Rewrite/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Sema/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Headers/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Edit/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Driver/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/Refactoring/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/Core/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/Inclusions/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/ASTDiff/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Analysis/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Index/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Frontend/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Frontend/enable.gni
    N src/gnu/llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Checkers/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Core/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/FrontendTool/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/CrossTU/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/ARCMigrate/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/ARCMigrate/enable.gni
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Serialization/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Rewrite/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Format/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/AST/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/ASTMatchers/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/ASTMatchers/Dynamic/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/lib/Lex/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/test/clang_lit_site_cfg_files.gni
    N src/gnu/llvm/utils/gn/secondary/clang/test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/CodeGen/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/libclang/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Frontend/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Sema/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Driver/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Tooling/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Analysis/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Index/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Rename/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/StaticAnalyzer/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/CrossTU/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Rewrite/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Format/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/AST/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/ASTMatchers/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/ASTMatchers/Dynamic/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/unittests/Lex/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/utils/hmaptool/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/utils/TableGen/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/utils/TableGen/clang_tablegen.gni
    N src/gnu/llvm/utils/gn/secondary/clang/tools/clang-refactor/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/c-arcmt-test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/clang-rename/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/libclang/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/diagtool/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/clang-diff/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/clang-offload-bundler/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/arcmt-test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/clang-extdef-mapping/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/clang-check/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/clang-import-test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/c-index-test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/clang-format/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/clang/tools/driver/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/target.gni
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/include/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/ubsan/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/cfi/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/interception/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/sanitizer_common/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/hwasan/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/test/test.gni
    N src/gnu/llvm/utils/gn/secondary/compiler-rt/test/hwasan/BUILD.gn
    N src/gnu/llvm/utils/gn/build/buildflags.gni
    N src/gnu/llvm/utils/gn/build/run_tablegen.py
    N src/gnu/llvm/utils/gn/build/BUILDCONFIG.gn
    N src/gnu/llvm/utils/gn/build/write_vcsrevision.py
    N src/gnu/llvm/utils/gn/build/BUILD.gn
    N src/gnu/llvm/utils/gn/build/write_cmake_config.gni
    N src/gnu/llvm/utils/gn/build/symlink_or_copy.gni
    N src/gnu/llvm/utils/gn/build/write_cmake_config.py
    N src/gnu/llvm/utils/gn/build/fuzzer.gni
    N src/gnu/llvm/utils/gn/build/symlink_or_copy.py
    N src/gnu/llvm/utils/gn/build/mac_sdk.gni
    N src/gnu/llvm/utils/gn/build/sync_source_lists_from_cmake.py
    N src/gnu/llvm/utils/gn/build/libs/zlib/BUILD.gn
    N src/gnu/llvm/utils/gn/build/libs/zlib/enable.gni
    N src/gnu/llvm/utils/gn/build/libs/xml/BUILD.gn
    N src/gnu/llvm/utils/gn/build/libs/xml/enable.gni
    N src/gnu/llvm/utils/gn/build/libs/terminfo/BUILD.gn
    N src/gnu/llvm/utils/gn/build/libs/terminfo/enable.gni
    N src/gnu/llvm/utils/gn/build/libs/pthread/BUILD.gn
    N src/gnu/llvm/utils/gn/build/libs/pthread/enable.gni
    N src/gnu/llvm/utils/gn/build/libs/xar/BUILD.gn
    N src/gnu/llvm/utils/gn/build/libs/xar/enable.gni
    N src/gnu/llvm/utils/gn/build/libs/edit/BUILD.gn
    N src/gnu/llvm/utils/gn/build/libs/edit/enable.gni
    N src/gnu/llvm/utils/gn/build/toolchain/BUILD.gn
    N src/gnu/llvm/utils/gn/build/toolchain/target_flags.gni
    N src/gnu/llvm/utils/gn/build/toolchain/compiler.gni
    U src/gnu/llvm/utils/llvm-build/README.txt
    U src/gnu/llvm/utils/llvm-build/llvm-build
    U src/gnu/llvm/utils/llvm-build/llvmbuild/util.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/componentinfo.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/main.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/__init__.py
    U src/gnu/llvm/utils/jedit/README
    U src/gnu/llvm/utils/jedit/tablegen.xml
    U src/gnu/llvm/utils/fpcmp/fpcmp.cpp
    U src/gnu/llvm/utils/bugpoint/RemoteRunSafely.sh
    U src/gnu/llvm/utils/git/find-rev
    U src/gnu/llvm/utils/gdb-scripts/prettyprinters.py
    U src/gnu/llvm/utils/textmate/README
    U src/gnu/llvm/utils/textmate/TableGen.tmbundle/info.plist
    U src/gnu/llvm/utils/textmate/TableGen.tmbundle/Syntaxes/TableGen.tmLanguage
    U src/gnu/llvm/utils/FileCheck/FileCheck.cpp
    U src/gnu/llvm/utils/FileCheck/CMakeLists.txt
    U src/gnu/llvm/utils/lint/cpp_lint.py
    U src/gnu/llvm/utils/lint/common_lint.py
    U src/gnu/llvm/utils/lint/remove_trailing_whitespace.sh
    U src/gnu/llvm/utils/lint/generic_lint.py
    U src/gnu/llvm/utils/testgen/mc-bundling-x86-gen.py
    U src/gnu/llvm/utils/LLVMVisualizers/llvm.natvis
    U src/gnu/llvm/utils/LLVMVisualizers/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/LLVMBuild.txt
    U src/gnu/llvm/utils/unittest/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/UnitTestMain/TestMain.cpp
    U src/gnu/llvm/utils/unittest/UnitTestMain/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/googletest/LICENSE.TXT
    U src/gnu/llvm/utils/unittest/googletest/README.LLVM
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-test-part.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-message.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-spi.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_prod.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-printers.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_pred_impl.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-typed-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-param-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-death-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-linked_ptr.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-port-arch.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-tuple.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-internal.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-death-test-internal.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-string.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-filepath.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-port.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-type-util.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest-printers.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest-port.h
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-port.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-all.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-printers.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-death-test.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-typed-test.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-internal-inl.h
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-filepath.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-test-part.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest.cc
    U src/gnu/llvm/utils/unittest/googlemock/LICENSE.txt
    U src/gnu/llvm/utils/unittest/googlemock/README.LLVM
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-spec-builders.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-function-mockers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-cardinalities.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-more-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-more-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-nice-strict.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-internal-utils.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-port.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-port.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-matchers.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-internal-utils.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-cardinalities.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-all.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-spec-builders.cc
    U src/gnu/llvm/utils/kate/README
    U src/gnu/llvm/utils/kate/llvm.xml
    U src/gnu/llvm/utils/kate/llvm-tablegen.xml
    U src/gnu/llvm/utils/TableGen/PredicateExpander.cpp
    U src/gnu/llvm/utils/TableGen/PredicateExpander.h
    U src/gnu/llvm/utils/TableGen/SubtargetFeatureInfo.h
    U src/gnu/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.h
    U src/gnu/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
    U src/gnu/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/Types.cpp
    C src/gnu/llvm/utils/TableGen/X86RecognizableInstr.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenMapTable.cpp
    U src/gnu/llvm/utils/TableGen/RegisterInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
    U src/gnu/llvm/utils/TableGen/GlobalISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SearchableTableEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SubtargetEmitter.cpp
    U src/gnu/llvm/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.cpp
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.h
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
    U src/gnu/llvm/utils/TableGen/Types.h
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.h
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherGen.cpp
    U src/gnu/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
    U src/gnu/llvm/utils/TableGen/RegisterBankEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SDNodeProperties.cpp
    U src/gnu/llvm/utils/TableGen/SequenceToOffsetTable.h
    U src/gnu/llvm/utils/TableGen/tdtags
    U src/gnu/llvm/utils/TableGen/InstrDocsEmitter.cpp
    U src/gnu/llvm/utils/TableGen/InfoByHwMode.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.h
    U src/gnu/llvm/utils/TableGen/InfoByHwMode.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.cpp
    U src/gnu/llvm/utils/TableGen/LLVMBuild.txt
    U src/gnu/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/TableGen.cpp
    U src/gnu/llvm/utils/TableGen/OptParserEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CTagsEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.h
    U src/gnu/llvm/utils/TableGen/CodeGenHwModes.cpp
    U src/gnu/llvm/utils/TableGen/Attributes.cpp
    U src/gnu/llvm/utils/TableGen/InstrInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86DisassemblerShared.h
    U src/gnu/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CMakeLists.txt
    U src/gnu/llvm/utils/TableGen/CodeGenHwModes.h
    U src/gnu/llvm/utils/TableGen/FastISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.h
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.h
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.h
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.h
    U src/gnu/llvm/utils/TableGen/DAGISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DisassemblerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.cpp
    U src/gnu/llvm/utils/TableGen/IntrinsicEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeEmitterGen.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.cpp
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.cpp
    U src/gnu/llvm/utils/TableGen/CallingConvEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SDNodeProperties.h
    U src/gnu/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmMatcherEmitter.cpp
    N src/gnu/llvm/utils/TableGen/ExegesisEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenIntrinsics.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
    U src/gnu/llvm/utils/git-svn/git-svnup
    U src/gnu/llvm/utils/git-svn/git-llvm
    U src/gnu/llvm/utils/git-svn/git-svnrevert
    U src/gnu/llvm/utils/yaml-bench/YAMLBench.cpp
    U src/gnu/llvm/utils/yaml-bench/CMakeLists.txt
    U src/gnu/llvm/runtimes/Components.cmake.in
    U src/gnu/llvm/runtimes/CMakeLists.txt
    N src/gnu/llvm/benchmarks/CMakeLists.txt
    N src/gnu/llvm/benchmarks/DummyYAML.cpp
    U src/gnu/llvm/tools/LLVMBuild.txt
    U src/gnu/llvm/tools/CMakeLists.txt
    U src/gnu/llvm/tools/obj2yaml/coff2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/Error.cpp
    U src/gnu/llvm/tools/obj2yaml/macho2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.h
    U src/gnu/llvm/tools/obj2yaml/Error.h
    U src/gnu/llvm/tools/obj2yaml/elf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/CMakeLists.txt
    U src/gnu/llvm/tools/obj2yaml/dwarf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/wasm2yaml.cpp
    U src/gnu/llvm/tools/llvm-lto2/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-lto2/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-lto2/llvm-lto2.cpp
    U src/gnu/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
    U src/gnu/llvm/tools/llvm-symbolizer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.cpp
    U src/gnu/llvm/tools/llvm-readobj/WindowsResourceDumper.h
    U src/gnu/llvm/tools/llvm-readobj/COFFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/WasmDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/MachODumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.h
    U src/gnu/llvm/tools/llvm-readobj/Error.cpp
    U src/gnu/llvm/tools/llvm-readobj/ELFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.h
    U src/gnu/llvm/tools/llvm-readobj/Error.h
    U src/gnu/llvm/tools/llvm-readobj/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-readobj/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/COFFImportDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/StackMapPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.h
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.cpp
    U src/gnu/llvm/tools/llvm-nm/llvm-nm.cpp
    U src/gnu/llvm/tools/llvm-nm/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-nm/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-stress/llvm-stress.cpp
    U src/gnu/llvm/tools/llvm-stress/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-stress/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwp/DWPStringPool.h
    U src/gnu/llvm/tools/llvm-dwp/DWPError.cpp
    U src/gnu/llvm/tools/llvm-dwp/DWPError.h
    U src/gnu/llvm/tools/llvm-dwp/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwp/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwp/llvm-dwp.cpp
    N src/gnu/llvm/tools/llvm-yaml-numeric-parser-fuzzer/yaml-numeric-parser-fuzzer.cpp
    N src/gnu/llvm/tools/llvm-yaml-numeric-parser-fuzzer/DummyYAMLNumericParserFuzzer.cpp
    N src/gnu/llvm/tools/llvm-yaml-numeric-parser-fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-elfabi/ErrorCollector.cpp
    N src/gnu/llvm/tools/llvm-elfabi/ErrorCollector.h
    N src/gnu/llvm/tools/llvm-elfabi/ELFObjHandler.cpp
    N src/gnu/llvm/tools/llvm-elfabi/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-elfabi/ELFObjHandler.h
    N src/gnu/llvm/tools/llvm-elfabi/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-elfabi/llvm-elfabi.cpp
    U src/gnu/llvm/tools/llvm-split/llvm-split.cpp
    U src/gnu/llvm/tools/llvm-split/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-split/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-shlib/gen-msvc-exports.py
    U src/gnu/llvm/tools/llvm-shlib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-shlib/libllvm.cpp
    U src/gnu/llvm/tools/llvm-shlib/simple_version_script.map.in
    U src/gnu/llvm/tools/dsymutil/DwarfStreamer.cpp
    U src/gnu/llvm/tools/dsymutil/DeclContext.h
    U src/gnu/llvm/tools/dsymutil/dsymutil.cpp
    U src/gnu/llvm/tools/dsymutil/MachOUtils.h
    U src/gnu/llvm/tools/dsymutil/CompileUnit.h
    N src/gnu/llvm/tools/dsymutil/SymbolMap.h
    U src/gnu/llvm/tools/dsymutil/DwarfStreamer.h
    U src/gnu/llvm/tools/dsymutil/CFBundle.cpp
    U src/gnu/llvm/tools/dsymutil/CFBundle.h
    U src/gnu/llvm/tools/dsymutil/dsymutil.h
    U src/gnu/llvm/tools/dsymutil/CompileUnit.cpp
    U src/gnu/llvm/tools/dsymutil/DwarfLinker.h
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.h
    U src/gnu/llvm/tools/dsymutil/MachODebugMapParser.cpp
    U src/gnu/llvm/tools/dsymutil/DebugMap.cpp
    U src/gnu/llvm/tools/dsymutil/MachOUtils.cpp
    U src/gnu/llvm/tools/dsymutil/NonRelocatableStringpool.h
    U src/gnu/llvm/tools/dsymutil/NonRelocatableStringpool.cpp
    U src/gnu/llvm/tools/dsymutil/DeclContext.cpp
    U src/gnu/llvm/tools/dsymutil/LLVMBuild.txt
    U src/gnu/llvm/tools/dsymutil/LinkUtils.h
    U src/gnu/llvm/tools/dsymutil/CMakeLists.txt
    U src/gnu/llvm/tools/dsymutil/DwarfLinker.cpp
    N src/gnu/llvm/tools/dsymutil/SymbolMap.cpp
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.cpp
    U src/gnu/llvm/tools/dsymutil/DebugMap.h
    U src/gnu/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
    U src/gnu/llvm/tools/llvm-cxxfilt/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/llvm-cfi-verify.cpp
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/GraphBuilder.h
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/GraphBuilder.cpp
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/FileAnalysis.h
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/FileAnalysis.cpp
    N src/gnu/llvm/tools/llvm-cxxmap/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-cxxmap/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
    U src/gnu/llvm/tools/llvm-cvtres/llvm-cvtres.cpp
    U src/gnu/llvm/tools/llvm-cvtres/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cvtres/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cvtres/Opts.td
    U src/gnu/llvm/tools/llvm-ar/llvm-ar.cpp
    U src/gnu/llvm/tools/llvm-ar/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-ar/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-size/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-size/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-size/llvm-size.cpp
    U src/gnu/llvm/tools/llvm-mca/PipelinePrinter.h
    U src/gnu/llvm/tools/llvm-mca/CodeRegion.cpp
    U src/gnu/llvm/tools/llvm-mca/CodeRegion.h
    U src/gnu/llvm/tools/llvm-mca/llvm-mca.cpp
    N src/gnu/llvm/tools/llvm-mca/CodeRegionGenerator.h
    U src/gnu/llvm/tools/llvm-mca/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-mca/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mca/PipelinePrinter.cpp
    N src/gnu/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/RegisterFileStatistics.h
    N src/gnu/llvm/tools/llvm-mca/Views/InstructionInfoView.h
    N src/gnu/llvm/tools/llvm-mca/Views/SummaryView.h
    N src/gnu/llvm/tools/llvm-mca/Views/SummaryView.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/View.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/TimelineView.h
    N src/gnu/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.h
    N src/gnu/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/RegisterFileStatistics.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/SchedulerStatistics.h
    N src/gnu/llvm/tools/llvm-mca/Views/ResourcePressureView.h
    N src/gnu/llvm/tools/llvm-mca/Views/DispatchStatistics.h
    N src/gnu/llvm/tools/llvm-mca/Views/View.h
    N src/gnu/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
    N src/gnu/llvm/tools/llvm-mca/Views/TimelineView.cpp
    U src/gnu/llvm/tools/llvm-strings/llvm-strings.cpp
    U src/gnu/llvm/tools/llvm-strings/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-strings/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
    U src/gnu/llvm/tools/llvm-rtdyld/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-rtdyld/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-objcopy/ObjcopyOpts.td
    N src/gnu/llvm/tools/llvm-objcopy/CopyConfig.cpp
    N src/gnu/llvm/tools/llvm-objcopy/Buffer.h
    N src/gnu/llvm/tools/llvm-objcopy/Buffer.cpp
    U src/gnu/llvm/tools/llvm-objcopy/llvm-objcopy.h
    U src/gnu/llvm/tools/llvm-objcopy/StripOpts.td
    U src/gnu/llvm/tools/llvm-objcopy/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-objcopy/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
    N src/gnu/llvm/tools/llvm-objcopy/CopyConfig.h
    N src/gnu/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.h
    N src/gnu/llvm/tools/llvm-objcopy/ELF/Object.cpp
    N src/gnu/llvm/tools/llvm-objcopy/ELF/Object.h
    N src/gnu/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
    N src/gnu/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.h
    N src/gnu/llvm/tools/llvm-objcopy/COFF/Writer.h
    N src/gnu/llvm/tools/llvm-objcopy/COFF/Reader.h
    N src/gnu/llvm/tools/llvm-objcopy/COFF/Object.cpp
    N src/gnu/llvm/tools/llvm-objcopy/COFF/Object.h
    N src/gnu/llvm/tools/llvm-objcopy/COFF/Writer.cpp
    N src/gnu/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
    N src/gnu/llvm/tools/llvm-objcopy/COFF/Reader.cpp
    U src/gnu/llvm/tools/lto/LTODisassembler.cpp
    U src/gnu/llvm/tools/lto/lto.cpp
    U src/gnu/llvm/tools/lto/CMakeLists.txt
    U src/gnu/llvm/tools/lto/lto.exports
    U src/gnu/llvm/tools/llvm-go/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-go/llvm-go.go
    U src/gnu/llvm/tools/llvm-cat/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cat/llvm-cat.cpp
    U src/gnu/llvm/tools/llvm-cat/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-objdump/llvm-objdump.h
    U src/gnu/llvm/tools/llvm-objdump/COFFDump.cpp
    U src/gnu/llvm/tools/llvm-objdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-objdump/MachODump.cpp
    U src/gnu/llvm/tools/llvm-objdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-objdump/ELFDump.cpp
    U src/gnu/llvm/tools/llvm-objdump/llvm-objdump.cpp
    U src/gnu/llvm/tools/llvm-objdump/WasmDump.cpp
    U src/gnu/llvm/tools/llvm-mc-disassemble-fuzzer/llvm-mc-disassemble-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-mc-disassemble-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/llvm-exegesis.cpp
    U src/gnu/llvm/tools/llvm-exegesis/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-exegesis/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/Latency.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Analysis.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/LlvmState.h
    N src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkCode.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h
    N src/gnu/llvm/tools/llvm-exegesis/lib/RegisterValue.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Analysis.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Target.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Latency.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Clustering.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/LlvmState.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Target.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h
    N src/gnu/llvm/tools/llvm-exegesis/lib/SnippetGenerator.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/MCInstrDescView.h
    N src/gnu/llvm/tools/llvm-exegesis/lib/RegisterValue.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/RegisterAliasing.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Assembler.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Assembler.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/RegisterAliasing.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp
    N src/gnu/llvm/tools/llvm-exegesis/lib/CodeTemplate.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/PerfHelper.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Clustering.cpp
    N src/gnu/llvm/tools/llvm-exegesis/lib/SnippetGenerator.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Uops.cpp
    N src/gnu/llvm/tools/llvm-exegesis/lib/CodeTemplate.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Uops.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/PerfHelper.h
    N src/gnu/llvm/tools/llvm-exegesis/lib/PowerPC/Target.cpp
    N src/gnu/llvm/tools/llvm-exegesis/lib/PowerPC/LLVMBuild.txt
    N src/gnu/llvm/tools/llvm-exegesis/lib/PowerPC/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/X86/Target.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/X86/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/X86/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/AArch64/Target.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/AArch64/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/AArch64/CMakeLists.txt
    U src/gnu/llvm/tools/opt-viewer/style.css
    U src/gnu/llvm/tools/opt-viewer/opt-viewer.py
    U src/gnu/llvm/tools/opt-viewer/optpmap.py
    U src/gnu/llvm/tools/opt-viewer/opt-diff.py
    U src/gnu/llvm/tools/opt-viewer/opt-stats.py
    U src/gnu/llvm/tools/opt-viewer/optrecord.py
    U src/gnu/llvm/tools/opt-viewer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
    U src/gnu/llvm/tools/llvm-bcanalyzer/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-bcanalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/sancov/coverage-report-server.py
    U src/gnu/llvm/tools/sancov/sancov.cpp
    U src/gnu/llvm/tools/sancov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-profdata/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-profdata/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-profdata/llvm-profdata.cpp
    U src/gnu/llvm/tools/llvm-isel-fuzzer/llvm-isel-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-isel-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-isel-fuzzer/DummyISelFuzzer.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.h
    U src/gnu/llvm/tools/yaml2obj/yaml2macho.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2wasm.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2coff.cpp
    U src/gnu/llvm/tools/yaml2obj/CMakeLists.txt
    U src/gnu/llvm/tools/yaml2obj/yaml2elf.cpp
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptToken.h
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptTokenList.def
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptCppFilter.cpp
    U src/gnu/llvm/tools/llvm-rc/ResourceVisitor.h
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptParser.cpp
    U src/gnu/llvm/tools/llvm-rc/llvm-rc.cpp
    U src/gnu/llvm/tools/llvm-rc/ResourceFileWriter.h
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptToken.cpp
    U src/gnu/llvm/tools/llvm-rc/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-rc/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptStmt.cpp
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptStmt.h
    U src/gnu/llvm/tools/llvm-rc/Opts.td
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptCppFilter.h
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptParser.h
    U src/gnu/llvm/tools/llvm-rc/ResourceFileWriter.cpp
    N src/gnu/llvm/tools/opt-remarks/CMakeLists.txt
    N src/gnu/llvm/tools/opt-remarks/liboptremarks.cpp
    N src/gnu/llvm/tools/opt-remarks/OptRemarks.exports
    U src/gnu/llvm/tools/llvm-c-test/targets.c
    U src/gnu/llvm/tools/llvm-c-test/diagnostic.c
    U src/gnu/llvm/tools/llvm-c-test/metadata.c
    U src/gnu/llvm/tools/llvm-c-test/echo.cpp
    U src/gnu/llvm/tools/llvm-c-test/llvm-c-test.h
    U src/gnu/llvm/tools/llvm-c-test/calc.c
    U src/gnu/llvm/tools/llvm-c-test/disassemble.c
    U src/gnu/llvm/tools/llvm-c-test/object.c
    U src/gnu/llvm/tools/llvm-c-test/main.c
    U src/gnu/llvm/tools/llvm-c-test/helpers.c
    U src/gnu/llvm/tools/llvm-c-test/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-c-test/attributes.c
    U src/gnu/llvm/tools/llvm-c-test/include-all.c
    U src/gnu/llvm/tools/llvm-c-test/debuginfo.c
    U src/gnu/llvm/tools/llvm-c-test/module.c
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageViewOptions.h
    N src/gnu/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
    U src/gnu/llvm/tools/llvm-cov/CodeCoverage.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageExporterJson.h
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.h
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.h
    U src/gnu/llvm/tools/llvm-cov/llvm-cov.cpp
    U src/gnu/llvm/tools/llvm-cov/RenderingSupport.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewHTML.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
    U src/gnu/llvm/tools/llvm-cov/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.cpp
    U src/gnu/llvm/tools/llvm-cov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.h
    U src/gnu/llvm/tools/llvm-cov/CoverageExporterJson.cpp
    U src/gnu/llvm/tools/llvm-cov/TestingSupport.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.h
    N src/gnu/llvm/tools/llvm-cov/CoverageExporterLcov.h
    U src/gnu/llvm/tools/llvm-cov/gcov.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageExporter.h
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp
    U src/gnu/llvm/tools/llvm-undname/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-undname/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-undname/llvm-undname.cpp
    U src/gnu/llvm/tools/llvm-opt-fuzzer/DummyOptFuzzer.cpp
    U src/gnu/llvm/tools/llvm-opt-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-opt-fuzzer/llvm-opt-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-modextract/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-modextract/llvm-modextract.cpp
    U src/gnu/llvm/tools/llvm-modextract/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-jitlistener/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-jitlistener/llvm-jitlistener.cpp
    U src/gnu/llvm/tools/llvm-jitlistener/CMakeLists.txt
    U src/gnu/llvm/tools/llc/LLVMBuild.txt
    U src/gnu/llvm/tools/llc/CMakeLists.txt
    U src/gnu/llvm/tools/llc/llc.cpp
    U src/gnu/llvm/tools/msbuild/LLVM.Cpp.Common.props
    U src/gnu/llvm/tools/msbuild/uninstall.bat
    U src/gnu/llvm/tools/msbuild/LLVM.Cpp.Common.targets
    U src/gnu/llvm/tools/msbuild/source.extension.vsixmanifest
    C src/gnu/llvm/tools/msbuild/.gitignore
    U src/gnu/llvm/tools/msbuild/llvm.csproj
    U src/gnu/llvm/tools/msbuild/llvm-general.xml
    U src/gnu/llvm/tools/msbuild/license.txt
    U src/gnu/llvm/tools/msbuild/install.bat
    U src/gnu/llvm/tools/msbuild/llvm.sln
    U src/gnu/llvm/tools/msbuild/Platformx64/Toolset.targets
    U src/gnu/llvm/tools/msbuild/Platformx64/Toolset.props
    U src/gnu/llvm/tools/msbuild/Platformx86/Toolset.targets
    U src/gnu/llvm/tools/msbuild/Platformx86/Toolset.props
    U src/gnu/llvm/tools/llvm-mc/Disassembler.cpp
    U src/gnu/llvm/tools/llvm-mc/llvm-mc.cpp
    U src/gnu/llvm/tools/llvm-mc/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-mc/Disassembler.h
    U src/gnu/llvm/tools/llvm-mc/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint-passes/TestPasses.cpp
    U src/gnu/llvm/tools/bugpoint-passes/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint-passes/bugpoint.exports
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffLog.h
    U src/gnu/llvm/tools/llvm-diff/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.h
    U src/gnu/llvm/tools/llvm-diff/DiffLog.cpp
    U src/gnu/llvm/tools/llvm-diff/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
    U src/gnu/llvm/tools/llvm-diff/llvm-diff.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.cpp
    U src/gnu/llvm/tools/llvm-dwarfdump/Statistics.cpp
    U src/gnu/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
    U src/gnu/llvm/tools/llvm-dwarfdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/fuzzer/llvm-dwarfdump-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-dwarfdump/fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint/ToolRunner.h
    U src/gnu/llvm/tools/bugpoint/ExtractFunction.cpp
    U src/gnu/llvm/tools/bugpoint/OptimizerDriver.cpp
    U src/gnu/llvm/tools/bugpoint/ExecutionDriver.cpp
    U src/gnu/llvm/tools/bugpoint/CrashDebugger.cpp
    U src/gnu/llvm/tools/bugpoint/LLVMBuild.txt
    U src/gnu/llvm/tools/bugpoint/FindBugs.cpp
    U src/gnu/llvm/tools/bugpoint/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint/BugDriver.cpp
    U src/gnu/llvm/tools/bugpoint/ListReducer.h
    U src/gnu/llvm/tools/bugpoint/Miscompilation.cpp
    U src/gnu/llvm/tools/bugpoint/BugDriver.h
    U src/gnu/llvm/tools/bugpoint/bugpoint.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.cpp
    C src/gnu/llvm/tools/llvm-config/llvm-config.cpp
    U src/gnu/llvm/tools/llvm-config/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-config/BuildVariables.inc.in
    U src/gnu/llvm/tools/llvm-link/llvm-link.cpp
    U src/gnu/llvm/tools/llvm-link/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-link/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cxxdump/Error.cpp
    U src/gnu/llvm/tools/llvm-cxxdump/llvm-cxxdump.h
    U src/gnu/llvm/tools/llvm-cxxdump/Error.h
    U src/gnu/llvm/tools/llvm-cxxdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
    U src/gnu/llvm/tools/llvm-cxxdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mt/llvm-mt.cpp
    U src/gnu/llvm/tools/llvm-mt/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-mt/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mt/Opts.td
    U src/gnu/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyVariableDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/MinimalTypeDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PdbYaml.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/BytesOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyEnumDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/InputFile.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/StreamUtil.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/DumpOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-pdbutil/LinePrinter.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/StreamUtil.h
    U src/gnu/llvm/tools/llvm-pdbutil/YAMLOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/ExplainOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/FormatUtil.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/MinimalTypeDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/InputFile.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PdbYaml.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/OutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyVariableDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/FormatUtil.h
    U src/gnu/llvm/tools/llvm-pdbutil/LinePrinter.h
    U src/gnu/llvm/tools/llvm-pdbutil/llvm-pdbutil.h
    U src/gnu/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-lto/llvm-lto.cpp
    U src/gnu/llvm/tools/llvm-lto/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-lto/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-xray/xray-extract.cpp
    N src/gnu/llvm/tools/llvm-xray/xray-fdr-dump.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-stacks.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-color-helper.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-graph-diff.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-registry.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-color-helper.h
    U src/gnu/llvm/tools/llvm-xray/xray-converter.h
    U src/gnu/llvm/tools/llvm-xray/xray-account.h
    U src/gnu/llvm/tools/llvm-xray/xray-graph-diff.h
    U src/gnu/llvm/tools/llvm-xray/xray-graph.cpp
    U src/gnu/llvm/tools/llvm-xray/trie-node.h
    U src/gnu/llvm/tools/llvm-xray/xray-graph.h
    U src/gnu/llvm/tools/llvm-xray/func-id-helper.cpp
    U src/gnu/llvm/tools/llvm-xray/llvm-xray.cpp
    U src/gnu/llvm/tools/llvm-xray/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-xray/xray-registry.h
    U src/gnu/llvm/tools/llvm-xray/func-id-helper.h
    U src/gnu/llvm/tools/llvm-xray/xray-account.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-converter.cpp
    U src/gnu/llvm/tools/sanstats/sanstats.cpp
    U src/gnu/llvm/tools/sanstats/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-special-case-list-fuzzer/DummySpecialCaseListFuzzer.cpp
    U src/gnu/llvm/tools/llvm-special-case-list-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-special-case-list-fuzzer/special-case-list-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-as-fuzzer/llvm-as-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-as-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-as/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-as/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-as/llvm-as.cpp
    U src/gnu/llvm/tools/llvm-extract/llvm-extract.cpp
    U src/gnu/llvm/tools/llvm-extract/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-extract/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-opt-report/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-opt-report/OptReport.cpp
    U src/gnu/llvm/tools/verify-uselistorder/verify-uselistorder.cpp
    U src/gnu/llvm/tools/verify-uselistorder/LLVMBuild.txt
    U src/gnu/llvm/tools/verify-uselistorder/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-microsoft-demangle-fuzzer/llvm-microsoft-demangle-fuzzer.cpp
    N src/gnu/llvm/tools/llvm-microsoft-demangle-fuzzer/DummyDemanglerFuzzer.cpp
    N src/gnu/llvm/tools/llvm-microsoft-demangle-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mc-assemble-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mc-assemble-fuzzer/llvm-mc-assemble-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-dis/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dis/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dis/llvm-dis.cpp
    U src/gnu/llvm/tools/xcode-toolchain/CMakeLists.txt
    U src/gnu/llvm/tools/gold/gold.exports
    U src/gnu/llvm/tools/gold/README.txt
    U src/gnu/llvm/tools/gold/gold-plugin.cpp
    U src/gnu/llvm/tools/gold/CMakeLists.txt
    U src/gnu/llvm/tools/opt/BreakpointPrinter.cpp
    U src/gnu/llvm/tools/opt/Debugify.h
    U src/gnu/llvm/tools/opt/PassPrinters.h
    U src/gnu/llvm/tools/opt/PassPrinters.cpp
    U src/gnu/llvm/tools/opt/NewPMDriver.cpp
    U src/gnu/llvm/tools/opt/NewPMDriver.h
    U src/gnu/llvm/tools/opt/LLVMBuild.txt
    U src/gnu/llvm/tools/opt/CMakeLists.txt
    U src/gnu/llvm/tools/opt/BreakpointPrinter.h
    U src/gnu/llvm/tools/opt/PrintSCC.cpp
    U src/gnu/llvm/tools/opt/opt.cpp
    U src/gnu/llvm/tools/opt/Debugify.cpp
    U src/gnu/llvm/tools/opt/AnalysisWrappers.cpp
    U src/gnu/llvm/tools/opt/GraphPrinters.cpp
    U src/gnu/llvm/tools/lli/lli.cpp
    U src/gnu/llvm/tools/lli/LLVMBuild.txt
    U src/gnu/llvm/tools/lli/CMakeLists.txt
    U src/gnu/llvm/tools/lli/RemoteJITUtils.h
    U src/gnu/llvm/tools/lli/ChildTarget/LLVMBuild.txt
    U src/gnu/llvm/tools/lli/ChildTarget/ChildTarget.cpp
    U src/gnu/llvm/tools/lli/ChildTarget/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-itanium-demangle-fuzzer/DummyDemanglerFuzzer.cpp
    N src/gnu/llvm/tools/llvm-itanium-demangle-fuzzer/CMakeLists.txt
    N src/gnu/llvm/tools/llvm-itanium-demangle-fuzzer/llvm-itanium-demangle-fuzzer.cpp
    U src/gnu/llvm/tools/lld/.arcconfig
    U src/gnu/llvm/tools/lld/CODE_OWNERS.TXT
    U src/gnu/llvm/tools/lld/.clang-format
    U src/gnu/llvm/tools/lld/.gitignore
    U src/gnu/llvm/tools/lld/LICENSE.TXT
    U src/gnu/llvm/tools/lld/CMakeLists.txt
    U src/gnu/llvm/tools/lld/README.md
    U src/gnu/llvm/tools/lld/include/lld/Common/Reproduce.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Threads.h
    U src/gnu/llvm/tools/lld/include/lld/Common/ErrorHandler.h
    U src/gnu/llvm/tools/lld/include/lld/Common/LLVM.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Driver.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Version.inc.in
    U src/gnu/llvm/tools/lld/include/lld/Common/Strings.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Args.h
    U src/gnu/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Version.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Timer.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Memory.h
    U src/gnu/llvm/tools/lld/include/lld/ReaderWriter/YamlContext.h
    U src/gnu/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
    U src/gnu/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Atom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Resolver.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h
    U src/gnu/llvm/tools/lld/include/lld/Core/LinkingContext.h
    U src/gnu/llvm/tools/lld/include/lld/Core/File.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Writer.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reader.h
    U src/gnu/llvm/tools/lld/include/lld/Core/DefinedAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Node.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reference.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Instrumentation.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Error.h
    U src/gnu/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SymbolTable.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Simple.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Pass.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/PassManager.h
    U src/gnu/llvm/tools/lld/include/lld/Core/UndefinedAtom.h
    U src/gnu/llvm/tools/lld/lib/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
    U src/gnu/llvm/tools/lld/lib/Driver/DarwinLdOptions.td
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/YAML/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/FlatNamespaceFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOPasses.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
    U src/gnu/llvm/tools/lld/lib/Core/DefinedAtom.cpp
    U src/gnu/llvm/tools/lld/lib/Core/LinkingContext.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Error.cpp
    U src/gnu/llvm/tools/lld/lib/Core/File.cpp
    U src/gnu/llvm/tools/lld/lib/Core/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Writer.cpp
    U src/gnu/llvm/tools/lld/lib/Core/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/Core/Resolver.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Reader.cpp
    U src/gnu/llvm/tools/lld/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/empty_obj_x86_armv7.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileToAtomsTests.cpp
    U src/gnu/llvm/tools/lld/unittests/DriverTests/DarwinLdDriverTest.cpp
    U src/gnu/llvm/tools/lld/unittests/DriverTests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/Common/Memory.cpp
    U src/gnu/llvm/tools/lld/Common/ErrorHandler.cpp
    U src/gnu/llvm/tools/lld/Common/Timer.cpp
    U src/gnu/llvm/tools/lld/Common/Strings.cpp
    U src/gnu/llvm/tools/lld/Common/Version.cpp
    U src/gnu/llvm/tools/lld/Common/Threads.cpp
    U src/gnu/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp
    U src/gnu/llvm/tools/lld/Common/CMakeLists.txt
    U src/gnu/llvm/tools/lld/Common/Args.cpp
    U src/gnu/llvm/tools/lld/Common/Reproduce.cpp
    U src/gnu/llvm/tools/lld/cmake/modules/AddLLD.cmake
    U src/gnu/llvm/tools/lld/cmake/modules/FindVTune.cmake
    U src/gnu/llvm/tools/lld/docs/WebAssembly.rst
    U src/gnu/llvm/tools/lld/docs/NewLLD.rst
    C src/gnu/llvm/tools/lld/docs/ld.lld.1
    N src/gnu/llvm/tools/lld/docs/missingkeyfunction.rst
    U src/gnu/llvm/tools/lld/docs/design.rst
    U src/gnu/llvm/tools/lld/docs/hello.png
    U src/gnu/llvm/tools/lld/docs/open_projects.rst
    U src/gnu/llvm/tools/lld/docs/README.txt
    U src/gnu/llvm/tools/lld/docs/conf.py
    U src/gnu/llvm/tools/lld/docs/make.bat
    U src/gnu/llvm/tools/lld/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/lld/docs/getting_started.rst
    U src/gnu/llvm/tools/lld/docs/windows_support.rst
    U src/gnu/llvm/tools/lld/docs/CMakeLists.txt
    U src/gnu/llvm/tools/lld/docs/index.rst
    U src/gnu/llvm/tools/lld/docs/Driver.rst
    U src/gnu/llvm/tools/lld/docs/Readers.rst
    U src/gnu/llvm/tools/lld/docs/development.rst
    U src/gnu/llvm/tools/lld/docs/AtomLLD.rst
    U src/gnu/llvm/tools/lld/docs/sphinx_intro.rst
    U src/gnu/llvm/tools/lld/docs/_static/favicon.ico
    U src/gnu/llvm/tools/lld/docs/llvm-theme/layout.html
    U src/gnu/llvm/tools/lld/docs/llvm-theme/theme.conf
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/logo.png
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/contents.png
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/llvm.css
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/navigation.png
    U src/gnu/llvm/tools/lld/docs/_templates/indexsidebar.html
    U src/gnu/llvm/tools/lld/docs/_templates/layout.html
    U src/gnu/llvm/tools/lld/MinGW/Driver.cpp
    U src/gnu/llvm/tools/lld/MinGW/Options.td
    U src/gnu/llvm/tools/lld/MinGW/CMakeLists.txt
    U src/gnu/llvm/tools/lld/ELF/ScriptLexer.cpp
    U src/gnu/llvm/tools/lld/ELF/ScriptParser.cpp
    U src/gnu/llvm/tools/lld/ELF/ICF.h
    C src/gnu/llvm/tools/lld/ELF/SyntheticSections.cpp
    C src/gnu/llvm/tools/lld/ELF/DriverUtils.cpp
    U src/gnu/llvm/tools/lld/ELF/MarkLive.cpp
    U src/gnu/llvm/tools/lld/ELF/MarkLive.h
    U src/gnu/llvm/tools/lld/ELF/InputFiles.cpp
    U src/gnu/llvm/tools/lld/ELF/ScriptLexer.h
    C src/gnu/llvm/tools/lld/ELF/Driver.cpp
    U src/gnu/llvm/tools/lld/ELF/Filesystem.cpp
    U src/gnu/llvm/tools/lld/ELF/LTO.h
    C src/gnu/llvm/tools/lld/ELF/Options.td
    U src/gnu/llvm/tools/lld/ELF/Writer.h
    U src/gnu/llvm/tools/lld/ELF/Target.h
    U src/gnu/llvm/tools/lld/ELF/AArch64ErrataFix.h
    U src/gnu/llvm/tools/lld/ELF/Driver.h
    U src/gnu/llvm/tools/lld/ELF/MapFile.h
    U src/gnu/llvm/tools/lld/ELF/Target.cpp
    U src/gnu/llvm/tools/lld/ELF/Filesystem.h
    C src/gnu/llvm/tools/lld/ELF/OutputSections.cpp
    C src/gnu/llvm/tools/lld/ELF/Config.h
    U src/gnu/llvm/tools/lld/ELF/ScriptParser.h
    C src/gnu/llvm/tools/lld/ELF/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/ELF/Relocations.h
    C src/gnu/llvm/tools/lld/ELF/LinkerScript.cpp
    U src/gnu/llvm/tools/lld/ELF/OutputSections.h
    U src/gnu/llvm/tools/lld/ELF/ICF.cpp
    U src/gnu/llvm/tools/lld/ELF/SymbolTable.h
    U src/gnu/llvm/tools/lld/ELF/LinkerScript.h
    U src/gnu/llvm/tools/lld/ELF/CallGraphSort.h
    U src/gnu/llvm/tools/lld/ELF/EhFrame.h
    U src/gnu/llvm/tools/lld/ELF/InputFiles.h
    C src/gnu/llvm/tools/lld/ELF/Writer.cpp
    U src/gnu/llvm/tools/lld/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lld/ELF/EhFrame.cpp
    U src/gnu/llvm/tools/lld/ELF/Bits.h
    C src/gnu/llvm/tools/lld/ELF/Relocations.cpp
    U src/gnu/llvm/tools/lld/ELF/CallGraphSort.cpp
    U src/gnu/llvm/tools/lld/ELF/README.md
    U src/gnu/llvm/tools/lld/ELF/LTO.cpp
    C src/gnu/llvm/tools/lld/ELF/Symbols.cpp
    N src/gnu/llvm/tools/lld/ELF/DWARF.cpp
    U src/gnu/llvm/tools/lld/ELF/InputSection.cpp
    U src/gnu/llvm/tools/lld/ELF/Thunks.h
    U src/gnu/llvm/tools/lld/ELF/Thunks.cpp
    C src/gnu/llvm/tools/lld/ELF/Symbols.h
    N src/gnu/llvm/tools/lld/ELF/DWARF.h
    U src/gnu/llvm/tools/lld/ELF/SyntheticSections.h
    U src/gnu/llvm/tools/lld/ELF/MapFile.cpp
    U src/gnu/llvm/tools/lld/ELF/AArch64ErrataFix.cpp
    U src/gnu/llvm/tools/lld/ELF/InputSection.h
    N src/gnu/llvm/tools/lld/ELF/Arch/MSP430.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/PPC64.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/SPARCV9.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/Mips.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/X86_64.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/Hexagon.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/X86.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/AArch64.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/MipsArchTree.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/PPC.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/AVR.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/ARM.cpp
    N src/gnu/llvm/tools/lld/ELF/Arch/RISCV.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/AMDGPU.cpp
    U src/gnu/llvm/tools/lld/COFF/ICF.h
    U src/gnu/llvm/tools/lld/COFF/DriverUtils.cpp
    U src/gnu/llvm/tools/lld/COFF/MarkLive.cpp
    U src/gnu/llvm/tools/lld/COFF/MarkLive.h
    U src/gnu/llvm/tools/lld/COFF/InputFiles.cpp
    U src/gnu/llvm/tools/lld/COFF/Driver.cpp
    U src/gnu/llvm/tools/lld/COFF/Chunks.h
    U src/gnu/llvm/tools/lld/COFF/PDB.cpp
    U src/gnu/llvm/tools/lld/COFF/MinGW.cpp
    U src/gnu/llvm/tools/lld/COFF/LTO.h
    U src/gnu/llvm/tools/lld/COFF/Options.td
    U src/gnu/llvm/tools/lld/COFF/Writer.h
    U src/gnu/llvm/tools/lld/COFF/Driver.h
    U src/gnu/llvm/tools/lld/COFF/MapFile.h
    U src/gnu/llvm/tools/lld/COFF/Config.h
    U src/gnu/llvm/tools/lld/COFF/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/COFF/ICF.cpp
    U src/gnu/llvm/tools/lld/COFF/PDB.h
    U src/gnu/llvm/tools/lld/COFF/SymbolTable.h
    U src/gnu/llvm/tools/lld/COFF/InputFiles.h
    U src/gnu/llvm/tools/lld/COFF/Writer.cpp
    U src/gnu/llvm/tools/lld/COFF/CMakeLists.txt
    U src/gnu/llvm/tools/lld/COFF/Chunks.cpp
    U src/gnu/llvm/tools/lld/COFF/README.md
    U src/gnu/llvm/tools/lld/COFF/LTO.cpp
    U src/gnu/llvm/tools/lld/COFF/Symbols.cpp
    U src/gnu/llvm/tools/lld/COFF/DLL.cpp
    U src/gnu/llvm/tools/lld/COFF/DLL.h
    U src/gnu/llvm/tools/lld/COFF/MinGW.h
    U src/gnu/llvm/tools/lld/COFF/Symbols.h
    U src/gnu/llvm/tools/lld/COFF/MapFile.cpp
    U src/gnu/llvm/tools/lld/utils/link.yaml
    U src/gnu/llvm/tools/lld/utils/benchmark.py
    U src/gnu/llvm/tools/lld/wasm/MarkLive.cpp
    U src/gnu/llvm/tools/lld/wasm/MarkLive.h
    U src/gnu/llvm/tools/lld/wasm/WriterUtils.h
    U src/gnu/llvm/tools/lld/wasm/InputFiles.cpp
    U src/gnu/llvm/tools/lld/wasm/Driver.cpp
    N src/gnu/llvm/tools/lld/wasm/InputEvent.h
    U src/gnu/llvm/tools/lld/wasm/InputChunks.h
    U src/gnu/llvm/tools/lld/wasm/LTO.h
    U src/gnu/llvm/tools/lld/wasm/Options.td
    U src/gnu/llvm/tools/lld/wasm/Writer.h
    U src/gnu/llvm/tools/lld/wasm/OutputSections.cpp
    U src/gnu/llvm/tools/lld/wasm/InputChunks.cpp
    U src/gnu/llvm/tools/lld/wasm/Config.h
    U src/gnu/llvm/tools/lld/wasm/OutputSegment.h
    U src/gnu/llvm/tools/lld/wasm/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/wasm/InputGlobal.h
    U src/gnu/llvm/tools/lld/wasm/WriterUtils.cpp
    U src/gnu/llvm/tools/lld/wasm/OutputSections.h
    U src/gnu/llvm/tools/lld/wasm/SymbolTable.h
    U src/gnu/llvm/tools/lld/wasm/InputFiles.h
    U src/gnu/llvm/tools/lld/wasm/Writer.cpp
    U src/gnu/llvm/tools/lld/wasm/CMakeLists.txt
    U src/gnu/llvm/tools/lld/wasm/LTO.cpp
    U src/gnu/llvm/tools/lld/wasm/Symbols.cpp
    U src/gnu/llvm/tools/lld/wasm/Symbols.h
    C src/gnu/llvm/tools/lld/tools/lld/lld.cpp
    U src/gnu/llvm/tools/lld/tools/lld/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/use_lldb_suite_root.py
    U src/gnu/llvm/tools/lldb/.arcconfig
    U src/gnu/llvm/tools/lldb/.clang-format
    U src/gnu/llvm/tools/lldb/.gitignore
    U src/gnu/llvm/tools/lldb/INSTALL.txt
    U src/gnu/llvm/tools/lldb/LICENSE.TXT
    U src/gnu/llvm/tools/lldb/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/CODE_OWNERS.txt
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-defines.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-types.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-public.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-forward.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-types.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-enumerations.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-forward.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-defines.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-versioning.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-enumerations.h
    U src/gnu/llvm/tools/lldb/include/lldb/module.modulemap
    N src/gnu/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ModuleCache.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepUntil.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StackFrame.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Language.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StackID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanTracer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/TargetList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepThrough.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Queue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Target.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/JITLoader.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StopInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/QueueList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Unwind.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ABI.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/FileAction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/PathMappingList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/QueueItem.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Process.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Thread.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Memory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Platform.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanRunToAddress.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/UnwindAssembly.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/TypeMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/VariableList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/LineEntry.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/TypeList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Type.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Function.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Variable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Block.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/VerifyDecl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/TaggedASTType.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
    U src/gnu/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/CXXFunctionPointer.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
    N src/gnu/llvm/tools/lldb/include/lldb/Utility/Predicate.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Connection.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/JSON.h
    N src/gnu/llvm/tools/lldb/include/lldb/Utility/Scalar.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Log.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Stream.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/SharedCluster.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Logging.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StringList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/UUID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h
    N src/gnu/llvm/tools/lldb/include/lldb/Utility/Listener.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Baton.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/UriParser.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/IOObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/NameMatches.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StreamString.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Environment.h
    N src/gnu/llvm/tools/lldb/include/lldb/Utility/State.h
    N src/gnu/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/ConstString.h
    N src/gnu/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
    N src/gnu/llvm/tools/lldb/include/lldb/Utility/Event.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Args.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Flags.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Status.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/UserID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Timeout.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Endian.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/CleanUp.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Timer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
    N src/gnu/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/VMRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Iterable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/Expression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/Materializer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/REPL.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBProcess.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBroadcaster.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBDeclaration.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBreakpointLocation.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBModule.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSourceManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBFileSpecList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBCommunication.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBType.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBHostOS.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeSynthetic.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/LLDB.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBDebugger.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBQueueItem.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBStringList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTarget.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBEvent.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBStream.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBError.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBInstruction.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBlock.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeNameSpecifier.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBDefines.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBQueue.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeFormat.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBData.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBPlatform.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBreakpointName.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBAddress.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeCategory.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSection.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBThread.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSymbol.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeFilter.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBLineEntry.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTrace.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h
    N src/gnu/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBListener.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBFrame.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBFunction.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBProcessInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBModuleSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBValueList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSymbolContextList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/Options.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/Property.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArgs.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ModuleList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Mangled.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Communication.h
    N src/gnu/llvm/tools/lldb/include/lldb/Core/Highlighter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/DumpRegisterValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Address.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/IOStreamMacros.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/IOHandler.h
    N src/gnu/llvm/tools/lldb/include/lldb/Core/RichManglingContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Opcode.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/MappedHash.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Debugger.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ClangForward.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Value.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Section.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/StreamFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ModuleChild.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/RangeMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Disassembler.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/PluginManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/PluginInterface.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/SourceManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Architecture.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Module.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/dwarf.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/AddressRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/STLUtils.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Socket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/MainLoop.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/StringConvert.h
    N src/gnu/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostThread.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Host.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/PosixApi.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Debug.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Pipe.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/File.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Terminal.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Time.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/FileSystem.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Config.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
    U src/gnu/llvm/tools/lldb/include/lldb/Host/TaskPool.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Editline.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/FileCache.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/LockFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/XML.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/OptionParser.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostProcess.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostGetOpt.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/PipeBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/ConnectionFileDescriptor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Symbols.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/android/HostInfoAndroid.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
    C src/gnu/llvm/tools/lldb/include/lldb/Host/openbsd/HostInfoOpenBSD.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/HostInfoWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/windows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/PosixApi.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/editlinewin.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/HostThreadWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/ProcessLauncherWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/PipeWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/LockFileWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/AutoHandle.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/HostProcessWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/Support.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/AbstractSocket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/Uio.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/HostInfoLinux.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/Ptrace.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/macosx/HostThreadMacOSX.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/macosx/HostInfoMacOSX.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/GetOptInc.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeWatchpointList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
    N src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointIDList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointName.h
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/project.pbxproj
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/Run Testsuite.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/desktop.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/launcherXPCService.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/darwin-debug.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/launcherRootXPCService.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/LLDB.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/lldb-python-test-suite.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/lldb-gtest.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/lldb-tool.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/project.xcworkspace/contents.xcworkspacedata
    U src/gnu/llvm/tools/lldb/source/lldb.cpp
    U src/gnu/llvm/tools/lldb/source/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectTarget.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectApropos.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectType.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectLog.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
    N src/gnu/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
    N src/gnu/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectQuit.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectMemory.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectStats.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectSource.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectStats.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectThread.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectExpression.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectRegister.h
    U src/gnu/llvm/tools/lldb/source/Commands/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectCommands.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectSettings.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectVersion.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectProcess.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectFrame.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.h
    U src/gnu/llvm/tools/lldb/source/Plugins/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/CMakeLists.txt
    C src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h
    C src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionHelper.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
    U src/gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
    U src/gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Mach-O/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/WindowsMiniDump.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/WindowsMiniDump.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/ObjectContainerUniversalMachO.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/ObjectContainerUniversalMachO.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/PPC64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ArchitecturePPC64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ArchitecturePPC64.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Mips/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Arm/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/ProcessorTrace.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/Procfs.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/SingleStepCheck.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/ProcessorTrace.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-s390x-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64le-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwinConstants.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/ARMDefines.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/ARMUtils.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/TargetThreadWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/LocalDebugDelegate.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/IDebugDelegate.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ForwardDecl.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/TargetThreadWindows.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/RegisterContextWindows.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/NtStructures.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/RegisterContextWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/LocalDebugDelegate.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ExceptionRecord.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/x86/RegisterContextWindows_x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/x86/RegisterContextWindows_x86.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/ThreadMachCore.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/ThreadMachCore.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/NtStructures.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ThreadKDP.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ThreadKDP.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFUtils.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetItemInfoHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetItemInfoHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/PPC64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Disassembler/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Disassembler/llvm/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
    U src/gnu/llvm/tools/lldb/source/Plugins/MemoryHistory/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
    U src/gnu/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/StructuredData/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/JITLoader/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/JITLoader/GDB/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Language/ClangCommon/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/MacOSX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Linux/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Linux/PlatformLinux.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Windows/PlatformWindows.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Windows/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/PlatformAndroid.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/AdbClient.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/AdbClient.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/NetBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/gdb-server/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Kalimba/PlatformKalimba.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Kalimba/PlatformKalimba.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Kalimba/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/POSIX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
    N src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleBridge.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleWatch.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleTVSimulator.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h
    N src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleBridge.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleTVSimulator.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleTV.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleWatchSimulator.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleTV.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleWatchSimulator.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleWatch.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/objcxx/PlatformiOSSimulatorCoreSimulatorSupport.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/objcxx/PlatformiOSSimulatorCoreSimulatorSupport.mm
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Target/FileAction.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Memory.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StackFrameList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadCollection.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
    U src/gnu/llvm/tools/lldb/source/Target/TargetList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/QueueList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Language.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StackFrame.cpp
    U src/gnu/llvm/tools/lldb/source/Target/UnixSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Queue.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ABI.cpp
    U src/gnu/llvm/tools/lldb/source/Target/RegisterContext.cpp
    U src/gnu/llvm/tools/lldb/source/Target/PathMappingList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
    U src/gnu/llvm/tools/lldb/source/Target/MemoryHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ExecutionContext.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StopInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ProcessInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Target.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Platform.cpp
    U src/gnu/llvm/tools/lldb/source/Target/JITLoader.cpp
    U src/gnu/llvm/tools/lldb/source/Target/SystemRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/QueueItem.cpp
    U src/gnu/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadSpec.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Process.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Target/SectionLoadList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ModuleCache.cpp
    N src/gnu/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Thread.cpp
    U src/gnu/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/RegisterNumber.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StackID.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
    U src/gnu/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
    U src/gnu/llvm/tools/lldb/source/Target/OperatingSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlan.cpp
    U src/gnu/llvm/tools/lldb/source/Target/JITLoaderList.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Symtab.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/VariableList.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Type.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/TypeMap.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Block.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompilerType.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompilerDeclContext.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/VerifyDecl.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/DebugMacros.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Declaration.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/LineEntry.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Symbol.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Variable.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Symbol/LineTable.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/TypeList.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Function.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
    U src/gnu/llvm/tools/lldb/source/Initialization/SystemInitializer.cpp
    U src/gnu/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
    U src/gnu/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
    U src/gnu/llvm/tools/lldb/source/Initialization/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/FormatClasses.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/SelectHelper.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/RegularExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/DataBufferHeap.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StringList.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/NameMatches.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Timer.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Connection.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StringExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/DataExtractor.cpp
    N src/gnu/llvm/tools/lldb/source/Utility/RegisterValue.cpp
    N src/gnu/llvm/tools/lldb/source/Utility/Listener.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/PPC64LE_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/Stream.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/FileSpec.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/UUID.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/SharingPtr.cpp
    N src/gnu/llvm/tools/lldb/source/Utility/State.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ArchSpec.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StreamCallback.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/DataEncoder.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ConstString.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/PPC64_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Baton.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Log.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ARM64_ehframe_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/VASprintf.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Logging.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/UriParser.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/PPC64LE_ehframe_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.h
    N src/gnu/llvm/tools/lldb/source/Utility/Reproducer.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/UserID.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StructuredData.cpp
    N src/gnu/llvm/tools/lldb/source/Utility/Scalar.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Utility/Status.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/UuidCompatibility.h
    U src/gnu/llvm/tools/lldb/source/Utility/Environment.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Args.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/VMRange.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/IOObject.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp
    N src/gnu/llvm/tools/lldb/source/Utility/Event.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/LLDBAssert.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/JSON.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ARM_ehframe_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/StreamString.cpp
    N src/gnu/llvm/tools/lldb/source/Utility/Broadcaster.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StringLexer.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/Materializer.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/Expression.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Expression/IRDynamicChecks.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/UserExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/REPL.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSymbolContextList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpointName.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeFormat.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBDeclaration.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBHostOS.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBValue.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBStringList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBFileSpecList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSymbol.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBType.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBQueueItem.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSection.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBQueue.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSymbolContext.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTraceOptions.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBListener.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBProcessInfo.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBStructuredData.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBStream.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeSummary.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSourceManager.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTarget.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBWatchpoint.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBPlatform.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.cpp
    U src/gnu/llvm/tools/lldb/source/API/liblldb-private.exports
    U src/gnu/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeFilter.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBThreadPlan.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBFunction.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.h
    N src/gnu/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
    U src/gnu/llvm/tools/lldb/source/API/liblldb.xcode.exports
    U src/gnu/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBError.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBroadcaster.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBThreadCollection.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBProcess.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeCategory.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBData.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpointLocation.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
    U src/gnu/llvm/tools/lldb/source/API/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/API/SBCommunication.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBlock.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTrace.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBAttachInfo.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBDebugger.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBFileSpec.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBCompileUnit.cpp
    U src/gnu/llvm/tools/lldb/source/API/liblldb.exports
    U src/gnu/llvm/tools/lldb/source/API/SBExecutionContext.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBInstruction.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBModuleSpec.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBModule.cpp
    U src/gnu/llvm/tools/lldb/source/API/SystemInitializerFull.h
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBEvent.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBUnixSignals.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBThread.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBLineEntry.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBInstructionList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBValueList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBAddress.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBFrame.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/Options.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/embedded_interpreter.py
    U src/gnu/llvm/tools/lldb/source/Interpreter/Property.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandOptionValidators.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectList.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Value.cpp
    U src/gnu/llvm/tools/lldb/source/Core/PluginManager.cpp
    U src/gnu/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
    U src/gnu/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Address.cpp
    U src/gnu/llvm/tools/lldb/source/Core/FileLineResolver.cpp
    U src/gnu/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ModuleList.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Disassembler.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Debugger.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Mangled.cpp
    U src/gnu/llvm/tools/lldb/source/Core/FileSpecList.cpp
    U src/gnu/llvm/tools/lldb/source/Core/StreamFile.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Opcode.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
    U src/gnu/llvm/tools/lldb/source/Core/UserSettingsController.cpp
    N src/gnu/llvm/tools/lldb/source/Core/RichManglingContext.cpp
    U src/gnu/llvm/tools/lldb/source/Core/IOHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Core/FormatEntity.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Communication.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
    U src/gnu/llvm/tools/lldb/source/Core/SourceManager.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
    N src/gnu/llvm/tools/lldb/source/Core/Highlighter.cpp
    U src/gnu/llvm/tools/lldb/source/Core/DynamicLoader.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObject.cpp
    U src/gnu/llvm/tools/lldb/source/Core/SearchFilter.cpp
    U src/gnu/llvm/tools/lldb/source/Core/AddressResolverName.cpp
    U src/gnu/llvm/tools/lldb/source/Core/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Core/ModuleChild.cpp
    U src/gnu/llvm/tools/lldb/source/Core/AddressResolver.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Module.cpp
    U src/gnu/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Core/AddressRange.cpp
    U src/gnu/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Section.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/Stoppoint.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
    N src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/StoppointCallbackContext.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointName.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
    U src/gnu/llvm/tools/lldb/source/Host/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Host/android/LibcGlue.cpp
    U src/gnu/llvm/tools/lldb/source/Host/android/HostInfoAndroid.cpp
    U src/gnu/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Host/netbsd/Host.cpp
    C src/gnu/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Host/openbsd/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/Windows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/PipeWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/HostProcessWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/ProcessLauncherWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/HostInfoWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/ProcessRunLock.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/FileSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/HostThreadWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/ConnectionGenericFileWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/LockFileWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/EditLineWin.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/LibcGlue.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/AbstractSocket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/ProcessLauncherLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/Support.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/HostInfoLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/Symbols.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/objcxx/Host.mm
    U src/gnu/llvm/tools/lldb/source/Host/macosx/objcxx/HostThreadMacOSX.mm
    U src/gnu/llvm/tools/lldb/source/Host/macosx/objcxx/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableArray.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCData.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableSet.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCBundle.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCData.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCString.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableSet.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCString.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableArray.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CoreFoundationCPP.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCReleaser.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCBundle.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableDictionary.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableDictionary.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/GetOptInc.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/HostProcess.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Terminal.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/MainLoop.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/StringConvert.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/HostThread.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/OptionParser.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/File.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/ProcessRunLock.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/UDPSocket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/PipeBase.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/FileSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Editline.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Socket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/XML.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Symbols.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/TaskPool.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/HostNativeThreadBase.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/FileCache.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Host/freebsd/Host.cpp
    U src/gnu/llvm/tools/lldb/unittests/gtest_common.h
    U src/gnu/llvm/tools/lldb/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Target/MemoryRegionInfoTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Target/ModuleCacheTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Target/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Target/PathMappingListTest.cpp
    I src/gnu/llvm/tools/lldb/unittests/Target/Inputs/TestModule.so
    U src/gnu/llvm/tools/lldb/unittests/Target/Inputs/TestModule.c
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/ARM64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/ARM64/TestArm64InstEmulation.cpp
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/PPC64/TestPPC64InstEmulation.cpp
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/PPC64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/x86/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Editline/EditlineTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Editline/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Symbol/TestType.cpp
    U src/gnu/llvm/tools/lldb/unittests/Symbol/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Symbol/TestDWARFCallFrameInfo.cpp
    U src/gnu/llvm/tools/lldb/unittests/Symbol/TestClangASTContext.cpp
    U src/gnu/llvm/tools/lldb/unittests/Symbol/Inputs/basic-call-frame-info.yaml
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/Inputs/sections-resolve-consistently.yaml
    N src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/Inputs/debug-info-relocations.pcm.yaml
    I src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/Inputs/early-section-headers.so
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/MockTildeExpressionResolver.h
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/TestUtilities.h
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/TestUtilities.cpp
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/MockTildeExpressionResolver.cpp
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Utility/StringExtractorTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StatusTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/OptionsWithRawTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/VMRangeTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/StringListTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/UUIDTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/TimerTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/DataExtractorTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/FileSpecTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/UriParserTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/StringLexerTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/TildeExpressionResolverTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ArgsTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/LogTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/JSONTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/PredicateTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/VASprintfTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/CompletionRequestTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/AnsiTerminalTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/TimeoutTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ConstStringTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/ListenerTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StructuredDataTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/RegisterValueTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/FlagsTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/ScalarTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StreamTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/EnvironmentTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StreamTeeTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Utility/NameMatchesTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/ReproducerTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/CleanUpTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/BroadcasterTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ArchSpecTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/StateTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Utility/EventTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/Inputs/StructuredData-basic.json
    U src/gnu/llvm/tools/lldb/unittests/Expression/ClangParserTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Expression/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/PythonExceptionStateTests.cpp
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.h
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Process/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Process/Linux/ProcessorTraceTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/Linux/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/MinidumpParserTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/regions-memlist64.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/module-list-padded.dmp
    N src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/regions-linux-map.dmp
    N src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/regions-memlist.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/fizzbuzz_wow64.dmp
    N src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/modules-dup-min-addr.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/memory-list-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/bad_duplicate_streams.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/linux-x86_64_not_crashed.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/memory-list-not-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/bad_overlapping_streams.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/module-list-not-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/thread-list-not-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/thread-list-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/linux-x86_64.cpp
    N src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/dump-content.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/linux-i386.dmp
    N src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/modules-order.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/linux-x86_64.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/fizzbuzz_no_heap.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteTestUtils.h
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteTestUtils.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Interpreter/TestCompletion.cpp
    U src/gnu/llvm/tools/lldb/unittests/Interpreter/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Interpreter/TestOptionArgParser.cpp
    N src/gnu/llvm/tools/lldb/unittests/Disassembler/TestArmv7Disassembly.cpp
    N src/gnu/llvm/tools/lldb/unittests/Disassembler/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Signals/UnixSignalsTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Signals/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Core/StreamCallbackTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Core/RichManglingContextTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Core/MangledTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Core/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/unittests/Core/RangeTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Core/RangeMapTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Core/Inputs/mangled-function-names.yaml
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-types.pdb
    I src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.exe
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.h
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.pdb
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-alt.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-types.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-nested.h
    I src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-types.exe
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/DWARF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/DWARF/SymbolFileDWARFTests.cpp
    I src/gnu/llvm/tools/lldb/unittests/SymbolFile/DWARF/Inputs/test-dwarf.exe
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/DWARF/Inputs/test-dwarf.cpp
    U src/gnu/llvm/tools/lldb/unittests/Language/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Language/CPlusPlus/CPlusPlusLanguageTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Language/CPlusPlus/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/unittests/Language/Highlighting/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/unittests/Language/Highlighting/HighlighterTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/inferior/environment_check.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/inferior/thread_inferior.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/TestClient.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/TestBase.h
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/TestBase.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/MessageObjects.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/LLGSTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/TestClient.h
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/ThreadIdsInJstopinfoTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/MessageObjects.h
    U src/gnu/llvm/tools/lldb/unittests/debugserver/debugserver_LogCallback.cpp
    U src/gnu/llvm/tools/lldb/unittests/debugserver/RNBSocketTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/debugserver/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Breakpoint/BreakpointIDTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Breakpoint/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Platform/PlatformDarwinTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Platform/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Host/MainLoopTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/HostInfoTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/TaskPoolTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/FileSystemTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Host/SocketTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/HostTest.cpp
    N src/gnu/llvm/tools/lldb/unittests/Host/NativeProcessProtocolTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/SymbolsTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/SocketAddressTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/linux/SupportTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/linux/HostTest.cpp
    U src/gnu/llvm/tools/lldb/resources/debugserver-macosx-entitlements.plist
    U src/gnu/llvm/tools/lldb/resources/LLDB-Info.plist
    N src/gnu/llvm/tools/lldb/resources/LLDB-Info.plist.in
    U src/gnu/llvm/tools/lldb/lldb.xcworkspace/contents.xcworkspacedata
    U src/gnu/llvm/tools/lldb/cmake/XcodeHeaderGenerator/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/cmake/modules/LLDBStandalone.cmake
    N src/gnu/llvm/tools/lldb/cmake/modules/debugserverConfig.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/LLDBConfig.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/EmbedAppleVersion.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/LLDBFramework.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/LLDBGenerateConfig.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/FindLibEdit.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/AddLLDB.cmake
    N src/gnu/llvm/tools/lldb/lit/lit.cfg.py
    U src/gnu/llvm/tools/lldb/lit/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/lit/lit-lldb-init
    N src/gnu/llvm/tools/lldb/lit/lit.site.cfg.py.in
    U src/gnu/llvm/tools/lldb/lit/Suite/lldbtest.py
    U src/gnu/llvm/tools/lldb/lit/Suite/lit.site.cfg.in
    U src/gnu/llvm/tools/lldb/lit/Suite/lit.cfg
    N src/gnu/llvm/tools/lldb/lit/Python/crashlog.test
    U src/gnu/llvm/tools/lldb/lit/Modules/lit.local.cfg
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/discontiguous-sections.test
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/sections.test
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/breakpad-identification.test
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/sections-trailing-func.test
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/lit.local.cfg
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/identification-windows.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/bad-module-id-1.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/discontiguous-sections.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/bad-module-id-2.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/sections-trailing-func.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/identification-linux.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/identification-macosx.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/sections.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/bad-module-id-3.syms
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD-overlap-PT_INTERP.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/many-sections.s
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/short-build-id.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/basic-info.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-addresses.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-permissions.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/base-address.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD-empty.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-types.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD-overlap-section.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-overlap.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/build-id-case.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/duplicate-section.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD-overlap.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-types-edgecases.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/compressed-sections.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/ELF/Inputs/PT_LOAD-overlap-section.elf
    N src/gnu/llvm/tools/lldb/lit/Modules/PECOFF/export-dllfunc.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/PECOFF/sections-names.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/PECOFF/lit.local.cfg
    N src/gnu/llvm/tools/lldb/lit/Modules/PECOFF/dep-modules.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/MachO/subsections.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/MachO/lc_build_version.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/MachO/lc_version_min.yaml
    N src/gnu/llvm/tools/lldb/lit/Modules/MachO/lc_build_version_notools.yaml
    N src/gnu/llvm/tools/lldb/lit/BuildScript/toolchain-msvc.test
    N src/gnu/llvm/tools/lldb/lit/BuildScript/modes.test
    N src/gnu/llvm/tools/lldb/lit/BuildScript/script-args.test
    N src/gnu/llvm/tools/lldb/lit/BuildScript/toolchain-clang.test
    N src/gnu/llvm/tools/lldb/lit/BuildScript/toolchain-clang-cl.test
    N src/gnu/llvm/tools/lldb/lit/Expr/TestMultilineExpr.test
    U src/gnu/llvm/tools/lldb/lit/Expr/TestIRMemoryMap.test
    N src/gnu/llvm/tools/lldb/lit/Expr/TestIRMemoryMapWindows.test
    U src/gnu/llvm/tools/lldb/lit/Expr/TestTypeOfDeclTypeExpr.test
    U src/gnu/llvm/tools/lldb/lit/Expr/Inputs/ir-memory-map-overlap1
    U src/gnu/llvm/tools/lldb/lit/Expr/Inputs/call-function.cpp
    U src/gnu/llvm/tools/lldb/lit/Expr/Inputs/ir-memory-map-mix-malloc-free
    U src/gnu/llvm/tools/lldb/lit/Expr/Inputs/ir-memory-map-basic
    N src/gnu/llvm/tools/lldb/lit/helper/build.py
    N src/gnu/llvm/tools/lldb/lit/helper/toolchain.py
    N src/gnu/llvm/tools/lldb/lit/helper/__init__.py
    N src/gnu/llvm/tools/lldb/lit/Reproducer/TestDriverOptions.test
    N src/gnu/llvm/tools/lldb/lit/Reproducer/TestGDBRemoteRepro.test
    N src/gnu/llvm/tools/lldb/lit/Reproducer/Inputs/GDBRemoteReplay.in
    N src/gnu/llvm/tools/lldb/lit/Reproducer/Inputs/simple.c
    N src/gnu/llvm/tools/lldb/lit/Reproducer/Inputs/GDBRemoteCapture.in
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/stop-hook.test
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/stop-hook-threads.test
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-2.lldbinit
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-threads-1.lldbinit
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-threads-2.lldbinit
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-threads.cpp
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook.c
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-3.lldbinit
    N src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-1.lldbinit
    N src/gnu/llvm/tools/lldb/lit/Driver/TestCommands.test
    N src/gnu/llvm/tools/lldb/lit/Driver/TestCore.test
    N src/gnu/llvm/tools/lldb/lit/Driver/TestFile.test
    N src/gnu/llvm/tools/lldb/lit/Driver/TestConvenienceVariables.test
    N src/gnu/llvm/tools/lldb/lit/Driver/TestNoUseColor.test
    N src/gnu/llvm/tools/lldb/lit/Driver/Inputs/Print6.in
    N src/gnu/llvm/tools/lldb/lit/Driver/Inputs/hello.cpp
    N src/gnu/llvm/tools/lldb/lit/Driver/Inputs/Print4.in
    N src/gnu/llvm/tools/lldb/lit/Driver/Inputs/convenience.in
    N src/gnu/llvm/tools/lldb/lit/Driver/Inputs/Print0.in
    N src/gnu/llvm/tools/lldb/lit/Driver/Inputs/Print2.in
    N src/gnu/llvm/tools/lldb/lit/Unit/lit.cfg.py
    N src/gnu/llvm/tools/lldb/lit/Unit/lit.site.cfg.py.in
    N src/gnu/llvm/tools/lldb/lit/Heap/heap-cstr.test
    N src/gnu/llvm/tools/lldb/lit/Heap/Inputs/cstr.c
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeImplicit0.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeHex0.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeHexA.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCode30.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCode-30.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeTooManyArgs.test
    U src/gnu/llvm/tools/lldb/lit/Quit/expect_exit_code.py
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeNonInt.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCode0.test
    N src/gnu/llvm/tools/lldb/lit/Minidump/dump-all.test
    N src/gnu/llvm/tools/lldb/lit/Minidump/Inputs/dump-content.dmp
    N src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/sigsegv.test
    N src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/Inputs/sigsegv.cpp
    N src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/Inputs/sigsegv.dmp
    N src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/Inputs/sigsegv.pdb
    N src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/Inputs/sigsegv.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/vbases.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/enums-layout.test
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/pointers.test
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/calling-conventions.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/type-quals.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/typedefs.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/variables.test
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/ast-restore.test
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/expressions.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/func-symbols.test
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/udt-layout.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/compilands.test
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/class-layout.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/variables-locations.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/function-level-linking.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/function-nested-block.test
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ExpressionsTest0.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/CompilandsTest.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/CallingConventionsTest.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ExpressionsTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.ord
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VariablesLocationsTest.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VariablesLocationsTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/TypeQualsTest.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VBases.script
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/UdtLayoutTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.h
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FunctionNestedBlockTest.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/UdtLayoutTest.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/SimpleTypesTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FuncSymbolsTestMain.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/AstRestoreTest.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ExpressionsTest2.script
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VBases.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/PointerTypeTest.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ExpressionsTest1.script
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ClassLayoutTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FuncSymbols.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VariablesTest.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/Breakpad/symtab.test
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/Breakpad/Inputs/symtab.syms
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/Breakpad/Inputs/basic-elf.yaml
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/break-by-function.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/s_constant.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/source-list.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/bitfields.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/nested-types.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/ast-types.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/function-types-classes.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/function-types-builtins.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/ast-functions-msvc.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/disassembly.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/function-types-calling-conv.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/break-by-line.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/tag-types.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/ast-functions.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/local-variables.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/globals-fundamental.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/global-classes.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/globals-bss.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/typedefs.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/globals-bss.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/break-by-line.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/bitfields.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/s_constant.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/disassembly.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/globals-fundamental.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/globals-classes.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/s_constant.s
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/function-types-builtins.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/nested-types.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/ast-types.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/source-list.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/function-types-calling-conv.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/ast-functions.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/function-types-classes.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/local-variables.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/tag-types.lldbinit
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/break-by-function.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-function-regex.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-type-in-function.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/childless-compile-unit.s
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-inline-method.s
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/dwarf5-partial-index.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-variable-file.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-basic-function.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/dwarf5-index-is-used.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-variable-dwo.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/apple-index-is-used.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-basic-variable.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-basic-type.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-method.cpp
    N src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/array-sizes.s
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/debug-names-compressed.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-qualified-variable.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-basic-namespace.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-method-local-struct.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/Inputs/find-variable-file-2.cpp
    N src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/target/target-select-so-path.test
    N src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/target/lit.local.cfg
    N src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/target/inputs/main.c
    N src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/target/inputs/target-select-so-path.py
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/symbol-list-lines.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/list-lines-helper.h
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/main.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/symbol-list-lines.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/list-lines-helper.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/symbol-list-lines.h
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/data/data-info-line.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/data/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/data/inputs/data-info-line.c
    N src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/break-insert-enable-pending.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/break-insert.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/inputs/break-insert.c
    N src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/inputs/break-insert-pending.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-step-instruction.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-next.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-run-wrong-binary.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-next-instruction.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-interrupt.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-step.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-finish.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-continue.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/inputs/main.c
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_rnglist_rlestartend.test
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_addrx.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/case-insensitive.test
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/split-dwarf5-debug-stroffsets.test
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_rnglist_basic.test
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/split-dwarf-5-addrbase.test
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_rnglist_offset_pair.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/ppc64-localentry.test
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/single-file-split-dwarf.test
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_rnglistx_rlex.test
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/implicit_const_form_support.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/case-sensitive.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/case-sensitive.c
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_rnglist_offset_pair.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf-5-addrbase.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf5-debug-stroffsets-main.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_addrx.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf5-debug-stroffsets-file1.dwo.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf-5-addrbase.dwo.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/single-file-split-dwarf.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_rnglist_rlestartend.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_rnglistx_rlex.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/ppc64-localentry.s
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf5-debug-stroffsets-file2.dwo.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/implicit_const_form_support.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_rnglist_basic.yaml
    N src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/single-file-split-dwarf.o.yaml
    N src/gnu/llvm/tools/lldb/lit/Settings/TestSettingsWrite.test
    N src/gnu/llvm/tools/lldb/lit/Settings/TestDisassemblyFormat.test
    N src/gnu/llvm/tools/lldb/lit/Settings/TestSettingsSet.test
    N src/gnu/llvm/tools/lldb/lit/Settings/TestEchoCommands.test
    N src/gnu/llvm/tools/lldb/lit/Settings/TestDisableColor.test
    N src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsQuiet.out
    N src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsAll.out
    N src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsTest.in
    N src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsNoComments.out
    N src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsNone.out
    U src/gnu/llvm/tools/lldb/docs/lldb-gdb-remote.txt
    U src/gnu/llvm/tools/lldb/docs/doxygen.intro
    U src/gnu/llvm/tools/lldb/docs/doxygen.footer
    U src/gnu/llvm/tools/lldb/docs/doxygen.header
    U src/gnu/llvm/tools/lldb/docs/lldb-for-gdb-users.txt
    U src/gnu/llvm/tools/lldb/docs/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/docs/building-with-debug-llvm.txt
    U src/gnu/llvm/tools/lldb/docs/doxygen.cfg.in
    N src/gnu/llvm/tools/lldb/docs/lldb-platform-packets.txt
    U src/gnu/llvm/tools/lldb/docs/lldb.1
    U src/gnu/llvm/tools/lldb/docs/code-signing.txt
    U src/gnu/llvm/tools/lldb/docs/structured_data/StructuredDataPlugins.md
    U src/gnu/llvm/tools/lldb/docs/structured_data/DarwinLog.md
    U src/gnu/llvm/tools/lldb/docs/testsuite/best-practices.txt
    U src/gnu/llvm/tools/lldb/docs/testsuite/a-detailed-walkthrough.txt
    U src/gnu/llvm/tools/lldb/docs/testsuite/2010-10-19-14_10_49.059609/TestSettings.SettingsCommandTestCase.test_set_output_path.log
    U src/gnu/llvm/tools/lldb/examples/test/usage-pre-post-flight
    U src/gnu/llvm/tools/lldb/examples/test/.lldb-pre-post-flight
    U src/gnu/llvm/tools/lldb/examples/test/.lldbtest-config2
    U src/gnu/llvm/tools/lldb/examples/test/.lldb-loggings
    U src/gnu/llvm/tools/lldb/examples/test/lldbtest-stdout
    U src/gnu/llvm/tools/lldb/examples/test/.lldbtest-config
    U src/gnu/llvm/tools/lldb/examples/test/.lldb-pre-post-flight.bad
    U src/gnu/llvm/tools/lldb/examples/test/lldbtest-stderr
    U src/gnu/llvm/tools/lldb/examples/test/usage-config
    U src/gnu/llvm/tools/lldb/examples/test/usage-lldb-loggings
    U src/gnu/llvm/tools/lldb/examples/test/tmp/lldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dsym.txt
    U src/gnu/llvm/tools/lldb/examples/test/tmp/lldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dwarf.txt
    U src/gnu/llvm/tools/lldb/examples/python/jump.py
    U src/gnu/llvm/tools/lldb/examples/python/shadow.py
    U src/gnu/llvm/tools/lldb/examples/python/gdbremote.py
    U src/gnu/llvm/tools/lldb/examples/python/diagnose_unwind.py
    U src/gnu/llvm/tools/lldb/examples/python/symbolication.py
    U src/gnu/llvm/tools/lldb/examples/python/sources.py
    U src/gnu/llvm/tools/lldb/examples/python/diagnose_nsstring.py
    U src/gnu/llvm/tools/lldb/examples/python/x86_64_qemu_target_definition.py
    U src/gnu/llvm/tools/lldb/examples/python/x86_64_target_definition.py
    U src/gnu/llvm/tools/lldb/examples/python/memory.py
    U src/gnu/llvm/tools/lldb/examples/python/delta.py
    U src/gnu/llvm/tools/lldb/examples/python/disassembly_mode.py
    U src/gnu/llvm/tools/lldb/examples/python/process_events.py
    U src/gnu/llvm/tools/lldb/examples/python/types.py
    U src/gnu/llvm/tools/lldb/examples/python/file_extract.py
    U src/gnu/llvm/tools/lldb/examples/python/mach_o.py
    U src/gnu/llvm/tools/lldb/examples/python/bsd.py
    U src/gnu/llvm/tools/lldb/examples/python/x86_64_linux_target_definition.py
    U src/gnu/llvm/tools/lldb/examples/python/pytracer.py
    U src/gnu/llvm/tools/lldb/examples/python/gdb_disassemble.py
    U src/gnu/llvm/tools/lldb/examples/python/disasm.py
    U src/gnu/llvm/tools/lldb/examples/python/scripted_step.py
    U src/gnu/llvm/tools/lldb/examples/python/cmdtemplate.py
    U src/gnu/llvm/tools/lldb/examples/python/dict_utils.py
    U src/gnu/llvm/tools/lldb/examples/python/sbvalue.py
    U src/gnu/llvm/tools/lldb/examples/python/step_and_print.py
    U src/gnu/llvm/tools/lldb/examples/python/disasm-stress-test.py
    U src/gnu/llvm/tools/lldb/examples/python/performance.py
    U src/gnu/llvm/tools/lldb/examples/python/stacks.py
    U src/gnu/llvm/tools/lldb/examples/python/globals.py
    U src/gnu/llvm/tools/lldb/examples/python/lldbtk.py
    U src/gnu/llvm/tools/lldb/examples/python/operating_system.py
    U src/gnu/llvm/tools/lldb/examples/python/crashlog.py
    U src/gnu/llvm/tools/lldb/examples/python/lldb_module_utils.py
    U src/gnu/llvm/tools/lldb/examples/plugins/commands/fooplugin.cpp
    U src/gnu/llvm/tools/lldb/examples/lookup/Makefile
    U src/gnu/llvm/tools/lldb/examples/lookup/main.cpp
    U src/gnu/llvm/tools/lldb/examples/synthetic/unordered_multi.py
    U src/gnu/llvm/tools/lldb/examples/synthetic/gnu_libstdcpp.py
    U src/gnu/llvm/tools/lldb/examples/synthetic/libcxx.py
    U src/gnu/llvm/tools/lldb/examples/synthetic/bitfield/example.py
    U src/gnu/llvm/tools/lldb/examples/synthetic/bitfield/program.cpp
    U src/gnu/llvm/tools/lldb/examples/scripting/dictionary.c
    U src/gnu/llvm/tools/lldb/examples/scripting/tree_utils.py
    U src/gnu/llvm/tools/lldb/examples/functions/Makefile
    U src/gnu/llvm/tools/lldb/examples/functions/main.cpp
    U src/gnu/llvm/tools/lldb/examples/customization/bin-utils/README
    U src/gnu/llvm/tools/lldb/examples/customization/bin-utils/binutils.py
    U src/gnu/llvm/tools/lldb/examples/customization/bin-utils/.lldbinit
    U src/gnu/llvm/tools/lldb/examples/customization/import-python/README
    U src/gnu/llvm/tools/lldb/examples/customization/import-python/importcmd.py
    U src/gnu/llvm/tools/lldb/examples/customization/pwd-cd-and-system/README
    U src/gnu/llvm/tools/lldb/examples/customization/pwd-cd-and-system/.lldbinit
    U src/gnu/llvm/tools/lldb/examples/customization/pwd-cd-and-system/utils.py
    U src/gnu/llvm/tools/lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
    U src/gnu/llvm/tools/lldb/examples/interposing/darwin/fd_interposing/Makefile
    U src/gnu/llvm/tools/lldb/examples/darwin/heap_find/heap.py
    U src/gnu/llvm/tools/lldb/examples/darwin/heap_find/heap/heap_find.cpp
    U src/gnu/llvm/tools/lldb/examples/darwin/heap_find/heap/Makefile
    U src/gnu/llvm/tools/lldb/examples/summaries/objc.py
    U src/gnu/llvm/tools/lldb/examples/summaries/lldb
    U src/gnu/llvm/tools/lldb/examples/summaries/synth.py
    U src/gnu/llvm/tools/lldb/examples/summaries/essentials
    U src/gnu/llvm/tools/lldb/examples/summaries/unicode_strings.py
    U src/gnu/llvm/tools/lldb/examples/summaries/sp_cp.py
    U src/gnu/llvm/tools/lldb/examples/summaries/pysummary.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSBundle.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/attrib_fromdict.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSData.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/Logger.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/metrics.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSNumber.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFBinaryHeap.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSDate.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSURL.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFBitVector.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/Selector.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFDictionary.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSSet.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSIndexSet.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/Class.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/cache.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFString.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSMachPort.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/objc_runtime.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSNotification.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFArray.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSException.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFBag.py
    U src/gnu/llvm/tools/lldb/utils/lldb-dotest/lldb-dotest.in
    U src/gnu/llvm/tools/lldb/utils/lldb-dotest/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/utils/test/ras.py
    U src/gnu/llvm/tools/lldb/utils/test/README-disasm
    U src/gnu/llvm/tools/lldb/utils/test/llvm-mc-shell.py
    U src/gnu/llvm/tools/lldb/utils/test/lldb-disasm.py
    U src/gnu/llvm/tools/lldb/utils/test/README-run-until-faulted
    U src/gnu/llvm/tools/lldb/utils/test/main.c
    U src/gnu/llvm/tools/lldb/utils/test/disasm.py
    U src/gnu/llvm/tools/lldb/utils/test/run-until-faulted.py
    U src/gnu/llvm/tools/lldb/utils/test/run-dis.py
    U src/gnu/llvm/tools/lldb/utils/test/README-lldb-disasm
    U src/gnu/llvm/tools/lldb/utils/misc/grep-svn-log.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/README.txt
    U src/gnu/llvm/tools/lldb/utils/sync-source/pylintrc
    U src/gnu/llvm/tools/lldb/utils/sync-source/syncsource.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/lib/transfer/transfer_spec.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/lib/transfer/protocol.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/lib/transfer/rsync.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/lib/transfer/__init__.py
    U src/gnu/llvm/tools/lldb/utils/lui/commandwin.py
    U src/gnu/llvm/tools/lldb/utils/lui/lui.py
    U src/gnu/llvm/tools/lldb/utils/lui/lldbutil.py
    U src/gnu/llvm/tools/lldb/utils/lui/sourcewin.py
    U src/gnu/llvm/tools/lldb/utils/lui/Readme
    U src/gnu/llvm/tools/lldb/utils/lui/cui.py
    U src/gnu/llvm/tools/lldb/utils/lui/breakwin.py
    U src/gnu/llvm/tools/lldb/utils/lui/debuggerdriver.py
    U src/gnu/llvm/tools/lldb/utils/lui/sandbox.py
    U src/gnu/llvm/tools/lldb/utils/lui/eventwin.py
    U src/gnu/llvm/tools/lldb/utils/lui/statuswin.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/README
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/doc/lldb.txt
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/plugin/lldb.vim
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/lldb_controller.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/plugin.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/import_lldb.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/vim_signs.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/vim_ui.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/vim_panes.py
    U src/gnu/llvm/tools/lldb/utils/git-svn/convert.py
    U src/gnu/llvm/tools/lldb/scripts/generate-vers.pl
    U src/gnu/llvm/tools/lldb/scripts/swig_bot.py
    U src/gnu/llvm/tools/lldb/scripts/macos-setup-codesign.sh
    U src/gnu/llvm/tools/lldb/scripts/get_relative_lib_dir.py
    U src/gnu/llvm/tools/lldb/scripts/lldb.swig
    U src/gnu/llvm/tools/lldb/scripts/finish-swig-wrapper-classes.sh
    U src/gnu/llvm/tools/lldb/scripts/framework-header-fix.sh
    U src/gnu/llvm/tools/lldb/scripts/disasm-gdb-remote.pl
    U src/gnu/llvm/tools/lldb/scripts/buildbot.py
    U src/gnu/llvm/tools/lldb/scripts/shush
    U src/gnu/llvm/tools/lldb/scripts/finishSwigWrapperClasses.py
    U src/gnu/llvm/tools/lldb/scripts/verify_api.py
    U src/gnu/llvm/tools/lldb/scripts/build-lldb-llvm-clang
    U src/gnu/llvm/tools/lldb/scripts/utilsArgsParse.py
    U src/gnu/llvm/tools/lldb/scripts/utilsDebug.py
    U src/gnu/llvm/tools/lldb/scripts/checkpoint-llvm.pl
    U src/gnu/llvm/tools/lldb/scripts/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/scripts/sort-pbxproj.rb
    U src/gnu/llvm/tools/lldb/scripts/utilsOsType.py
    U src/gnu/llvm/tools/lldb/scripts/prepare_bindings.py
    U src/gnu/llvm/tools/lldb/scripts/install_custom_python.py
    U src/gnu/llvm/tools/lldb/scripts/sed-sources
    U src/gnu/llvm/tools/lldb/scripts/use_lldb_suite.py
    U src/gnu/llvm/tools/lldb/scripts/install-lldb.sh
    U src/gnu/llvm/tools/lldb/scripts/analyze-project-deps.py
    U src/gnu/llvm/tools/lldb/scripts/Python/python-swigsafecast.swig
    U src/gnu/llvm/tools/lldb/scripts/Python/python-typemaps.swig
    U src/gnu/llvm/tools/lldb/scripts/Python/remote-build.py
    U src/gnu/llvm/tools/lldb/scripts/Python/finish-swig-Python-LLDB.sh
    U src/gnu/llvm/tools/lldb/scripts/Python/modify-python-lldb.py
    U src/gnu/llvm/tools/lldb/scripts/Python/finishSwigPythonLLDB.py
    U src/gnu/llvm/tools/lldb/scripts/Python/python-extensions.swig
    U src/gnu/llvm/tools/lldb/scripts/Python/use_lldb_suite.py
    U src/gnu/llvm/tools/lldb/scripts/Python/prepare_binding_Python.py
    U src/gnu/llvm/tools/lldb/scripts/Python/python-wrapper.swig
    U src/gnu/llvm/tools/lldb/scripts/Python/android/host_art_bt.py
    U src/gnu/llvm/tools/lldb/scripts/Python/modules/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/scripts/Python/modules/readline/readline.cpp
    U src/gnu/llvm/tools/lldb/scripts/Python/modules/readline/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/scripts/Xcode/lldbbuild.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/package-clang-headers.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/repo.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/prepare-gtest-run-dir.sh
    U src/gnu/llvm/tools/lldb/scripts/Xcode/build-llvm.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/repos/svn-trunk.json
    U src/gnu/llvm/tools/lldb/scripts/Xcode/repos/FALLBACK
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/client.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/server.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/remote.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/local.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/__init__.py
    U src/gnu/llvm/tools/lldb/scripts/interface/SBQueueItem.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBCompileUnit.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBreakpointName.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBValue.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBStream.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSourceManager.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBThreadPlan.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTraceOptions.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSymbolContextList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBExecutionContext.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBAttachInfo.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBExpressionOptions.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBThreadCollection.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeNameSpecifier.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeFilter.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBFileSpecList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSymbol.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBDebugger.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBEvent.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBlock.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBroadcaster.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBModule.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBStringList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBMemoryRegionInfoList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBLaunchInfo.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBLanguageRuntime.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBCommandInterpreter.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBListener.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeSummary.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBPlatform.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBError.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBProcess.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBInstruction.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBMemoryRegionInfo.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBDeclaration.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBAddress.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBFrame.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBType.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSection.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeSynthetic.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBHostOS.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBThread.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBInstructionList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeCategory.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBQueue.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeEnumMember.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBreakpoint.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBStructuredData.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBData.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTarget.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBProcessInfo.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeFormat.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBLineEntry.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBValueList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBreakpointLocation.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSymbolContext.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBCommunication.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBWatchpoint.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBVariablesOptions.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTrace.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBFileSpec.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBFunction.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBCommandReturnObject.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBModuleSpec.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBUnixSignals.i
    N src/gnu/llvm/tools/lldb/scripts/interface/SBInitializerOptions.i
    U src/gnu/llvm/tools/lldb/www/status.html
    U src/gnu/llvm/tools/lldb/www/style.css
    U src/gnu/llvm/tools/lldb/www/varformats.html
    U src/gnu/llvm/tools/lldb/www/download.html
    U src/gnu/llvm/tools/lldb/www/SB-api-coding-rules.html
    U src/gnu/llvm/tools/lldb/www/formats.html
    U src/gnu/llvm/tools/lldb/www/source.html
    U src/gnu/llvm/tools/lldb/www/adding-language-support.html
    U src/gnu/llvm/tools/lldb/www/faq.html
    U src/gnu/llvm/tools/lldb/www/test.html
    U src/gnu/llvm/tools/lldb/www/sidebar.incl
    U src/gnu/llvm/tools/lldb/www/features.html
    U src/gnu/llvm/tools/lldb/www/goals.html
    U src/gnu/llvm/tools/lldb/www/symbols.html
    U src/gnu/llvm/tools/lldb/www/scripting.html
    U src/gnu/llvm/tools/lldb/www/docs.html
    U src/gnu/llvm/tools/lldb/www/troubleshooting.html
    U src/gnu/llvm/tools/lldb/www/tutorial.html
    U src/gnu/llvm/tools/lldb/www/projects.html
    U src/gnu/llvm/tools/lldb/www/symbolication.html
    U src/gnu/llvm/tools/lldb/www/lldb-gdb.html
    U src/gnu/llvm/tools/lldb/www/build.html
    U src/gnu/llvm/tools/lldb/www/index.html
    U src/gnu/llvm/tools/lldb/www/customization.html
    U src/gnu/llvm/tools/lldb/www/python-reference.html
    U src/gnu/llvm/tools/lldb/www/remote.html
    U src/gnu/llvm/tools/lldb/www/architecture/varformats.html
    U src/gnu/llvm/tools/lldb/www/architecture/index.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_19.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_b8cffa74dcb91bca0da221349fa85523_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/doxygen.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_131.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBError.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/bc_s.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBUnixSignals-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_92.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_108.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_114.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_36.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_110.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x73.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_84.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_26.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2folderopen.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6c.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespacelldb__private.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x68.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_rela_0x76.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_83.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x67.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_g.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_52.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_70.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_50.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_35.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_11.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tab_a.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_bdcf59bf838c999fcfc3dde87d35c9f0_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommand-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_6b47ac86da6aee9115280ffa56155f66_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInputReader-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_74.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_99.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_c02e3ff158c3064d7b78c6aa6fc411e6_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_124.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_fa64c3fa8a988674a1a867b97ca9a790_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_127.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6c.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_12f13744187bc9a56c439d0a57f95644_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x66.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_s.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_74.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_25.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_84.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_90.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_104.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tabs.css
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_33.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLanguageRuntime.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_114.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_97.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_10.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_107.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2ns.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6f.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_73.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLineEntry-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x7e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_f.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInstruction-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_39.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_fa64c3fa8a988674a1a867b97ca9a790.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_125.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x75.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_t.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpointList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_133.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBWatchpoint-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_13.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2plastnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_29.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_53.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/files.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbol-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_105.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_bdcf59bf838c999fcfc3dde87d35c9f0_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_145.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_77.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_9d4b8469db156c557ab1d649b027ec2e_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_79.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_70.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2blank.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_139.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_32.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2node.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_108.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_43.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_bdcf59bf838c999fcfc3dde87d35c9f0.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_100.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_b8cffa74dcb91bca0da221349fa85523.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_136.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_82.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2mlastnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_58.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBValueList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_29.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_28.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_rela_s.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_117.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_49.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommunication.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_137.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_66.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_8b321541f691a81675dae4ec7a1864bb_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_43.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_134.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_127.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_217b186c19a2bb8bc0ee0f71fb72d4e8_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_fa64c3fa8a988674a1a867b97ca9a790_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModuleSpec.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_j.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_130.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_36ad4ea5df2b352cce0512435d34c8a4_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBQueue.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_84.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_m.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_48.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_78.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_120.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_24.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_122.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBUnixSignals.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBListener-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_97.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_85.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2pnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBlock-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2lastnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_u.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_9d4b8469db156c557ab1d649b027ec2e_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModuleSpec-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpointList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBExpressionOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_l.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_115.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbolContext.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_24.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_45.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThreadPlan-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBListener.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_30e71e610673c7b74c5ccda0fc334ee9_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_q.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x77.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_100.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBQueue-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_q.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_109.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_23.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_61.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/nav_g.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_88.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_42.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_97.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_12f13744187bc9a56c439d0a57f95644_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandReturnObject.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBQueueItem.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_o.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_217b186c19a2bb8bc0ee0f71fb72d4e8.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandInterpreterRunOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_106.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_57.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_i.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_135.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_51.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/nav_f.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x69.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_rela.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBValue.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespaces.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThread-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_113.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_30e71e610673c7b74c5ccda0fc334ee9.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_135.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_125.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBExecutionContext.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_63.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_o.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_145.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_68.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_37.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_43.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_63.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModuleSpecList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_1.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_42.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_24.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_107.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_0.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBDeclaration-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_145.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFileSpecList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_31.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_15.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_34.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_126.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_112.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x77.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_89.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommunication-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/doxygen_8intro.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_56.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2vertline.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_99.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_58.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_106.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x70.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBroadcaster-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_103.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandPluginInterface.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_68.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_37.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_80.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_25.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_34.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_28.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_93.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_27.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_16.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_96.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_2.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_72.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_15.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_0.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_129.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x7e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_13.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_95.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_104.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_130.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_110.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_124.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x63.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_114.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_137.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_132.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_131.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/graph_legend.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_142.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x64.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_141.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_85.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_rela_0x73.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_139.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_100.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_138.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_32.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_71.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_9d4b8469db156c557ab1d649b027ec2e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_8b321541f691a81675dae4ec7a1864bb.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_4.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_j.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_81.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_65cab015c1f428073772d528e6a1b53d_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_81.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_50.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStringList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_18.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStructuredData-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInputReader.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_41.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_10.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_110.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_217b186c19a2bb8bc0ee0f71fb72d4e8_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_36ad4ea5df2b352cce0512435d34c8a4.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_91.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBEvent-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2link.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_31.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x75.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2doc.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_77.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__inherit__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_b8cffa74dcb91bca0da221349fa85523_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_80.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_1.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_44.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/hierarchy.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_135.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_c.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_c02e3ff158c3064d7b78c6aa6fc411e6_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_35.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_63.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_9.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_106.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_142.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_c.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_58.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_3.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_4.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__inherit__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_88.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_42333c9da4438c4e48b6683e9ba44a59_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_69.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_144.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_136.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_143.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_54.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpoint.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFileSpecList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_108.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_81.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_74.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_9d4b8469db156c557ab1d649b027ec2e_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBData-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_~.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_105.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_11.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_17.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tab_b.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_98.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_c02e3ff158c3064d7b78c6aa6fc411e6_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_141.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_119.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_128.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_116.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dynsections.js
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_57.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_16.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThreadPlan.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_90.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_66.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_18.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummaryOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_10.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_73.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_49.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_144.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_p.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_126.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_26.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_128.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_41.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_72.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThreadCollection.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_39.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandReturnObject-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_19.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_47.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_117.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_52.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_5.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_44.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_118.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_94.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBValue-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tab_s.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBData.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_65cab015c1f428073772d528e6a1b53d_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/annotated.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSourceManager.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFileSpec-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x68.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_38.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMemberList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_138.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_20.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_8.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_119.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_64.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_65.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBVariablesOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_7.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpoint-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x64.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_41.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_65.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBMemoryRegionInfoList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_46.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_vars.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_75.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classSystemInitializerCommon__inherit__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_80.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_3.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_86.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStringList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAddress.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_8.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_119.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_k.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_l.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_117.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_eval.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_64.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_55.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandInterpreter-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_c02e3ff158c3064d7b78c6aa6fc411e6.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_5.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_9.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_86.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_6b47ac86da6aee9115280ffa56155f66.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTarget.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_t.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_i.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_37.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_26.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModule-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandPluginInterface-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_96.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_123.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherits.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_136.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_60.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_87.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_m.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_75.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_25.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_12.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_31.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBlock.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbol.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_36ad4ea5df2b352cce0512435d34c8a4_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_6.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLanguageRuntime-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_21.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_137.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_35.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBMemoryRegionInfo.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_82.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_32.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBExpressionOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classSystemInitializerCommon__inherit__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x66.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/sync_off.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_b8cffa74dcb91bca0da221349fa85523_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBEvent.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_68.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_33.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_76.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_115.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandInterpreterRunOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBDebugger-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_86.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_140.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_65cab015c1f428073772d528e6a1b53d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_121.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_8.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_94.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_54.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x67.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_17.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_140.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_0.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_91.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2cl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_40.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_51.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_45.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_12.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpointLocation.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_2.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2folderclosed.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_123.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_91.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBroadcaster.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_103.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_r.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_40.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6f.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAddress-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_59.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_99.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_143.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_12.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFunction-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_38.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_b.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_95.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x76.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_20.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classes.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_36ad4ea5df2b352cce0512435d34c8a4_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_146.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_144.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBHostOS-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_118.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_105.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_1.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_34.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_60.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBMemoryRegionInfoList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_98.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x65.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStructuredData.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_3.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_133.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_5.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_121.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_128.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_61.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThreadCollection-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_56.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_enum.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_w.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_14.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_70.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_89.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_6b47ac86da6aee9115280ffa56155f66_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_42333c9da4438c4e48b6683e9ba44a59_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_21.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x69.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_7.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_p.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_116.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_46.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_55.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_g.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_14.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_61.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_112.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x73.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_67.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_28.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_92.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_62.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_22.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_44.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/bdwn.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_30.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummaryOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_131.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_w.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x70.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_62.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/nav_h.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_217b186c19a2bb8bc0ee0f71fb72d4e8_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespacemembers.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_79.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_33.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_23.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBHostOS.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_45.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_57.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_17.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_132.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_4.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_134.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_36.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_92.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInstruction.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_f.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMemberList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_16.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_72.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_type.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_109.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStream.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_118.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_2.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_129.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_bdcf59bf838c999fcfc3dde87d35c9f0_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_49.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2mnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x74.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_102.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_88.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_48.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_67.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2splitbar.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_8b321541f691a81675dae4ec7a1864bb_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_r.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInstructionList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_138.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_116.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_29.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_90.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_130.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_93.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_18.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_13.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThread.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/doxygen.css
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_47.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbolContextList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_101.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBValueList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_50.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSection.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBDebugger.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBDeclaration.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_53.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_102.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_36.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_112.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandInterpreter.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_71.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_67.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_62.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_64.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_59.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_76.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_71.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBVariablesOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBWatchpoint.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_115.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_141.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_127.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_98.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_9.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classSystemInitializerCommon__inherit__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_94.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCompileUnit.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_k.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_83.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_104.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_30e71e610673c7b74c5ccda0fc334ee9_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_b.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_103.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbolContextList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_12f13744187bc9a56c439d0a57f95644.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_102.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommand.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLineEntry.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_20.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_126.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x62.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_82.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_120.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_59.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6b.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFunction.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_40.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_123.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTarget-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_56.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBQueueItem-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_27.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_s.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_6b47ac86da6aee9115280ffa56155f66_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_14.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_78.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/doxygen_8intro_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_42333c9da4438c4e48b6683e9ba44a59_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_54.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_83.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStream-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_96.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_51.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_89.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_42333c9da4438c4e48b6683e9ba44a59.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_23.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_146.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/open.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_87.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6b.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpointLocation-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_125.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_134.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x74.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_15.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_11.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModuleSpecList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_52.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbolContext-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x72.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_140.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_124.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_85.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/index.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_65.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_111.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__inherit__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_111.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_73.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_12f13744187bc9a56c439d0a57f95644_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_143.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespacelldb.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_132.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_93.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_142.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_122.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_38.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x62.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_101.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_60.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_u.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_79.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/sync_on.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_120.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_19.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2mo.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_30e71e610673c7b74c5ccda0fc334ee9_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/closed.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_111.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_78.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCompileUnit-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_113.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x63.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_39.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_30.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_22.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_53.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_~.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_6.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_77.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x72.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_107.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/graph_legend.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_101.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_65cab015c1f428073772d528e6a1b53d_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x65.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_75.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_21.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_6.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_22.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_146.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModule.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_95.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSection-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_139.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespacemembers_vars.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_30.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_129.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBMemoryRegionInfo-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_55.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classSystemInitializerCommon.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBError-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_27.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_42.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_7.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_46.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_66.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tab_h.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_76.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFileSpec.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSourceManager-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_113.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_109.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_69.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBExecutionContext-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_69.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_121.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_47.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/graph_legend.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_8b321541f691a81675dae4ec7a1864bb_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_87.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_48.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_122.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_133.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInstructionList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_fa64c3fa8a988674a1a867b97ca9a790_dep.png
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeNameSpecifier-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.runtime-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-A.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSymbol-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger.Logger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbi_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.Metrics-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_14.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_6.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-L.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeCategory.formatters_access_class-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdVectorSynthProvider.StdVBoolImplementation-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule.sections_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule.symbols_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-everything.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule.compile_units_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBPlatformShellCommand-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdsharedptr_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdMapSynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBListener-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeFilter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-X.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbf.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.embedded_interpreter.SimpleREPL-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSyntheticValueProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbh.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger.NopLogger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbd.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbi_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBAttachInfo-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBFileSpecList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_18.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-P.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbe_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_9.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBQueue-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBPlatformConnectOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_val_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBFunction-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBreakpoint-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.synth-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTarget-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCommandReturnObject-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeSynthetic-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeSummary-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBlock.ranges_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdvector_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.cpp.libcxx-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBInstructionList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbf_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdVectorSynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbw.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBMemoryRegionInfoList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-E.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication.Section-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdmap_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_8.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.MetricsPrinter_Compact-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdVectorSynthProvider.StdVectorImplementation-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeEnumMember-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBLaunchInfo-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdlist_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBQueueItem-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-_lldb'-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModuleSpec-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeMember-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.runtime-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBProcess.threads_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBLanguageRuntime-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.attrib_fromdict.AttributesDictionary-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBThread-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbu.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBInputReader-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBWatchpoint-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.cpp.gnu_libstdcpp-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBFrame-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.runtime-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdmap_iterator_node-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication.Symbolicator-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/crarr.png
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBThreadCollection-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.metrics-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBThread.frames_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-N.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stddeque_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/frames.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_dec.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.embedded_interpreter.LLDBQuitter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cache-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeMemberFunction-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBLineEntry-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.attrib_fromdict-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-C.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbe_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbl.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_6.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdListSynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_for.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBreakpointList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModuleSpecList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBFileSpec-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBVariablesOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-Q.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBDebugger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBEvent-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCompileUnit-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_8.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbd_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_16.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-Z.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBroadcaster-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeCategory-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-O.html
    U src/gnu/llvm/tools/lldb/www/python_reference/api-objects.txt
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdmap_iterator-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCommandInterpreterRunOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-R.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_15.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbv_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_6.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.Logger-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-V.html
    U src/gnu/llvm/tools/lldb/www/python_reference/class-tree.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbv.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/help.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeFormat-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_6.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSymbolContextList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCommunication-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication.Address-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_9.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBStream-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSection-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sba.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.embedded_interpreter-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-D.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.synth.PythonObjectSyntheticChildProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-M.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBValueList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeSummaryOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBUnixSignals-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/epydoc.css
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.embedded_interpreter-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.Counter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.synth-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBExpressionOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_12.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.TimeMetrics-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBDeclaration-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.synth-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule.symbols_access.re_compile_type-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cache-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbl_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBType-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.attrib_fromdict-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBStructuredData-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbq_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger.FileLogger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBProcess-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-B.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_20.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/module-tree.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBThreadPlan-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbv_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-F.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-T.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.cache-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBHostOS-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbl_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbi.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.declaration-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_17.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbd_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBData-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-U.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_10.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.embedded_interpreter-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_7.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBMemoryRegionInfo-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBStringList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_for_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBAddress-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/_lldb'-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSourceManager-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbf_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cache.Cache-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.value-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBData.read_data_helper-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdlist_iterator-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_for_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_19.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBError-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-J.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.utils-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBPlatform-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBValue-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBlock-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-H.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbq.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_11.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdlist_entry-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbf_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCommandInterpreter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbe_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.attrib_fromdict-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-Y.html
    U src/gnu/llvm/tools/lldb/www/python_reference/epydoc.js
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/redirect.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-W.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-G.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBInstruction-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbe.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_8.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTarget.modules_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-_.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.MetricsPrinter_Verbose-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication.Image-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbl_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/index.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_13.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.utils.symbolication-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-K.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_7.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeEnumMemberList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.value_iter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_9.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-S.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger.StdoutLogger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sba_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.cpp-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_7.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSymbolContext-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_val.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBExecutionContext-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_emb.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBreakpointLocation-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-I.html
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/.clang-format
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbutil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/concurrent_base.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lock.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbbench.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_result.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/darwin_log.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/bench.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbtest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/README-TestSuite
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbdwarf.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbtest_config.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbinline.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/decorators.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbpexpect.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbplatform.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldb_pylint_helper.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/redo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/dosep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/configuration.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/dotest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/dotest_args.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_categories.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbcurses.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/help/TestHelp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/help/TestApropos.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFileLevelTimeout.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunInline.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/inline_rerun_inferior.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/README.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/rerun_base.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestTimeout.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunTimeout.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestFail.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/enable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/disable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestSignalOutsideTestMethod.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestInvalidDecorator.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFail.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestSignal.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/android/platform/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/android/platform/TestDefaultCacheLineSize.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/android/platform/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_openbsd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_freebsd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_win32.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_netbsd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_linux.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_base.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/mixed/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/mixed/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/mixed/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/recurse/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/recurse/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unions/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unions/TestUnionMembers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/blocks/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/blocks/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unicode/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unicode/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/TestLocalVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/typedef/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/function_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/function_types/TestFunctionTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/function_types/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/vla/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/vla/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/README.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/TestForwardDeclaration.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/array_types/TestArrayTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/array_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/array_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/array_types/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/set_values/TestSetValues.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/set_values/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/set_values/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/modules/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/modules/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/TestStructTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/strings/TestCStrings.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/strings/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/strings/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/inlines/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestRedefinitionsInInlines.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestThreadStepping.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/stepping/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/stepping/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/functions.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/OneConstant.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/TwoConstant.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/step-target/TestStepTarget.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/step-target/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/step-target/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/step-target/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/TestNameClash.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/myobject.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/TestIvarVector.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/TestCPPStaticMembers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/a.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/memory.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/TestGModules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/TestCppChainedCalls.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/TestFrameVariableAnonymousUnions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/TestVirtualOverload.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns3.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/TestNamespaceConflicts.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/TestCxxWCharT.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/pch.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/sbvalue-cast.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestCppValueCast.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestDynamicValue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/pass-to-base.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/TestCPPStaticMethods.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/TestDiamond.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/TestMembersAndLocalsWithSameName.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/TestConstThis.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/TestCppTypeLookup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/TestCPPBool.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/TestUniqueTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/TestCallCPPFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/template/TestTemplateArgs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/template/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/template/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/printf/TestPrintf.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/printf/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/TestOperatorOverload.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/TestSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/TestInlines.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/TestExternCSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/this/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/this/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/TestLLVMStyle.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/TestRvalueReferences.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/exceptions.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypesDisassembly.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/TestCppGlobalOperators.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/TestObjCStepping.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/stepping-tests.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/dynamic-value.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/TestVariadicMethods.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/TestObjCClassMethod.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/f.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/module.modulemap
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/TestModulesAutoImport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/self/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/self/TestObjCSelf.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/self/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/TestObjCStructArgument.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/test.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/TestIvarProtocols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/TestObjCStaticMethod.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/static.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestConflictingDefinition.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/Foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/TestObjcOptimized.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/TestIncompleteModules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/minmax.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/module.map
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/TestPtrRefsObjC.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/TestRdar10967107.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/TestObjCiVarIMP.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/TestBitfieldIvars.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/TestRdar11355592.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/TestPrintObj.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/blocked.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/TestUnicodeString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/TestOrderedSet.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/TestObjCProperty.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/TestNSDictionary0.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/TestGlobalObjects.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/static.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/TestObjCStructReturn.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/test.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/TestObjCXX.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/module.map
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/sample/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/sample/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/const-strings.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjectDescriptionAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestFoundationDisassembly.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestRuntimeTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestSymbolTable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestConstStrings.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/TestRealDefinition.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/TestHiddenIvars.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.m
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/main.mm
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/TestObjCExceptions.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/class.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/TestForwardDecl.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/sample_test/TestSampleTest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/sample_test/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/sample_test/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/sample_test/TestSampleInlineTest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/multi-process-driver.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_breakpoint_callback.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_process_state.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_resume.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_description.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/driver.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/listener_test.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/inferior.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/common.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-targets/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/listeners/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/listeners/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/quit/TestQuit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/commands.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/.lldb
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/TestCommandSource.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/my.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/source-map/a.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/source-map/TestTargetSourceMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/TestDarwinLogBasic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/common/darwin_log_common.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/TestPreRunDylibs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/paths/TestPaths.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/TestUbsanUserExpression.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/TestUbsanBasic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformPython.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/completion/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/completion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/completion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/TestWrongCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/asan/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/asan/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file3.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file1.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/TestLaunchWithShellExpand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/foo bar
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file2.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file5.tyx
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file4.txy
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/TestDeletedExecutable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-doesnt-deadlock/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-doesnt-deadlock/locking.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-doesnt-deadlock/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNoWatchpointSupportInfo.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestArmRegisterDefinition.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteClient.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestThreadSelectionBug.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRestartBug.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/a.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/operating_system.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_regex/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_regex/TestCommandRegex.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch4-kcc-36
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch5-kcc-39
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_history/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_history/TestCommandHistory.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/show_location/TestShowLocationDwarf5.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/show_location/a.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/TestStringPrinter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/TestDumpDynamic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/fooSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/ftsp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/TestPrintArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/myIntSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/TestDataFormatterInvalidStdUniquePtr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/helperfunc.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/myIntSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/TestCompactVectors.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/tslsformatters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/TestFormatPropagation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/TestSetValueFromCString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/TestPrintObjectArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/provider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/TestTypedefArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/plugin.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/TestPluginCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/pass-to-base.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/TestProcessSaveCore.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/attach_denied/entitlements.plist
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/attach_denied/TestAttachDenied.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/attach_denied/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/attach_denied/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/TestStepScripted.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Steps.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.h
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/TestMoveNearest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/TestBreakpointSetRestart.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/resolver.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/bktptcmd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/side_effect.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/b.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/int.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/basic_type.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/TestAvoidBreakpointInDelaySlot.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/TestObjCBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/alias/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/TestSendSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/TestHandleSegv.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/TestRaise.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/TestCommandScript.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/mysto.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/py_import
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/bug11569.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/decorated.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/welcome.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/dummymodule.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/TestImport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/foo/foo2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/foo/foo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/foo/bar/foobar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/rdar-12586188/TestRdar12586188.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/rdar-12586188/fail212586188.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/rdar-12586188/fail12586188.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/rdar-12586188/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/bar/bar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/bar/barutil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/TPunitA.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/TPunitB.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/TestPtrRefs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/TestInferiorChanged.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main2.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-recognizer/recognizer.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-recognizer/main.m
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-recognizer/TestFrameRecognizer.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-recognizer/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/recursion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/recursion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/recursion/TestValueObjectRecursion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/format/TestFormats.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/format/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/format/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_set_command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_set_command/TestWatchpointSetErrorCases.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_set_command/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchpoint/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/TestStepOverWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multi_watchpoint_slots/TestWatchpointMultipleSlots.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multi_watchpoint_slots/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multi_watchpoint_slots/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/variable_out_of_scope/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/variable_out_of_scope/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/TestMultipleHits.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_on_vectors/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_on_vectors/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_disable/TestWatchpointDisable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_disable/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_disable/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/watchpoint_command.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_size/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_size/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_size/TestWatchpointSizes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/apropos_with_process/TestAproposWithProcess.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/apropos_with_process/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/apropos_with_process/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_group/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_group/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/other.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/TestGuessLanguage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/somefunc.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/other-2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/other.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/TestValueMD5Crash.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/TestMemoryCache.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/TestMemoryRead.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/TestProcessLaunch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/print_cwd.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/input-file.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/rerun/TestRerun.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/rerun/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/rerun/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/TestNoreturnUnwind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/a.s
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/divmod.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/fprintf.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/new_delete.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/TestEhFrameUnwind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/TestFdLeak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/TestMemoryRegion.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/return-value/call-func.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/return-value/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-entry-bp/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-entry-bp/TestExprEntryBP.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-entry-bp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/history/TestHistoryRecall.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/TestDeadStrip.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nosucharch/TestNoSuchArch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nosucharch/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nosucharch/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/testid/TestTestId.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashing.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/backticks/TestBackticksWithoutATarget.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/backticks/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/TestTargetCreateDeps.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/a.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/a.mk
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/complicated-expression/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/complicated-expression/TestComplicatedExpression.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/complicated-expression/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/bad-reference/TestBadReference.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/bad-reference/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/bad-reference/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-this/TestDiagnoseDereferenceThis.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-this/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-this/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/local-variable/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/local-variable/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/local-variable/TestLocalVariable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/inheritance/TestDiagnoseInheritance.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/inheritance/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/inheritance/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/virtual-method-call/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/virtual-method-call/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-argument/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-argument/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/array/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/array/TestArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/array/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-function-return/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-function-return/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/TestMPXRegisters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/mpx_bound_violation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/mpx_bound_violation/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/register_command/TestRegisters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/register_command/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/register_command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/register_command/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_avx/TestYMMRegister.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_avx/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_avx/TestZMMRegister.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_avx/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/c.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/d.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/b.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/d.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/c.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/d.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tty/TestTerminal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tty/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tty/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/TestLoadUsingPaths.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/d.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/TestTypeCompletion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats/TestStats.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/calling.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/conditional_break.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/.lldb
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/TestConditionalBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/set-data/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/set-data/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/set-data/TestSetData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/README
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/TestBSDArchives.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/b.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/TestTsanMultiple.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/TestTsanCPPGlobalLocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/TestTsanThreadLeak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/TestTsanThreadNumbers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/TestTsanGlobalLocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/TestTsanBasic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/other.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/TestThreadExit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/TestCreateDuringStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/TestThreadStepOut.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/TestBacktraceLimit.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/TestCrashDuringStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/TestCreateAfterAttach.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/ParallelTask.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/TestCommandScriptImmediateOutput.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/custom_command.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nested_alias/TestNestedAlias.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nested_alias/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nested_alias/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var/TestFrameVar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/regions-linux-map.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/makefile.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/install_breakpad.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-macos.dmp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm64-macos.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.dmp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-linux.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/test.core.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/fpr_sse.cpp
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_x86_64.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/make-core.sh
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.out
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.c
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_i386.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/TestLinuxCore.py
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.out
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/make-core.sh
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-x86_64.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-i386.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/make-core.sh
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-x86_64.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-i386.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz_no_heap.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz_wow64.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/disassembly/TestDisassembleBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/disassembly/TestFrameDisassemble.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/disassembly/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/disassembly/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/globals.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/b.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/c.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/without-debug.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/with-debug.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/TestDisambiguateCallSite.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/TestInliningAndTailCalls.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/TestUnambiguousTailCalls.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/TestAmbiguousTailCallSeq1.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/TestArtificialFrameStepOutMessage.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/TestDisambiguatePathsToCommonSink.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/TestAmbiguousTailCallSeq2.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_alias/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_alias/TestCommandScriptAlias.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_alias/tcsacmd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var_scope/TestFrameVariableScope.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var_scope/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var_scope/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.ll
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_var/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestCommonShortSpellings.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestAbbreviations.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/README.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/process_control.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/test/test_process_control.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/test/inferior.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/test/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/make/Android.rules
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/make/pseudo_barrier.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/make/test_common.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/TestEmulations.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-25-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-26-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-27-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-8-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrh-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-13-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-12-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-20-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-30-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-14-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-31-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strbt-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-9-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-12-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-10-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-23-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-movs-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-22-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-24-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-9-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-8-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-9-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-11-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strd-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-10-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-16-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-10-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-17-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-10-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-moveq-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-9-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strt-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-19-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-18-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-11-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-12-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-15-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-9-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-10-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-7-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-8-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-28-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-21-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-29-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-11-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/TestSettings.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/quoting/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/quoting/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/hello_world/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/hello_world/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/TestSBFrameFindValue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/signals/TestSignalsAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/signals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/signals/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/target/TestTargetAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/target/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/target/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/TestProcessAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/io/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/io/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/TestReadMemCString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/TestSBValuePersist.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/c.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/debugger/TestDebuggerAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/formatters/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/formatters/TestFormattersSBAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/formatters/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/TestBreakpointAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/section/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/section/TestSectionAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/section/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/TestValueAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/TestValueAPIEmptyClass.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/objc_type/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/objc_type/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/objc_type/TestObjCType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/type/TestTypeList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/type/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/type/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbdata/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbdata/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/Test-rdar-12481949.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassembleRawData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/TestSBValueConstAddrOf.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestSetWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIgnoreCount.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/TestFrames.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/TestGetVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/TestInlinedFrame.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/event/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/event/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sblaunchinfo/TestSBLaunchInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/class_members/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/class_members/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/class_members/TestSBTypeClassMembers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/TestNameLookup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process_info.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_compileunit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_value.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_function.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointlocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_section.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_watchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_stringlist.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_target.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instructionlist.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_frame.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_filespec.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_broadcaster.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_type.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_address.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbolcontext.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbol.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_lineentry.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_event.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instruction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_debugger.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointname.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_block.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_error.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_module.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_listener.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_communication.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_valuelist.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_thread.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/thread/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/thread/TestThreadAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/thread/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/interpreter/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/interpreter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestCommandInterpreterAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbstructureddata/TestStructuredDataAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/TestSymbolContext.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file1.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/decls.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/warnings/uuid/TestAddDsymCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/warnings/uuid/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/warnings/uuid/main.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/expression/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/expression/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/continue/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/continue/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/b.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/add-symbols/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/add-symbols/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/add-symbols/TestTargetSymbolsAddCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/TestBuiltinTrap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/TestTargetSymbolsSepDebugSymlink.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/timeout/wait-a-while.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/timeout/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/char/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/char/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/TestExprCompletion.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/other.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/.categories
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/test/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/test/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/calculator_mode/TestCalculatorMode.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_types/TestNestedPersistentTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_types/TestPersistentTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_variables/TestPersistentVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-throws/TestCallThatThrows.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-throws/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-throws/call-throws.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/formatters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/TestFormatters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/foosynth.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/dont_allow_jit/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/dont_allow_jit/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/dont_allow_jit/TestAllowJIT.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-overridden-method/TestCallOverriddenMethod.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-overridden-method/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-overridden-method/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/po_verbosity/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/po_verbosity/TestPoVerbosity.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/po_verbosity/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/unwind_expression/TestUnwindExpression.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/unwind_expression/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/unwind_expression/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/options/TestExprOptions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/options/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/options/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/options/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_ptr_update/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_ptr_update/TestPersistentPtrUpdate.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_ptr_update/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter-phi-nodes/TestIRInterpreterPHINodes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter-phi-nodes/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter-phi-nodes/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9531204/TestPrintfAfterUp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9531204/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9531204/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar42038760/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar42038760/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar42038760/TestScalarURem.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/xvalue/TestXValuePrinting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/xvalue/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/xvalue/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/TestIRInterpreter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/TestExprsBug35310.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_8638051/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_8638051/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_8638051/Test8638051.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/issue_11588/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/issue_11588/s11588.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/issue_11588/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/issue_11588/Test11588.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/test.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/TestTopLevelExprs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallStopAndContinue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallStdStringFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallBuiltinFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/TestScopedEnumType.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/two-files/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/two-files/foo.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/two-files/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/save_jit_objects/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/save_jit_objects/TestSaveJITObjects.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/save_jit_objects/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persist_objc_pointeetype/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persist_objc_pointeetype/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/macro1.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/macro2.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/TestMacros.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/fixits/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/fixits/TestFixIts.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/fixits/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/anonymous-struct/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/anonymous-struct/TestCallUserAnonTypedef.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/anonymous-struct/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/lotta-signals.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/expr-in-syscall/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/expr-in-syscall/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9673664/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9673664/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9673664/TestExprHelpExamples.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/attic/tester.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/attic/dotest.pl
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/logging/TestLogging.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/logging/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/logging/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/source-manager/TestSourceManager.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/source-manager/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/source-manager/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/source-manager/hidden/.keep
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/TestMiLibraryLoaded.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/TestMiFile.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/lldbmi_testcase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/TestMiPrompt.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/TestMiEnvironmentCd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/target/test_attach.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/target/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/target/TestMiTarget.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/data/TestMiData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/data/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/data/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/threadinfo/TestMiThreadInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/threadinfo/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/threadinfo/test_threadinfo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/TestMiBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/signal/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/signal/TestMiSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/signal/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/stack/TestMiStack.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/stack/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/stack/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/variable/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiVar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/variable/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/start_script_error
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/start_script_exit
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/start_script
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/lexical_scope/TestMiLexicalScope.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/lexical_scope/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/lexical_scope/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiCliSupport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/lldbgdbserverutils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteModuleInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestLldbGdbServer.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExpeditedRegisters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/socket_packet_pump.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteGPacket.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAuxvSupport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/.clang-format
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExitCode.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteRegisterState.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAttach.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vCont.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteKill.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/test/test_lldbgdbserverutils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubReverseConnect.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/.categories
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/lldbvscode_testcase.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/main.cpp
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/main.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/recursive_type_2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/short.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/long.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_long_long.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_long.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestFloatTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestRecursiveTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_char.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/long_long.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/char.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/recursive_type_1.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_short.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/float.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/recursive_type_main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/HideTestFailures.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestFloatTypesExpr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/int.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_int.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/double.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/basic_type.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypesExpr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/terminal/TestSTTYBeforeAndAfter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/TestDuplicateMembers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/sub1/a.c
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/function-starts/TestFunctionStarts.py
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/function-starts/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/thread-names/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/thread-names/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/thread-names/TestInterruptThreadNames.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/TestIndirectSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/alias.list
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/reexport.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/indirect.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/TestSafeFuncCalls.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/queues/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/queues/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Info.plist
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/MyFramework.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/myframework.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/TestDeepBundle.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/bundle.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/universal/TestUniversal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/universal/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/universal/Makefile
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/load-kext/mykext.yaml
    N src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/load-kext/TestLoadKext.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/nslog/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/nslog/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/nslog/TestDarwinNSLogOutput.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/TestOrderFile.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/order-file
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestFindAppInBundle.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Info.plist
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Resources/.empty
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/MacOS/.empty
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/driver/batch_mode/TestBatchMode.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/driver/batch_mode/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/driver/batch_mode/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/encoded_file.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/fs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/sockutil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/seven.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/gmodules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/funcutils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/optional_with.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/linux.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/README.md
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/darwin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/tests/test_darwin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/tests/test_linux.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/tests/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/build_exception.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/dotest_channels.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/event_builder.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/test/resources/invalid_decorator/TestInvalidDecorator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/test/src/TestCatchInvalidDecorator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/test/src/event_collector.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/pickled.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/results_formatter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/xunit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/curses.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/__init__.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/progress/progress.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/six/LICENSE
    U src/gnu/llvm/tools/lldb/third_party/Python/module/six/six.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/collector.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/runner.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/util.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/result.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/loader.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/compatibility.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/signals.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/suite.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/__main__.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/case.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/main.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/__init__.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/dummy.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_suite.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_unittest2_with.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_discovery.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_result.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_new_tests.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_break.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_functiontestcase.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_program.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_runner.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/support.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_setups.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_skipping.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_loader.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_case.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_assertions.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/__init__.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/INSTALL
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/README
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/ANSI.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/fdpexpect.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/LICENSE
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/FSM.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/pexpect.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/pxssh.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/PKG-INFO
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/setup.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/screen.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/index.template.html
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/examples.html
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/email.png
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/clean.css
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/index.html
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/astat.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/cgishell.cgi
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/README
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/ssh_tunnel.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/ftp.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/python.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/script.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/passmass.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/chess2.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/topip.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/bd_serv.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/table_test.html
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/bd_client.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/fix_cvs_files.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/chess3.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/chess.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/monitor.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/hive.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/sshls.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/uptime.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/df.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/rippy.py
    U src/gnu/llvm/tools/lldb/tools/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/install-headers/Makefile
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdData.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriver.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/lldb-mi.exports
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIReadMe.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/lldb-Info.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/Platform.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/module.modulemap
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIExtensions.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h
    U src/gnu/llvm/tools/lldb/tools/darwin-threads/examine-threads.c
    U src/gnu/llvm/tools/lldb/tools/lldb-test/SystemInitializerTest.h
    U src/gnu/llvm/tools/lldb/tools/lldb-test/lldb-test.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-test/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-test/FormatUtil.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-test/SystemInitializerTest.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-test/FormatUtil.h
    U src/gnu/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c
    U src/gnu/llvm/tools/lldb/tools/intel-features/README.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/cli-wrapper.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/Decoder.h
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/cli-wrapper-pt.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/README_CLI.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/Decoder.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/cli-wrapper-pt.h
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/PTDecoder.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/PTDecoder.h
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/README_TOOL.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/interface/PTDecoder.i
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/cli-wrapper-mpxtable.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/cli-wrapper-mpxtable.h
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/test/README.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/test/TestMPXTable.py
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/test/Makefile
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/test/main.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/scripts/lldb-intel-features.swig
    U src/gnu/llvm/tools/lldb/tools/intel-features/scripts/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/scripts/python-typemaps.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/README
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lldbperf.xcodeproj/project.pbxproj
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/TestCase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Timer.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Xcode.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Measurement.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Gauge.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Results.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/MemoryGauge.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Metric.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Gauge.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/TestCase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/MemoryGauge.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Timer.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Xcode.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Results.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Metric.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/darwin/formatters/fmts_tester.mm
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/darwin/formatters/formatters.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/darwin/sketch/sketch.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/darwin/sketch/foobar.sketch2
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/clang/build-clang.sh
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/clang/lldb_perf_clang.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/clang/main.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/stepping/stepping-testcase.cpp
    U src/gnu/llvm/tools/lldb/tools/darwin-debug/darwin-debug.cpp
    U src/gnu/llvm/tools/lldb/tools/darwin-debug/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-server/lldb-server.exports
    U src/gnu/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Acceptor.h
    U src/gnu/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h
    U src/gnu/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
    U src/gnu/llvm/tools/lldb/tools/lldb-server/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-mig.defs
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-macos-entitlements.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-Info.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-entitlements.plist
    U src/gnu/llvm/tools/lldb/tools/argdumper/argdumper.cpp
    U src/gnu/llvm/tools/lldb/tools/argdumper/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/argdumper/argdumper.exports
    U src/gnu/llvm/tools/lldb/tools/debugserver/debugnub-exports
    U src/gnu/llvm/tools/lldb/tools/debugserver/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/ARM_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/libdebugserver.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/debugserver-entitlements.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBRegisterInfo.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/TTYState.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/debugserver.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/JSON.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBTimer.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBDefs.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadEvent.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadEvent.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/debugserver-macosx-entitlements.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBDefs.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.applist.internal.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.posix.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBDataRef.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNB.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/SysSignal.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBThreadResumeActions.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBRegisterInfo.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/libdebugserver.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBArch.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBError.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadCondition.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBLog.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/StdStringExtractor.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.applist.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBRemote.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/SysSignal.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBLog.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBRuntimeAction.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNB.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBSocket.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/ChangeLog
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadMutex.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBRemote.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBBreakpoint.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBThreadResumeActions.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBDataRef.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBServices.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBServices.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBError.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/TTYState.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBSocket.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/JSONGenerator.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadMutex.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.internal.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PseudoTerminal.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/JSON.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/StdStringExtractor.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBContext.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/ARM_ehframe_Registers.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBContext.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.internal.xpc.remote.debugserver.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PseudoTerminal.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBArch.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachThread.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachVMRegion.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFBundle.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachVMMemory.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFBundle.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachTask.mm
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/Genealogy.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachThreadList.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/ThreadInfo.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachProcess.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachVMMemory.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/OsLogger.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachThread.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFUtils.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachException.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/OsLogger.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFString.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFString.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/Genealogy.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachThreadList.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachProcess.mm
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/dbgnub-mig.defs
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/GenealogySPI.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachException.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachVMRegion.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/stack_logging.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachTask.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/ppc/DNBArchImpl.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/ppc/DNBArchImpl.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/i386/MachRegisterStatesI386.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/x86_64/MachRegisterStatesX86_64.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogCollector.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogMessage.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogEvent.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterChain.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/ActivityStreamSPI.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterRegex.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogTypes.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterRegex.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/ActivityStore.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterExactMatch.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterChain.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogMessageOsLog.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogMessage.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogMessageOsLog.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/ActivityStore.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogCollector.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilter.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilter.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterExactMatch.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogInterfaces.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/arm64/DNBArchImplARM64.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/arm64/DNBArchImplARM64.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/debugserver.xcodeproj/project.pbxproj
    U src/gnu/llvm/tools/lldb/tools/debugserver/debugserver.xcodeproj/xcshareddata/xcschemes/debugserver.xcscheme
    U src/gnu/llvm/tools/lldb/tools/debugserver/debugserver.xcodeproj/project.xcworkspace/contents.xcworkspacedata
    U src/gnu/llvm/tools/lldb/tools/debugserver/resources/lldb-debugserver-Info.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/scripts/diagnose-termination.d
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/SourceReference.h
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/lldb-vscode-Info.plist
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/LLDBUtils.cpp
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/FunctionBreakpoint.h
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/SourceBreakpoint.h
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/ExceptionBreakpoint.h
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/JSONUtils.h
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/FunctionBreakpoint.cpp
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/VSCode.cpp
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/JSONUtils.cpp
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/ExceptionBreakpoint.cpp
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/LLDBUtils.h
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/package.json
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/SourceBreakpoint.cpp
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/VSCodeForward.h
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/CMakeLists.txt
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/BreakpointBase.cpp
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/README.md
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/VSCode.h
    N src/gnu/llvm/tools/lldb/tools/lldb-vscode/BreakpointBase.h
    U src/gnu/llvm/tools/lldb/tools/driver/Driver.cpp
    N src/gnu/llvm/tools/lldb/tools/driver/Options.td
    U src/gnu/llvm/tools/lldb/tools/driver/Driver.h
    U src/gnu/llvm/tools/lldb/tools/driver/Platform.cpp
    U src/gnu/llvm/tools/lldb/tools/driver/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/driver/lldb-Info.plist
    U src/gnu/llvm/tools/lldb/tools/driver/Platform.h
    U src/gnu/llvm/tools/clang/.arcconfig
    U src/gnu/llvm/tools/clang/README.txt
    U src/gnu/llvm/tools/clang/CODE_OWNERS.TXT
    U src/gnu/llvm/tools/clang/.clang-format
    U src/gnu/llvm/tools/clang/.gitignore
    U src/gnu/llvm/tools/clang/INSTALL.txt
    U src/gnu/llvm/tools/clang/LICENSE.TXT
    U src/gnu/llvm/tools/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/ModuleInfo.txt
    U src/gnu/llvm/tools/clang/.clang-tidy
    U src/gnu/llvm/tools/clang/NOTES.txt
    U src/gnu/llvm/tools/clang/include/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/module.modulemap
    U src/gnu/llvm/tools/clang/include/clang/Parse/RAIIObjectsForParser.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/Parser.h
    N src/gnu/llvm/tools/clang/include/clang/Parse/LoopHint.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/ParseAST.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ConstantInitFuture.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTUKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
    C src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SanitizerSpecialCaseList.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/MSP430Target.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/FixedPoint.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/arm_fp16.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/XRayInstr.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Specifiers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BitmaskEnum.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Features.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/SyncScope.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoringKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Attr.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/LLVM.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/PragmaKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceLocation.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Visibility.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticLex.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/XRayLists.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DeclNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Linkage.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Stack.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Lambda.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticFrontend.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/PlistSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Cuda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrSubjectMatchRules.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AlignedAllocation.h
    C src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.inc.in
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsXCore.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetOptions.h
    C src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.def
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/CharInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Module.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/X86Target.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAST.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/StmtNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/arm_neon.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticError.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
    N src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h
    N src/gnu/llvm/tools/clang/include/clang/Basic/CodeGenOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Attributes.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandards.def
    C src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandard.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Weak.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Designator.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaLambda.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Ownership.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
    C src/gnu/llvm/tools/clang/include/clang/Sema/Sema.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ParsedAttr.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Overload.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DeclSpec.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CleanupInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Sema/Template.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Scope.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Initialization.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TemplateInstCallback.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/Commit.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/FileOffset.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/EditedSource.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/EditsReceiver.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/Rewriters.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/XRayArgs.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Util.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Job.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Action.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Options.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.def
    C src/gnu/llvm/tools/clang/include/clang/Driver/Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Distro.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Multilib.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Driver.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
    C src/gnu/llvm/tools/clang/include/clang/Driver/CC1Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/ToolChain.h
    N src/gnu/llvm/tools/clang/include/clang/Driver/DarwinSDKInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Phases.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Driver/Tool.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/ClangOptionDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Compilation.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Tooling.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Execution.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/FixIt.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ToolExecutorPluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringRuleContext.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringAction.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/ASTSelection.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringResultConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/AtomicChange.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRules.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOption.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptionVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRule.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRuleRequirements.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFinder.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolName.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRLocFinder.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolOccurrences.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFindingAction.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Extract/Extract.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Inclusions/IncludeStyle.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiffInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CFGStmtMap.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/SelectorExtras.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CodeInjector.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/BodyFarm.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CFG.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CallGraph.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowValues.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyOps.def
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
    N src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Index/USRGeneration.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CommentToXML.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexSymbol.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexingAction.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
    N src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SimpleConstraintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSort.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Symbols.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTExpr.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopWidening.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
    U src/gnu/llvm/tools/clang/include/clang/FrontendTool/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/Config/config.h.cmake
    U src/gnu/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.h
    U src/gnu/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
    U src/gnu/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
    U src/gnu/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
    N src/gnu/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTReader.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Serialization/Module.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/Rewriters.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h
    U src/gnu/llvm/tools/clang/include/clang/Format/Format.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OpenMPClause.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/VTableBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTFwd.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeNodes.def
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CharUnits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/VTTBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.td
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentLexer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LocInfoType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
    U src/gnu/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CXXInheritance.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprObjC.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Availability.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeOrdering.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecordLayout.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtDataCollectors.td
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExternalASTMerger.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Type.h
    U src/gnu/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTImporter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CanonicalType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BaseSubobject.h
    U src/gnu/llvm/tools/clang/include/clang/AST/APValue.h
    U src/gnu/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Decl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TextNodeDumper.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td
    U src/gnu/llvm/tools/clang/include/clang/AST/GlobalDecl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RawCommentList.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.def
    U src/gnu/llvm/tools/clang/include/clang/AST/Attr.h
    N src/gnu/llvm/tools/clang/include/clang/AST/OSLog.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtIterator.h
    N src/gnu/llvm/tools/clang/include/clang/AST/TemplateArgumentVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ParentMap.h
    U src/gnu/llvm/tools/clang/include/clang/AST/NonTrivialTypeVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ComparisonCategories.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Comment.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclBase.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Expr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Stmt.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTVector.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommands.td
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTLambda.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LambdaCapture.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclarationName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/QualTypeNames.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.h
    N src/gnu/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/PrettyDeclStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AST.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclLookups.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclGroup.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclFriend.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateBase.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
    N src/gnu/llvm/tools/clang/include/clang/AST/AttrVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/NSAPI.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentSema.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ODRHash.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DataCollection.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
    U src/gnu/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLoc.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AttrIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Mangle.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Redeclarable.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
    U src/gnu/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
    U src/gnu/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h
    N src/gnu/llvm/tools/clang/include/clang/AST/FormatString.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroArgs.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Token.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/VariadicMacroSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Pragma.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Preprocessor.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Lexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ScratchBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang-c/CXString.h
    U src/gnu/llvm/tools/clang/include/clang-c/Documentation.h
    U src/gnu/llvm/tools/clang/include/clang-c/CXErrorCode.h
    U src/gnu/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang-c/Index.h
    U src/gnu/llvm/tools/clang/include/clang-c/Platform.h
    U src/gnu/llvm/tools/clang/include/clang-c/BuildSystem.h
    U src/gnu/llvm/tools/clang/include/clang-c/module.modulemap
    U src/gnu/llvm/tools/clang/lib/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseExpr.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTentative.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParsePragma.cpp
    C src/gnu/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseObjc.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseAST.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/Parser.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseInit.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGValue.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ConstantEmitter.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGGPUBuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/Address.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGException.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGClass.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/README.txt
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuilder.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ConstantInitBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ABIInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
    C src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/XRayInstr.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Sanitizers.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
    C src/gnu/llvm/tools/clang/lib/Basic/Targets.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/LangOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CharInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/MemoryBufferCache.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Cuda.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Version.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets.h
    U src/gnu/llvm/tools/clang/lib/Basic/SourceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SanitizerSpecialCaseList.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/CodeGenOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Diagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileManager.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Attributes.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Basic/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/TokenKinds.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/FixedPoint.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Warnings.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SourceLocation.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/XRayLists.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Builtins.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/NVPTX.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Mips.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/SystemZ.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/SPIR.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/WebAssembly.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AArch64.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/MSP430.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AVR.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/PNaCl.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Le64.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/BPF.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Sparc.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/XCore.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Lanai.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Mips.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/MSP430.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Hexagon.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/RISCV.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/SystemZ.h
    C src/gnu/llvm/tools/clang/lib/Basic/Targets/PPC.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/ARM.h
    C src/gnu/llvm/tools/clang/lib/Basic/Targets/X86.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AArch64.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Lanai.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/PPC.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/SPIR.h
    C src/gnu/llvm/tools/clang/lib/Basic/Targets/X86.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/PNaCl.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/TCE.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/BPF.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AVR.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/ARM.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Sparc.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/RISCV.cpp
    N src/gnu/llvm/tools/clang/lib/Basic/Targets/ARC.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.h
    N src/gnu/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/XCore.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/TCE.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Le64.h
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp
    C src/gnu/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendTiming.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LangStandards.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.h
    U src/gnu/llvm/tools/clang/lib/Frontend/CMakeLists.txt
    C src/gnu/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/PrecompiledPreamble.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteTest.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAccess.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Sema.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLookup.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TreeTransform.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
    C src/gnu/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DeclSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Scope.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/ParsedAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOverload.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLambda.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CoroutineStmtBuilder.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExpr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCast.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
    C src/gnu/llvm/tools/clang/lib/Sema/SemaChecking.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaType.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaInit.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
    U src/gnu/llvm/tools/clang/lib/Headers/avx512dqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/fmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/altivec.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdatomic.h
    U src/gnu/llvm/tools/clang/lib/Headers/cpuid.h
    U src/gnu/llvm/tools/clang/lib/Headers/fma4intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
    U src/gnu/llvm/tools/clang/lib/Headers/arm64intr.h
    U src/gnu/llvm/tools/clang/lib/Headers/armintr.h
    U src/gnu/llvm/tools/clang/lib/Headers/xopintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/waitpkgintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/invpcidintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/tbmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vpclmulqdqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/gfniintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlbitalgintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/x86intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/smmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/movdirintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/rtmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/prfchwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/inttypes.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/msa.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512pfintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdarg.h
    U src/gnu/llvm/tools/clang/lib/Headers/clzerointrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pkuintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmiintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdint.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdnoreturn.h
    U src/gnu/llvm/tools/clang/lib/Headers/fxsrintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vnniintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512erintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stddef.h
    U src/gnu/llvm/tools/clang/lib/Headers/varargs.h
    U src/gnu/llvm/tools/clang/lib/Headers/lzcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
    U src/gnu/llvm/tools/clang/lib/Headers/rdseedintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
    U src/gnu/llvm/tools/clang/lib/Headers/ammintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/iso646.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vpopcntdqvlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_libdevice_declares.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/s390intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/opencl-c.h
    U src/gnu/llvm/tools/clang/lib/Headers/clwbintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/shaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512bwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xtestintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/lwpintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm3dnow.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm_malloc.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlvnniintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512fintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vpopcntdqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/immintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cldemoteintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
    U src/gnu/llvm/tools/clang/lib/Headers/limits.h
    U src/gnu/llvm/tools/clang/lib/Headers/mwaitxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/nmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/float.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/tmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Headers/intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdbool.h
    U src/gnu/llvm/tools/clang/lib/Headers/popcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/adxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdalign.h
    U src/gnu/llvm/tools/clang/lib/Headers/sgxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/tgmath.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
    U src/gnu/llvm/tools/clang/lib/Headers/ia32intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512bitalgintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/clflushoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cetintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_builtin_vars.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_device_functions.h
    U src/gnu/llvm/tools/clang/lib/Headers/vecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/wbnoinvdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/emmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pconfigintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/arm_acle.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmxlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlvbmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavesintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/module.modulemap
    U src/gnu/llvm/tools/clang/lib/Headers/avx512cdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vadefs.h
    U src/gnu/llvm/tools/clang/lib/Headers/ptwriteintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/wmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/unwind.h
    U src/gnu/llvm/tools/clang/lib/Headers/vaesintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/f16cintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/algorithm
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/complex
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/new
    U src/gnu/llvm/tools/clang/lib/Edit/EditedSource.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/Commit.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChain.cpp
    N src/gnu/llvm/tools/clang/lib/Driver/DarwinSDKInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Compilation.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/InputInfo.h
    U src/gnu/llvm/tools/clang/lib/Driver/Types.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Tool.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Driver.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Distro.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Multilib.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Job.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/XRayArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Phases.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Action.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/DriverOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/CMakeLists.txt
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.h
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Gnu.h
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Myriad.h
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/NaCl.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/AVR.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Haiku.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MinGW.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/XCore.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Cuda.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Lanai.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.h
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Ananas.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.h
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Contiki.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Cuda.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Minix.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/NaCl.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Contiki.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Ananas.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Haiku.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Darwin.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Darwin.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Clang.h
    N src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Hurd.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Minix.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Myriad.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/TCE.h
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Gnu.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/AVR.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Linux.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSVCSetupApi.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MinGW.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/XCore.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Solaris.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/TCE.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.h
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/StandaloneExecution.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Execution.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Tooling.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/FixIt.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/RefactoringActions.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/AtomicChange.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFinder.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRLocFinder.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Inclusions/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Inclusions/IncludeStyle.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/ASTDiff/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFG.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Dominators.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyLogical.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Consumed.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
    N src/gnu/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ConstructionContext.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CodeInjector.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexSymbol.cpp
    U src/gnu/llvm/tools/clang/lib/Index/SimpleFormatContext.h
    U src/gnu/llvm/tools/clang/lib/Index/IndexingContext.h
    U src/gnu/llvm/tools/clang/lib/Index/IndexBody.cpp
    U src/gnu/llvm/tools/clang/lib/Index/CommentToXML.cpp
    U src/gnu/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp
    U src/gnu/llvm/tools/clang/lib/Index/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Index/IndexDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Index/USRGeneration.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingContext.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingAction.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/README.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObject.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.h
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RetainSummaryManager.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/TaintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
    N src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/WorkList.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
    U src/gnu/llvm/tools/clang/lib/FrontendTool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp
    U src/gnu/llvm/tools/clang/lib/CrossTU/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Internals.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.h
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
    U src/gnu/llvm/tools/clang/lib/Serialization/MultiOnDiskHashTable.h
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Serialization/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReader.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
    N src/gnu/llvm/tools/clang/lib/Serialization/PCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/Rewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.h
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/FormatInternal.h
    U src/gnu/llvm/tools/clang/lib/Format/Encoding.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.h
    U src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.h
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.h
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.h
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
    U src/gnu/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
    U src/gnu/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.h
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.h
    U src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.h
    U src/gnu/llvm/tools/clang/lib/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/Format.cpp
    U src/gnu/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.h
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.h
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.cpp
    N src/gnu/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Type.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Stmt.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RawCommentList.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ASTImporterLookupTable.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Decl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Mangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypeLoc.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXInheritance.cpp
    N src/gnu/llvm/tools/clang/lib/AST/OSLog.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclGroup.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/APValue.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
    N src/gnu/llvm/tools/clang/lib/AST/TextNodeDumper.cpp
    U src/gnu/llvm/tools/clang/lib/AST/AttrImpl.cpp
    N src/gnu/llvm/tools/clang/lib/AST/FormatString.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentLexer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ODRHash.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/QualTypeNames.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Linkage.h
    U src/gnu/llvm/tools/clang/lib/AST/CommentParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclFriend.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtIterator.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ComparisonCategories.cpp
    N src/gnu/llvm/tools/clang/lib/AST/ScanfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ParentMap.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Comment.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprCXX.cpp
    N src/gnu/llvm/tools/clang/lib/AST/FormatStringParsing.h
    U src/gnu/llvm/tools/clang/lib/AST/StmtProfile.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DataCollection.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExternalASTMerger.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTableBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Expr.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprClassification.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/InheritViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayout.cpp
    U src/gnu/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTDumper.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NSAPI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTTBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentSema.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTContext.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXABI.h
    U src/gnu/llvm/tools/clang/lib/AST/ASTImporter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/OpenMPClause.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclarationName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypePrinter.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPDirectives.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Lexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/ModuleMap.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPCaching.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/HeaderMap.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/TokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Lex/PPExpressions.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/UnicodeCharSets.h
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/MacroArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Pragma.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Preprocessor.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/MacroInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp
    U src/gnu/llvm/tools/clang/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/CodeGen/TBAAMetadataTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/BufferSourceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/CodeGen/CodeGenExternalTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/IncrementalProcessingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/IRMatchers.h
    U src/gnu/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/MemoryBufferCacheTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/SourceManagerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/CharInfoTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Basic/DiagnosticTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Basic/FixedPointTest.cpp
    U src/gnu/llvm/tools/clang/unittests/libclang/LibclangTest.cpp
    U src/gnu/llvm/tools/clang/unittests/libclang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Frontend/OutputStreamTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/PCHPreambleTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/ParsedSourceLocationTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/FrontendActionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/ASTUnitTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Frontend/FixedPointString.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Frontend/CodeGenActionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/CompilerInstanceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Sema/ExternalSemaSourceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Sema/CodeCompleteTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Driver/DistroTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/MultilibTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/ToolChainTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/ModuleCacheTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Tooling/HeaderIncludesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/QualTypeNamesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementsYamlTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/TestVisitor.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestPostOrderVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/DiagnosticsYamlTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CommentHandlerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestDeclVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ASTSelectionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTestContext.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/CastExprTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ExecutionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CompilationDatabaseTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestTypeLocVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringActionRulesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementTest.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/FixItTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ToolingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/LookupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/LambdaDefaultCapture.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/NestedNameSpecifiers.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPostOrderNoQueue.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/ParenExpr.cpp
    N src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/TraversalScope.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/DeclRefExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/CXXOperatorCallExprTraverser.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/Attr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/ConstructExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/TemplateArgumentLocTraverser.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/CXXMemberCall.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/Class.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/ImplicitCtor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/IntegerLiteral.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/CXXBoolLiteralExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/LambdaExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPreOrderNoQueue.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPreOrder.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPostOrder.cpp
    U src/gnu/llvm/tools/clang/unittests/Analysis/CloneDetectionTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Analysis/CFGTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Analysis/CMakeLists.txt
    N src/gnu/llvm/tools/clang/unittests/Index/IndexTests.cpp
    N src/gnu/llvm/tools/clang/unittests/Index/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Rename/ClangRenameTest.h
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameAliasTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameFunctionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameClassTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameEnumTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameMemberTest.cpp
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/AnalyzerOptionsTest.cpp
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/RegisterCustomCheckersTest.cpp
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/CrossTU/CrossTranslationUnitTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CrossTU/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Rewrite/RewriteBufferTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/UsingDeclarationsSorterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CleanupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortIncludesTest.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/FormatTestTableGen.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestTextProto.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestProto.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestObjC.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortImportsTestJS.cpp
    N src/gnu/llvm/tools/clang/unittests/Format/SortImportsTestJava.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/NamespaceEndCommentsFixerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestSelective.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJava.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestUtils.h
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestComments.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestRawStrings.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/NamedDeclPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTContextParentMapTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/StmtPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTVectorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/Language.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/Language.h
    U src/gnu/llvm/tools/clang/unittests/AST/CommentLexer.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/CommentParser.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/EvaluateAsRValueTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/StructuralEquivalenceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTTypeTraitsTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclMatcher.h
    U src/gnu/llvm/tools/clang/unittests/AST/DataCollectionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/SourceLocationTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/AST/MatchVerifier.h
    U src/gnu/llvm/tools/clang/unittests/AST/ASTImporterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/CommentTextTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ExternalASTSourceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTest.h
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersInternalTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/VariantValueTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/ParserTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/RegistryTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/HeaderMapTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/PPCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/HeaderSearchTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/LexerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Lex/PPConditionalDirectiveRecordTest.cpp
    U src/gnu/llvm/tools/clang/runtime/CMakeLists.txt
    U src/gnu/llvm/tools/clang/runtime/compiler-rt/clang_linux_test_input.c
    U src/gnu/llvm/tools/clang/cmake/modules/AddClang.cmake
    U src/gnu/llvm/tools/clang/cmake/modules/ClangConfig.cmake.in
    U src/gnu/llvm/tools/clang/cmake/modules/ProtobufMutator.cmake
    U src/gnu/llvm/tools/clang/cmake/modules/CMakeLists.txt
    U src/gnu/llvm/tools/clang/cmake/modules/FindZ3.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage1.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/BaremetalARM.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Fuchsia.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/3-stage-base.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Fuchsia-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/README.txt
    U src/gnu/llvm/tools/clang/cmake/caches/Android.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/DistributionExample-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Android-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/DistributionExample.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/3-stage.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2-instrumented.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage2-ThinLTO.cmake
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.txt
    U src/gnu/llvm/tools/clang/docs/ItaniumMangleAbiTags.rst
    U src/gnu/llvm/tools/clang/docs/PCHLayout.graffle
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizerDesign.rst
    U src/gnu/llvm/tools/clang/docs/RAVFrontendAction.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersTutorial.rst
    U src/gnu/llvm/tools/clang/docs/ExternalClangExamples.rst
    U src/gnu/llvm/tools/clang/docs/AttributeReference.rst
    U src/gnu/llvm/tools/clang/docs/JSONCompilationDatabase.rst
    U src/gnu/llvm/tools/clang/docs/DriverInternals.rst
    U src/gnu/llvm/tools/clang/docs/LanguageExtensions.rst
    U src/gnu/llvm/tools/clang/docs/ClangPlugins.rst
    U src/gnu/llvm/tools/clang/docs/HardwareAssistedAddressSanitizerDesign.rst
    U src/gnu/llvm/tools/clang/docs/BlockLanguageSpec.rst
    U src/gnu/llvm/tools/clang/docs/conf.py
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrity.rst
    U src/gnu/llvm/tools/clang/docs/LibTooling.rst
    U src/gnu/llvm/tools/clang/docs/ClangCheck.rst
    U src/gnu/llvm/tools/clang/docs/ClangFormatStyleOptions.rst
    U src/gnu/llvm/tools/clang/docs/ThinLTO.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchers.rst
    U src/gnu/llvm/tools/clang/docs/README.txt
    U src/gnu/llvm/tools/clang/docs/SanitizerSpecialCaseList.rst
    U src/gnu/llvm/tools/clang/docs/AddressSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersReference.html
    U src/gnu/llvm/tools/clang/docs/LibFormat.rst
    U src/gnu/llvm/tools/clang/docs/RefactoringEngine.rst
    U src/gnu/llvm/tools/clang/docs/SourceBasedCodeCoverage.rst
    U src/gnu/llvm/tools/clang/docs/make.bat
    U src/gnu/llvm/tools/clang/docs/LeakSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/UndefinedBehaviorSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/clang/docs/Toolchain.rst
    U src/gnu/llvm/tools/clang/docs/MSVCCompatibility.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerStats.rst
    U src/gnu/llvm/tools/clang/docs/Tooling.rst
    U src/gnu/llvm/tools/clang/docs/ObjectiveCLiterals.rst
    U src/gnu/llvm/tools/clang/docs/ShadowCallStack.rst
    U src/gnu/llvm/tools/clang/docs/HowToSetupToolingForLLVM.rst
    U src/gnu/llvm/tools/clang/docs/CMakeLists.txt
    U src/gnu/llvm/tools/clang/docs/PCHLayout.png
    U src/gnu/llvm/tools/clang/docs/IntroductionToTheClangAST.rst
    U src/gnu/llvm/tools/clang/docs/ThreadSafetyAnalysis.rst
    U src/gnu/llvm/tools/clang/docs/index.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrityDesign.rst
    U src/gnu/llvm/tools/clang/docs/ClangFormat.rst
    U src/gnu/llvm/tools/clang/docs/AutomaticReferenceCounting.rst
    U src/gnu/llvm/tools/clang/docs/ClangTools.rst
    U src/gnu/llvm/tools/clang/docs/doxygen-mainpage.dox
    U src/gnu/llvm/tools/clang/docs/Modules.rst
    U src/gnu/llvm/tools/clang/docs/MemorySanitizer.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerCoverage.rst
    U src/gnu/llvm/tools/clang/docs/LTOVisibility.rst
    U src/gnu/llvm/tools/clang/docs/doxygen.cfg.in
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.rst
    U src/gnu/llvm/tools/clang/docs/Makefile.sphinx
    U src/gnu/llvm/tools/clang/docs/UsersManual.rst
    U src/gnu/llvm/tools/clang/docs/ThreadSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/FAQ.rst
    U src/gnu/llvm/tools/clang/docs/DiagnosticsReference.rst
    U src/gnu/llvm/tools/clang/docs/SafeStack.rst
    U src/gnu/llvm/tools/clang/docs/DriverArchitecture.png
    U src/gnu/llvm/tools/clang/docs/InternalsManual.rst
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/PCHInternals.rst
    U src/gnu/llvm/tools/clang/docs/ClangCommandLineReference.rst
    U src/gnu/llvm/tools/clang/docs/CrossCompilation.rst
    U src/gnu/llvm/tools/clang/docs/OpenMPSupport.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/RegionStore.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/conf.py
    U src/gnu/llvm/tools/clang/docs/analyzer/make.bat
    U src/gnu/llvm/tools/clang/docs/analyzer/nullability.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/DebugChecks.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/IPA.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/index.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/DesignDiscussions/InitializerLists.rst
    U src/gnu/llvm/tools/clang/docs/CommandGuide/diagtool.rst
    U src/gnu/llvm/tools/clang/docs/CommandGuide/index.rst
    C src/gnu/llvm/tools/clang/docs/CommandGuide/clang.rst
    U src/gnu/llvm/tools/clang/docs/tools/dump_format_style.py
    U src/gnu/llvm/tools/clang/docs/tools/dump_ast_matchers.py
    U src/gnu/llvm/tools/clang/bindings/python/README.txt
    U src/gnu/llvm/tools/clang/bindings/python/clang/enumerations.py
    U src/gnu/llvm/tools/clang/bindings/python/clang/cindex.py
    U src/gnu/llvm/tools/clang/bindings/python/clang/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/examples/cindex/cindex-includes.py
    U src/gnu/llvm/tools/clang/bindings/python/examples/cindex/cindex-dump.py
    N src/gnu/llvm/tools/clang/bindings/python/tests/CMakeLists.txt
    U src/gnu/llvm/tools/clang/bindings/python/tests/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_index.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cursor.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cdb.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_file.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cursor_kind.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/util.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_diagnostics.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_translation_unit.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_exception_specification_kind.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_comment.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_access_specifiers.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_tokens.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_type.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_code_completion.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_token_kind.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_tls_kind.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_linkage.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_location.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header2.h
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/include.cpp
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/hello.cpp
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/compile_commands.json
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header1.h
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header3.h
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/parse_arguments.c
    U src/gnu/llvm/tools/clang/bindings/xml/comment-xml-schema.rng
    U src/gnu/llvm/tools/clang/examples/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/README.txt
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/PrintFunctionNames.cpp
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/PrintFunctionNames.exports
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/Test.cxx
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/README.txt
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/main.cpp
    U src/gnu/llvm/tools/clang/examples/analyzer-plugin/MainCallChecker.cpp
    U src/gnu/llvm/tools/clang/examples/analyzer-plugin/SampleAnalyzerPlugin.exports
    U src/gnu/llvm/tools/clang/examples/analyzer-plugin/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/AnnotateFunctions/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/AnnotateFunctions/AnnotateFunctions.cpp
    U src/gnu/llvm/tools/clang/utils/CaptureCmd
    U src/gnu/llvm/tools/clang/utils/builtin-defines.c
    U src/gnu/llvm/tools/clang/utils/clangdiag.py
    U src/gnu/llvm/tools/clang/utils/FindSpecRefs
    U src/gnu/llvm/tools/clang/utils/CmpDriver
    U src/gnu/llvm/tools/clang/utils/token-delta.py
    U src/gnu/llvm/tools/clang/utils/modfuzz.py
    U src/gnu/llvm/tools/clang/utils/ClangDataFormat.py
    U src/gnu/llvm/tools/clang/utils/bash-autocomplete.sh
    U src/gnu/llvm/tools/clang/utils/FuzzTest
    U src/gnu/llvm/tools/clang/utils/find-unused-diagnostics.sh
    U src/gnu/llvm/tools/clang/utils/hmaptool/hmaptool
    U src/gnu/llvm/tools/clang/utils/hmaptool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/valgrind/x86_64-pc-linux-gnu_gcc-4.3.3.supp
    U src/gnu/llvm/tools/clang/utils/CIndex/completion_logger_server.py
    U src/gnu/llvm/tools/clang/utils/VtableTest/check-zti
    U src/gnu/llvm/tools/clang/utils/VtableTest/check-zvt
    U src/gnu/llvm/tools/clang/utils/VtableTest/check-ztt
    U src/gnu/llvm/tools/clang/utils/VtableTest/gen.cc
    U src/gnu/llvm/tools/clang/utils/TestUtils/deep-stack.py
    U src/gnu/llvm/tools/clang/utils/TestUtils/pch-test.pl
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestUpdateDiffs.py
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestAdd.py
    U src/gnu/llvm/tools/clang/utils/analyzer/reducer.pl
    U src/gnu/llvm/tools/clang/utils/analyzer/SumTimerInfo.py
    U src/gnu/llvm/tools/clang/utils/analyzer/update_plist_test.pl
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestUtils.py
    U src/gnu/llvm/tools/clang/utils/analyzer/CmpRuns.py
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestBuild.py
    U src/gnu/llvm/tools/clang/utils/ClangVisualizers/clang.natvis
    U src/gnu/llvm/tools/clang/utils/ClangVisualizers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/check_cfc/test_check_cfc.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/obj_diff.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/setup.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/check_cfc.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/check_cfc.cfg
    U src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/TypeGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/ABITestGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/Makefile.test.common
    U src/gnu/llvm/tools/clang/utils/ABITest/summarize.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize-all.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/Enumeration.py
    U src/gnu/llvm/tools/clang/utils/ABITest/build.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/return-types-32/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/single-args-32/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/single-args-64/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/return-types-64/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/layout/Makefile
    U src/gnu/llvm/tools/clang/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/TableGen.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/perf-training/README.txt
    U src/gnu/llvm/tools/clang/utils/perf-training/lit.site.cfg.in
    U src/gnu/llvm/tools/clang/utils/perf-training/order-files.lit.site.cfg.in
    U src/gnu/llvm/tools/clang/utils/perf-training/lit.cfg
    U src/gnu/llvm/tools/clang/utils/perf-training/perf-helper.py
    U src/gnu/llvm/tools/clang/utils/perf-training/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/perf-training/order-files.lit.cfg
    U src/gnu/llvm/tools/clang/utils/perf-training/cxx/hello_world.cpp
    U src/gnu/llvm/tools/clang/INPUTS/Cocoa_h.m
    U src/gnu/llvm/tools/clang/INPUTS/macro_pounder_fn.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-nested-var-scopes.cpp
    U src/gnu/llvm/tools/clang/INPUTS/c99-intconst-1.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-big-switch.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain3.c
    U src/gnu/llvm/tools/clang/INPUTS/carbon_h.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-nested-switches.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain2.c
    U src/gnu/llvm/tools/clang/INPUTS/macro_pounder_obj.c
    U src/gnu/llvm/tools/clang/INPUTS/iostream.cc
    U src/gnu/llvm/tools/clang/INPUTS/all-std-headers.cpp
    U src/gnu/llvm/tools/clang/INPUTS/stpcpy-test.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain1.c
    U src/gnu/llvm/tools/clang/www/cxx_compatibility.html
    U src/gnu/llvm/tools/clang/www/hacking.html
    U src/gnu/llvm/tools/clang/www/cxx_status.html
    U src/gnu/llvm/tools/clang/www/feature-compile2.png
    U src/gnu/llvm/tools/clang/www/libstdc++4.7-clang11.patch
    U src/gnu/llvm/tools/clang/www/compatibility.html
    U src/gnu/llvm/tools/clang/www/feature-memory1.png
    U src/gnu/llvm/tools/clang/www/feature-compile1.png
    U src/gnu/llvm/tools/clang/www/builtins.py
    U src/gnu/llvm/tools/clang/www/OpenProjects.html
    U src/gnu/llvm/tools/clang/www/features.html
    U src/gnu/llvm/tools/clang/www/diagnostics.html
    U src/gnu/llvm/tools/clang/www/clang_video-05-25-2007.html
    U src/gnu/llvm/tools/clang/www/favicon.ico
    U src/gnu/llvm/tools/clang/www/menu.html.incl
    U src/gnu/llvm/tools/clang/www/content.css
    U src/gnu/llvm/tools/clang/www/get_started.html
    U src/gnu/llvm/tools/clang/www/clang_video-07-25-2007.html
    U src/gnu/llvm/tools/clang/www/related.html
    U src/gnu/llvm/tools/clang/www/get_involved.html
    U src/gnu/llvm/tools/clang/www/comparison.html
    U src/gnu/llvm/tools/clang/www/cxx_dr_status.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.6-clang11.patch
    U src/gnu/llvm/tools/clang/www/make_cxx_dr_status
    U src/gnu/llvm/tools/clang/www/robots.txt
    U src/gnu/llvm/tools/clang/www/index.html
    U src/gnu/llvm/tools/clang/www/UniversalDriver.html
    U src/gnu/llvm/tools/clang/www/carbon-compile.png
    U src/gnu/llvm/tools/clang/www/menu.css
    U src/gnu/llvm/tools/clang/www/libstdc++4.4-clang0x.patch
    U src/gnu/llvm/tools/clang/www/analyzer/implicit_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/annotations.html
    U src/gnu/llvm/tools/clang/www/analyzer/filing_bugs.html
    U src/gnu/llvm/tools/clang/www/analyzer/installation.html
    U src/gnu/llvm/tools/clang/www/analyzer/faq.html
    U src/gnu/llvm/tools/clang/www/analyzer/scan-build.html
    U src/gnu/llvm/tools/clang/www/analyzer/release_notes.html
    U src/gnu/llvm/tools/clang/www/analyzer/xcode.html
    U src/gnu/llvm/tools/clang/www/analyzer/latest_checker.html.incl
    U src/gnu/llvm/tools/clang/www/analyzer/menu.html.incl
    U src/gnu/llvm/tools/clang/www/analyzer/open_projects.html
    U src/gnu/llvm/tools/clang/www/analyzer/content.css
    U src/gnu/llvm/tools/clang/www/analyzer/checker_dev_manual.html
    U src/gnu/llvm/tools/clang/www/analyzer/alpha_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/available_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/potential_checkers.html
    U src/gnu/llvm/tools/clang/www/analyzer/index.html
    U src/gnu/llvm/tools/clang/www/analyzer/menu.css
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_attribute_nonnull.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_use_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_ns_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_custom_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_xcode.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_null_pointer.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_html.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/scan_build_cmd.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/arrows_dark.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/arrows_light.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_light.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_dark.gif
    U src/gnu/llvm/tools/clang/www/analyzer/scripts/expandcollapse.js
    U src/gnu/llvm/tools/clang/www/analyzer/scripts/menu.js
    U src/gnu/llvm/tools/clang/www/demo/DemoInfo.html
    U src/gnu/llvm/tools/clang/www/demo/syntax.css
    U src/gnu/llvm/tools/clang/www/demo/cathead.png
    U src/gnu/llvm/tools/clang/www/demo/index.cgi
    U src/gnu/llvm/tools/clang/www/demo/what is this directory.txt
    U src/gnu/llvm/tools/clang/tools/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-view/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-view/bin/scan-view
    U src/gnu/llvm/tools/clang/tools/scan-view/share/bugcatcher.ico
    U src/gnu/llvm/tools/clang/tools/scan-view/share/ScanView.py
    U src/gnu/llvm/tools/clang/tools/scan-view/share/startfile.py
    U src/gnu/llvm/tools/clang/tools/scan-view/share/GetRadarVersion.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/FileRadar.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/Reporter.py
    U src/gnu/llvm/tools/clang/tools/clang-refactor/TestSupport.h
    U src/gnu/llvm/tools/clang/tools/clang-refactor/ToolRefactoringResultConsumer.h
    U src/gnu/llvm/tools/clang/tools/clang-refactor/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-refactor/ClangRefactor.cpp
    U src/gnu/llvm/tools/clang/tools/clang-refactor/TestSupport.cpp
    U src/gnu/llvm/tools/clang/tools/c-arcmt-test/c-arcmt-test.c
    U src/gnu/llvm/tools/clang/tools/c-arcmt-test/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-rename/clang-rename.el
    U src/gnu/llvm/tools/clang/tools/clang-rename/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-rename/clang-rename.py
    U src/gnu/llvm/tools/clang/tools/clang-rename/ClangRename.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXString.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXString.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.h
    U src/gnu/llvm/tools/clang/tools/libclang/libclang.exports
    U src/gnu/llvm/tools/clang/tools/libclang/ARCMigrate.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXTranslationUnit.h
    U src/gnu/llvm/tools/clang/tools/libclang/BuildSystem.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexer.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/Indexing.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CLog.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexCodeCompletion.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/Index_Internal.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndex.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXStoredDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CursorVisitor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexInclusionStack.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexHigh.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexUSRs.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexCXX.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.h
    U src/gnu/llvm/tools/clang/tools/diagtool/FindDiagnosticID.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.h
    U src/gnu/llvm/tools/clang/tools/diagtool/ListWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/TreeView.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.h
    U src/gnu/llvm/tools/clang/tools/diagtool/ShowEnabledWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/diagtool/diagtool_main.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.cpp
    U src/gnu/llvm/tools/clang/tools/clang-diff/ClangDiff.cpp
    U src/gnu/llvm/tools/clang/tools/clang-diff/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-offload-bundler/ClangOffloadBundler.cpp
    U src/gnu/llvm/tools/clang/tools/clang-offload-bundler/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-build/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-build/bin/set-xcode-analyzer
    U src/gnu/llvm/tools/clang/tools/scan-build/bin/scan-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build/bin/scan-build
    U src/gnu/llvm/tools/clang/tools/scan-build/man/scan-build.1
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/ccc-analyzer
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/c++-analyzer
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/ccc-analyzer.bat
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/c++-analyzer.bat
    U src/gnu/llvm/tools/clang/tools/scan-build/share/scan-build/sorttable.js
    U src/gnu/llvm/tools/clang/tools/scan-build/share/scan-build/scanview.css
    U src/gnu/llvm/tools/clang/tools/arcmt-test/arcmt-test.cpp
    U src/gnu/llvm/tools/clang/tools/arcmt-test/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/clang-extdef-mapping/CMakeLists.txt
    N src/gnu/llvm/tools/clang/tools/clang-extdef-mapping/ClangExtDefMapGen.cpp
    U src/gnu/llvm/tools/clang/tools/clang-check/ClangCheck.cpp
    U src/gnu/llvm/tools/clang/tools/clang-check/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-import-test/clang-import-test.cpp
    U src/gnu/llvm/tools/clang/tools/clang-import-test/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/c-index-test/core_main.cpp
    U src/gnu/llvm/tools/clang/tools/c-index-test/c-index-test.c
    U src/gnu/llvm/tools/clang/tools/c-index-test/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/Dockerfile
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ExampleClangLLVMProtoFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ClangFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/cxx_loop_proto.proto
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ExampleClangLoopProtoFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/README.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/DummyClangFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/cxx_proto.proto
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-llvm/handle_llvm.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-llvm/handle_llvm.h
    N src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-llvm/input_arrays.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-llvm/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm_main.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-llvm/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/loop_proto_to_cxx_main.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/loop_proto_to_cxx.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx_main.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/fuzzer-initialize/fuzzer_initialize.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/fuzzer-initialize/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/fuzzer-initialize/fuzzer_initialize.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-cxx/handle_cxx.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-cxx/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-cxx/handle_cxx.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat.sln
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/README.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/.gitignore
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/source.extension.vsixmanifest.in
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources.Designer.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormat.vsct
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Guids.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Vsix.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources.resx
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/VSPackage.resx
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/GlobalSuppressions.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/PkgCmdID.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/RunningDocTableEventsDispatcher.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/license.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/packages.config
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Properties/AssemblyInfo.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources/Images_32bit.bmp
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources/Package.ico
    U src/gnu/llvm/tools/clang/tools/diag-build/diag-build.sh
    U src/gnu/llvm/tools/clang/tools/scan-build-py/README.md
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libear/config.h.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libear/ear.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libear/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-c++
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/scan-build
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-build
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-c++
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-build
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/compilation.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/analyze.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/shell.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/arguments.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/intercept.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/clang.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/report.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/sorttable.js
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/selectable.js
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/scanview.css
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_intercept.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_compilation.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_report.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_shell.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_libear.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_analyze.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_clang.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/config.h.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/main.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/clean-one.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/main.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/broken-two.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/clean-two.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/emit-one.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/emit-two.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/broken-one.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/include/clean-one.h
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_broken.json.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_clean.json.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_regular.json.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/build/Makefile
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_from_cdb.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_from_cmd.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_create_cdb.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_exec_anatomy.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/__init__.py
    U src/gnu/llvm/tools/clang/tools/driver/cc1_main.cpp
    U src/gnu/llvm/tools/clang/tools/driver/cc1gen_reproducer_main.cpp
    U src/gnu/llvm/tools/clang/tools/driver/driver.cpp
    U src/gnu/llvm/tools/clang/tools/driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/driver/Info.plist.in
    U src/gnu/llvm/tools/clang/tools/driver/cc1as_main.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format/git-clang-format
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-sublime.py
    U src/gnu/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format.py
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format.el
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-bbedit.applescript
    U src/gnu/llvm/tools/clang/tools/clang-format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-diff.py
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-test.el
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/CMakeLists.txt
    U src/gnu/llvm/projects/LLVMBuild.txt
    U src/gnu/llvm/projects/CMakeLists.txt
    
    93 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jLLVM:yesterday -jLLVM src/gnu/llvm

CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/23 16:05:19

Modified files:
	gnu/llvm/include/llvm: InitializePasses.h 
	gnu/llvm/include/llvm/BinaryFormat: Dwarf.def 
	gnu/llvm/include/llvm/CodeGen: AsmPrinter.h MachineFrameInfo.h 
	                               Passes.h TargetFrameLowering.h 
	gnu/llvm/include/llvm/Target: TargetLoweringObjectFile.h 
	gnu/llvm/lib/CodeGen: CMakeLists.txt PrologEpilogInserter.cpp 
	                      ReturnProtectorPass.cpp StackProtector.cpp 
	                      TargetLoweringBase.cpp 
	                      TargetPassConfig.cpp 
	gnu/llvm/lib/CodeGen/AsmPrinter: AsmPrinter.cpp 
	gnu/llvm/lib/MC: MCELFStreamer.cpp 
	gnu/llvm/lib/MC/MCParser: AsmParser.cpp 
	gnu/llvm/lib/Target/AArch64: AArch64AsmPrinter.cpp 
	                             AArch64FrameLowering.cpp 
	                             AArch64FrameLowering.h 
	                             AArch64ISelLowering.cpp 
	                             AArch64InstrInfo.td 
	                             AArch64Subtarget.h CMakeLists.txt 
	gnu/llvm/lib/Target/Mips: MipsAsmPrinter.cpp 
	gnu/llvm/lib/Target/Mips/MCTargetDesc: MipsMCAsmInfo.cpp 
	gnu/llvm/lib/Target/PowerPC: PPCISelLowering.cpp 
	gnu/llvm/lib/Target/Sparc: SparcAsmPrinter.cpp 
	                           SparcISelLowering.cpp 
	gnu/llvm/lib/Target/X86: CMakeLists.txt X86.h X86.td 
	                         X86FixupGadgets.cpp 
	                         X86FrameLowering.cpp 
	                         X86ISelLowering.cpp X86InstrCompiler.td 
	                         X86InstrInfo.td X86MCInstLower.cpp 
	                         X86RegisterInfo.td X86Subtarget.cpp 
	                         X86Subtarget.h X86TargetMachine.cpp 
	gnu/llvm/lib/Target/X86/AsmParser: X86AsmParser.cpp 
	gnu/llvm/lib/Target/X86/MCTargetDesc: X86AsmBackend.cpp 
	gnu/llvm/lib/Transforms/Scalar: LoopIdiomRecognize.cpp 
	gnu/llvm/tools/clang/docs/CommandGuide: clang.rst 
	gnu/llvm/tools/clang/include/clang/AST: FormatString.h 
	gnu/llvm/tools/clang/include/clang/Basic: Builtins.def 
	                                          CodeGenOptions.def 
	                                          DiagnosticGroups.td 
	                                          DiagnosticSemaKinds.td 
	gnu/llvm/tools/clang/include/clang/Driver: CC1Options.td 
	                                           Options.td 
	gnu/llvm/tools/clang/include/clang/Frontend: 
	                                             CompilerInvocation.h 
	gnu/llvm/tools/clang/include/clang/Sema: Sema.h 
	gnu/llvm/tools/clang/lib/AST: FormatString.cpp 
	gnu/llvm/tools/clang/lib/Basic: Targets.cpp 
	gnu/llvm/tools/clang/lib/Basic/Targets: PPC.h X86.cpp X86.h 
	gnu/llvm/tools/clang/lib/CodeGen: CGCall.cpp 
	gnu/llvm/tools/clang/lib/Driver/ToolChains: Clang.cpp Gnu.cpp 
	                                            OpenBSD.cpp 
	                                            OpenBSD.h 
	gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch: AArch64.cpp 
	                                                 AArch64.h 
	                                                 ARM.cpp X86.cpp 
	gnu/llvm/tools/clang/lib/Frontend: CompilerInvocation.cpp 
	                                   InitHeaderSearch.cpp 
	gnu/llvm/tools/clang/lib/Sema: SemaChecking.cpp SemaDeclAttr.cpp 
	gnu/llvm/tools/clang/www: cxx_dr_status.html cxx_status.html 
	                          make_cxx_dr_status 
	gnu/llvm/tools/lld/ELF: Config.h Driver.cpp DriverUtils.cpp 
	                        LinkerScript.cpp Options.td 
	                        OutputSections.cpp Relocations.cpp 
	                        SymbolTable.cpp Symbols.cpp Symbols.h 
	                        SyntheticSections.cpp Writer.cpp 
	gnu/llvm/tools/lld/docs: ld.lld.1 
	gnu/llvm/tools/lld/tools/lld: lld.cpp 
	gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86: 
	                                                       x86AssemblyInspectionEngine.cpp 
	                                                       x86AssemblyInspectionEngine.h 
	gnu/llvm/tools/llvm-config: llvm-config.cpp 
	gnu/llvm/utils/TableGen: X86RecognizableInstr.cpp 
Removed files:
	gnu/llvm/docs  : AMDGPUAsmGFX7.rst AMDGPUAsmGFX8.rst 
	                 AMDGPUAsmGFX9.rst 
	gnu/llvm/include/llvm/Analysis: IndirectCallSiteVisitor.h 
	gnu/llvm/include/llvm/CodeGen: GCs.h 
	gnu/llvm/include/llvm/DebugInfo/PDB/Native: 
	                                            NativeBuiltinSymbol.h 
	                                            NativeEnumSymbol.h 
	gnu/llvm/include/llvm/IR: TypeBuilder.h 
	gnu/llvm/include/llvm/Transforms/Utils: OrderedInstructions.h 
	gnu/llvm/lib/CodeGen: MachinePassRegistry.cpp 
	gnu/llvm/lib/CodeGen/AsmPrinter: AsmPrinterHandler.h 
	                                 DbgValueHistoryCalculator.cpp 
	                                 DbgValueHistoryCalculator.h 
	                                 DebugHandlerBase.h 
	gnu/llvm/lib/DebugInfo/PDB/Native: NativeBuiltinSymbol.cpp 
	                                   NativeEnumSymbol.cpp 
	gnu/llvm/lib/Demangle: Compiler.h StringView.h Utility.h 
	gnu/llvm/lib/Target/AMDGPU: AMDGPUIntrinsics.td 
	gnu/llvm/lib/Target/AMDGPU/Utils: AMDGPULaneDominator.cpp 
	                                  AMDGPULaneDominator.h 
	gnu/llvm/lib/Target/Hexagon: HexagonGatherPacketize.cpp 
	                             HexagonInstrFormatsV4.td 
	                             HexagonIntrinsicsV3.td 
	                             HexagonIntrinsicsV4.td 
	                             HexagonScheduleV4.td 
	gnu/llvm/lib/Target/Nios2: CMakeLists.txt LLVMBuild.txt Nios2.h 
	                           Nios2.td Nios2AsmPrinter.cpp 
	                           Nios2CallingConv.td 
	                           Nios2FrameLowering.cpp 
	                           Nios2FrameLowering.h 
	                           Nios2ISelDAGToDAG.cpp 
	                           Nios2ISelLowering.cpp 
	                           Nios2ISelLowering.h 
	                           Nios2InstrFormats.td 
	                           Nios2InstrInfo.cpp Nios2InstrInfo.h 
	                           Nios2InstrInfo.td 
	                           Nios2MCInstLower.cpp 
	                           Nios2MachineFunction.cpp 
	                           Nios2MachineFunction.h 
	                           Nios2RegisterInfo.cpp 
	                           Nios2RegisterInfo.h 
	                           Nios2RegisterInfo.td Nios2Schedule.td 
	                           Nios2Subtarget.cpp Nios2Subtarget.h 
	                           Nios2TargetMachine.cpp 
	                           Nios2TargetMachine.h 
	                           Nios2TargetObjectFile.cpp 
	                           Nios2TargetObjectFile.h 
	                           Nios2TargetStreamer.h 
	gnu/llvm/lib/Target/Nios2/InstPrinter: CMakeLists.txt 
	                                       LLVMBuild.txt 
	                                       Nios2InstPrinter.cpp 
	                                       Nios2InstPrinter.h 
	gnu/llvm/lib/Target/Nios2/MCTargetDesc: CMakeLists.txt 
	                                        LLVMBuild.txt 
	                                        Nios2AsmBackend.cpp 
	                                        Nios2AsmBackend.h 
	                                        Nios2BaseInfo.h 
	                                        Nios2ELFObjectWriter.cpp 
	                                        Nios2FixupKinds.h 
	                                        Nios2MCAsmInfo.cpp 
	                                        Nios2MCAsmInfo.h 
	                                        Nios2MCExpr.cpp 
	                                        Nios2MCExpr.h 
	                                        Nios2MCTargetDesc.cpp 
	                                        Nios2MCTargetDesc.h 
	                                        Nios2TargetStreamer.cpp 
	gnu/llvm/lib/Target/Nios2/TargetInfo: CMakeLists.txt 
	                                      LLVMBuild.txt 
	                                      Nios2TargetInfo.cpp 
	gnu/llvm/lib/Target/RISCV/MCTargetDesc: RISCVBaseInfo.h 
	gnu/llvm/lib/Target/Sparc: SparcTargetStreamer.h 
	gnu/llvm/lib/Target/WebAssembly: WebAssemblyStoreResults.cpp 
	gnu/llvm/lib/Transforms/Utils: OrderedInstructions.cpp 
	gnu/llvm/tools/clang/docs: PTHInternals.rst 
	gnu/llvm/tools/clang/include/clang/Analysis/Analyses: 
	                                                      FormatString.h 
	                                                      OSLog.h 
	                                                      PseudoConstantAnalysis.h 
	gnu/llvm/tools/clang/include/clang/Basic: BuiltinsNios2.def 
	                                          VirtualFileSystem.h 
	gnu/llvm/tools/clang/include/clang/Frontend: CodeGenOptions.def 
	                                             CodeGenOptions.h 
	gnu/llvm/tools/clang/include/clang/Lex: PTHLexer.h PTHManager.h 
	gnu/llvm/tools/clang/include/clang/Sema: LoopHint.h 
	gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers: 
	                                                            ClangCheckers.h 
	                                                            ObjCRetainCount.h 
	gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core: 
	                                                        CheckerOptInfo.h 
	                                                        CheckerRegistry.h 
	gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive: 
	                                                                      SMTContext.h 
	gnu/llvm/tools/clang/lib/Analysis: FormatString.cpp 
	                                   FormatStringParsing.h 
	                                   OSLog.cpp 
	                                   PrintfFormatString.cpp 
	                                   PseudoConstantAnalysis.cpp 
	                                   ScanfFormatString.cpp 
	gnu/llvm/tools/clang/lib/Basic: VirtualFileSystem.cpp 
	gnu/llvm/tools/clang/lib/Basic/Targets: Nios2.cpp Nios2.h 
	gnu/llvm/tools/clang/lib/Driver/ToolChains: RISCV.cpp RISCV.h 
	gnu/llvm/tools/clang/lib/Frontend: CacheTokens.cpp 
	                                   CodeGenOptions.cpp 
	                                   PCHContainerOperations.cpp 
	gnu/llvm/tools/clang/lib/Lex: PTHLexer.cpp 
	gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers: 
	                                                  AllocationDiagnostics.cpp 
	                                                  AllocationDiagnostics.h 
	                                                  ClangCheckers.cpp 
	                                                  ClangSACheckers.h 
	                                                  MisusedMovedObjectChecker.cpp 
	                                                  RetainCountChecker.cpp 
	                                                  SelectorExtras.h 
	                                                  UninitializedObjectChecker.cpp 
	gnu/llvm/tools/clang/lib/StaticAnalyzer/Core: 
	                                              CheckerRegistry.cpp 
	                                              SMTConstraintManager.cpp 
	gnu/llvm/tools/clang/tools/clang-func-mapping: CMakeLists.txt 
	                                               ClangFnMapGen.cpp 
	gnu/llvm/tools/clang/unittests/Basic: VirtualFileSystemTest.cpp 
	gnu/llvm/tools/clang/utils/analyzer: ubiviz 
	gnu/llvm/tools/clang/www/analyzer/images: 
	                                          example_cf_returns_retained_gc.png 
	gnu/llvm/tools/lld/ELF: GdbIndex.cpp GdbIndex.h 
	gnu/llvm/tools/lld/include/lld/Core: TODO.txt 
	gnu/llvm/tools/lldb/include/lldb/Core: Broadcaster.h Event.h 
	                                       Listener.h 
	                                       RegisterValue.h Scalar.h 
	                                       State.h 
	gnu/llvm/tools/lldb/include/lldb/Host: Predicate.h 
	gnu/llvm/tools/lldb/include/lldb/Host/common: NativeBreakpoint.h 
	                                              SoftwareBreakpoint.h 
	gnu/llvm/tools/lldb/include/lldb/Symbol: GoASTContext.h 
	                                         JavaASTContext.h 
	                                         OCamlASTContext.h 
	gnu/llvm/tools/lldb/include/lldb/Utility: Either.h 
	                                          FastDemangle.h Range.h 
	                                          SafeMachO.h 
	gnu/llvm/tools/lldb/lit: lit.cfg lit.site.cfg.in 
	gnu/llvm/tools/lldb/lit/Breakpoint: lit.local.cfg 
	gnu/llvm/tools/lldb/lit/Expr: lit.local.cfg 
	gnu/llvm/tools/lldb/lit/Modules: build-id-case.yaml 
	                                 compressed-sections.yaml 
	                                 elf-duplicate-section.yaml 
	                                 elf-many-sections.s 
	                                 elf-section-types.yaml 
	                                 lc_version_min.yaml 
	                                 short-build-id.yaml 
	gnu/llvm/tools/lldb/lit/Quit: lit.local.cfg 
	gnu/llvm/tools/lldb/lit/SymbolFile/PDB: lit.local.cfg 
	gnu/llvm/tools/lldb/lit/Unit: lit.cfg lit.site.cfg.in 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/disassembly: 
	                                                                           TestDisassembly.py 
	                                                                           TestDoAttachThenDisassembly.py 
	                                                                           TestXcode41Vs42GDBDisassembly.py 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/multiline: 
	                                                                                 Makefile 
	                                                                                 TestMultilineExpressions.py 
	                                                                                 main.c 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/embedded_interpreter: 
	                                                                                         Makefile 
	                                                                                         TestConvenienceVariables.py 
	                                                                                         main.c 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stop-hook: 
	                                                                              Makefile 
	                                                                              TestStopHookCmd.py 
	                                                                              TestStopHookMechanism.py 
	                                                                              main.cpp 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stop-hook/multiple_threads: 
	                                                                                               Makefile 
	                                                                                               TestStopHookMultipleThreads.py 
	                                                                                               main.cpp 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/go/expressions: 
	                                                                        TestExpressions.py 
	                                                                        main.go 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/go/formatters: 
	                                                                       TestGoFormatters.py 
	                                                                       main.go 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/go/goroutines: 
	                                                                       TestGoroutines.py 
	                                                                       main.go 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/go/runtime: 
	                                                                    TestGoLanguageRuntime 
	                                                                    main.go 
	gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/go/types: 
	                                                                  TestGoASTContext.py 
	                                                                  main.go 
	gnu/llvm/tools/lldb/source/Core: Broadcaster.cpp Event.cpp 
	                                 Listener.cpp RegisterValue.cpp 
	                                 Scalar.cpp State.cpp 
	gnu/llvm/tools/lldb/source/Host/common: NativeBreakpoint.cpp 
	                                        NativeBreakpointList.cpp 
	                                        SoftwareBreakpoint.cpp 
	gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Go: 
	                                                        CMakeLists.txt 
	                                                        GoAST.h 
	                                                        GoLexer.cpp 
	                                                        GoLexer.h 
	                                                        GoParser.cpp 
	                                                        GoParser.h 
	                                                        GoUserExpression.cpp 
	                                                        GoUserExpression.h 
	                                                        gen_go_ast.py 
	gnu/llvm/tools/lldb/source/Plugins/Language/Go: CMakeLists.txt 
	                                                GoFormatterFunctions.cpp 
	                                                GoFormatterFunctions.h 
	                                                GoLanguage.cpp 
	                                                GoLanguage.h 
	gnu/llvm/tools/lldb/source/Plugins/Language/Java: CMakeLists.txt 
	                                                  JavaFormatterFunctions.cpp 
	                                                  JavaFormatterFunctions.h 
	                                                  JavaLanguage.cpp 
	                                                  JavaLanguage.h 
	gnu/llvm/tools/lldb/source/Plugins/Language/OCaml: 
	                                                   CMakeLists.txt 
	                                                   OCamlLanguage.cpp 
	                                                   OCamlLanguage.h 
	gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go: 
	                                                       GoLanguageRuntime.cpp 
	                                                       GoLanguageRuntime.h 
	gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/Java: 
	                                                         CMakeLists.txt 
	                                                         JavaLanguageRuntime.cpp 
	                                                         JavaLanguageRuntime.h 
	gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/Go: 
	                                                       CMakeLists.txt 
	                                                       OperatingSystemGo.cpp 
	                                                       OperatingSystemGo.h 
	gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF: 
	                                                     DWARFASTParserGo.cpp 
	                                                     DWARFASTParserGo.h 
	                                                     DWARFASTParserJava.cpp 
	                                                     DWARFASTParserJava.h 
	                                                     DWARFASTParserOCaml.cpp 
	                                                     DWARFASTParserOCaml.h 
	gnu/llvm/tools/lldb/source/Symbol: GoASTContext.cpp 
	                                   JavaASTContext.cpp 
	                                   OCamlASTContext.cpp 
	gnu/llvm/tools/lldb/source/Utility: FastDemangle.cpp Range.cpp 
	gnu/llvm/tools/lldb/unittests/Core: BroadcasterTest.cpp 
	                                    DataExtractorTest.cpp 
	                                    EventTest.cpp 
	                                    ListenerTest.cpp 
	                                    ScalarTest.cpp StateTest.cpp 
	gnu/llvm/tools/lldb/unittests/Expression: GoParserTest.cpp 
	gnu/llvm/tools/lldb/unittests/Host: PredicateTest.cpp 
	gnu/llvm/tools/llvm-demangle-fuzzer: CMakeLists.txt 
	                                     DummyDemanglerFuzzer.cpp 
	                                     llvm-demangle-fuzzer.cpp 
	gnu/llvm/tools/llvm-mca: Context.cpp Context.h DispatchStage.cpp 
	                         DispatchStage.h DispatchStatistics.cpp 
	                         DispatchStatistics.h ExecuteStage.cpp 
	                         ExecuteStage.h FetchStage.cpp 
	                         FetchStage.h HWEventListener.cpp 
	                         HWEventListener.h HardwareUnit.cpp 
	                         HardwareUnit.h InstrBuilder.cpp 
	                         InstrBuilder.h Instruction.cpp 
	                         Instruction.h InstructionInfoView.cpp 
	                         InstructionInfoView.h 
	                         InstructionTables.cpp 
	                         InstructionTables.h LSUnit.cpp LSUnit.h 
	                         Pipeline.cpp Pipeline.h 
	                         RegisterFile.cpp RegisterFile.h 
	                         RegisterFileStatistics.cpp 
	                         RegisterFileStatistics.h 
	                         ResourcePressureView.cpp 
	                         ResourcePressureView.h 
	                         RetireControlUnit.cpp 
	                         RetireControlUnit.h 
	                         RetireControlUnitStatistics.cpp 
	                         RetireControlUnitStatistics.h 
	                         RetireStage.cpp RetireStage.h 
	                         Scheduler.cpp Scheduler.h 
	                         SchedulerStatistics.cpp 
	                         SchedulerStatistics.h SourceMgr.h 
	                         Stage.cpp Stage.h SummaryView.cpp 
	                         SummaryView.h Support.cpp Support.h 
	                         TimelineView.cpp TimelineView.h 
	                         View.cpp View.h 
	gnu/llvm/tools/llvm-objcopy: Object.cpp Object.h 
	gnu/llvm/tools/llvm-pdbutil: Analyze.cpp Analyze.h 
	gnu/llvm/unittests/Analysis: MemorySSA.cpp UnrollAnalyzer.cpp 
	gnu/llvm/unittests/ExecutionEngine/Orc: 
	                                        CompileOnDemandLayerTest.cpp 
	gnu/llvm/unittests/IR: DeferredDominanceTest.cpp 
	                       TypeBuilderTest.cpp 
	gnu/llvm/unittests/Transforms/Utils: BasicBlockUtils.cpp 
	                                     Cloning.cpp 
	                                     CodeExtractor.cpp 
	                                     FunctionComparator.cpp 
	                                     IntegerDivision.cpp 
	                                     Local.cpp 
	                                     OrderedInstructions.cpp 
	                                     SSAUpdaterBulk.cpp 
	gnu/llvm/unittests/tools/llvm-exegesis: BenchmarkResultTest.cpp 

Log message:
Merge LLVM 8.0.0 release.

Prepared with help from jsg@ and mortimer@
Tested on amd64 by bcallah@, krw@, naddy@
Tested on arm64 by patrick@
Tested on macppc by kettenis@
Tested on octeon by visa@
Tested on sparc64 by claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/23 16:07:45

Modified files:
	gnu/usr.bin/clang/clang: clang.1 
	gnu/usr.bin/clang/include/clang/AST: Makefile 
	gnu/usr.bin/clang/include/clang/Basic: Version.inc 
	gnu/usr.bin/clang/include/clang/Config: config.h 
	gnu/usr.bin/clang/include/clang/intrin: Makefile 
	gnu/usr.bin/clang/include/lld/Common: Version.inc 
	gnu/usr.bin/clang/include/llvm/Config: config.h llvm-config.h.in 
	gnu/usr.bin/clang/include/llvm/X86: Makefile 
	gnu/usr.bin/clang/libLLVM: shlib_version 
	gnu/usr.bin/clang/libLLVMAArch64CodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMAMDGPUCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMAMDGPUUtils: Makefile 
	gnu/usr.bin/clang/libLLVMAnalysis: Makefile 
	gnu/usr.bin/clang/libLLVMAsmPrinter: Makefile 
	gnu/usr.bin/clang/libLLVMBinaryFormat: Makefile 
	gnu/usr.bin/clang/libLLVMCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMCore: Makefile 
	gnu/usr.bin/clang/libLLVMDebugInfoCodeView: Makefile 
	gnu/usr.bin/clang/libLLVMDebugInfoPDB: Makefile 
	gnu/usr.bin/clang/libLLVMDemangle: Makefile 
	gnu/usr.bin/clang/libLLVMGlobalISel: Makefile 
	gnu/usr.bin/clang/libLLVMInstrumentation: Makefile 
	gnu/usr.bin/clang/libLLVMLTO: Makefile 
	gnu/usr.bin/clang/libLLVMMCParser: Makefile 
	gnu/usr.bin/clang/libLLVMMipsCodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMScalarOpts: Makefile 
	gnu/usr.bin/clang/libLLVMSupport: Makefile Makefile.shared 
	gnu/usr.bin/clang/libLLVMTransformUtils: Makefile 
	gnu/usr.bin/clang/libLLVMVectorize: Makefile 
	gnu/usr.bin/clang/libLLVMX86CodeGen: Makefile 
	gnu/usr.bin/clang/libLLVMipo: Makefile 
	gnu/usr.bin/clang/libclangAST: Makefile 
	gnu/usr.bin/clang/libclangAnalysis: Makefile 
	gnu/usr.bin/clang/libclangBasic: Makefile 
	gnu/usr.bin/clang/libclangBasicTargets: Makefile 
	gnu/usr.bin/clang/libclangDriver: Makefile 
	gnu/usr.bin/clang/libclangFrontend: Makefile 
	gnu/usr.bin/clang/libclangLex: Makefile 
	gnu/usr.bin/clang/libclangSerialization: Makefile 
	gnu/usr.bin/clang/liblldELF: Makefile 
	gnu/usr.bin/clang/liblldbAPI: Makefile 
	gnu/usr.bin/clang/liblldbBreakpoint: Makefile 
	gnu/usr.bin/clang/liblldbCommands: Makefile 
	gnu/usr.bin/clang/liblldbCore: Makefile 
	gnu/usr.bin/clang/liblldbHostCommon: Makefile 
	gnu/usr.bin/clang/liblldbPluginArchitecture: Makefile 
	gnu/usr.bin/clang/liblldbPluginExpressionParser: Makefile 
	gnu/usr.bin/clang/liblldbPluginLanguage: Makefile 
	gnu/usr.bin/clang/liblldbPluginLanguageRuntime: Makefile 
	gnu/usr.bin/clang/liblldbPluginObjectFile: Makefile 
	gnu/usr.bin/clang/liblldbPluginOperatingSystem: Makefile 
	gnu/usr.bin/clang/liblldbPluginPlatform: Makefile 
	gnu/usr.bin/clang/liblldbPluginProcess: Makefile 
	gnu/usr.bin/clang/liblldbPluginSymbolFile: Makefile 
	gnu/usr.bin/clang/liblldbSymbol: Makefile 
	gnu/usr.bin/clang/liblldbTarget: Makefile 
	gnu/usr.bin/clang/liblldbUtility: Makefile 
	gnu/usr.bin/clang/lldb: Makefile 
	gnu/usr.bin/clang/llvm-config: llvm-config.1 
	gnu/usr.bin/clang/llvm-tblgen: Makefile 

Log message:
Update clang build infrastructure for LLVM 8.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/23 16:09:02

Modified files:
	distrib/sets/lists/base: md.amd64 md.arm64 md.armv7 md.i386 
	                         md.loongson md.macppc md.octeon md.sgi 
	                         md.sparc64 
	distrib/sets/lists/comp: clang.amd64 clang.arm64 clang.armv7 
	                         clang.i386 clang.loongson clang.macppc 
	                         clang.octeon clang.sgi clang.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/23 16:21:06

Added files:
	gnu/llvm/lib/Target/Hexagon: HexagonDepDecoders.h 

Log message:
Re-add files that were previously removed but are now part of LLVM 8.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/23 16:54:06

Modified files:
	print/htmldoc  : Makefile 
Added files:
	print/htmldoc/patches: patch-htmldoc_ps-pdf_cxx 

Log message:
Work around an LLVM 8.0.0 optimizer bug that causes htmldoc to spin.
From FreeBSD


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/06/23 19:21:46

Modified files:
	distrib/notes  : INSTALL 

Log message:
Reference innovations.html.

"can't hurt" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/06/23 20:49:19

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm(4) - whitespace removal


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/06/23 20:52:58

Modified files:
	sys/arch/amd64/stand/libsa: diskprobe.c 

Log message:
Remove a 15 year old #if 0 and wrap a long line (KNF)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/23 21:33:09

Modified files:
	bin/pax        : sel_subs.c tar.c 

Log message:
uid_from_user() and gid_from_user() return -1 when indicating error,
not arbitrary values < 0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/23 22:45:52

Modified files:
	cad/qucs-s     : Makefile 

Log message:
Unbreak build, add missing post-extract to fix win32 end of lines

Spotted by naddy@ Thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/24 00:07:39

Modified files:
	x11/kde4/pim   : Makefile 
Added files:
	x11/kde4/pim/patches: 
	                      patch-kleopatra_libkleopatraclient_core_CMakeLists_txt 

Log message:
unbreak build with ninja 1.9.0


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/24 00:39:49

Modified files:
	usr.sbin/bgpd  : mrt.c rde.h rde_attr.c rde_community.c 

Log message:
mrt dumps lost communities after the community rewrite.
Readd them by dumping them explicitly.
Tested by and OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/24 00:45:06

Modified files:
	sys/dev/usb    : usb_subr.c 

Log message:
Don't retry to get the usb descriptor in usbd_new_device() if the call
timed out. If usbd_get_desc() returns USBD_TIMEOUT the chance is high
that the next call will do the same and it slows down attachement of
devices a lot. Makes reattaching USB at resume a lot faster with my
umb(4) card (which likes to time out).
"move fast and fix things" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/06/24 02:09:06

Modified files:
	sysutils/firmware/intel: Makefile distinfo 

Log message:
update intel microcode to 20190618

-- Updates upon 20190514 release --
Processor	      Identifier     Version	   Products
Model	     Stepping F-MO-S/PI	     Old->New
---- new platforms ----------------------------------------

---- updated platforms ------------------------------------
SNB-E/EN/EP  C1/M0    6-2d-6/6d 0000061d->0000061f Xeon E3/E5, Core X
SNB-E/EN/EP  C2/M1    6-2d-7/6d 00000714->00000718 Xeon E3/E5, Core X


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/24 02:20:02

Modified files:
	usr.bin/tmux   : window.c 

Log message:
Trim trailing spaces when matching.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/24 04:04:29

Modified files:
	usr.bin/tmux   : format.c 

Log message:
Expand arguments to C and s format modifiers (matches m which already expands).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/24 04:12:06

Modified files:
	games/widelands: Makefile distinfo 
	games/widelands/patches: patch-CMakeLists_txt 
	                         patch-cmake_WlFunctions_cmake 
	games/widelands/pkg: PLIST 
Removed files:
	games/widelands/patches: patch-src_graphic_text_bidi_h 
	                         patch-src_network_network_lan_promotion_cc 

Log message:
Update to widelands-0.20.

Release notes:
https://www.widelands.org/news/2019/May/4/widelands-build-20-released/

ok kirby@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 04:55:47

Modified files:
	devel/ruby-opt_parse_validator: Makefile distinfo 

Log message:
simple update 1.7.2 -> 1.7.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 04:56:23

Modified files:
	devel/ruby-ruby-progressbar: Makefile distinfo 

Log message:
simple update 1.10.0 -> 1.10.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 04:58:05

Modified files:
	net/ruby-public_suffix: Makefile distinfo 

Log message:
simple update 3.0.3 -> 3.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 04:59:24

Modified files:
	security/ruby-cms_scanner: Makefile distinfo 

Log message:
simple update 0.5.1 -> 0.5.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 05:00:18

Modified files:
	security/wpscan: Makefile distinfo 

Log message:
simple update 3.5.3 -> 3.5.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 05:02:20

Modified files:
	sysutils/facter: Makefile distinfo 

Log message:
simple update 3.13.2 -> 3.14.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 06:19:10

Modified files:
	net/ruby-msgpack: Makefile distinfo 
	net/ruby-msgpack/pkg: PLIST 

Log message:
simple update 1.2.10 -> 1.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 06:22:17

Modified files:
	security/hcxtools: Makefile distinfo 

Log message:
simple update 5.1.4 -> 5.1.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/24 06:26:34

Modified files:
	x11/kde4/workspace: Makefile 
Added files:
	x11/kde4/workspace/patches: patch-kinfocenter_CMakeLists_txt 
	                            patch-kinfocenter_Modules_base_CMakeLists_txt 

Log message:
unbreak build with ninja 1.9.0


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 06:33:36

Modified files:
	regress/sys/net/rtable/delete: main.c 
	regress/sys/net/rtable/fullfeed: main.c 

Log message:
Fix test after kernel interface change.

From Moritz Buhl


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 06:36:15

Modified files:
	regress/sys/net/rtable: Makefile.inc srp_compat.h 

Log message:
Do not use a warning flag that base gcc does not understand,
and fix the warnings.

From Moritz Buhl


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 06:49:03

Modified files:
	sys/kern       : kern_resource.c 

Log message:
Guard uvm_map_protect() with kernel lock to prepare dosetrlimit()
for unlocking.

OK semarie@ mpi@ deraadt@ anton@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 06:49:54

Modified files:
	sys/kern       : syscalls.master 

Log message:
Unlock getrlimit(2) and setrlimit(2).

OK semarie@ mpi@ deraadt@ anton@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 06:51:05

Modified files:
	sys/kern       : init_sysent.c syscalls.c 
	sys/sys        : syscall.h syscallargs.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/24 07:32:41

Modified files:
	x11/worker     : Makefile distinfo 
	x11/worker/pkg : PLIST 

Log message:
Update to worker-4.0.0
Changelog: http://www.boomerangsworld.de/cms/worker/changes.html#orga4896da


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/24 07:39:37

Modified files:
	gnu/llvm/tools/clang/lib/Driver/ToolChains: OpenBSD.cpp 

Log message:
The -nopie flag has already been pushed a few lines before,
we don't need to do that again here.

From Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/06/24 07:43:19

Modified files:
	sys/net        : if_pppx.c 

Log message:
free(9) sizes.

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 07:44:21

Modified files:
	gnu/llvm/lib/Target/Mips/AsmParser: MipsAsmParser.cpp 

Log message:
Fix a bug in memory operand handling. If a load or store uses a symbol
as a memory operand, the assembler generates incorrect relocations in
PIC mode. As a simple fix, expand the instruction into an address load
sequence, which works, that is followed by the actual memory
instruction.

Note that the generated sequence is not always optimal. If the symbol
has a small offset, the offset could be fused with the memory
instruction. The fix does not achieve that, however. A symbol offset
adds an extra instruction.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 07:47:33

Modified files:
	gnu/llvm/lib/Target/Mips: Mips64InstrInfo.td MipsInstrInfo.td 
	gnu/llvm/lib/Target/Mips/AsmParser: MipsAsmParser.cpp 

Log message:
Implement SGE pseudo-instructions. Needed when building libcrypto.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/24 07:49:57

Modified files:
	graphics/drawpile: Makefile distinfo 
	graphics/drawpile/pkg: PLIST 

Log message:
Update to drawpile-2.1.11
Changelog: https://drawpile.net/news/release-2.1.11/


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 07:52:18

Modified files:
	gnu/llvm/lib/Target/Mips: MipsTargetStreamer.h 
	gnu/llvm/lib/Target/Mips/AsmParser: MipsAsmParser.cpp 
	gnu/llvm/lib/Target/Mips/MCTargetDesc: MipsTargetStreamer.cpp 

Log message:
Implement .cplocal directive. Needed when building libcrypto.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/24 07:59:36

Modified files:
	sys/arch/octeon/conf: Makefile.octeon 

Log message:
Add option to build octeon kernels using clang.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/24 08:22:39

Modified files:
	bin/ksh        : ksh.1 

Log message:
Partial revert of rev. 1.151:
Reference the First Edition (1989) of Bolsky/Korn which is about ksh88,
the shell the OpenBSD ksh(1) descends from (via pdksh).
The Second Edition (1995) of the book is about ksh93 which we don't provide.
Pointed out by Andras Farkas on bugs@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/24 08:25:54

Modified files:
	lang/python    : python.port.mk 

Log message:
change -S MODPY_ABI3SO to -I MODPY_ABI3SO in python.port.mk's UPDATE_PLIST_ARGS;
the former is incorrect as the ".abi3" string is in the middle of the path, not
the end. ok espie@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/24 08:45:52

Modified files:
	usr.bin/doas   : doas.conf.5 

Log message:
add an example hint that shows how original path can be retained


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/24 08:46:36

Modified files:
	archivers/bzip2: Makefile 
Added files:
	archivers/bzip2/patches: patch-decompress_c 

Log message:
fix out of bounds access in BZ2_decompress(), CVE-2019-12900
set HOMEPAGE while there

based on a diff from Henry Jensen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/24 08:47:49

Modified files:
	archivers/bzip2: Tag: OPENBSD_6_5 Makefile 
Added files:
	archivers/bzip2/patches: Tag: OPENBSD_6_5 patch-decompress_c 

Log message:
MFC bzip2 security fix:

fix out of bounds access in BZ2_decompress(), CVE-2019-12900
set HOMEPAGE while there

based on a diff from Henry Jensen


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/24 08:57:56

Modified files:
	usr.bin/mg     : buffer.c 

Log message:
switch-to-buffer (C-x b) doesn't cancel properly if C-g is pressed.
It doesn't show 'Quit'. By returning ABORT, it behaves as expected
when C-g is pressed (like all other functions that use the
minibuffer).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/24 09:00:01

Modified files:
	games/julius   : Makefile distinfo 

Log message:
Update to julius-1.1.0, notified by upstream.
Changelog: https://github.com/bvschaik/julius/releases/tag/v1.1.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/06/24 09:05:17

Modified files:
	bin/ksh        : ksh.1 

Log message:
Fix spelling


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/06/24 09:14:01

Modified files:
	usr.sbin/smtpd : mta_session.c 

Log message:
rename wait queues


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/06/24 09:17:36

Modified files:
	regress/usr.bin/openssl: appstest.sh 

Log message:
Add more options test to ocsp in appstest.sh


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/24 09:53:37

Modified files:
	lang/flang/driver: Makefile distinfo 
	lang/flang/libpgmath: Makefile distinfo 
	lang/flang/flang: Makefile distinfo 
	lang/flang/flang/patches: patch-lib_scutil_pgnewfil_c 
	                          patch-runtime_flangrti_CMakeLists_txt 
Added files:
	lang/flang/driver/patches: patch-lib_Analysis_CallGraph_cpp 

Log message:
Update to latest flang code. Note the major bump to libflangrti, as several
symbols were removed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/24 10:49:48

Log message:
    import depotdownloader, ok solene@
    
    DESCR:
    Steam depot downloader utilizing the SteamKit2 library. Supports
    .NET Core 2.0. Client to download apps and Workshop items from
    Steam.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190624
    
    N ports/games/depotdownloader/Makefile
    N ports/games/depotdownloader/distinfo
    N ports/games/depotdownloader/files/depotdownloader.sh
    N ports/games/depotdownloader/pkg/DESCR
    N ports/games/depotdownloader/pkg/PLIST
    N ports/games/depotdownloader/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/24 10:52:01

Modified files:
	games          : Makefile 

Log message:
+depotdownloader


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/06/24 11:42:01

Modified files:
	faq/ports      : guide.html 

Log message:
Update porting guide to include new PERMIT_PACKAGE and PERMIT_DISTFILES
variables as they are currently used.
OK danj kn solene


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/06/24 12:56:42

Modified files:
	share/man/man1 : portgen.1 

Log message:
The PyPI module for portgen is very useful now, so we should mention it
in the portgen(1) man page.

ok afresh1@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/24 14:50:41

Modified files:
	x11/qt5/qtbase : Makefile 
	x11/qt5/qtbase/patches: 
	                        patch-qmake_generators_unix_unixmake2_cpp 

Log message:
Fix .la files generated by qt5's qmake, there was a missing newline before
a comment resulting in libtool scripts not being able to parse the line
correctly. Problem reported by Vadim Penzin. Use of 'endl' rather than
'\n' requested by rsadowski.

Bumps to follow for other ports using the qt5 module and including .la files.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/24 14:56:46

Modified files:
	math/octave    : Makefile 
	net/bitcoin    : Makefile 
	net/litecoin   : Makefile 
	security/gpgme : Makefile 
	x11/qt5/qt3d   : Makefile 
	x11/qt5/qtcharts: Makefile 
	x11/qt5/qtmultimedia: Makefile 
	x11/qt5/qtnetworkauth: Makefile 
	x11/qt5/qtpurchasing: Makefile 
	x11/qt5/qtquickcontrols2: Makefile 
	x11/qt5/qtremoteobjects: Makefile 
	x11/qt5/qtscript: Makefile 
	x11/qt5/qtscxml: Makefile 
	x11/qt5/qtsensors: Makefile 
	x11/qt5/qtserialbus: Makefile 
	x11/qt5/qtserialport: Makefile 
	x11/qt5/qtspeech: Makefile 
	x11/qt5/qtsvg  : Makefile 
	x11/qt5/qttools: Makefile 
	x11/qt5/qtwebchannel: Makefile 
	x11/qt5/qtwebkit: Makefile 
	x11/qt5/qtwebsockets: Makefile 
	x11/qt5/qtx11extras: Makefile 
	x11/qt5/qtxmlpatterns: Makefile 

Log message:
bump REVISION for ports using x11/qt5 MODULES and containing .la files in
their PLIST, following the addition of patch-qmake_generators_unix_unixmake2_cpp
to x11/qt5/qtbase/patches which adds a missing newline.


CVSROOT:	/cvs
Module name:	ports
Changes by:	steven@cvs.openbsd.org	2019/06/24 15:12:35

Modified files:
	graphics/pstoedit: Makefile distinfo 

Log message:
maintenance update to 3.74


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/24 15:20:12

Modified files:
	lib/libc/sys   : getitimer.2 

Log message:
add missing RETURN VALUES section;
also checked that POSIX requires exactly this behaviour


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 15:29:44

Modified files:
	security/exploitdb: Makefile distinfo 
	security/exploitdb/patches: patch-searchsploit 
	security/exploitdb/pkg: PLIST 

Log message:
Update to 2019-06-22


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/24 15:32:07

Modified files:
	net/rabbitmq   : Makefile 

Log message:
Seems with last update I kind of missed to re-enable MODPY_ADJ_FILES
with correct file paths and broke rabbitmqadmin

Fix that, while there switch to PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/24 15:33:27

Modified files:
	share/man/man4 : Makefile acpi.4 
	sys/arch/amd64/conf: GENERIC RAMDISK_CD 
	sys/dev/acpi   : files.acpi 
Added files:
	share/man/man4 : glkgpio.4 
	sys/dev/acpi   : glkgpio.c 

Log message:
Add glkgpio(4), a driver for the GPIO controllers found on Intel's Gemini
Lake SoC.  From James Hastings.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/24 15:36:53

Modified files:
	sys/net        : if_sppp.h if_spppsubr.c 

Log message:
Use timeout_add_sec(9)

Re-challenge timeouts are made up of single scalar factors which are
multiplied with the time unit lcp.timeout to compute the timeout period.

Simply reduce that unit of 1 * hz [ticks] to 1 [s] and use the appropiate
API.

OK mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/24 16:15:02

Modified files:
	games/depotdownloader: Makefile 
	games/depotdownloader/files: depotdownloader.sh 

Log message:
replace sed(1) delimiter to not conflict with commas in game name; don't replace -app argument to allow using Steam AppId; both bugs reported by Joe (AT j AT mathstodon DOT xyz)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/24 16:26:25

Modified files:
	sys/net        : route.c 

Log message:
Since the recent recursion fix in rtable_walk(), deleting an interface
address could trigger the "rt->rt_ifidx == ifp->if_index" assertion.
In rtflushclone() the ifp that is passed to rtdeletemsg() has been
changed from the route interface to the ifa interface.  Restore the
old behavior and get the route ifp.
found by regress/sys/netinet/carp; OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/24 16:26:28

Modified files:
	databases/skytools: Makefile 
Added files:
	databases/skytools/patches: patch-sql_txid_Makefile 

Log message:
hardcode around a broken Makefile fragment

pg83 = $(shell test $(PGVER) "<" "8.3" && echo "false" || echo "true")
pg82 = $(shell test $(PGVER) "<" "8.2" && echo "false" || echo "true")

which matters now that src/bin/ksh/c_test.c r1.26 fixed "<".

note, this port is rather outdated (5 versions behind), though newer ones
don't fix this either


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/25 00:22:12

Modified files:
	devel/py-gobject3: Makefile distinfo 

Log message:
Update to py-gobject3-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/06/25 01:35:59

Modified files:
	misc/mc        : Makefile distinfo 
	misc/mc/patches: patch-configure 
	misc/mc/pkg    : PLIST 

Log message:
Update to mc-4.8.23.
- update license marker
- switch -PERMIT_PACKAGE_CDROM > -PERMIT_PACKAGE
OK robert@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/25 01:44:20

Modified files:
	usr.sbin/bgpctl: Makefile bgpctl.8 bgpctl.c parser.c parser.h 
Removed files:
	usr.sbin/bgpctl: irr_asset.c irr_output.c irr_parser.c 
	                 irr_prefix.c irrfilter.c irrfilter.h whois.c 

Log message:
Remove irrfilter from bgpctl. The current code is not very useful.
Trying to parse RPSL has shown to be impossible. For now tools like
bgpq3 (in ports) can be used to generate AS and prefix sets based on
IRR data.
OK job@ deraadt@ sthen@ benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/25 01:50:51

Modified files:
	devel/ruby-cri : Makefile distinfo 

Log message:
simple update 2.15.6 -> 2.15.6, not updating to the latest, due to
issues with r10k


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/25 01:52:39

Modified files:
	sysutils/ruby-r10k: Makefile distinfo 
	sysutils/ruby-r10k/pkg: PLIST 

Log message:
simple update 3.2.0 -> 3.3.0
locking dependency to cri to 2.15.6 due to issues with newer version
upstream seems to be aware


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/06/25 02:14:47

Modified files:
	devel/py-html5lib: Makefile distinfo 

Log message:
Update to py-html5lib 1.0.1

Tweaks and OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/06/25 02:17:16

Added files:
	devel/py-html5lib/patches: patch-html5lib_tests_test_stream_py 

Log message:
Enable tests for py-html5lib

From and OK kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/25 03:04:42

Modified files:
	usr.sbin/bgpd  : rde.c 

Log message:
Initialize the peer id of peerself to PEER_ID_SELF before adding it to
peer table. Fixes an endless loop of peer_down errors on shutdown.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/25 04:50:03

Log message:
    import sn0int
    
    sn0int is a semi-automatic OSINT framework and package manager. It was built
    for IT security professionals and bug hunters to gather intelligence about a
    given target or about yourself. sn0int is enumerating attack surface by
    semi-automatically processing public information and mapping the results in a
    unified format for followup investigations.
    
    port from kpcyrd at rxv cc
    
    OK gonzalo@, bentley@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190625
    
    N ports/security/sn0int/Makefile
    N ports/security/sn0int/distinfo
    N ports/security/sn0int/pkg/PLIST
    N ports/security/sn0int/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/06/25 04:51:36

Modified files:
	security       : Makefile 

Log message:
hook up sn0int


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/06/25 05:06:25

Modified files:
	security/nss   : Makefile distinfo 
Removed files:
	security/nss/patches: patch-nss_lib_freebl_crypto_primitives_c 

Log message:
Update to nss 3.44.1, required by upcoming gecko 68.

See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.44.1_release_notes


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/06/25 05:54:02

Modified files:
	misc/openbabel : Makefile 
Added files:
	misc/openbabel/patches: patch-src_formats_pngformat_cpp 
	                        patch-src_formats_yasaraformat_cpp 

Log message:
openbabel: fix narrowing errors on archs where char is unsigned
by default (ppc, arm).

While here, move to PERMIT_PACKAGE.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/25 06:37:05

Modified files:
	sys/dev/usb    : ukspan.c 

Log message:
avoid uninitialised var access

Cody Cutler author of ukspan(4) agrees
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/25 07:51:47

Modified files:
	usr.bin/mg     : dired.c 

Log message:
Add 'dired-revert' to the dired funmap, the 'g' command already works
but I missed adding the command name.  Also, list the commands in
alphabetical order.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/25 07:57:56

Modified files:
	graphics/ansilove: Makefile distinfo 

Log message:
Update ansilove to 4.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/25 08:08:57

Modified files:
	sys/sys        : sysctl.h 

Log message:
move new element p_pledge to the tailof kinfo_proc to increase
backwards-compat handling.
pointed out by sthen, ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/06/25 08:12:44

Modified files:
	sys/dev/ic     : ahci.c 

Log message:
Turn off the code which waits for AHCI_PREG_CMD_CR to be set by the
HBA after ahci_default_port_start() sets AHCI_PREG_CMD_ST. The AHCI
spec. rev. 1.3 only requires the inverse to be true, i. e. that a
HBA clears AHCI_PREG_CMD_CR when AHCI_PREG_CMD_ST gets cleared by
software/driver. In fact, some HBAs will not raise AHCI_PREG_CMD_CR
as an immediate consequence of AHCI_PREG_CMD_ST being set. Actually
neither the FreeBSD, Linux nor NetBSD counterpart of ahci(4) has an
analogous check. Disabling that wait fixes "failed to start command
DMA on port N, disabling" bails during attach.

From Marius Strobl
ok deraadt@ jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/06/25 09:47:28

Modified files:
	sys/kern       : kern_descrip.c 

Log message:
Return EINVAL not EBADF when trying to lock a non-vnode.
This behavior matches POSIX and our own fnctl(2) man page.
OK anton@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/25 10:46:33

Modified files:
	sys/arch/amd64/include: pci_machdep.h 
	sys/arch/amd64/pci: pci_machdep.c 
	sys/arch/arm64/dev: pci_machdep.c 
	sys/arch/arm64/include: pci_machdep.h 
	sys/dev/pci    : pci.c pcivar.h 

Log message:
Implement suspend/resume support for MSI-X interrupts.  Loosely based on
an earlier diff from sf@.

ok jmatthew@, also ok mlarkin@, sf@ for a slightly different earlier version


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/25 11:40:24

Modified files:
	lib/libc/locale: newlocale.3 

Log message:
POSIX.1-2008 TC3 is going to clarify how newlocale(3) uses oldloc.
Explicitly state that our implementation now complies with the
stricter requirements of TC3 because the newlocale(3) in old OpenBSD
releases only complied with the weaker requirements of the old text
of the standard.  The complaints from our users resulted in both
our implementation and the standard being improved.
For details, see: http://austingroupbugs.net/view.php?id=1243#c4347


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/25 13:23:25

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/06/25 13:28:31

Modified files:
	lib/libc/sys   : flock.2 

Log message:
Use the same text for EOPNOTSUPP as we do in fcntl(2) and lockf(3).
In fcntl(2) and lockf(3) the error is EINVAL but the condition is
the same.  OK anton@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/25 14:25:24

Modified files:
	comms/lcdproc  : Makefile 
	databases/mongodb: Makefile 
	devel/cmake    : Makefile 
	devel/libgtop2 : Makefile 
	devel/libuv    : Makefile 
	devel/protozero: Makefile 
	devel/py-uv    : Makefile 
	devel/qbs      : Makefile 
	devel/qt-creator: Makefile 
	devel/radare2/main: Makefile 
	devel/spidermonkey60: Makefile 
	editors/emacs  : Makefile 
	editors/neovim : Makefile 
	emulators/qemu : Makefile 
	graphics/argyll: Makefile 
	inputmethods/fcitx: Makefile 
	lang/chibi-scheme: Makefile 
	lang/erlang/18 : Makefile 
	lang/erlang/19 : Makefile 
	lang/erlang/21 : Makefile 
	lang/moarvm    : Makefile 
	lang/mono      : Makefile 
	lang/node      : Makefile 
	lang/ruby/2.4  : Makefile 
	lang/ruby/2.5  : Makefile 
	lang/ruby/2.6  : Makefile 
	lang/rust      : Makefile 
	mail/mozilla-thunderbird: Makefile 
	misc/rlwrap    : Makefile 
	net/net-snmp   : Makefile 
	net/oidentd    : Makefile 
	net/seafile/client: Makefile 
	net/spectrum   : Makefile 
	net/zabbix     : Makefile 
	security/lastpass-cli: Makefile 
	security/sudo  : Makefile 
	shells/fish    : Makefile 
	sysutils/collectd: Makefile 
	sysutils/conky : Makefile 
	sysutils/consolekit: Makefile 
	sysutils/dtpstree: Makefile 
	sysutils/gkrellm/gkrellm: Makefile 
	sysutils/htop  : Makefile 
	sysutils/libstatgrab: Makefile 
	sysutils/libvirt: Makefile 
	sysutils/monit : Makefile 
	sysutils/p5-Proc-ProcessTable: Makefile 
	sysutils/polkit: Makefile 
	sysutils/pscpug: Makefile 
	sysutils/py-psutil: Makefile 
	sysutils/skill : Makefile 
	sysutils/symon : Makefile 
	sysutils/tmate : Makefile 
	sysutils/whowatch: Makefile 
	sysutils/xps   : Makefile 
	www/aria2      : Makefile 
	www/chromium   : Makefile 
	www/firefox-esr: Makefile 
	www/iridium    : Makefile 
	www/mozilla-firefox: Makefile 
	www/ruby-passenger: Makefile 
	www/seamonkey  : Makefile 
	www/tor-browser/browser: Makefile 
	www/webkitgtk4 : Makefile 
	x11/cool-retro-term: Makefile 
	x11/gnome/tracker: Makefile 
	x11/gnome/tracker-miners: Makefile 
	x11/gnustep/base: Makefile 
	x11/gtk+3      : Makefile 
	x11/kde-applications/konsole: Makefile 
	x11/kde/base3  : Makefile 
	x11/kde4/konsole: Makefile 
	x11/kde4/workspace: Makefile 
	x11/qt5/qtbase : Makefile 
	x11/windowmaker: Makefile 
	x11/xfce4/xfce4-power-manager: Makefile 
	x11/xfce4/xfce4-taskmanager: Makefile 

Log message:
bump REVISION in a bunch of ports known or likely to use struct kinfo_proc,
there may be some missing as my unpacked ports source is a little out of date
but this should catch the main things people might run into

the struct was reordered a second time in sysctl.h r1.192 to improve
compatibility but amd64 snapshot packages made it out before that happened
so the bumps are still needed


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/06/25 15:32:08

Modified files:
	usr.sbin/bgpd  : pfkey.c 

Log message:
cleanup return code checks for the pfkey_*() functions.
ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/06/25 15:33:55

Modified files:
	usr.sbin/bgpd  : mrt.c 

Log message:
ibuf_write() returns -1 on error.
ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/25 16:03:46

Modified files:
	textproc/mupdf : Makefile distinfo 
	textproc/mupdf/patches: patch-Makefile patch-Makerules 
	                        patch-Makethird 
	                        patch-platform_x11_pdfapp_c 
	                        patch-platform_x11_x11_main_c 
	                        patch-source_fitz_load-jpx_c 
	                        patch-source_helpers_pkcs7_pkcs7-openssl_c 
	                        patch-source_pdf_pdf-write_c 
	                        patch-source_tools_mudraw_c 
	                        patch-source_tools_pdfclean_c 
	                        patch-source_tools_pdfextract_c 
	                        patch-source_tools_pdfinfo_c 
	                        patch-source_tools_pdfshow_c 
	textproc/mupdf/pkg: DESCR PLIST 
Removed files:
	textproc/mupdf/patches: patch-platform_x11_curl_stream_c 
	                        patch-platform_x11_jstest_main_c 
	                        patch-thirdparty_lcms2_src_cmsmd5_c 

Log message:
update to mupdf-1.15.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/25 16:04:01

Modified files:
	textproc/zathura/plugins/mupdf: Makefile 

Log message:
bump REVISION; mupdf was updated and this statically links the library


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/25 16:30:56

Modified files:
	sys/arch/sparc64/dev: iommu.c iommureg.h iommuvar.h 
	                      pci_machdep.c psycho.c pyro.c sbus.c 
	                      schizo.c 
	sys/arch/sparc64/include: pci_machdep.h 

Log message:
add support for bypassing iommu translation

managing the translation table entries (TTEs) on an iommu is not
free, and is in fact extremely expensive on some platforms. the
flip side of this is that forcing dma through TTEs does provide
some safety and can help during the development of drivers. however,
this has been less true in recent years than it used to be and is
less of a concern now, especially considering the performance
differences on some platforms.

devices have to create dmamaps with BUS_DMA_64BIT to bypass the
iommu because the memory window presented to hardware with direct
access to memory is at an extremely high address. there's no 32bit
bypass access to memory, it has to go through TTEs otherwise.

on an m4000 there are several orders of magnitude performance
difference between a driver with BUS_DMA_64BIT set and one without
it.

hilariously, sun used a pci bridge on a whole generation of machines
that had broken support for dma addresses over 40 bits (or around
there), so devices behind those pci bridges need to have their
dmamap_creates intercepted and any potential BUS_DMA_64BIT flags
cleared on the way to the iommu drivers. this affects at least v215,
v245, and v445, and probably u25s and u45s. it probably explains
why all their onboard nics and disk controllers feel super slow,
and why there was a meme at sun that bcopy was cheaper than dma
when moving packets on and off a nic.

ok kettenis@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/06/26 01:12:04

Modified files:
	games/gzdoom   : Makefile distinfo 
	games/gzdoom/patches: patch-src_CMakeLists_txt 
	                      patch-src_scripting_vm_vmframe_cpp 
	                      patch-src_sound_mididevices_music_fluidsynth_mididevice_cpp 
Added files:
	games/gzdoom/patches: patch-src_gamedata_textures_animations_cpp 

Log message:
Update to gzdoom-4.1.2

Diff from maintainer Timo Myyra
This version is not compatible with old game saves.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/26 02:13:13

Modified files:
	sys/net        : if_mpe.c if_mpip.c if_mpw.c 

Log message:
The MPLS edge devices get the packets from the MPLS stack which never
passed though pf_test(). So there is no need to try to call
pf_pkt_addr_changed() instead just check that the PF statekey is NULL.
Initial problem of not including pf.h found by jsg@
OK jsg@ sashan@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/06/26 02:46:08

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
reject DATA containing <CR> that's not part of <CRLF> line terminators
as they are not allowed by RFC, have never been generated by a regular
MUA/MTA and can cause issues with some filters if we let them through.

ok jung@ on an earlier version of the diff, eric@ suggested the new diff


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/06/26 02:50:05

Modified files:
	games/gzdoom   : Makefile 
Removed files:
	games/gzdoom/patches: patch-src_textures_animations_cpp 

Log message:
Forgot to delete a patch
revision bump in case


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/26 03:05:36

Modified files:
	sys/dev/pci/drm: drm_mode_config.c 

Log message:
Fix IPL of connector_list_lock.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/26 03:36:06

Modified files:
	sys/net        : if_var.h 
	sys/dev/usb    : if_umb.c 

Log message:
Create IF_WWAN_DEFAULT_PRIORITY which is lower than
IF_WIRELESS_DEFAULT_PRIORITY and use it in umb(4) as default prio.
OK kettenis@, sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/26 03:46:43

Modified files:
	net/unifi      : Makefile.inc 

Log message:
garbage-collect MODJAVA_JRERUN


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/26 03:47:22

Modified files:
	net/unifi/stable: Makefile distinfo 

Log message:
update to unifi-5.10.25


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/26 03:48:45

Modified files:
	security/burpsuite: Makefile 

Log message:
garbage-collect MODJAVA_JRERUN


CVSROOT:	/cvs
Module name:	www
Changes by:	solene@cvs.openbsd.org	2019/06/26 04:45:43

Modified files:
	faq            : current.html 

Log message:
add games/gzdoom information about old saves not being compatible anymore.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/26 06:09:53

Log message:
    companion tool to xwallpaper(1), to create pictures with a given trim box.
    okay kn@
    
    Status:
    
    Vendor Tag:	espie
    Release Tags:	ports
    
    N ports/graphics/aspect-crop/Makefile
    N ports/graphics/aspect-crop/distinfo
    N ports/graphics/aspect-crop/pkg/PLIST
    N ports/graphics/aspect-crop/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/26 06:10:26

Modified files:
	graphics       : Makefile 

Log message:
+aspect-crop


CVSROOT:	/cvs
Module name:	src
Changes by:	reyk@cvs.openbsd.org	2019/06/26 06:13:48

Modified files:
	usr.sbin/relayd: config.c relay.c relayd.c relayd.conf.5 
	                 relayd.h 

Log message:
Add support for OCSP stapling

Many thanks to Bruno Flueckiger who independently sent a very similar
patch.  He also tested the one I'm committing that it works as
expected.

OK tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/26 06:37:59

Modified files:
	net/dhcpcd     : Makefile distinfo 
Removed files:
	net/dhcpcd/patches: patch-src_if-bsd_c 

Log message:
update to dhcpcd-7.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/06/26 06:38:07

Modified files:
	www/buku       : Makefile distinfo 
	www/buku/pkg   : PLIST 

Log message:
Update to buku 4.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/26 07:03:47

Modified files:
	usr.bin/tmux   : layout.c options-table.c screen-redraw.c tmux.h 
	                 window.c 

Log message:
Add #define for the pane status line option position numbers.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/26 07:05:06

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Fix some comments (top/bottom not left/right).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/26 07:05:24

Modified files:
	usr.bin/tmux   : window.c 

Log message:
Log window and pane resizes.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/06/26 07:27:20

Modified files:
	sys/kern       : kern_descrip.c 

Log message:
Return EINVAL, not EBADF for fcntl(fd, F_GETLK) of a non-vnode.
Matches the recent F_SETLK change, POSIX and the man page.


CVSROOT:	/cvs
Module name:	ports
Changes by:	reyk@cvs.openbsd.org	2019/06/26 08:02:36

Modified files:
	sysutils/cloud-agent: Makefile distinfo 

Log message:
Update cloud-agent to v0.9 and adjust WANTLIB.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ratchov@cvs.openbsd.org	2019/06/26 08:14:26

Modified files:
	www/chromium   : Makefile 
	www/chromium/files: sndio_input.cc sndio_input.h sndio_output.cc 
	                    sndio_output.h 

Log message:
Add support for audio recording using sndio.

ok and (a lot) of help from robert.


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/06/26 08:34:03

Modified files:
	sys/arch/sparc64/fpu: fpu_explode.c 

Log message:
Fix sign handling in emulated FP operations on sparc64

Adapted from FreeBSD revision 146673 by Stephen Paskaluk and
stefanf@FreeBSD.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/26 08:39:12

Modified files:
	gnu/llvm/tools/clang/lib/Driver/ToolChains: Gnu.cpp 

Log message:
In LLVM 8 somebody had the glorious idea to enable the integrated assembler
for OpenBSD sparc64. The problem is that the integrated assembler is not
even able to compile the .S files in lib/csu or lib/libc so revert this
and use gas again. Fixes build issues with clang on sparc64.
Issue identified by jca@
OK deraadt@, patrick@, jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/26 09:07:57

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-config_mak_uname 
	                   patch-contrib_svn-fe_Makefile 
	                   patch-gitweb_gitweb_perl 
	                   patch-t_t9117-git-svn-init-clone_sh 
	                   patch-t_test-lib_sh 
	devel/git/pkg  : PLIST-main 

Log message:
Update git to 2.22.0

https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/2.22.0.txt

Fixes, polishing, rewrites under the hood, nothing breaking.

OK benoit


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/26 09:30:47

Modified files:
	net/py-dnspython: Makefile 

Log message:
Remove py-typing from python3 flavor of py-dnspython as it does nothing
for python3.

tweak and OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/06/26 09:51:22

Modified files:
	emulators/stella: Makefile distinfo 
	emulators/stella/pkg: PLIST 

Log message:
Update to stella-6.0.1.
from Tom Murphy, thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/26 10:14:57

Modified files:
	net/powerdns   : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC update to powerdns-4.1.10


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/26 10:42:30

Modified files:
	usr.bin/mg     : def.h funmap.c match.c 

Log message:
This diff makes blink-and-insert do as the man page says it should do.
If you do 'M-x blink-and-insert', you are asked for a character. mg
will then insert it at the current cursor position and then search
backwards for a corresponding match.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/26 10:48:00

Modified files:
	usr.bin/mg     : dired.c 

Log message:
This diff uses the existing filename as the new filename if none is
specified while copying in dired mode.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/26 10:54:29

Modified files:
	usr.bin/mg     : kbd.c log.h log.c 

Log message:
Add some key and map logging.


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2019/06/26 11:04:55

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
allow more video(4) ioctls for the video pledge (required by chromium)

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/26 11:22:41

Modified files:
	www/chromium   : Makefile 
	www/chromium/files: pledge.main unveil.main 
	www/chromium/patches: 
	                      patch-media_capture_video_linux_v4l2_capture_delegate_cc 
Added files:
	www/chromium/patches: 
	                      patch-media_capture_video_linux_fake_v4l2_impl_cc 
	                      patch-media_capture_video_linux_fake_v4l2_impl_h 
	                      patch-media_capture_video_linux_v4l2_capture_delegate_h 
	                      patch-media_capture_video_linux_v4l2_capture_device_h 
	                      patch-media_capture_video_linux_v4l2_capture_device_impl_cc 
	                      patch-media_capture_video_linux_v4l2_capture_device_impl_h 
	                      patch-media_capture_video_linux_video_capture_device_factory_linux_cc 
	                      patch-media_capture_video_linux_video_capture_device_factory_linux_h 

Log message:
unbreak video(4) support by using the proper type for ioctl(2)'s request
argument and add the necessary pledge to the main process and unveil /dev/video


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/06/26 11:59:40

Modified files:
	faq            : current.html 

Log message:
Mention removal of bgpctl irrfilter. Reminded by job@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/26 12:28:31

Modified files:
	usr.bin/tmux   : cmd-display-panes.c server-client.c 

Log message:
Pass keys that aren't 0-9 on to normal key processing when display-panes
is active (restores previous behaviour).


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/26 12:44:22

Modified files:
	usr.bin/tmux   : layout.c window.c 

Log message:
Fix a typo in window_pane_find_down (w not wp) and a missing PANE_STATUS_TOP.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/26 13:09:58

Modified files:
	devel/py-atomicwrites: Makefile distinfo 

Log message:
Updated devel/py-atomicwrite 1.1.5 -> 1.3.0

Converted to PERMIT_PACKAGE and added MODPY_PYTEST

ok sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/06/26 13:31:24

Modified files:
	.              : plus.html 

Log message:
Plus for June 12 - June 24
input and OK florian


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/06/26 15:01:20

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
Use timeout_add_msec(9)

To initiate LED blinking, simply kick of the timer after the blinking
rate's period rather than one tick to get red of the last hardclock(9)
based timeout in this driver.  The now increased delay is compensated by
also turning on the LED immediately.

OK stsp


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/26 15:13:23

Modified files:
	lib/libc/stdio : printf.3 

Log message:
The POSIX-compatible way of checking for {v,}{f,s,sn,d}printf(3)
failure is with < 0, not the more specific -1 from C
discussed at length with millert, nicm, schwarze


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/26 15:19:56

Modified files:
	lang/lucee     : Makefile 

Log message:
https MASTER_SITES


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/26 16:19:35

Modified files:
	net/bgpq3      : Makefile distinfo 

Log message:
update to bgpq3-0.1.35

amongst other things this converts queries that use asdot format
to asplain, newer IRRd doesn't support asdot


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/06/26 16:29:43

Modified files:
	usr.bin/ssh    : clientloop.c 

Log message:
Remove unneeded unlink of xauthfile on error path.  From Erik Sj��lund via
github, ok djm@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/26 16:40:05

Modified files:
	lib/libc/stdio : printf.3 

Log message:
an -> a;


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/26 22:29:35

Modified files:
	regress/lib/libcrypto/base64: base64test.c 

Log message:
check for asprintf failing allocation


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/06/26 23:05:49

Modified files:
	security/polarssl: Makefile distinfo 
	security/polarssl/patches: patch-CMakeLists_txt 
	security/polarssl/pkg: PLIST 

Log message:
Update to mbedtls-2.16.2.

Maintenance release. Release notes can be found at
https://tls.mbed.org/tech-updates/releases/mbedtls-2.16.2-and-2.7.11-released

Bump minor of libmbedx509 as symbols have been added.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/06/26 23:14:50

Modified files:
	usr.sbin/smtpd : lka.c lka_proc.c smtpd.c smtpd.h 

Log message:
Allow filters to log information through stderr. This simplifies and
unifies the way filters need to get their logging to the right location.

Log-messages are read line by line and are logged at LOG_ERR level via
the lookup process.

OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/06/26 23:26:37

Modified files:
	lib/libc/asr   : gethostnamadr_async.c 

Log message:
If we don't receive a reply packet the res_send subquery will already have
set subq_h_errno and ar_count. Remove the ar_datalen == -1 check, so we
set ar_h_errno and don't have to (wrongly) guess that
ar_h_errno = HOST_NOT_FOUND.

This makes sure that if no nameserver responds the h_errno value is set to
TRY_AGAIN instead of HOST_NOT_FOUND.

OK eric@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/06/27 00:29:35

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
fix NULL deference (bzero) on error path added in last commit;
spotted by Reynir Bj��rnsson

ok deraadt@ markus@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/27 00:41:36

Modified files:
	bin/ed         : io.c 

Log message:
Be precise in checking for errors. pclose(3) returns -1 and fclose(3)
EOF in case of errors, not any negative number.
EOF corner case spotted while reviewing a much bigger diff by deraadt

OK deraadt, millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/27 01:17:09

Modified files:
	graphics/aspect-crop: Makefile distinfo 

Log message:
minor update


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/27 01:19:07

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
minor update


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/06/27 01:21:52

Modified files:
	www/bozohttpd  : Makefile distinfo 

Log message:
Update to bozohttpd-20190228.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/06/27 01:39:08

Modified files:
	devel/p5-Test-Strict: Makefile distinfo 

Log message:
Update to p5-Test-Strict-0.52.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/27 03:30:58

Modified files:
	share/man/man8 : bulk.8 

Log message:
be more realistic


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/06/27 03:34:06

Modified files:
	regress/usr.bin/openssl: appstest.sh 

Log message:
Add more option tests to req, ts, x509 and verify in appstest.sh


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/27 03:47:16

Modified files:
	sbin/slaacd    : engine.c 

Log message:
free_dfr_proposal() does the LIST_REMOVE for us; do not run it twice


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/06/27 03:48:16

Modified files:
	sbin/slaacd    : engine.c 

Log message:
let free_address_proposal() handle the LIST_REMOVE, like free_dfr_proposal()


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/27 05:52:59

Modified files:
	lib/libc/stdio : printf.3 

Log message:
Simplify the description of [v]snprintf(3), move the description
of the return values to RETURN VALUES, deprecate [v]sprintf(3)
and fix a punctuation typo.
Joint work with and OK millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/27 06:19:39

Modified files:
	usr.bin/mandoc : man_term.c mdoc_term.c 

Log message:
Improve "man -h" output.
1. For pages lacking a SYNOPSIS, show the NAME section rather than nothing.
2. Do not print a stray blank before the beginning of a SYNOPSIS.
Both issues reported by, and patch OK'ed by, tb@.


CVSROOT:	/cvs
Module name:	src
Changes by:	kili@cvs.openbsd.org	2019/06/27 07:10:49

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
Move the check wether line is NULL above further accesses of it.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/06/27 07:48:08

Modified files:
	www/tor-browser: Tag: OPENBSD_6_5 Makefile.inc 
	www/tor-browser/browser: Tag: OPENBSD_6_5 Makefile distinfo 
	www/tor-browser/browser/patches: Tag: OPENBSD_6_5 
	                                 patch-build_moz_configure_init_configure 
	www/tor-browser/https-everywhere: Tag: OPENBSD_6_5 Makefile 
	                                  distinfo 
	www/tor-browser/noscript: Tag: OPENBSD_6_5 Makefile distinfo 
	www/tor-browser/tor-launcher: Tag: OPENBSD_6_5 Makefile 
	www/tor-browser/tor-launcher/patches: Tag: OPENBSD_6_5 
	                                      patch-Makefile 
	www/tor-browser/torbutton: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to tor-browser-8.0.9

ok maintainer
restore extensions due to SSL certificates expiration


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/06/27 07:51:01

Modified files:
	net/znc        : Makefile distinfo 

Log message:
Update to znc-1.7.4

ok maintainer
patch from Hiltjo Posthuma

Fix CVE-2019-12816


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/06/27 07:51:55

Modified files:
	net/znc        : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to znc-1.7.4

ok maintainer
patch from Hiltjo Posthuma

Fix CVE-2019-12816


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/27 07:52:00

Modified files:
	devel/openmpi  : Makefile distinfo 
	devel/openmpi/pkg: DESCR PLIST 
Added files:
	devel/openmpi/patches: 
	                       patch-ompi_mca_io_romio321_romio_adio_common_ad_fstype_c 
Removed files:
	devel/openmpi/patches: 
	                       patch-ompi_contrib_vt_vt_tools_compwrap_compwrap_cc 
	                       patch-ompi_mca_btl_tcp_btl_tcp_component_c 
	                       patch-ompi_mca_io_romio_romio_adio_common_ad_fstype_c 
	                       patch-opal_asm_base_MIPS_asm 
	                       patch-opal_include_opal_config_h_in 
	                       patch-opal_util_if_c 
	                       patch-orte_mca_oob_tcp_oob_tcp_c 

Log message:
Major update to openmpi-4.0.1

From Martin Reindl (martin@) with input from sthen@ and me.  ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/27 08:20:13

Modified files:
	graphics/ffmpeg: Makefile 
Added files:
	graphics/ffmpeg/patches: patch-libavformat_aacdec_c 

Log message:
avformat/aacdec: fix demuxing of small frames

Fixes playback (mpv, mplayer...) of the .m4a files produced by my phone.
Fix picked from upstream, help and ok sthen@, ok Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/27 09:05:14

Modified files:
	usr.bin/mandoc : man_validate.c mandoc.c mdoc_validate.c 

Log message:
Fix mandoc_normdate() and the way it is used.
In the past, it could return NULL but the calling code wasn't prepared
to handle that.  Make sure it always returns an allocated string.
While here, simplify the code by handling the "quick" attribute
inside mandoc_normdate() rather than at multiple callsites.

Triggered by deraadt@ pointing out
that snprintf(3) error handling was incomplete in time2a().


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/27 09:17:41

Modified files:
	usr.bin/tmux   : colour.c grid.c input.c screen-write.c style.c 
	                 tmux.1 tmux.h tty-term.c tty.c 

Log message:
Add support for underscore colours with Setulc capability, mostly from
Kai Moschcau.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/06/27 09:18:42

Modified files:
	usr.sbin/ntpd  : log.c ntp.c ntp_dns.c ntpd.c ntpd.h 
Added files:
	usr.sbin/ntpd  : log.h 

Log message:
Allow logging to both stderr and syslog; don't reset the log level if
the log destination changes. ok claudio@ benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/27 09:48:59

Modified files:
	games/dxx-rebirth: Makefile 

Log message:
mark BROKEN on clang archs, pending update


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/06/27 09:53:11

Modified files:
	games/depotdownloader: Makefile distinfo 

Log message:
update to depotdownloader 2.3.1, fixing CDN server bootstrapping

ok brynet@
ok kn@ with some helpful nits, thanks!
Left LICENSE as GLPv2 for now after discussion with sthen@ and
bentley@. Upstream needs to add/clarify copyright terms which I will
bring up with them.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/27 09:59:57

Modified files:
	devel/py-progress: Makefile distinfo 
	devel/py-progress/pkg: PLIST 

Log message:
Maintainer update devel/py-progress 1.5 -> 1.6

From maintainer Timo Myyr with tweaks by me

OK kn@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/27 10:01:52

Modified files:
	audio/mscore   : Makefile distinfo 
	audio/mscore/patches: patch-mscore_CMakeLists_txt 

Log message:
Update to musescore-3.2
Announcement: https://musescore.org/en/3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/27 10:03:23

Modified files:
	devel/py-modulegraph: Makefile distinfo 

Log message:
Update devel/py-modulegraph 0.16 -> 0.17

OK kn@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/27 10:08:12

Modified files:
	usr.bin/mg     : dired.c 

Log message:
This diff uses the existing filename as the new filename if none is
specified while renaming in dired mode, and new file location is in a
different directory.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/27 10:13:01

Modified files:
	usr.bin/mg     : dired.c 

Log message:
Print out message after copying a file.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/27 10:30:39

Modified files:
	lib/libc/stdlib: atexit.3 

Log message:
The C89 standard only requires that atexit(3) returns a non-zero value
on error, so checking for -1 only is potentially non-portable.
Also mention that the C89 standard does not require errno to be set.
OK deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/06/27 10:55:08

Modified files:
	usr.bin/mg     : dired.c 

Log message:
Display an error message if trying to copy or rename a file to itself.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/27 11:29:16

Modified files:
	share/man/man8 : bulk.8 
	usr.bin/tmux   : tmux.1 

Log message:
minor eol issues;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/27 11:31:37

Modified files:
	x11/i3-mousedrag: Makefile 
Added files:
	x11/i3-mousedrag/patches: patch-Makefile_am 
Removed files:
	x11/i3-mousedrag/patches: patch-Makefile_in patch-configure 

Log message:
use CONFIGURE_STYLE=autoreconf for x11/i3-mousedrag.

annoying one because it had patches in autoconf-generated files (inherited
from x11/i3).


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/27 11:55:42

Modified files:
	sys/dev/pci    : nvme_pci.c 

Log message:
Enable MSI-X interrupts.

ok patrick@, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/27 12:03:37

Modified files:
	bin/ksh        : edit.c 
	usr.bin/jot    : jot.c 
	usr.bin/mktemp : mktemp.c 
	usr.bin/nc     : netcat.c 
	usr.bin/rsync  : flist.c log.c mktemp.c 
	usr.bin/ssh    : auth-options.c hostfile.c misc.c sshkey-xmss.c 
	usr.bin/unifdef: unifdef.c 
	usr.sbin/ldapctl: ldapctl.c 
	usr.sbin/ldapd : namespace.c 

Log message:
Some asprintf() calls were checked < 0, rather than the precise == -1.
ok millert nicm tb, etc


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/27 12:10:06

Modified files:
	usr.bin/su     : su.1 

Log message:
Partial rewrite of the explanation of environment handling to avoid:
- making statements then taking them back
- different order of explanation for different options
- gratuitous variations of wordings
- misplacing talk about real and effective IDs below ENVIRONMENT
- omitting some relevant variables from the ENVIRONMENT section
"reads OK" jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/06/27 12:11:53

Modified files:
	share/man/man9 : delay.9 

Log message:
DESCRIPTION: Be more direct about what delay(9) actually does.

While here, "delay" -> "interval", "busy wait" -> "busy-wait".

With input from jmc@.

"no objections" schwarze@, "reads ok" jmc@, ok ratchov@ kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/27 12:33:17

Modified files:
	textproc/ruby-rouge: Makefile distinfo 
	textproc/ruby-rouge/pkg: PLIST 

Log message:
Update ruby-rouge to 3.5.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/27 12:54:45

Modified files:
	net/p5-MaxMind-DB-Reader: Makefile distinfo 

Log message:
Update p5-MaxMind-DB-Reader to 1.000014.

This module is deprecated and will only receive fixes for major bugs and
security vulnerabilities. New features and functionality will not be added.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/27 12:57:09

Modified files:
	net/p5-MaxMind-DB-Reader-XS: Makefile distinfo 

Log message:
Update p5-MaxMind-DB-Reader-XS to 1.000008.

This module is deprecated and will only receive fixes for major bugs and
security vulnerabilities. New features and functionality will not be added.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/27 13:05:23

Modified files:
	net/p5-GeoIP2  : Makefile distinfo 

Log message:
Update p5-GeoIP2 to 2.006002.

This module is deprecated and will only receive fixes for major bugs and
security vulnerabilities. New features and functionality will not be added.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/27 15:15:19

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/patches: patch-client_CMakeLists_txt 
	                           patch-cmake_install_macros_cmake 
	                           patch-cmake_mysql_version_cmake 
	                           patch-scripts_CMakeLists_txt 
	                           patch-scripts_mysql_install_db_sh 
	                           patch-scripts_mysqld_safe_sh 
	                           patch-sql_CMakeLists_txt 
	                           patch-storage_connect_reldef_cpp 
	                           patch-storage_oqgraph_CMakeLists_txt 
	databases/mariadb/pkg: PLIST-server PLIST-tests 
Removed files:
	databases/mariadb/patches: patch-tests_CMakeLists_txt 

Log message:
update to mariadb-10.3.16, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/06/27 17:04:20

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190623


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/27 19:23:50

Modified files:
	usr.bin/ssh    : hostfile.c 

Log message:
oops, from asou


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/27 23:22:13

Modified files:
	usr.sbin/bgpctl: mrtparser.c 

Log message:
Implement the bits and pieces that are needed to dump MRT_DUMP_V2_RIB_GENERIC
messages and BGP MPLS VPNs.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/27 23:33:35

Modified files:
	lib/libutil    : pidfile.c 
	usr.bin/cap_mkdb: cap_mkdb.c 
	usr.sbin/netgroup_mkdb: netgroup_mkdb.c 

Log message:
atexit() returns -1 on failure


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/27 23:35:35

Modified files:
	bin/csh        : dol.c 
	bin/pax        : tables.c 
	lib/libedit    : vi.c 
	lib/libsndio   : aucat.c 
	usr.bin/diff   : diffreg.c 
	usr.bin/ftp    : util.c 
	usr.bin/m4     : eval.c 
	usr.bin/mktemp : mktemp.c 
	usr.bin/newsyslog: newsyslog.c 
	usr.bin/patch  : patch.c 
	usr.bin/rdist  : message.c 
	usr.bin/rdistd : server.c 
	usr.bin/unifdef: unifdef.c 
	usr.sbin/smtpd : smtpd.c 
	usr.sbin/user  : user.c 

Log message:
mkstemp() returns -1 on failure


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/27 23:44:10

Modified files:
	usr.bin/cvs    : xmalloc.c 
	usr.bin/diff   : xmalloc.c 
	usr.bin/file   : xmalloc.c 
	usr.bin/less   : main.c 
	usr.bin/rcs    : xmalloc.c 
	usr.bin/ssh    : auth2.c 
	usr.bin/tmux   : xmalloc.c 

Log message:
asprintf returns -1, not an arbitrary value < 0.  Also upon error the
(very sloppy specification) leaves an undefined value in *ret, so it is
wrong to inspect it, the error condition is enough.
discussed a little with nicm, and then much more with millert until we
were exasperated


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/27 23:47:28

Modified files:
	regress/usr.sbin/bgpd/integrationtests: mrt.sh 

Log message:
Remove some debug echos


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/27 23:47:57

Modified files:
	lib/libcrypto/bio: b_print.c 

Log message:
failed to detect asprintf() error by observing return of -1, instead the
code was inspecting the pointer (which is, sadly, undefined on error, because
the current specification of asprintf is crazy sloppy)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/27 23:48:07

Modified files:
	regress/usr.sbin/bgpd/integrationtests: mrt-table-v2.ok 

Log message:
bgpct can now dump the BGP MPLS VPN entries as well. Adjust output file.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/27 23:49:31

Modified files:
	lib/libcxx/include: locale 

Log message:
local __libcpp_asprintf_l() -> libc asprintf() was inspecting the pointer
(with inderminate value) for failure, rather than the return value of -1
ok mortimer


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/27 23:51:43

Modified files:
	sys/arch/sh/sh : trap.c 

Log message:
landisk/sh didn't have the code for checking if sp is on MAP_STACK
memory, so let's add that where it seems to work
gap noticed by miod


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/06/28 00:05:07

Modified files:
	usr.sbin/smtpd : lka_filter.c 

Log message:
switch timestamps to use timevals in filters like we do in reporting


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/28 00:45:23

Log message:
    Import armips-0.10.0.
    
    armips is an assembler and linker that includes full support for the MIPS
    R3000, MIPS R4000, and Allegrex instruction sets, partial support for the
    EmotionEngine instruction set, as well as complete support for the ARM7 and
    ARM9 instruction sets, both THUMB and ARM mode.
    
    Some of the other features include a full-fledged C-like expression parser,
    the ability to overlay assembled output over an existing file, and table
    support for user-defined text encodings.
    
    ok benoit@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190628
    
    N ports/devel/armips/Makefile
    N ports/devel/armips/distinfo
    N ports/devel/armips/pkg/DESCR
    N ports/devel/armips/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/06/28 00:47:02

Modified files:
	devel          : Makefile 

Log message:
+armips


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/28 01:25:37

Modified files:
	net/iperf3     : Makefile distinfo 
	net/iperf3/patches: patch-src_iperf_api_c 
Added files:
	net/iperf3/patches: patch-src_timer_c 
Removed files:
	net/iperf3/patches: patch-src_Makefile_in patch-src_iperf_udp_c 

Log message:
update to iperf-3.7

- disable the auth code; it's likely to have issues on 32-bit arches
(wrong format strings for variable sizes) and has an sscanf that doesn't
seem like a great idea. can be reviewed if anyone is actually using that...

- switch from github on-the-fly generated tarballs to proper uploaded ones

ok lteo (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/28 03:14:37

Modified files:
	usr.sbin/bgpd  : session.c 

Log message:
Reset rpending (read pending) indicator for a peer when the peer goes down
and the read buffer is cleared. Also make sure that the poll timeout is
only reduced to 0 if rpending is set and the read buffer has data to process.
This should fix a problem within the SE causing it to spin with a poll
timeout of 0.
OK phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/06/28 05:05:11

Modified files:
	devel/openmpi  : Makefile 
	devel/openmpi/patches: 
	                       patch-ompi_mca_io_romio321_romio_adio_common_ad_fstype_c 

Log message:
Cleaner filesystem detection.

Our diff to convert statfs.f_type tests to statfs.f_fstypename was
broken, since it used pointer equality tests for strings.

Fortunately the default FS type is UFS and upstream tests for NFS using
statfs.f_fstypename, so we only need to neuter tests based on
statfs.f_type.

ok martin@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/06/28 06:12:06

Modified files:
	usr.sbin/bgpctl: bgpctl.8 parser.c 

Log message:
The bgpctl parser can not handle neighbor and neighbors at the same time.
It will always complain that neighbor is ambiguous. Switch neighbors to
peers to resolve the issue.


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/06/28 06:33:45

Modified files:
	security/libssh2: Makefile distinfo 
	security/libssh2/patches: patch-tests_Makefile_in 
	security/libssh2/pkg: PLIST 

Log message:
Update to libssh2-1.9.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/28 06:56:04

Modified files:
	lib/libc/gen   : getcwd.3 

Log message:
delete duplicate .Xr below SEE ALSO


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/28 07:25:09

Modified files:
	sys/kern       : vfs_subr.c 

Log message:
Skip VFS barrier lock during normal operation to reduce overhead.
This removes a system-wide serialization point, which might help
finding timing-related bugs.

OK deraadt@ anton@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/28 07:28:21

Modified files:
	etc/etc.arm64  : disktab 

Log message:
miniroot prototype disklabels should attempt to contain accurate
prototype information (in this case, the miniroot-building code is
completely lovecraft)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/28 07:32:53

Modified files:
	lib/libc/gen   : alarm.c auth_subr.c authenticate.c ftok.c fts.c 
	                 getloadavg.c getmntinfo.c initgroups.c 
	                 login_cap.c nlist.c popen.c posix_spawn.c 
	                 scandir.c siginterrupt.c signal.c time.c 
	                 times.c 
	lib/libc/gmon  : gmon.c 
	lib/libc/hash  : helper.c 
	lib/libc/locale: rune.c 
	lib/libc/net   : rcmdsh.c rresvport.c ruserok.c 
	lib/libc/rpc   : auth_unix.c bindresvport.c clnt_tcp.c 
	                 clnt_udp.c pmap_rmt.c svc_tcp.c svc_udp.c 
	                 xdr_stdio.c 
	lib/libc/stdio : fdopen.c fopen.c fseek.c makebuf.c remove.c 
	lib/libc/stdlib: malloc.c 
	lib/libc/termios: tcgetpgrp.c tcgetsid.c 
	lib/libc/time  : localtime.c 
	lib/libedit    : readline.c 
	lib/libevent   : evutil.c 
	lib/libfuse    : fuse.c 
	lib/libkeynote : keynote-sign.c keynote-sigver.c 
	                 keynote-verify.c 
	lib/libkvm     : kvm.c kvm_proc.c 
	lib/libossaudio: ossaudio.c 
	lib/libpcap    : inet.c pcap-bpf.c 
	lib/libsndio   : sio_sun.c 
	lib/libusbhid  : descr.c 
	lib/libutil    : check_expire.c getmaxpartitions.c 
	                 getrawpartition.c logout.c logwtmp.c passwd.c 
	                 readlabel.c uucplock.c 
	sbin/badsect   : badsect.c 
	sbin/bioctl    : bioctl.c 
	sbin/clri      : clri.c 
	sbin/dhclient  : dhclient.c 
	sbin/disklabel : disklabel.c 
	sbin/dump      : dumprmt.c itime.c main.c tape.c 
	sbin/dumpfs    : dumpfs.c 
	sbin/fsck      : fsck.c fsutil.c 
	sbin/fsck_ext2fs: setup.c 
	sbin/fsck_ffs  : setup.c 
	sbin/fsck_msdos: check.c 
	sbin/fsirand   : fsirand.c 
	sbin/growfs    : growfs.c 
	sbin/ifconfig  : brconfig.c ifconfig.c 
	sbin/iked      : ocsp.c parse.y 
	sbin/init      : init.c 
	sbin/ipsecctl  : pfkey.c 
	sbin/isakmpd   : if.c ike_auth.c monitor.c policy.c util.c 
	                 virtual.c 
	sbin/kbd       : kbd_wscons.c 
	sbin/ldattach  : ldattach.c 
	sbin/mknod     : mknod.c 
	sbin/mount     : getmntopts.c mount.c 
	sbin/mount_cd9660: mount_cd9660.c 
	sbin/mount_ext2fs: mount_ext2fs.c 
	sbin/mount_ffs : mount_ffs.c 
	sbin/mount_msdos: mount_msdos.c 
	sbin/mount_ntfs: mount_ntfs.c 
	sbin/mount_udf : mount_udf.c 
	sbin/mount_vnd : mount_vnd.c 
	sbin/mountd    : mountd.c 
	sbin/ncheck_ffs: ncheck_ffs.c 
	sbin/newfs     : newfs.c 
	sbin/newfs_ext2fs: newfs_ext2fs.c 
	sbin/nfsd      : nfsd.c 
	sbin/nologin   : nologin.c 
	sbin/pfctl     : pfctl.c pfctl_optimize.c pfctl_osfp.c 
	                 pfctl_parser.c pfctl_queue.c pfctl_radix.c 
	sbin/pflogd    : pflogd.c privsep.c 
	sbin/ping      : ping.c 
	sbin/quotacheck: quotacheck.c 
	sbin/restore   : dirs.c symtab.c tape.c utilities.c 
	sbin/savecore  : savecore.c 
	sbin/scan_ffs  : scan_ffs.c 
	sbin/slaacd    : frontend.c slaacd.c 
	sbin/swapctl   : swapctl.c swaplist.c 
	sbin/sysctl    : sysctl.c 
	sbin/umount    : umount.c 
	sbin/unwind    : frontend.c unwind.c 
	sbin/vnconfig  : vnconfig.c 
	sbin/wsconsctl : display.c keyboard.c mouse.c wsconsctl.c 
	usr.sbin/acme-client: http.c util.c 
	usr.sbin/amd/amd: amd.c rpc_fwd.c 
	usr.sbin/apm   : apm.c 
	usr.sbin/apmd  : apmd.c 
	usr.sbin/arp   : arp.c 
	usr.sbin/authpf: authpf.c 
	usr.sbin/bgpd  : pftable.c 
	usr.sbin/config: exec_elf.c 
	usr.sbin/cron  : atrun.c crontab.c database.c do_command.c 
	                 popen.c 
	usr.sbin/dhcpd : pfutils.c udpsock.c 
	usr.sbin/dvmrpd: interface.c kmroute.c 
	usr.sbin/edquota: edquota.c 
	usr.sbin/eeprom: ophandlers.c optree.c 
	usr.sbin/eigrpd: interface.c 
	usr.sbin/fdformat: fdformat.c 
	usr.sbin/ftp-proxy: ftp-proxy.c 
	usr.sbin/hostapd: hostapd.c privsep.c roaming.c 
	usr.sbin/hostctl: hostctl.c 
	usr.sbin/httpd : parse.y server.c 
	usr.sbin/ifstated: ifstated.c 
	usr.sbin/inetd : inetd.c 
	usr.sbin/installboot: armv7_installboot.c bootstrap.c 
	                      i386_installboot.c i386_nlist.c 
	                      i386_softraid.c installboot.c 
	                      sparc64_installboot.c sparc64_softraid.c 
	usr.sbin/kgmon : kgmon.c 
	usr.sbin/kvm_mkdb: kvm_mkdb.c nlist.c testdb.c 
	usr.sbin/ldapd : ldape.c 
	usr.sbin/ldpd  : interface.c kroute.c neighbor.c socket.c 
	usr.sbin/lpd   : lpd.c parse.y 
	usr.sbin/map-mbone: mapper.c 
	usr.sbin/memconfig: memconfig.c 
	usr.sbin/mksuncd: mksuncd.c 
	usr.sbin/mkuboot: mkuboot.c 
	usr.sbin/mrinfo: mrinfo.c 
	usr.sbin/mrouted: cfparse.y config.c igmp.c kern.c main.c 
	                  prune.c rsrr.c vif.c 
	usr.sbin/mtrace: mtrace.c 
	usr.sbin/mtree : compare.c crc.c create.c 
	usr.sbin/ndp   : ndp.c 
	usr.sbin/npppctl: npppctl.c 
	usr.sbin/ntpd  : constraint.c ntpd.c 
	usr.sbin/ocspcheck: http.c 
	usr.sbin/ospf6d: interface.c 
	usr.sbin/ospfd : interface.c 
	usr.sbin/pcidump: pcidump.c 
	usr.sbin/portmap: portmap.c 
	usr.sbin/pppd  : sys-bsd.c 
	usr.sbin/pwd_mkdb: pwd_mkdb.c 
	usr.sbin/rad   : frontend.c rad.c 
	usr.sbin/radiusd: radiusd.c radiusd_module.c radiusd_radius.c 
	usr.sbin/rarpd : arptab.c rarpd.c 
	usr.sbin/rbootd: bpf.c parseconf.c rbootd.c rmpproto.c 
	usr.sbin/rdate : ntp.c rfc868time.c 
	usr.sbin/relayd: check_icmp.c parse.y relay.c 
	usr.sbin/ripd  : interface.c 
	usr.sbin/rmt   : rmt.c 
	usr.sbin/route6d: route6d.c 
	usr.sbin/rpc.lockd: lockd_lock.c 
	usr.sbin/rpki-client: io.c main.c 
	usr.sbin/sasyncd: conf.y 
	usr.sbin/sensorsd: sensorsd.c 
	usr.sbin/smtpd : crypto.c mail.maildir.c mail.mboxfile.c mda.c 
	                 mproc.c mta_session.c parse.y queue_fs.c smtp.c 
	                 smtp_session.c smtpd.c table_db.c util.c 
	usr.sbin/snmpd : mib.c pf.c 
	usr.sbin/switchd: ofcconn.c 
	usr.sbin/syslogd: evbuffer_tls.c privsep.c syslogd.c ttymsg.c 
	usr.sbin/tcpdump: pfctl_osfp.c privsep.c privsep_pcap.c 
	                  tcpdump.c util.c 
	usr.sbin/tftpd : tftpd.c 
	usr.sbin/traceroute: traceroute.c worker.c 
	usr.sbin/user  : user.c 
	usr.sbin/vipw  : vipw.c 
	usr.sbin/vmd   : priv.c vm.c vmd.c vmm.c 
	usr.sbin/wsfontload: wsfontload.c 
	usr.sbin/wsmoused: mouse_protocols.c 
	usr.sbin/ypbind: ypbind.c 
	usr.sbin/ypldap: ldapclient.c 
	games/atc      : log.c 
	games/grdc     : grdc.c 
	games/hack     : hack.bones.c hack.do.c hack.main.c hack.pager.c 
	                 hack.save.c hack.tty.c makedefs.c 
	games/hangman  : ksyms.c 
	games/hunt/hunt: list.c 
	games/mille    : save.c varpush.c 
	games/monop    : execute.c 
	games/phantasia: setup.c 
	games/robots   : main.c score.c 
	games/sail     : misc.c pl_1.c sync.c 
	games/snake    : snake.c 
	games/tetris   : scores.c screen.c 
	distrib/special/more: more.c 
	libexec/fingerd: fingerd.c 
	libexec/ftpd   : ftpcmd.y ftpd.c logutmp.c logwtmp.c monitor.c 
	                 popen.c 
	libexec/getty  : main.c 
	libexec/login_radius: raddauth.c 
	libexec/login_skey: login_skey.c 
	libexec/login_token: login_token.c tokendb.c 
	libexec/mail.local: mail.local.c 
	libexec/rpc.rquotad: rquotad.c 
	libexec/rpc.rstatd: rstat_proc.c rstatd.c 
	libexec/rpc.rusersd: rusers_proc.c rusersd.c 
	libexec/rpc.rwalld: rwalld.c 
	libexec/spamd  : sync.c 
	libexec/spamlogd: spamlogd.c 
	libexec/talkd  : announce.c talkd.c 

Log message:
When system calls indicate an error they return -1, not some arbitrary
value < 0.  errno is only updated in this case.  Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/28 07:33:55

Modified files:
	usr.sbin/config: mkioconf.c mkmakefile.c mkswap.c 

Log message:
fputc/fputs return EOF on error


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/28 07:35:05

Modified files:
	bin/cat        : cat.c 
	bin/chio       : chio.c 
	bin/cp         : cp.c utils.c 
	bin/csh        : csh.c dir.c file.c func.c lex.c proc.c sem.c 
	bin/date       : date.c 
	bin/dd         : dd.c position.c 
	bin/df         : df.c 
	bin/ed         : buf.c main.c 
	bin/ksh        : c_ksh.c c_test.c c_ulimit.c edit.c eval.c 
	                 exec.c history.c io.c jobs.c main.c misc.c 
	                 path.c shf.c tty.c 
	bin/ln         : ln.c 
	bin/mkdir      : mkdir.c 
	bin/mt         : mt.c mtrmt.c 
	bin/mv         : cp.c mv.c 
	bin/pax        : ar_io.c ar_subs.c buf_subs.c file_subs.c 
	                 ftree.c pax.c 
	bin/ps         : nlist.c 
	bin/rmdir      : rmdir.c 
	bin/stty       : key.c stty.c 
	usr.bin/at     : at.c 
	usr.bin/aucat  : afile.c aucat.c 
	usr.bin/audioctl: audioctl.c 
	usr.bin/biff   : biff.c 
	usr.bin/calendar: io.c 
	usr.bin/cdio   : cdio.c rip.c 
	usr.bin/compress: main.c 
	usr.bin/cu     : command.c cu.c 
	usr.bin/cvs    : add.c buf.c commit.c diff3.c diff_internals.c 
	                 import.c rcs.c remote.c repository.c util.c 
	usr.bin/diff   : diff.c diffreg.c 
	usr.bin/find   : function.c 
	usr.bin/finger : net.c util.c 
	usr.bin/ftp    : cmds.c fetch.c ftp.c ruserpass.c util.c 
	usr.bin/gencat : gencat.c 
	usr.bin/indent : indent.c 
	usr.bin/ipcs   : ipcs.c 
	usr.bin/ktrace : ktrace.c 
	usr.bin/last   : last.c 
	usr.bin/less   : cmdbuf.c decode.c edit.c filename.c lsystem.c 
	                 os.c ttyin.c 
	usr.bin/lndir  : lndir.c 
	usr.bin/login  : login.c 
	usr.bin/look   : look.c 
	usr.bin/mail   : aux.c cmd3.c edit.c fio.c lex.c main.c names.c 
	                 popen.c tty.c 
	usr.bin/mesg   : mesg.c 
	usr.bin/mg     : dir.c dired.c log.c ttyio.c 
	usr.bin/midicat: midicat.c 
	usr.bin/mixerctl: mixerctl.c 
	usr.bin/nc     : netcat.c 
	usr.bin/netstat: if.c mbuf.c net80211.c route.c 
	usr.bin/newsyslog: newsyslog.c 
	usr.bin/openssl: apps.c s_client.c s_server.c s_socket.c 
	usr.bin/passwd : local_passwd.c 
	usr.bin/patch  : inp.c patch.c util.c 
	usr.bin/pctr   : pctr.c 
	usr.bin/pkill  : pkill.c 
	usr.bin/pr     : pr.c 
	usr.bin/radioctl: radioctl.c 
	usr.bin/rcs    : buf.c co.c diff.c rcsdiff.c 
	usr.bin/rdist  : child.c client.c common.c docmd.c expand.c 
	                 isexec.c 
	usr.bin/rdistd : server.c 
	usr.bin/readlink: readlink.c 
	usr.bin/rpcgen : rpc_main.c rpc_svcout.c 
	usr.bin/rpcinfo: rpcinfo.c 
	usr.bin/rsync  : io.c sender.c 
	usr.bin/rusers : rusers.c 
	usr.bin/script : script.c 
	usr.bin/skeyaudit: skeyaudit.c 
	usr.bin/skeyinit: skeyinit.c 
	usr.bin/sndiod : fdpass.c file.c listen.c 
	usr.bin/sort   : sort.c 
	usr.bin/ssh    : auth-rhosts.c auth.c authfd.c authfile.c 
	                 canohost.c channels.c clientloop.c misc.c 
	                 monitor.c monitor_wrap.c mux.c nchan.c packet.c 
	                 readconf.c readpass.c scp.c serverloop.c 
	                 session.c sftp-server.c ssh-add.c ssh-agent.c 
	                 ssh-keygen.c ssh-keyscan.c ssh.c sshconnect.c 
	                 sshconnect2.c sshd.c sshkey-xmss.c sshlogin.c 
	                 sshpty.c uidswap.c 
	usr.bin/su     : su.c 
	usr.bin/systat : cpu.c iostat.c main.c malloc.c mbufs.c nfs.c 
	                 pf.c pftop.c pigs.c pool.c swap.c uvm.c 
	                 vmstat.c 
	usr.bin/tail   : forward.c 
	usr.bin/talk   : init_disp.c 
	usr.bin/telnet : commands.c sys_bsd.c 
	usr.bin/tic    : tic.c 
	usr.bin/tmux   : client.c job.c 
	usr.bin/top    : machine.c 
	usr.bin/tset   : tset.c 
	usr.bin/unifdef: unifdef.c 
	usr.bin/usbhidaction: usbhidaction.c 
	usr.bin/usbhidctl: usbhid.c 
	usr.bin/uudecode: uudecode.c 
	usr.bin/vacation: vacation.c 
	usr.bin/vmstat : dkstats.c vmstat.c 
	usr.bin/w      : w.c 
	usr.bin/wall   : ttymsg.c 
	usr.bin/wc     : wc.c 
	usr.bin/write  : write.c 
	usr.bin/xinstall: xinstall.c 

Log message:
When system calls indicate an error they return -1, not some arbitrary
value < 0.  errno is only updated in this case.  Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/28 07:41:42

Modified files:
	bin/ed         : io.c 

Log message:
fputc returns EOF


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/06/28 07:43:48

Modified files:
	lib/csu        : Makefile 

Log message:
Since clang only supports the "secure" PLT ABI for "big" PIC/PIE on powerpc,
stop building the csu code with -fpie on that platform.

ok guenther@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/28 07:47:33

Modified files:
	libexec/tradcpp: files.c 

Log message:
When system calls indicate an error they return -1, not some arbitrary
value < 0.  errno is only updated in this case.  Change all (most?)
callers of syscalls to follow this better, and let's see if this strictness
helps us in the future.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/28 07:53:28

Modified files:
	x11/xwallpaper : Makefile distinfo 

Log message:
minor update, bug-fixed version, as discussed with tobias@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/28 08:20:40

Modified files:
	lib/libutil    : pidfile.c 
	usr.bin/cap_mkdb: cap_mkdb.c 
	usr.sbin/netgroup_mkdb: netgroup_mkdb.c 

Log message:
Actually, the C standard only guarantees that atexit(3) returns non-zero
on error, so tweak previous to test "atexit(...) != 0" for portability.
"OK ok ok sorry backwards" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/06/28 08:36:18

Modified files:
	lib/libc/stdio : printf.3 

Log message:
Specify that {v,}asprintf(3) returns precisely -1 on failure,
and that the ret pointer is either unchanged or set to NULL
in this case.
Since these two functions are not standardized by POSIX,
documenting the actual behaviour is the way to go, and the
above matches all non-buggy implementations we are aware of.
OK millert@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/06/28 09:15:46

Log message:
    update to unbound-1.9.2, florian@ agrees
    
    Status:
    
    Vendor Tag:	NLNETLABS
    Release Tags:	UNBOUND_1_9_2
    
    U src/usr.sbin/unbound/ac_pkg_swig.m4
    U src/usr.sbin/unbound/config.guess
    C src/usr.sbin/unbound/config.h.in
    U src/usr.sbin/unbound/ax_pthread.m4
    U src/usr.sbin/unbound/acx_python.m4
    C src/usr.sbin/unbound/configure.ac
    U src/usr.sbin/unbound/acx_nlnetlabs.m4
    U src/usr.sbin/unbound/Makefile.in
    C src/usr.sbin/unbound/configure
    U src/usr.sbin/unbound/install-sh
    N src/usr.sbin/unbound/README.md
    U src/usr.sbin/unbound/LICENSE
    U src/usr.sbin/unbound/README
    U src/usr.sbin/unbound/systemd.m4
    U src/usr.sbin/unbound/config.sub
    U src/usr.sbin/unbound/aclocal.m4
    U src/usr.sbin/unbound/ltmain.sh
    U src/usr.sbin/unbound/validator/val_nsec.c
    U src/usr.sbin/unbound/validator/val_nsec3.h
    U src/usr.sbin/unbound/validator/validator.h
    U src/usr.sbin/unbound/validator/val_anchor.h
    U src/usr.sbin/unbound/validator/val_utils.c
    U src/usr.sbin/unbound/validator/validator.c
    U src/usr.sbin/unbound/validator/val_neg.h
    U src/usr.sbin/unbound/validator/autotrust.c
    U src/usr.sbin/unbound/validator/val_kentry.h
    U src/usr.sbin/unbound/validator/val_sigcrypt.c
    U src/usr.sbin/unbound/validator/val_kcache.h
    U src/usr.sbin/unbound/validator/val_nsec.h
    U src/usr.sbin/unbound/validator/val_anchor.c
    U src/usr.sbin/unbound/validator/val_utils.h
    U src/usr.sbin/unbound/validator/val_secalgo.c
    U src/usr.sbin/unbound/validator/val_kcache.c
    U src/usr.sbin/unbound/validator/val_secalgo.h
    U src/usr.sbin/unbound/validator/val_nsec3.c
    U src/usr.sbin/unbound/validator/val_neg.c
    U src/usr.sbin/unbound/validator/autotrust.h
    U src/usr.sbin/unbound/validator/val_kentry.c
    U src/usr.sbin/unbound/validator/val_sigcrypt.h
    U src/usr.sbin/unbound/services/modstack.c
    U src/usr.sbin/unbound/services/view.h
    U src/usr.sbin/unbound/services/localzone.c
    U src/usr.sbin/unbound/services/mesh.h
    C src/usr.sbin/unbound/services/listen_dnsport.c
    U src/usr.sbin/unbound/services/view.c
    U src/usr.sbin/unbound/services/listen_dnsport.h
    C src/usr.sbin/unbound/services/outside_network.c
    C src/usr.sbin/unbound/services/authzone.c
    U src/usr.sbin/unbound/services/modstack.h
    U src/usr.sbin/unbound/services/outbound_list.c
    U src/usr.sbin/unbound/services/outbound_list.h
    C src/usr.sbin/unbound/services/outside_network.h
    U src/usr.sbin/unbound/services/localzone.h
    C src/usr.sbin/unbound/services/mesh.c
    C src/usr.sbin/unbound/services/authzone.h
    U src/usr.sbin/unbound/services/cache/infra.h
    C src/usr.sbin/unbound/services/cache/dns.c
    U src/usr.sbin/unbound/services/cache/dns.h
    U src/usr.sbin/unbound/services/cache/rrset.c
    U src/usr.sbin/unbound/services/cache/infra.c
    U src/usr.sbin/unbound/services/cache/rrset.h
    U src/usr.sbin/unbound/iterator/iter_resptype.h
    U src/usr.sbin/unbound/iterator/iter_fwd.c
    C src/usr.sbin/unbound/iterator/iter_utils.c
    C src/usr.sbin/unbound/iterator/iterator.c
    U src/usr.sbin/unbound/iterator/iter_scrub.h
    U src/usr.sbin/unbound/iterator/iter_resptype.c
    U src/usr.sbin/unbound/iterator/iter_delegpt.c
    U src/usr.sbin/unbound/iterator/iter_fwd.h
    U src/usr.sbin/unbound/iterator/iter_hints.h
    U src/usr.sbin/unbound/iterator/iter_scrub.c
    U src/usr.sbin/unbound/iterator/iter_donotq.h
    U src/usr.sbin/unbound/iterator/iter_priv.c
    U src/usr.sbin/unbound/iterator/iter_hints.c
    U src/usr.sbin/unbound/iterator/iterator.h
    U src/usr.sbin/unbound/iterator/iter_priv.h
    U src/usr.sbin/unbound/iterator/iter_donotq.c
    C src/usr.sbin/unbound/iterator/iter_utils.h
    U src/usr.sbin/unbound/iterator/iter_delegpt.h
    U src/usr.sbin/unbound/doc/requirements.txt
    C src/usr.sbin/unbound/doc/unbound-checkconf.8.in
    U src/usr.sbin/unbound/doc/FEATURES
    C src/usr.sbin/unbound/doc/Changelog
    U src/usr.sbin/unbound/doc/README.tests
    C src/usr.sbin/unbound/doc/example.conf.in
    C src/usr.sbin/unbound/doc/libunbound.3.in
    C src/usr.sbin/unbound/doc/unbound.conf.5.in
    U src/usr.sbin/unbound/doc/README.DNS64
    U src/usr.sbin/unbound/doc/README.svn
    U src/usr.sbin/unbound/doc/control_proto_spec.txt
    U src/usr.sbin/unbound/doc/TODO
    C src/usr.sbin/unbound/doc/unbound-host.1.in
    C src/usr.sbin/unbound/doc/unbound.8.in
    C src/usr.sbin/unbound/doc/unbound-anchor.8.in
    U src/usr.sbin/unbound/doc/LICENSE
    C src/usr.sbin/unbound/doc/README
    C src/usr.sbin/unbound/doc/unbound.doxygen
    U src/usr.sbin/unbound/doc/CREDITS
    C src/usr.sbin/unbound/doc/unbound-control.8.in
    U src/usr.sbin/unbound/sldns/parseutil.h
    U src/usr.sbin/unbound/sldns/wire2str.h
    U src/usr.sbin/unbound/sldns/sbuffer.c
    U src/usr.sbin/unbound/sldns/parseutil.c
    U src/usr.sbin/unbound/sldns/keyraw.h
    U src/usr.sbin/unbound/sldns/sbuffer.h
    U src/usr.sbin/unbound/sldns/keyraw.c
    U src/usr.sbin/unbound/sldns/parse.h
    U src/usr.sbin/unbound/sldns/rrdef.h
    U src/usr.sbin/unbound/sldns/parse.c
    U src/usr.sbin/unbound/sldns/str2wire.h
    U src/usr.sbin/unbound/sldns/rrdef.c
    U src/usr.sbin/unbound/sldns/pkthdr.h
    U src/usr.sbin/unbound/sldns/wire2str.c
    U src/usr.sbin/unbound/sldns/str2wire.c
    U src/usr.sbin/unbound/edns-subnet/subnet-whitelist.c
    C src/usr.sbin/unbound/edns-subnet/subnetmod.c
    U src/usr.sbin/unbound/edns-subnet/subnetmod.h
    U src/usr.sbin/unbound/edns-subnet/addrtree.h
    U src/usr.sbin/unbound/edns-subnet/edns-subnet.c
    U src/usr.sbin/unbound/edns-subnet/edns-subnet.h
    U src/usr.sbin/unbound/edns-subnet/subnet-whitelist.h
    U src/usr.sbin/unbound/edns-subnet/addrtree.c
    U src/usr.sbin/unbound/smallapp/unbound-control.c
    U src/usr.sbin/unbound/smallapp/unbound-checkconf.c
    U src/usr.sbin/unbound/smallapp/unbound-anchor.c
    U src/usr.sbin/unbound/smallapp/worker_cb.c
    U src/usr.sbin/unbound/smallapp/unbound-host.c
    U src/usr.sbin/unbound/smallapp/unbound-control-setup.sh.in
    U src/usr.sbin/unbound/libunbound/libunbound.c
    U src/usr.sbin/unbound/libunbound/ubsyms.def
    U src/usr.sbin/unbound/libunbound/unbound.h
    U src/usr.sbin/unbound/libunbound/worker.h
    U src/usr.sbin/unbound/libunbound/libworker.c
    U src/usr.sbin/unbound/libunbound/unbound-event.h
    U src/usr.sbin/unbound/libunbound/context.c
    U src/usr.sbin/unbound/libunbound/context.h
    U src/usr.sbin/unbound/libunbound/libworker.h
    U src/usr.sbin/unbound/respip/respip.c
    U src/usr.sbin/unbound/respip/respip.h
    U src/usr.sbin/unbound/testcode/checklocks.c
    U src/usr.sbin/unbound/testcode/streamtcp.1
    U src/usr.sbin/unbound/testcode/unitregional.c
    U src/usr.sbin/unbound/testcode/memstats.c
    U src/usr.sbin/unbound/testcode/perf.c
    U src/usr.sbin/unbound/testcode/testpkts.c
    U src/usr.sbin/unbound/testcode/replay.h
    U src/usr.sbin/unbound/testcode/unitldns.c
    U src/usr.sbin/unbound/testcode/petal.c
    U src/usr.sbin/unbound/testcode/do-tests.sh
    U src/usr.sbin/unbound/testcode/lock_verify.c
    U src/usr.sbin/unbound/testcode/readhex.h
    U src/usr.sbin/unbound/testcode/unitneg.c
    U src/usr.sbin/unbound/testcode/unitauth.c
    U src/usr.sbin/unbound/testcode/streamtcp.c
    U src/usr.sbin/unbound/testcode/run_vm.sh
    U src/usr.sbin/unbound/testcode/unitecs.c
    U src/usr.sbin/unbound/testcode/unitanchor.c
    U src/usr.sbin/unbound/testcode/unitmsgparse.c
    U src/usr.sbin/unbound/testcode/delayer.c
    U src/usr.sbin/unbound/testcode/mini_tpkg.sh
    U src/usr.sbin/unbound/testcode/unitmain.h
    U src/usr.sbin/unbound/testcode/readhex.c
    U src/usr.sbin/unbound/testcode/fake_event.h
    U src/usr.sbin/unbound/testcode/checklocks.h
    U src/usr.sbin/unbound/testcode/unitmain.c
    U src/usr.sbin/unbound/testcode/pktview.c
    U src/usr.sbin/unbound/testcode/testpkts.h
    U src/usr.sbin/unbound/testcode/asynclook.c
    U src/usr.sbin/unbound/testcode/unitverify.c
    U src/usr.sbin/unbound/testcode/unitlruhash.c
    U src/usr.sbin/unbound/testcode/unitdname.c
    U src/usr.sbin/unbound/testcode/replay.c
    U src/usr.sbin/unbound/testcode/unitslabhash.c
    U src/usr.sbin/unbound/testcode/mini_tdir.sh
    U src/usr.sbin/unbound/testcode/fake_event.c
    U src/usr.sbin/unbound/testcode/signit.c
    U src/usr.sbin/unbound/testcode/testbound.c
    U src/usr.sbin/unbound/dnscrypt/dnscrypt.m4
    U src/usr.sbin/unbound/dnscrypt/dnscrypt.c
    U src/usr.sbin/unbound/dnscrypt/dnscrypt_config.h.in
    U src/usr.sbin/unbound/dnscrypt/cert.h
    U src/usr.sbin/unbound/dnscrypt/dnscrypt.h
    U src/usr.sbin/unbound/daemon/worker.h
    U src/usr.sbin/unbound/daemon/cachedump.c
    U src/usr.sbin/unbound/daemon/daemon.c
    U src/usr.sbin/unbound/daemon/remote.c
    U src/usr.sbin/unbound/daemon/stats.c
    C src/usr.sbin/unbound/daemon/worker.c
    U src/usr.sbin/unbound/daemon/daemon.h
    U src/usr.sbin/unbound/daemon/remote.h
    C src/usr.sbin/unbound/daemon/unbound.c
    U src/usr.sbin/unbound/daemon/acl_list.h
    U src/usr.sbin/unbound/daemon/cachedump.h
    U src/usr.sbin/unbound/daemon/stats.h
    U src/usr.sbin/unbound/daemon/acl_list.c
    U src/usr.sbin/unbound/dnstap/dnstap.h
    U src/usr.sbin/unbound/dnstap/dnstap_config.h.in
    U src/usr.sbin/unbound/dnstap/dnstap.c
    U src/usr.sbin/unbound/dnstap/dnstap.proto
    U src/usr.sbin/unbound/dnstap/dnstap.m4
    U src/usr.sbin/unbound/dns64/dns64.h
    U src/usr.sbin/unbound/dns64/dns64.c
    U src/usr.sbin/unbound/ipsecmod/ipsecmod.h
    U src/usr.sbin/unbound/ipsecmod/ipsecmod.c
    U src/usr.sbin/unbound/ipsecmod/ipsecmod-whitelist.h
    U src/usr.sbin/unbound/ipsecmod/ipsecmod-whitelist.c
    C src/usr.sbin/unbound/util/ub_event.c
    U src/usr.sbin/unbound/util/ub_event_pluggable.c
    U src/usr.sbin/unbound/util/winsock_event.c
    U src/usr.sbin/unbound/util/rbtree.h
    U src/usr.sbin/unbound/util/module.h
    U src/usr.sbin/unbound/util/configyyrename.h
    U src/usr.sbin/unbound/util/edns.h
    U src/usr.sbin/unbound/util/timehist.c
    U src/usr.sbin/unbound/util/tcp_conn_limit.c
    U src/usr.sbin/unbound/util/locks.h
    U src/usr.sbin/unbound/util/rtt.c
    U src/usr.sbin/unbound/util/as112.c
    U src/usr.sbin/unbound/util/tube.h
    U src/usr.sbin/unbound/util/ub_event.h
    U src/usr.sbin/unbound/util/net_help.h
    U src/usr.sbin/unbound/util/edns.c
    U src/usr.sbin/unbound/util/log.c
    U src/usr.sbin/unbound/util/configparser.y
    U src/usr.sbin/unbound/util/rbtree.c
    U src/usr.sbin/unbound/util/regional.h
    U src/usr.sbin/unbound/util/module.c
    C src/usr.sbin/unbound/util/alloc.c
    U src/usr.sbin/unbound/util/config_file.h
    U src/usr.sbin/unbound/util/random.c
    U src/usr.sbin/unbound/util/timehist.h
    U src/usr.sbin/unbound/util/config_file.c
    C src/usr.sbin/unbound/util/fptr_wlist.c
    U src/usr.sbin/unbound/util/fptr_wlist.h
    U src/usr.sbin/unbound/util/netevent.h
    U src/usr.sbin/unbound/util/alloc.h
    U src/usr.sbin/unbound/util/configlexer.lex
    U src/usr.sbin/unbound/util/tube.c
    U src/usr.sbin/unbound/util/tcp_conn_limit.h
    U src/usr.sbin/unbound/util/regional.c
    U src/usr.sbin/unbound/util/mini_event.c
    C src/usr.sbin/unbound/util/net_help.c
    U src/usr.sbin/unbound/util/as112.h
    U src/usr.sbin/unbound/util/rtt.h
    U src/usr.sbin/unbound/util/mini_event.h
    C src/usr.sbin/unbound/util/iana_ports.inc
    U src/usr.sbin/unbound/util/random.h
    C src/usr.sbin/unbound/util/netevent.c
    U src/usr.sbin/unbound/util/log.h
    U src/usr.sbin/unbound/util/locks.c
    U src/usr.sbin/unbound/util/winsock_event.h
    U src/usr.sbin/unbound/util/storage/lookup3.h
    U src/usr.sbin/unbound/util/storage/dnstree.c
    C src/usr.sbin/unbound/util/storage/lookup3.c
    U src/usr.sbin/unbound/util/storage/lruhash.c
    U src/usr.sbin/unbound/util/storage/lruhash.h
    U src/usr.sbin/unbound/util/storage/dnstree.h
    U src/usr.sbin/unbound/util/storage/slabhash.h
    U src/usr.sbin/unbound/util/storage/slabhash.c
    U src/usr.sbin/unbound/util/data/packed_rrset.h
    U src/usr.sbin/unbound/util/data/msgencode.h
    U src/usr.sbin/unbound/util/data/msgparse.h
    U src/usr.sbin/unbound/util/data/packed_rrset.c
    U src/usr.sbin/unbound/util/data/msgreply.c
    U src/usr.sbin/unbound/util/data/msgencode.c
    U src/usr.sbin/unbound/util/data/dname.h
    C src/usr.sbin/unbound/util/data/msgreply.h
    U src/usr.sbin/unbound/util/data/msgparse.c
    U src/usr.sbin/unbound/util/data/dname.c
    U src/usr.sbin/unbound/util/shm_side/shm_main.h
    U src/usr.sbin/unbound/util/shm_side/shm_main.c
    U src/usr.sbin/unbound/cachedb/cachedb.h
    C src/usr.sbin/unbound/cachedb/cachedb.c
    U src/usr.sbin/unbound/cachedb/redis.h
    U src/usr.sbin/unbound/cachedb/redis.c
    
    36 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jNLNETLABS:yesterday -jNLNETLABS src/usr.sbin/unbound

CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/06/28 09:17:17

Modified files:
	usr.sbin/unbound: README.md config.h.in configure configure.ac 
	usr.sbin/unbound/cachedb: cachedb.c 
	usr.sbin/unbound/daemon: unbound.c worker.c 
	usr.sbin/unbound/doc: Changelog README example.conf.in 
	                      libunbound.3.in unbound-anchor.8.in 
	                      unbound-checkconf.8.in 
	                      unbound-control.8.in unbound-host.1.in 
	                      unbound.8.in unbound.conf.5.in 
	                      unbound.doxygen 
	usr.sbin/unbound/edns-subnet: subnetmod.c 
	usr.sbin/unbound/iterator: iter_utils.c iter_utils.h iterator.c 
	usr.sbin/unbound/services: authzone.c authzone.h 
	                           listen_dnsport.c mesh.c 
	                           outside_network.c outside_network.h 
	usr.sbin/unbound/services/cache: dns.c 
	usr.sbin/unbound/util: alloc.c fptr_wlist.c iana_ports.inc 
	                       net_help.c netevent.c ub_event.c 
	usr.sbin/unbound/util/data: msgreply.h 
	usr.sbin/unbound/util/storage: lookup3.c 

Log message:
merge unbound 1.9.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/28 10:48:42

Modified files:
	graphics/openbsd-backgrounds: Makefile distinfo 
	graphics/openbsd-backgrounds/pkg: DESCR PLIST 

Log message:
finally make use of new xwallpaper


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/28 15:54:05

Modified files:
	sys/arch/amd64/amd64: ucode.c 
	sys/arch/amd64/include: cpufunc.h 
	sys/arch/i386/i386: ucode.c 
	sys/arch/i386/include: cpufunc.h 

Log message:
Write back and invalidate caches before updating CPU microcode,
like Intel does in their patches on githup.  Also add a compiler
level memory barrier to the wbinvd instruction like Linux does.
OK mlarkin@ guenther@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/06/28 17:48:51

Modified files:
	archivers/bzip2: Makefile distinfo 
Removed files:
	archivers/bzip2/patches: patch-bzip2recover_c patch-decompress_c 

Log message:
update to bzip 1.0.7

ok kn, probably ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/28 18:01:43

Modified files:
	net/irssi      : Makefile distinfo 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Security update to irssi 1.2.1

https://irssi.org/security/html/irssi_sa_2019_06/

Use after free when sending SASL login to the server found by ilbelkyr.
(CWE-416, CWE-825)

OK tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/28 18:32:00

Modified files:
	net/irssi-icb  : Makefile 
	net/irssi-xmpp : Makefile 

Log message:
Switch to PERMIT_PACKAGE

While here, irssi-xmpp is GPLv2+ not just GPL.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/28 18:34:00

Modified files:
	lib/libexpat   : Changes Makefile README.md expat_config.h 
	lib/libexpat/lib: expat.h expat_external.h winconfig.h 
	                  xmlparse.c 
	lib/libexpat/tests: runtests.c 

Log message:
Update libexpat to 2.2.7.  Relevant for OpenBSD is only the fix for
CVE-2018-20843, a potential denial-of-service in libexpat due to
high RAM and CPU usage.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/06/28 18:35:06

Modified files:
	regress/lib/libexpat/runtests: Makefile 
	regress/lib/libexpat/runtestspp: Makefile 

Log message:
Adjust comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/28 18:46:39

Modified files:
	net/irssi-icb  : Makefile 

Log message:
Switch to CONFIGURE_STYLE=autoreconf


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/06/28 18:55:29

Modified files:
	net/irssi      : Makefile 

Log message:
Switch to SEPARATE_BUILD=Yes

Nitpick pre-configure into post-patch as it SUBST_CMDs patched files only.


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2019/06/28 22:33:11

Modified files:
	sys/arch/luna88k/cbus: cbus.c cbusvar.h 
	sys/arch/luna88k/conf: files.luna88k 

Log message:
Introduce ISA-like locators on cbus(4) to specify resources in
files.conf(5).


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/06/29 00:05:26

Modified files:
	lib/libsndio   : aucat.c mio.c mio_rmidi.c sio.c 

Log message:
Check if syscalls return -1 instead of any negative value.

"Looks right" deraadt


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/29 02:31:22

Modified files:
	app/xenodm/xenodm: dm.c util.c 

Log message:
Check asprintf() return values correctly. ok and tweaks tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 03:42:31

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.180.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 03:43:13

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.180.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 03:43:31

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.190.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 03:47:24

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.325.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 03:54:16

Modified files:
	net/py-libcloud: Makefile distinfo 
	net/py-libcloud/pkg: PLIST 

Log message:
Update to py-libcloud-2.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 03:59:08

Modified files:
	print/libpaper : Makefile distinfo 

Log message:
Update to libpaper-1.1.28.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/06/29 03:59:30

Modified files:
	www/gitea      : Makefile distinfo 

Log message:
Update gitea 1.8.1 -> 1.8.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 04:01:30

Modified files:
	sysutils/exoscale-cli: Makefile distinfo 

Log message:
Update to exoscale-cli-1.4.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 04:07:11

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-platform_gsutil_gslib_commands_config_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-252.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 04:39:41

Modified files:
	astro/stellarium: Makefile distinfo 
	astro/stellarium/pkg: PLIST 

Log message:
Update to stellarium-0.19.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 04:43:34

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 04:43:59

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-chef: Makefile distinfo 
	sysutils/terraform/provider-fastly: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/29 05:53:33

Modified files:
	devel/libvmime : Makefile distinfo 
	devel/libvmime/pkg: PLIST 

Log message:
update to the latest git version to please mail/kopano


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/29 07:04:36

Modified files:
	databases/xapian-core: Makefile 
Added files:
	databases/xapian-core/patches: patch-pkgconfig_xapian-core_pc_in 

Log message:
unbreak the xapian-core pc file because our pkg-config(1) actually checks
the format for correctness and it does not like multi-line descriptions
without line continuations


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	espie@cvs.openbsd.org	2019/06/29 07:33:06

Modified files:
	app/xenodm/config: Xsetup_0 

Log message:
add (commented out) blurb to get openbsd-wallpaper running.

"perso j'ai rien contre" ok matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/29 07:35:48

Modified files:
	lang/lucee     : Makefile distinfo 
	lang/lucee/pkg : README 

Log message:
update to Lucee 5.3.3.60-RC


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/29 07:49:41

Modified files:
	net/libunbound : Makefile distinfo 
	net/libunbound/pkg: PLIST 

Log message:
update to libunbound-1.9.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/29 07:52:11

Modified files:
	mail/kopano/core: Makefile distinfo 
	mail/kopano/core/patches: patch-ECtools_monitor_monitor_cpp 
	                          patch-Makefile_in 
	                          patch-caldav_CalDAV_cpp 
	                          patch-common_ECChannel_cpp 
	                          patch-common_ECThreadPool_cpp 
	                          patch-common_UnixUtil_cpp 
	                          patch-configure_ac 
	                          patch-gateway_Gateway_cpp 
	                          patch-installer_linux_gateway_cfg 
	                          patch-installer_linux_ical_cfg 
	                          patch-installer_linux_monitor_cfg 
	                          patch-installer_linux_server_cfg 
	                          patch-installer_linux_spooler_cfg 
	                          patch-php7-ext_ECImportContentsChangesProxy_cpp 
	                          patch-php7-ext_ECImportHierarchyChangesProxy_cpp 
	                          patch-provider_server_ECServer_cpp 
	                          patch-spooler_DAgent_cpp 
	                          patch-spooler_Spooler_cpp 
	                          patch-spooler_python_Makefile_in 
	                          patch-swig_python_kopano_kopano_config_py 
	mail/kopano/core/pkg: PLIST-main 
Added files:
	mail/kopano/core/patches: patch-ECtools_idx_handler_cpp 
	                          patch-ECtools_statsd_cpp 
	                          patch-installer_linux_presence_cfg 
Removed files:
	mail/kopano/core/patches: 
	                          patch-provider_libserver_ECCacheManager_cpp 
	                          patch-provider_libserver_ECCacheManager_h 
	                          patch-provider_libserver_ECUserManagement_cpp 

Log message:
update to 8.7.81.203


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/06/29 08:05:19

Modified files:
	net/syncthing  : Makefile distinfo 
	net/syncthing/patches: patch-build_go 
	net/syncthing/pkg: README 

Log message:
Update net/syncthing to version 1.1.4.

Also improve the pkg README.

Tested by Paco Esteban. OK bket@. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/29 08:50:52

Modified files:
	infrastructure/lib/OpenBSD: FS2.pm 
	infrastructure/bin: update-plist 

Log message:
check pkgconfig files for correctness
and warn if they're not.

Okay robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/06/29 08:54:09

Modified files:
	net/irssi      : Makefile 
Added files:
	net/irssi/pkg  : DESCR-main DESCR-otr PLIST-main PLIST-otr 
Removed files:
	net/irssi/pkg  : DESCR PLIST 

Log message:
split otr support into its own irssi subpackage to reduce dependencies.
most of the work done by sthen.

ok sthen kn


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/06/29 08:54:45

Modified files:
	net/irssi-icb  : Makefile 
	net/irssi-xmpp : Makefile 
	net/twirssi    : Makefile 

Log message:
bump revision after irssi-otr split


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/29 09:39:06

Modified files:
	sys/arch/sparc64/conf: GENERIC 

Log message:
kihaguru gathura plugged a umsm into a sparc64...


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/29 09:41:21

Modified files:
	sys/arch/sparc64/include: psl.h 

Log message:
variable ver is unused; rdpr %ver is always used instead; from miod


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/06/29 09:46:54

Modified files:
	converters/libiconv: Makefile distinfo 
	converters/libiconv/patches: patch-lib_relocatable_c 
	                             patch-libcharset_lib_localcharset_c 
	                             patch-src_Makefile_in 
	converters/libiconv/pkg: PLIST 
Removed files:
	converters/libiconv/patches: patch-libcharset_lib_config_charset 
	                             patch-tests_Makefile_in 

Log message:
update to 1.16; mostly from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/06/29 10:12:21

Modified files:
	lib/libc/stdio : freopen.c 
	lib/libc/time  : strftime.c 

Log message:
two more syscall == -1 checks


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/06/29 10:39:57

Modified files:
	sbin/dhclient  : clparse.c dhclient.c 

Log message:
write_lease_db() only needs ifi->name and ifi->lease_db.

read_lease_db() can use a better param name (lease_db instead
of tq).

Makes the two more obviously related. No intentional functional
change.


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/06/29 11:10:27

Modified files:
	libressl       : papers.html 

Log message:
link to tb@'s BSDCan 2019 video;
patch from Ross L Richardson <rlr dot id dot au>
but with the correct video ID


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/06/29 11:15:44

Modified files:
	.              : events.html 

Log message:
link to beck@'s and tb@'s BSDCan 2019 videos;
patch from Ross L Richardson <rlr dot id dot au>


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/29 12:12:10

Modified files:
	mail/kopano    : Makefile.inc 

Log message:
actually update the version to 8.7.81.203


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/29 14:29:48

Modified files:
	app/xenodm/xenodm: auth.c dm.c session.c 

Log message:
check return values against -1 "reasonable" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/29 14:43:04

Modified files:
	graphics/aspect-crop: Makefile distinfo 

Log message:
minor improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/06/29 15:21:27

Modified files:
	lib/libc/gen   : getcwd.3 
	lib/libc/stdlib: realpath.3 

Log message:
Document that getcwd() and realpath() are built on system calls that
have a different calling convention than the standard function...as seen
in kdump output.

ok deraadt@ schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/06/29 15:23:18

Modified files:
	usr.bin/sndiod : sock.c sndiod.c 

Log message:
Check if syscalls return -1 instead of any negative or non-zero value.

ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/06/29 15:26:51

Modified files:
	devel/flake8   : Makefile 
	devel/py-mccabe: Makefile 

Log message:
Remove maintainer per their request


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/29 15:42:07

Modified files:
	www/py-requests: Makefile 
Added files:
	www/py-requests/patches: patch-tests_test_utils_py 

Log message:
Fix tests for www/py-requests using a patch not yet committed to
upstream.

Tests are broken for pytest >=4 before this patch.

Tweaks from and ok danj@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/29 16:26:25

Modified files:
	security/libnettle: Makefile distinfo 
	security/libnettle/patches: patch-Makefile_in patch-configure 
	security/libnettle/pkg: PLIST 
Removed files:
	security/libnettle/patches: patch-rsa-sign-tr_c 

Log message:
Update to libnettle-3.5.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/06/29 16:35:37

Modified files:
	usr.bin/doas   : doas.c 

Log message:
fix some more fallout from setting path in setusercontext.  restore
previous behavior of using user PATH if no cmd restriction in the rule.
run into by espie


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2019/06/29 18:23:22

Modified files:
	share/man/man4 : pcmcia.4 
	sys/arch/luna88k/cbus: i82365_cbus.c 
	sys/arch/luna88k/conf: GENERIC 

Log message:
Change pcic(4) attached with resources specified by locators on luna88k,
rather than #define'd ones.

Compiled and tested by my own LUNA-88K2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/30 01:35:40

Modified files:
	sysutils/terraform/provider-digitalocean: Makefile distinfo 

Log message:
Update to terraform-provider-digitalocean-1.4.0.

from Jan Vlach


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/30 01:37:47

Modified files:
	sys/arch/sgi/sgi: locore.S 

Log message:
Compute address for ll/sc only once.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/06/30 01:41:50

Modified files:
	sys/arch/mips64/mips64: arcbios.c 

Log message:
Ansify function definitions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/30 02:34:10

Modified files:
	security/gnutls: Makefile 

Log message:
Don't pick up autogen, it breaks the build.

reported by naddy@ and sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/30 06:00:02

Modified files:
	x11/gnome/calculator: Makefile distinfo 

Log message:
Update to gnome-calculator-3.32.2.

"looks fine" jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/30 06:00:52

Modified files:
	devel/libgdata : Makefile distinfo 
	devel/libgdata/pkg: PLIST 
Added files:
	devel/libgdata/patches: patch-gdata_meson_build 
	                        patch-meson_build patch-po_meson_build 

Log message:
Update to libgdata-0.17.10.

"looks fine" jasper@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:26:36

Removed files:
	driver/xf86-video-ark: COPYING ChangeLog INSTALL Makefile.am 
	                       Makefile.bsd-wrapper Makefile.in README 
	                       aclocal.m4 config.guess config.h.in 
	                       config.sub configure configure.ac depcomp 
	                       install-sh ltmain.sh missing 
	driver/xf86-video-ark/src: Makefile.am Makefile.in ark.h 
	                           ark_accel.c ark_driver.c ark_reg.h 
	                           compat-api.h 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:28:57

Removed files:
	driver/xf86-video-chips: COPYING ChangeLog INSTALL Makefile.am 
	                         Makefile.bsd-wrapper Makefile.in README 
	                         aclocal.m4 compile config.guess 
	                         config.h.in config.sub configure 
	                         configure.ac depcomp install-sh 
	                         ltmain.sh missing 
	driver/xf86-video-chips/man: Makefile.am Makefile.in chips.man 
	driver/xf86-video-chips/src: Makefile.am Makefile.in 
	                             compat-api.h ct_BlitMM.h 
	                             ct_Blitter.h ct_BltHiQV.h 
	                             ct_accel.c ct_bank.c ct_cursor.c 
	                             ct_ddc.c ct_dga.c ct_driver.c 
	                             ct_driver.h ct_pcirename.h 
	                             ct_regs.c ct_shadow.c ct_video.c 
	driver/xf86-video-chips/util: AsmMacros.h Makefile.am 
	                              Makefile.in dRegs.c iopl.h mRegs.c 
	                              modClock.c 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:30:30

Removed files:
	driver/xf86-video-glint: COPYING ChangeLog INSTALL Makefile.am 
	                         Makefile.bsd-wrapper Makefile.in README 
	                         README.pm3 aclocal.m4 compile 
	                         config.guess config.h.in config.sub 
	                         configure configure.ac depcomp 
	                         install-sh ltmain.sh missing 
	driver/xf86-video-glint/man: Makefile.am Makefile.in glint.man 
	driver/xf86-video-glint/src: IBMramdac.c Makefile.am Makefile.in 
	                             TIramdac.c compat-api.h glint.h 
	                             glint_dga.c glint_driver.c 
	                             glint_regs.h glint_shadow.c 
	                             glintpcirename.h pm2_accel.c 
	                             pm2_dac.c pm2_video.c pm2ramdac.c 
	                             pm2v_dac.c pm2vramdac.c pm3_accel.c 
	                             pm3_dac.c pm3_regs.h pm3_video.c 
	                             pm_accel.c pm_dac.c sx_accel.c 
	                             tx_accel.c tx_dac.c 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:31:42

Removed files:
	driver/xf86-video-i128: COPYING ChangeLog INSTALL Makefile.am 
	                        Makefile.bsd-wrapper Makefile.in README 
	                        aclocal.m4 compile config.guess 
	                        config.h.in config.sub configure 
	                        configure.ac depcomp install-sh 
	                        ltmain.sh missing 
	driver/xf86-video-i128/man: Makefile.am Makefile.in i128.man 
	driver/xf86-video-i128/src: IBMRGB.h Makefile.am Makefile.in 
	                            Ti302X.h compat-api.h i128.h 
	                            i128IBMDAC.c i128_driver.c 
	                            i128accel.c i128dga.c i128exa.c 
	                            i128init.c i128pcirename.h i128reg.h 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:33:09

Removed files:
	driver/xf86-video-i740: COPYING ChangeLog INSTALL Makefile.am 
	                        Makefile.bsd-wrapper Makefile.in README 
	                        aclocal.m4 compile config.guess 
	                        config.h.in config.sub configure 
	                        configure.ac depcomp install-sh 
	                        ltmain.sh missing 
	driver/xf86-video-i740/man: Makefile.am Makefile.in i740.man 
	driver/xf86-video-i740/src: Makefile.am Makefile.in compat-api.h 
	                            i740.h i740_accel.c i740_cursor.c 
	                            i740_dga.c i740_dga.h i740_driver.c 
	                            i740_i2c.c i740_io.c i740_macros.h 
	                            i740_pcirename.h i740_reg.h 
	                            i740_video.c 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:34:21

Removed files:
	driver/xf86-video-neomagic: COPYING ChangeLog INSTALL 
	                            Makefile.am Makefile.bsd-wrapper 
	                            Makefile.in NM-reg.txt README TODO 
	                            aclocal.m4 compile config.guess 
	                            config.h.in config.sub configure 
	                            configure.ac depcomp install-sh 
	                            ltmain.sh missing 
	driver/xf86-video-neomagic/man: Makefile.am Makefile.in 
	                                neomagic.man 
	driver/xf86-video-neomagic/src: Makefile.am Makefile.in 
	                                compat-api.h neo.h neo_2070.c 
	                                neo_2090.c neo_2097.c neo_2200.c 
	                                neo_cursor.c neo_dga.c 
	                                neo_driver.c neo_i2c.c 
	                                neo_macros.h neo_pcirename.h 
	                                neo_reg.h neo_shadow.c 
	                                neo_video.c neo_video.h 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:36:08

Removed files:
	driver/xf86-video-rendition: COPYING ChangeLog INSTALL 
	                             Makefile.am Makefile.bsd-wrapper 
	                             Makefile.in README aclocal.m4 
	                             config.guess config.h.in config.sub 
	                             configure configure.ac depcomp 
	                             install-sh ltmain.sh missing 
	driver/xf86-video-rendition/man: Makefile.am Makefile.in 
	                                 rendition.man 
	driver/xf86-video-rendition/src: Makefile.am Makefile.in 
	                                 README.uc accel.h accelX.c 
	                                 cmd2d.h commonregs.h 
	                                 compat-api.h cscode.h 
	                                 hwcursor.c hwcursor.h 
	                                 rendition.c rendition.h 
	                                 rendition_options.h 
	                                 rendition_shadow.c 
	                                 rendition_shadow.h v10002d.uc 
	                                 v1kregs.h v1krisc.c v1krisc.h 
	                                 v20002d.uc v2kregs.h vboard.c 
	                                 vboard.h vgafont-std.data 
	                                 vgafont-vrx.data 
	                                 vgapalette.data vloaduc.c 
	                                 vloaduc.h vmisc.c vmisc.h 
	                                 vmodes.c vmodes.h vos.h 
	                                 vramdac.c vramdac.h vtypes.h 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:37:07

Removed files:
	driver/xf86-video-s3: COPYING ChangeLog INSTALL Makefile.am 
	                      Makefile.bsd-wrapper Makefile.in README 
	                      aclocal.m4 compile config.guess 
	                      config.h.in config.sub configure 
	                      configure.ac depcomp install-sh ltmain.sh 
	                      missing 
	driver/xf86-video-s3/man: Makefile.am Makefile.in s3.man 
	driver/xf86-video-s3/src: Makefile.am Makefile.in compat-api.h 
	                          newmmio.h s3.h s3_IBMRGB.c s3_Ti.c 
	                          s3_Trio64DAC.c s3_accel.c s3_bios.c 
	                          s3_cursor.c s3_dga.c s3_driver.c 
	                          s3_pcirename.h s3_reg.h s3_shadow.c 
	                          s3_video.c 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/06/30 06:37:39

Modified files:
	graphics/openbsd-backgrounds: Makefile distinfo 

Log message:
lots more trims


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:37:59

Removed files:
	driver/xf86-video-s3virge: CALLMAP COPYING ChangeLog INSTALL 
	                           Makefile.am Makefile.bsd-wrapper 
	                           Makefile.in README TODO aclocal.m4 
	                           compile config.guess config.h.in 
	                           config.sub configure configure.ac 
	                           depcomp install-sh ltmain.sh missing 
	driver/xf86-video-s3virge/man: Makefile.am Makefile.in 
	                               s3virge.man 
	driver/xf86-video-s3virge/src: Makefile.am Makefile.in 
	                               compat-api.h newmmio.h regs3v.h 
	                               s3v.h s3v_accel.c s3v_dac.c 
	                               s3v_dga.c s3v_driver.c 
	                               s3v_hwcurs.c s3v_i2c.c 
	                               s3v_macros.h s3v_pciids.h 
	                               s3v_pcirename.h s3v_rop.h 
	                               s3v_shadow.c s3v_xv.c 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:38:43

Removed files:
	driver/xf86-video-sis: COPYING ChangeLog INSTALL Makefile.am 
	                       Makefile.bsd-wrapper Makefile.in README 
	                       aclocal.m4 compile config.guess 
	                       config.h.in config.sub configure 
	                       configure.ac depcomp install-sh ltmain.sh 
	                       missing 
	driver/xf86-video-sis/man: Makefile.am Makefile.in sis.man 
	driver/xf86-video-sis/src: 300vtbl.h 310vtbl.h Makefile.am 
	                           Makefile.in compat-api.h init.c 
	                           init.h init301.c init301.h initdef.h 
	                           initextx.c initextx.h oem300.h 
	                           oem310.h osdef.h sis.h sis300_accel.c 
	                           sis300_accel.h sis310_accel.c 
	                           sis310_accel.h sis6326_video.c 
	                           sis_accel.c sis_accel.h sis_common.h 
	                           sis_cursor.c sis_cursor.h sis_dac.c 
	                           sis_dac.h sis_dga.c sis_dri.c 
	                           sis_dri.h sis_driver.c sis_driver.h 
	                           sis_memcpy.c sis_opt.c sis_regs.h 
	                           sis_setup.c sis_shadow.c 
	                           sis_utility.c sis_vb.c sis_vga.c 
	                           sis_video.c sis_video.h 
	                           sis_videostr.h sispcirename.h 
	                           vgatypes.h vstruct.h 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:39:15

Removed files:
	driver/xf86-video-tdfx: COPYING ChangeLog INSTALL Makefile.am 
	                        Makefile.bsd-wrapper Makefile.in README 
	                        aclocal.m4 compile config.guess 
	                        config.h.in config.sub configure 
	                        configure.ac depcomp install-sh 
	                        ltmain.sh missing 
	driver/xf86-video-tdfx/man: Makefile.am Makefile.in tdfx.man 
	driver/xf86-video-tdfx/src: Makefile.am Makefile.in compat-api.h 
	                            tdfx.h tdfx_accel.c tdfx_dga.c 
	                            tdfx_dri.c tdfx_dri.h tdfx_dripriv.h 
	                            tdfx_driver.c tdfx_hwcurs.c 
	                            tdfx_io.c tdfx_priv.c tdfx_priv.h 
	                            tdfx_sli.c tdfx_video.c tdfxdefs.h 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:40:06

Removed files:
	driver/xf86-video-trident: COPYING ChangeLog INSTALL Makefile.am 
	                           Makefile.bsd-wrapper Makefile.in 
	                           README aclocal.m4 compile 
	                           config.guess config.h.in config.sub 
	                           configure configure.ac depcomp 
	                           install-sh ltmain.sh missing 
	driver/xf86-video-trident/man: Makefile.am Makefile.in 
	                               trident.man 
	driver/xf86-video-trident/src: Makefile.am Makefile.in 
	                               blade_accel.c blade_accel_exa.c 
	                               compat-api.h image_accel.c 
	                               trident.h trident_accel.c 
	                               trident_bank.c trident_dac.c 
	                               trident_dga.c trident_driver.c 
	                               trident_i2c.c trident_regs.h 
	                               trident_shadow.c trident_tv.c 
	                               trident_video.c tridenthelper.c 
	                               tridentpcirename.h 
	                               tridentramdac.c tvga_dac.c 
	                               xp4_accel.c xp4_accel_exa.c 
	                               xp_accel.c 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:40:39

Removed files:
	driver/xf86-video-tseng: COPYING ChangeLog INSTALL Makefile.am 
	                         Makefile.bsd-wrapper Makefile.in README 
	                         aclocal.m4 config.guess config.h.in 
	                         config.sub configure configure.ac 
	                         depcomp install-sh ltmain.sh missing 
	driver/xf86-video-tseng/man: Makefile.am Makefile.in tseng.man 
	driver/xf86-video-tseng/src: Makefile.am Makefile.in README 
	                             compat-api.h tseng.h tseng_accel.c 
	                             tseng_accel.h tseng_cursor.c 
	                             tseng_dga.c tseng_driver.c 
	                             tseng_mode.c tseng_pcirename.h 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 06:41:52

Removed files:
	driver/xf86-video-voodoo: COPYING ChangeLog INSTALL Makefile.am 
	                          Makefile.bsd-wrapper Makefile.in 
	                          README TODO aclocal.m4 config.guess 
	                          config.h.in config.sub configure 
	                          configure.ac depcomp install-sh 
	                          ltmain.sh missing 
	driver/xf86-video-voodoo/man: Makefile.am Makefile.in voodoo.man 
	driver/xf86-video-voodoo/src: Makefile.am Makefile.in 
	                              compat-api.h voodoo.h voodoo_dga.c 
	                              voodoo_driver.c voodoo_hardware.c 
	                              voodoo_pcirename.h 

Log message:
Remove. Unlinked from the build for 6 weeks.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/30 08:56:21

Modified files:
	usr.sbin/pkg_add/OpenBSD: UpdateSet.pm 

Log message:
tweak short_print to commonalize stems if they all have the same version
number.  Adjust the other shortener for that.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/06/30 08:57:25

Modified files:
	usr.sbin/pkg_add/OpenBSD: Add.pm AddDelete.pm Delete.pm 

Log message:
refactor a bit of code: retrieve_fullname/retrieve_size, so that
special files are a bit less special.

Leave ::Sample for now


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/06/30 09:12:00

Modified files:
	net/irssi      : Makefile 

Log message:
Bump to unbreak.
When splitting a package, a bump is needed...


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/06/30 09:32:06

Modified files:
	devel/py-html5lib/patches: patch-html5lib_tests_test_stream_py 

Log message:
Adding origin information of the patch that fixes compatibility
with pytest 4.x

Requested by feinerer@ based upon a discussion I was having with
danj@ about a similar change:

https://marc.info/?l=openbsd-ports&m=156184226517487&w=2

Best format for the information from sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/06/30 09:41:35

Modified files:
	emulators/mame : Makefile distinfo 

Log message:
Update mame to 0.211.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/30 09:51:11

Modified files:
	sys/dev/pci/drm/i915: intel_sdvo.c intel_sdvo_regs.h 

Log message:
drm/i915/sdvo: Implement proper HDMI audio support for SDVO

From Ville Syrjala
b08ec06c94fc5575cd2e5daea2db7861c9c72bd0 in linux 4.19.y/4.19.53
d74408f528261f900dddb9778f61b5c5a7a6249c in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/30 09:53:17

Modified files:
	sys/dev/pci/drm: drm_edid.c 

Log message:
drm/edid: abstract override/firmware EDID retrieval

From Jani Nikula
29a6026624cde0a378ac4ebd2f697ee6d941adf9 in linux 4.19.y/4.19.53
56a2b7f2a39a8d4b16a628e113decde3d7400879 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/30 09:57:13

Modified files:
	sys/dev/pci/drm: drm_edid.c drm_probe_helper.c 
	sys/dev/pci/drm/include/drm: drm_edid.h 

Log message:
drm: add fallback override/firmware EDID modes workaround

From Jani Nikula
04757d0e37897cdfa59050157b9083d661bd099e in linux 4.19.y/4.19.53
48eaeb7664c76139438724d520a1ea4a84a3ed92 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/06/30 10:46:40

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
No need to check if leaseFile is NULL in write_lease_db() as it is
fopen()'ed once during startup and never closed. With failure to
fopen() it being a fatal error.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/06/30 11:10:24

Modified files:
	driver/xf86-video-wildcatfb/src: wildcatfb_driver.c 
	driver/xf86-video-wsfb/src: wsfb_driver.c 
	driver/xf86-video-wsudl/src: wsudl_driver.c 

Log message:
Replace LoaderGetOS() calls by direct calls to uname(3).

In xserver 1.20, LoaderGetOS() is removed. ok and tweak jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/30 11:31:39

Modified files:
	lib/libc/gen   : getcwd.3 
	lib/libc/stdlib: realpath.3 

Log message:
tweak previous; ok guenther


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/30 12:46:23

Modified files:
	www/chromium/patches: patch-build_config_compiler_BUILD_gn 
	                      patch-tools_gn_tools_gn_args_cc 
Added files:
	www/chromium/patches: patch-build_config_v8_target_cpu_gni 
	                      patch-third_party_crc32c_src_src_crc32c_arm64_linux_check_h 
	                      patch-third_party_swiftshader_third_party_llvm-7_0_configs_linux_include_llvm_Config_config_h 

Log message:
unbreak on arm64


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/06/30 13:19:08

Modified files:
	sbin/dhclient  : dhclient.c kroute.c 

Log message:
getifaddrs() returns -1.

Change fatal() to fatalx() where errno has not been set.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/06/30 13:21:53

Modified files:
	usr.bin/tmux   : spawn.c tmux.h window.c 

Log message:
Do not double free window if pane fails to start.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/06/30 14:06:52

Modified files:
	lang/cython    : Makefile distinfo 

Log message:
Update to cython 0.29.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/06/30 14:07:54

Modified files:
	mail/kopano/core: Makefile 

Log message:
add lib dependency on xapian-core and fixup wantlib


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/06/30 15:27:43

Modified files:
	graphics/digikam-kde4: Makefile 

Log message:
mark BROKEN, problem following ninja update


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/30 17:02:28

Modified files:
	sys/net        : if.c 

Log message:
if_vinput should pass BPF_DIRECTION_IN to bpf_mtap, not OUT


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/06/30 18:01:34

Modified files:
	bin/sleep      : sleep.c 

Log message:
sleep(1): simplify argument parsing

- No need for intermediate variables, just build the timespec directly
- Use for-loops so we modify "cp" on a single line in each loop
- Parse subseconds with one loop: less code, easier to read, etc.
- Improve the subsecond parsing comment: make our intent really obvious

ok schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/06/30 18:44:29

Modified files:
	sys/net        : ifq.c 

Log message:
reintroduce ifiq_input counting backpressure

instead of counting the number of packets on an ifiq, count the
number of times a nic has tried to queue packets before the stack
processes them.

this new semantic interacted badly with virtual interfaces like
vlan and trunk, but these interfaces have been tweaked to call
if_vinput instead of if_input so their packets are processed directly
because theyre already running inside the stack.

im putting this in so we can see what the effect is. if it goes
badly i'll back it out again.

ok cheloha@ proctor@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/06/30 21:28:05

Modified files:
	sys/dev/pci/drm/i915: intel_breadcrumbs.c 

Log message:
revert local changes in code under #ifdef __linux__


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/06/30 23:11:32

Modified files:
	sys/ufs/ext2fs : ext2fs.h ext2fs_inode.c ext2fs_vfsops.c 

Log message:
Add more verbose messages about unsupported ext2fs features.
Based on FreeBSD r320578.

While here, rename a few macros to make the consisten and keep in sync with
Linux upstream.

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/06/30 23:18:53

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;

i've added a comment to note that i've been unable to update currencies
for hungary, iceland, ukraine, and vietnam for around 8 months now. the
economist appears to have stopped listing them, at least on their online
pages;


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/06/30 23:21:41

Modified files:
	devel/catch2   : Makefile distinfo 
	devel/catch2/pkg: PLIST 

Log message:
Update catch2 to 2.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/01 00:47:12

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
add clean=test
retest

okay jca@ (and tweaked accordingly)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/01 00:47:35

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
document retest / clean=test


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/01 00:52:16

Modified files:
	misc/mc        : Makefile 

Log message:
cleanup:
- move libssh2 to LIB_DEPENDS as mc links against it and ssh2 is
in WANTLIB
- remove pcre as mc is using glib as a search engine by default
ok robert@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/01 00:56:00

Modified files:
	usr.bin/tmux   : format-draw.c style.c tmux.1 tmux.h 

Log message:
Add a "fill" style attribute to clear the entire format drawing area in
a colour, GitHub issue 1815.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/01 01:07:08

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_filter.c rde_prefix.c rde_rib.c 

Log message:
Unify the way object in the RDE are reference counted. The affected
structures are pt_entry, rde_aspath, rde_communities, and nexthop.
The functions are always called *_ref and *_unref also the behaviour
when the last reference is removed is unified and now the object is
removed inside of the unref function. The actual bean-counting is not
modified by this diff.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/07/01 01:13:44

Modified files:
	sbin/fsck_ext2fs: inode.c pass1.c setup.c 

Log message:
Oops, forgot to commit this patch.


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/07/01 01:17:26

Modified files:
	sbin/newfs_ext2fs: mke2fs.c 

Log message:
Forgot to commit this patch.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/01 01:33:46

Modified files:
	usr.sbin/bgpd  : rde_rib.c 

Log message:
Remove no longer needed local variable oasp.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/07/01 01:40:43

Modified files:
	usr.sbin/smtpd : lka_filter.c 

Log message:
The proceed reply doesn't have a parameter, resulting in subsequent filters
in a chain to receive a "(null)" parameter.

Fix this by storing the current parameter in the session.

Found the hard way and fix tested by Mischa Peters.

OK gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/01 02:02:37

Modified files:
	graphics/digikam: Makefile 
	graphics/digikam/pkg: PLIST 

Log message:
are you kidding me ?
@tag means NO EXEC


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/07/01 02:24:49

Log message:
    Import Mesa 19.0.8
    
    Status:
    
    Vendor Tag:	mesa
    Release Tags:	mesa-19_0_8
    
    U xenocara/lib/mesa/Makefile.am
    C xenocara/lib/mesa/configure
    C xenocara/lib/mesa/VERSION
    U xenocara/lib/mesa/configure.ac
    U xenocara/lib/mesa/aclocal.m4
    U xenocara/lib/mesa/Makefile.in
    U xenocara/lib/mesa/autogen.sh
    U xenocara/lib/mesa/common.py
    U xenocara/lib/mesa/SConstruct
    U xenocara/lib/mesa/meson.build
    U xenocara/lib/mesa/meson_options.txt
    U xenocara/lib/mesa/install-lib-links.mk
    U xenocara/lib/mesa/install-gallium-links.mk
    U xenocara/lib/mesa/bin/ar-lib
    U xenocara/lib/mesa/bin/compile
    U xenocara/lib/mesa/bin/config.guess
    U xenocara/lib/mesa/bin/config.sub
    U xenocara/lib/mesa/bin/install-sh
    U xenocara/lib/mesa/bin/ltmain.sh
    U xenocara/lib/mesa/bin/missing
    U xenocara/lib/mesa/bin/git_sha1_gen.py
    U xenocara/lib/mesa/bin/meson.build
    U xenocara/lib/mesa/bin/install_megadrivers.py
    U xenocara/lib/mesa/bin/meson_get_version.py
    U xenocara/lib/mesa/bin/depcomp
    U xenocara/lib/mesa/bin/test-driver
    U xenocara/lib/mesa/build-support/conftest.dyn
    U xenocara/lib/mesa/build-support/conftest.map
    U xenocara/lib/mesa/include/c99_alloca.h
    U xenocara/lib/mesa/include/c99_compat.h
    U xenocara/lib/mesa/include/c99_math.h
    U xenocara/lib/mesa/include/no_extern_c.h
    U xenocara/lib/mesa/include/meson.build
    U xenocara/lib/mesa/include/GL/wglext.h
    U xenocara/lib/mesa/include/GL/gl.h
    U xenocara/lib/mesa/include/GL/glext.h
    U xenocara/lib/mesa/include/GL/glcorearb.h
    U xenocara/lib/mesa/include/GL/gl_mangle.h
    U xenocara/lib/mesa/include/GL/glx.h
    U xenocara/lib/mesa/include/GL/glxext.h
    U xenocara/lib/mesa/include/GL/glx_mangle.h
    U xenocara/lib/mesa/include/GL/osmesa.h
    U xenocara/lib/mesa/include/GL/mesa_glinterop.h
    U xenocara/lib/mesa/include/GL/internal/dri_interface.h
    U xenocara/lib/mesa/include/drm-uapi/drm.h
    U xenocara/lib/mesa/include/drm-uapi/drm_fourcc.h
    U xenocara/lib/mesa/include/drm-uapi/drm_mode.h
    U xenocara/lib/mesa/include/drm-uapi/i915_drm.h
    U xenocara/lib/mesa/include/drm-uapi/tegra_drm.h
    U xenocara/lib/mesa/include/drm-uapi/v3d_drm.h
    U xenocara/lib/mesa/include/drm-uapi/vc4_drm.h
    U xenocara/lib/mesa/include/c11/.editorconfig
    U xenocara/lib/mesa/include/c11/threads.h
    U xenocara/lib/mesa/include/c11/threads_posix.h
    U xenocara/lib/mesa/include/c11/threads_win32.h
    U xenocara/lib/mesa/include/D3D9/.editorconfig
    U xenocara/lib/mesa/include/D3D9/d3d9.h
    U xenocara/lib/mesa/include/D3D9/d3d9caps.h
    U xenocara/lib/mesa/include/D3D9/d3d9types.h
    U xenocara/lib/mesa/include/HaikuGL/GLRenderer.h
    U xenocara/lib/mesa/include/HaikuGL/GLView.h
    U xenocara/lib/mesa/include/HaikuGL/OpenGLKit.h
    U xenocara/lib/mesa/include/HaikuGL/README
    U xenocara/lib/mesa/include/pci_ids/i810_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/i915_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/i965_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r200_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r300_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/r600_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/radeon_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/radeonsi_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/virtio_gpu_pci_ids.h
    U xenocara/lib/mesa/include/pci_ids/vmwgfx_pci_ids.h
    U xenocara/lib/mesa/include/vulkan/.editorconfig
    U xenocara/lib/mesa/include/vulkan/vk_android_native_buffer.h
    U xenocara/lib/mesa/include/vulkan/vk_icd.h
    U xenocara/lib/mesa/include/vulkan/vk_platform.h
    U xenocara/lib/mesa/include/vulkan/vulkan.h
    U xenocara/lib/mesa/include/vulkan/vulkan_android.h
    U xenocara/lib/mesa/include/vulkan/vulkan_core.h
    U xenocara/lib/mesa/include/vulkan/vulkan_fuchsia.h
    U xenocara/lib/mesa/include/vulkan/vulkan_intel.h
    U xenocara/lib/mesa/include/vulkan/vulkan_ios.h
    U xenocara/lib/mesa/include/vulkan/vulkan_macos.h
    U xenocara/lib/mesa/include/vulkan/vulkan_vi.h
    U xenocara/lib/mesa/include/vulkan/vulkan_wayland.h
    U xenocara/lib/mesa/include/vulkan/vulkan_win32.h
    U xenocara/lib/mesa/include/vulkan/vulkan_xcb.h
    U xenocara/lib/mesa/include/vulkan/vulkan_xlib.h
    U xenocara/lib/mesa/include/vulkan/vulkan_xlib_randr.h
    U xenocara/lib/mesa/include/vulkan/vulkan_xlib_xrandr.h
    U xenocara/lib/mesa/include/GLES/egl.h
    U xenocara/lib/mesa/include/GLES/gl.h
    U xenocara/lib/mesa/include/GLES/glext.h
    U xenocara/lib/mesa/include/GLES/glplatform.h
    U xenocara/lib/mesa/include/GLES2/gl2.h
    U xenocara/lib/mesa/include/GLES2/gl2ext.h
    U xenocara/lib/mesa/include/GLES2/gl2platform.h
    U xenocara/lib/mesa/include/GLES3/gl3.h
    U xenocara/lib/mesa/include/GLES3/gl31.h
    U xenocara/lib/mesa/include/GLES3/gl32.h
    U xenocara/lib/mesa/include/GLES3/gl3ext.h
    U xenocara/lib/mesa/include/GLES3/gl3platform.h
    U xenocara/lib/mesa/include/KHR/khrplatform.h
    U xenocara/lib/mesa/include/EGL/eglext.h
    U xenocara/lib/mesa/include/EGL/egl.h
    U xenocara/lib/mesa/include/EGL/eglextchromium.h
    U xenocara/lib/mesa/include/EGL/eglmesaext.h
    U xenocara/lib/mesa/include/EGL/eglplatform.h
    U xenocara/lib/mesa/include/CL/cl.h
    U xenocara/lib/mesa/include/CL/cl.hpp
    U xenocara/lib/mesa/include/CL/cl_d3d10.h
    U xenocara/lib/mesa/include/CL/cl_d3d11.h
    U xenocara/lib/mesa/include/CL/cl_dx9_media_sharing.h
    U xenocara/lib/mesa/include/CL/cl_egl.h
    U xenocara/lib/mesa/include/CL/cl_ext.h
    U xenocara/lib/mesa/include/CL/cl_gl.h
    U xenocara/lib/mesa/include/CL/cl_gl_ext.h
    U xenocara/lib/mesa/include/CL/cl_platform.h
    U xenocara/lib/mesa/include/CL/opencl.h
    U xenocara/lib/mesa/include/d3dadapter/d3dadapter9.h
    U xenocara/lib/mesa/include/d3dadapter/drm.h
    U xenocara/lib/mesa/include/d3dadapter/present.h
    U xenocara/lib/mesa/m4/ax_check_compile_flag.m4
    U xenocara/lib/mesa/m4/ax_check_gnu_make.m4
    U xenocara/lib/mesa/m4/ax_check_python_mako_module.m4
    U xenocara/lib/mesa/m4/ax_gcc_builtin.m4
    U xenocara/lib/mesa/m4/ax_gcc_func_attribute.m4
    U xenocara/lib/mesa/m4/ax_prog_bison.m4
    U xenocara/lib/mesa/m4/ax_prog_flex.m4
    U xenocara/lib/mesa/m4/ax_pthread.m4
    U xenocara/lib/mesa/m4/libtool.m4
    U xenocara/lib/mesa/m4/ltoptions.m4
    U xenocara/lib/mesa/m4/ltsugar.m4
    U xenocara/lib/mesa/m4/ltversion.m4
    U xenocara/lib/mesa/m4/lt~obsolete.m4
    U xenocara/lib/mesa/src/Makefile.am
    U xenocara/lib/mesa/src/Makefile.in
    U xenocara/lib/mesa/src/meson.build
    U xenocara/lib/mesa/src/SConscript
    U xenocara/lib/mesa/src/egl/Makefile.am
    U xenocara/lib/mesa/src/egl/Makefile.in
    U xenocara/lib/mesa/src/egl/Makefile.sources
    U xenocara/lib/mesa/src/egl/g_egldispatchstubs.c
    U xenocara/lib/mesa/src/egl/g_egldispatchstubs.h
    U xenocara/lib/mesa/src/egl/egl-entrypoint-check
    U xenocara/lib/mesa/src/egl/egl-symbols-check
    U xenocara/lib/mesa/src/egl/SConscript
    U xenocara/lib/mesa/src/egl/meson.build
    U xenocara/lib/mesa/src/egl/main/egl.pc.in
    U xenocara/lib/mesa/src/egl/main/eglapi.c
    U xenocara/lib/mesa/src/egl/main/eglapi.h
    U xenocara/lib/mesa/src/egl/main/eglarray.c
    U xenocara/lib/mesa/src/egl/main/eglarray.h
    U xenocara/lib/mesa/src/egl/main/eglconfig.c
    U xenocara/lib/mesa/src/egl/main/eglconfig.h
    U xenocara/lib/mesa/src/egl/main/eglcontext.c
    U xenocara/lib/mesa/src/egl/main/eglcontext.h
    U xenocara/lib/mesa/src/egl/main/eglcurrent.c
    U xenocara/lib/mesa/src/egl/main/eglcurrent.h
    U xenocara/lib/mesa/src/egl/main/egldefines.h
    U xenocara/lib/mesa/src/egl/main/egldevice.c
    U xenocara/lib/mesa/src/egl/main/egldevice.h
    U xenocara/lib/mesa/src/egl/main/egldisplay.c
    U xenocara/lib/mesa/src/egl/main/egldisplay.h
    U xenocara/lib/mesa/src/egl/main/egldriver.c
    U xenocara/lib/mesa/src/egl/main/egldriver.h
    U xenocara/lib/mesa/src/egl/main/eglfallbacks.c
    U xenocara/lib/mesa/src/egl/main/eglglobals.c
    U xenocara/lib/mesa/src/egl/main/eglglobals.h
    U xenocara/lib/mesa/src/egl/main/egl.def
    U xenocara/lib/mesa/src/egl/main/eglimage.c
    U xenocara/lib/mesa/src/egl/main/eglimage.h
    U xenocara/lib/mesa/src/egl/main/egllog.c
    U xenocara/lib/mesa/src/egl/main/egllog.h
    U xenocara/lib/mesa/src/egl/main/eglsurface.c
    U xenocara/lib/mesa/src/egl/main/eglsurface.h
    U xenocara/lib/mesa/src/egl/main/eglsync.c
    U xenocara/lib/mesa/src/egl/main/eglsync.h
    U xenocara/lib/mesa/src/egl/main/eglentrypoint.h
    U xenocara/lib/mesa/src/egl/main/egltypedefs.h
    U xenocara/lib/mesa/src/egl/main/eglglvnd.c
    U xenocara/lib/mesa/src/egl/main/egldispatchstubs.h
    U xenocara/lib/mesa/src/egl/main/egldispatchstubs.c
    U xenocara/lib/mesa/src/egl/main/README.txt
    U xenocara/lib/mesa/src/egl/main/50_mesa.json
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/Makefile.am
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.h
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/Makefile.in
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.c
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/wayland-drm.xml
    U xenocara/lib/mesa/src/egl/wayland/wayland-drm/meson.build
    C xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2.h
    U xenocara/lib/mesa/src/egl/drivers/dri2/egl_dri2_fallbacks.h
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_wayland.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_drm.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_surfaceless.c
    C xenocara/lib/mesa/src/egl/drivers/dri2/platform_android.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11_dri3.c
    U xenocara/lib/mesa/src/egl/drivers/dri2/platform_x11_dri3.h
    U xenocara/lib/mesa/src/egl/drivers/haiku/.editorconfig
    U xenocara/lib/mesa/src/egl/drivers/haiku/egl_haiku.cpp
    U xenocara/lib/mesa/src/egl/generate/gen_egl_dispatch.py
    U xenocara/lib/mesa/src/egl/generate/eglFunctionList.py
    U xenocara/lib/mesa/src/egl/generate/egl.xml
    U xenocara/lib/mesa/src/egl/generate/egl_other.xml
    U xenocara/lib/mesa/src/gbm/Makefile.am
    U xenocara/lib/mesa/src/gbm/Makefile.in
    U xenocara/lib/mesa/src/gbm/Makefile.sources
    U xenocara/lib/mesa/src/gbm/gbm-symbols-check
    U xenocara/lib/mesa/src/gbm/meson.build
    U xenocara/lib/mesa/src/gbm/main/gbm.pc.in
    U xenocara/lib/mesa/src/gbm/main/gbm.h
    U xenocara/lib/mesa/src/gbm/main/backend.c
    U xenocara/lib/mesa/src/gbm/main/backend.h
    U xenocara/lib/mesa/src/gbm/main/gbm.c
    U xenocara/lib/mesa/src/gbm/main/gbmint.h
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_dri.c
    U xenocara/lib/mesa/src/gbm/backends/dri/gbm_driint.h
    U xenocara/lib/mesa/src/mapi/Makefile.am
    U xenocara/lib/mesa/src/mapi/Makefile.in
    U xenocara/lib/mesa/src/mapi/Makefile.sources
    U xenocara/lib/mesa/src/mapi/entry.c
    U xenocara/lib/mesa/src/mapi/entry.h
    U xenocara/lib/mesa/src/mapi/entry_x86-64_tls.h
    U xenocara/lib/mesa/src/mapi/entry_x86_tls.h
    U xenocara/lib/mesa/src/mapi/entry_x86_tsd.h
    U xenocara/lib/mesa/src/mapi/entry_ppc64le_tls.h
    U xenocara/lib/mesa/src/mapi/entry_ppc64le_tsd.h
    U xenocara/lib/mesa/src/mapi/mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/u_current.c
    U xenocara/lib/mesa/src/mapi/u_current.h
    U xenocara/lib/mesa/src/mapi/u_execmem.c
    U xenocara/lib/mesa/src/mapi/u_execmem.h
    U xenocara/lib/mesa/src/mapi/mapi_glapi.c
    U xenocara/lib/mesa/src/mapi/stub.c
    U xenocara/lib/mesa/src/mapi/stub.h
    U xenocara/lib/mesa/src/mapi/table.c
    U xenocara/lib/mesa/src/mapi/table.h
    U xenocara/lib/mesa/src/mapi/mapi_abi.py
    U xenocara/lib/mesa/src/mapi/meson.build
    U xenocara/lib/mesa/src/mapi/es1api/glesv1_cm.pc.in
    U xenocara/lib/mesa/src/mapi/es1api/glapi_mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/es1api/ABI-check
    U xenocara/lib/mesa/src/mapi/es1api/meson.build
    U xenocara/lib/mesa/src/mapi/es2api/glesv2.pc.in
    U xenocara/lib/mesa/src/mapi/es2api/glapi_mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/es2api/ABI-check
    U xenocara/lib/mesa/src/mapi/es2api/meson.build
    U xenocara/lib/mesa/src/mapi/glapi/glapi_mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/glapi/glprocs.h
    U xenocara/lib/mesa/src/mapi/glapi/glapitemp.h
    U xenocara/lib/mesa/src/mapi/glapi/glapitable.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86-64.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi_gentable.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_x86.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi_sparc.S
    U xenocara/lib/mesa/src/mapi/glapi/glapi_dispatch.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_entrypoint.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_getproc.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi_nop.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi.c
    U xenocara/lib/mesa/src/mapi/glapi/glapi.h
    U xenocara/lib/mesa/src/mapi/glapi/glapi_priv.h
    U xenocara/lib/mesa/src/mapi/glapi/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/meson.build
    U xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.am
    U xenocara/lib/mesa/src/mapi/glapi/gen/Makefile.in
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/es_EXT.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_es_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_and_glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_base_instance.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_blend_func_extended.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_bindless_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clear_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_clip_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_color_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compressed_texture_pixel_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_buffer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_compute_variable_group_size.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_copy_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_debug_output.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_buffer_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_depth_clamp.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_direct_state_access.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_elements_base_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_indirect.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_draw_instanced.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES2_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_ES3_compatibility.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gl_spirv.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_program_binary.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_get_texture_sub_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_fp64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader_int64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_gpu_shader5.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_indirect_parameters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_instanced_arrays.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_internalformat_query2.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_invalidate_subdata.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_map_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_multi_bind.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sync.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_pipeline_statistics_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_program_interface_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sample_shading.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sampler_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_seamless_cube_map.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_atomic_counters.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_image_load_store.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_subroutine.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_shader_storage_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_sparse_buffer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_tessellation_shader.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rg.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_buffer_range.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_compression_rgtc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_cube_map_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_float.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_gather.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_rgb10_a2ui.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_storage.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_texture_view.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_uniform_buffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_viewport_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_64bit.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_attrib_binding.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_depth_clamp_separate.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_draw_buffers_blend.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_gpu_shader_int64.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/AMD_performance_monitor.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/ARB_vertex_type_2_10_10_10_rev.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_object_purgeable.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/APPLE_vertex_array_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_draw_buffers2.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_external_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_gpu_shader4.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_external_objects_fd.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_framebuffer_object.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_multisampled_render_to_texture.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_packed_depth_stencil.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_provoking_vertex.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_separate_shader_objects.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_array.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_texture_integer.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_transform_feedback.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_vertex_attrib_64bit.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/EXT_window_rectangles.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GREMEDY_string_marker.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/INTEL_performance_query.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_debug.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_context_flush_control.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_robustness_es.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/KHR_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/MESA_tile_raster_order.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_conditional_render.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_primitive_restart.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_texture_barrier.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/NV_vdpau_interop.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_EGL_image.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_fixed_point.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_single_precision.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/OES_texture_compression_astc.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL3x.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/GL4x.xml
    C xenocara/lib/mesa/src/mapi/glapi/gen/gl_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/license.py
    C xenocara/lib/mesa/src/mapi/glapi/gen/static_data.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/typeexpr.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_API.xml
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_common.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/apiexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_apitemp.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_enums.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_genexec.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_gentable.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_marshal.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_marshal_h.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_procs.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_SPARC_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86-64_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_x86_asm.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_recv.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_send.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_proto_size.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/SConscript
    U xenocara/lib/mesa/src/mapi/glapi/gen/glX_server_table.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/marshal_XML.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/remap_helper.py
    U xenocara/lib/mesa/src/mapi/glapi/gen/gl_API.dtd
    U xenocara/lib/mesa/src/mapi/glapi/gen/meson.build
    U xenocara/lib/mesa/src/mapi/glapi/registry/gl.xml
    U xenocara/lib/mesa/src/mapi/glapi/tests/check_table.cpp
    U xenocara/lib/mesa/src/mapi/new/genCommon.py
    U xenocara/lib/mesa/src/mapi/new/gen_gldispatch_mapi.py
    U xenocara/lib/mesa/src/mapi/shared-glapi/glapi_mapi_tmp.h
    U xenocara/lib/mesa/src/mapi/shared-glapi/SConscript
    U xenocara/lib/mesa/src/mapi/shared-glapi/meson.build
    U xenocara/lib/mesa/src/mapi/shared-glapi/tests/check_table.cpp
    U xenocara/lib/mesa/src/mesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/Makefile.sources
    U xenocara/lib/mesa/src/mesa/gl.pc.in
    U xenocara/lib/mesa/src/mesa/meson.build
    U xenocara/lib/mesa/src/mesa/SConscript
    U xenocara/lib/mesa/src/mesa/main/extensions_table.c
    U xenocara/lib/mesa/src/mesa/main/imports.c
    U xenocara/lib/mesa/src/mesa/main/enums.c
    U xenocara/lib/mesa/src/mesa/main/api_exec.c
    U xenocara/lib/mesa/src/mesa/main/marshal_generated.c
    U xenocara/lib/mesa/src/mesa/main/marshal_generated.h
    U xenocara/lib/mesa/src/mesa/main/dispatch.h
    U xenocara/lib/mesa/src/mesa/main/remap_helper.h
    U xenocara/lib/mesa/src/mesa/main/accum.c
    U xenocara/lib/mesa/src/mesa/main/accum.h
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.c
    U xenocara/lib/mesa/src/mesa/main/api_arrayelt.h
    U xenocara/lib/mesa/src/mesa/main/api_exec.h
    U xenocara/lib/mesa/src/mesa/main/api_loopback.c
    U xenocara/lib/mesa/src/mesa/main/api_loopback.h
    U xenocara/lib/mesa/src/mesa/main/arbprogram.c
    U xenocara/lib/mesa/src/mesa/main/arbprogram.h
    U xenocara/lib/mesa/src/mesa/main/arrayobj.c
    U xenocara/lib/mesa/src/mesa/main/arrayobj.h
    U xenocara/lib/mesa/src/mesa/main/atifragshader.c
    U xenocara/lib/mesa/src/mesa/main/atifragshader.h
    U xenocara/lib/mesa/src/mesa/main/attrib.c
    U xenocara/lib/mesa/src/mesa/main/attrib.h
    U xenocara/lib/mesa/src/mesa/main/barrier.c
    U xenocara/lib/mesa/src/mesa/main/barrier.h
    U xenocara/lib/mesa/src/mesa/main/bbox.c
    U xenocara/lib/mesa/src/mesa/main/bbox.h
    U xenocara/lib/mesa/src/mesa/main/blend.c
    U xenocara/lib/mesa/src/mesa/main/blend.h
    U xenocara/lib/mesa/src/mesa/main/blit.c
    U xenocara/lib/mesa/src/mesa/main/blit.h
    U xenocara/lib/mesa/src/mesa/main/bufferobj.c
    U xenocara/lib/mesa/src/mesa/main/bufferobj.h
    U xenocara/lib/mesa/src/mesa/main/buffers.c
    U xenocara/lib/mesa/src/mesa/main/buffers.h
    U xenocara/lib/mesa/src/mesa/main/clear.c
    U xenocara/lib/mesa/src/mesa/main/clear.h
    U xenocara/lib/mesa/src/mesa/main/clip.c
    U xenocara/lib/mesa/src/mesa/main/clip.h
    U xenocara/lib/mesa/src/mesa/main/colormac.h
    U xenocara/lib/mesa/src/mesa/main/colortab.c
    U xenocara/lib/mesa/src/mesa/main/colortab.h
    U xenocara/lib/mesa/src/mesa/main/compute.c
    U xenocara/lib/mesa/src/mesa/main/compute.h
    U xenocara/lib/mesa/src/mesa/main/compiler.h
    U xenocara/lib/mesa/src/mesa/main/condrender.c
    U xenocara/lib/mesa/src/mesa/main/condrender.h
    U xenocara/lib/mesa/src/mesa/main/config.h
    C xenocara/lib/mesa/src/mesa/main/context.c
    U xenocara/lib/mesa/src/mesa/main/conservativeraster.c
    U xenocara/lib/mesa/src/mesa/main/conservativeraster.h
    U xenocara/lib/mesa/src/mesa/main/context.h
    U xenocara/lib/mesa/src/mesa/main/convolve.c
    U xenocara/lib/mesa/src/mesa/main/convolve.h
    U xenocara/lib/mesa/src/mesa/main/copyimage.c
    U xenocara/lib/mesa/src/mesa/main/copyimage.h
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.c
    U xenocara/lib/mesa/src/mesa/main/cpuinfo.h
    U xenocara/lib/mesa/src/mesa/main/dd.h
    U xenocara/lib/mesa/src/mesa/main/debug.c
    U xenocara/lib/mesa/src/mesa/main/debug.h
    U xenocara/lib/mesa/src/mesa/main/debug_output.c
    U xenocara/lib/mesa/src/mesa/main/debug_output.h
    U xenocara/lib/mesa/src/mesa/main/depth.c
    U xenocara/lib/mesa/src/mesa/main/depth.h
    U xenocara/lib/mesa/src/mesa/main/dlist.c
    U xenocara/lib/mesa/src/mesa/main/dlist.h
    U xenocara/lib/mesa/src/mesa/main/draw.c
    U xenocara/lib/mesa/src/mesa/main/draw.h
    U xenocara/lib/mesa/src/mesa/main/drawpix.c
    U xenocara/lib/mesa/src/mesa/main/drawpix.h
    U xenocara/lib/mesa/src/mesa/main/drawtex.c
    U xenocara/lib/mesa/src/mesa/main/drawtex.h
    U xenocara/lib/mesa/src/mesa/main/enums.h
    U xenocara/lib/mesa/src/mesa/main/draw_validate.c
    U xenocara/lib/mesa/src/mesa/main/draw_validate.h
    U xenocara/lib/mesa/src/mesa/main/enable.c
    U xenocara/lib/mesa/src/mesa/main/enable.h
    U xenocara/lib/mesa/src/mesa/main/errors.c
    U xenocara/lib/mesa/src/mesa/main/errors.h
    U xenocara/lib/mesa/src/mesa/main/eval.c
    U xenocara/lib/mesa/src/mesa/main/eval.h
    U xenocara/lib/mesa/src/mesa/main/execmem.c
    U xenocara/lib/mesa/src/mesa/main/execmem.h
    U xenocara/lib/mesa/src/mesa/main/extensions.c
    U xenocara/lib/mesa/src/mesa/main/extensions.h
    U xenocara/lib/mesa/src/mesa/main/extensions_table.h
    U xenocara/lib/mesa/src/mesa/main/externalobjects.c
    U xenocara/lib/mesa/src/mesa/main/externalobjects.h
    U xenocara/lib/mesa/src/mesa/main/fbobject.c
    U xenocara/lib/mesa/src/mesa/main/fbobject.h
    U xenocara/lib/mesa/src/mesa/main/feedback.c
    U xenocara/lib/mesa/src/mesa/main/feedback.h
    U xenocara/lib/mesa/src/mesa/main/ff_fragment_shader.cpp
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.c
    U xenocara/lib/mesa/src/mesa/main/ffvertex_prog.h
    U xenocara/lib/mesa/src/mesa/main/fog.c
    U xenocara/lib/mesa/src/mesa/main/fog.h
    U xenocara/lib/mesa/src/mesa/main/format_fallback.c
    U xenocara/lib/mesa/src/mesa/main/format_info.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.h
    U xenocara/lib/mesa/src/mesa/main/format_pack.c
    U xenocara/lib/mesa/src/mesa/main/format_unpack.h
    U xenocara/lib/mesa/src/mesa/main/format_unpack.c
    U xenocara/lib/mesa/src/mesa/main/formatquery.c
    U xenocara/lib/mesa/src/mesa/main/formatquery.h
    U xenocara/lib/mesa/src/mesa/main/formats.c
    U xenocara/lib/mesa/src/mesa/main/formats.h
    U xenocara/lib/mesa/src/mesa/main/format_utils.c
    U xenocara/lib/mesa/src/mesa/main/format_utils.h
    U xenocara/lib/mesa/src/mesa/main/framebuffer.c
    U xenocara/lib/mesa/src/mesa/main/framebuffer.h
    U xenocara/lib/mesa/src/mesa/main/get.c
    U xenocara/lib/mesa/src/mesa/main/get.h
    U xenocara/lib/mesa/src/mesa/main/get_hash.h
    U xenocara/lib/mesa/src/mesa/main/genmipmap.c
    U xenocara/lib/mesa/src/mesa/main/genmipmap.h
    U xenocara/lib/mesa/src/mesa/main/getstring.c
    U xenocara/lib/mesa/src/mesa/main/glformats.c
    U xenocara/lib/mesa/src/mesa/main/glformats.h
    U xenocara/lib/mesa/src/mesa/main/glspirv.c
    U xenocara/lib/mesa/src/mesa/main/glspirv.h
    U xenocara/lib/mesa/src/mesa/main/glthread.c
    U xenocara/lib/mesa/src/mesa/main/glthread.h
    U xenocara/lib/mesa/src/mesa/main/glheader.h
    U xenocara/lib/mesa/src/mesa/main/hash.c
    U xenocara/lib/mesa/src/mesa/main/hash.h
    U xenocara/lib/mesa/src/mesa/main/hint.c
    U xenocara/lib/mesa/src/mesa/main/hint.h
    U xenocara/lib/mesa/src/mesa/main/histogram.c
    U xenocara/lib/mesa/src/mesa/main/histogram.h
    U xenocara/lib/mesa/src/mesa/main/image.c
    U xenocara/lib/mesa/src/mesa/main/image.h
    U xenocara/lib/mesa/src/mesa/main/imports.h
    U xenocara/lib/mesa/src/mesa/main/light.c
    U xenocara/lib/mesa/src/mesa/main/light.h
    U xenocara/lib/mesa/src/mesa/main/lines.c
    U xenocara/lib/mesa/src/mesa/main/lines.h
    U xenocara/lib/mesa/src/mesa/main/macros.h
    U xenocara/lib/mesa/src/mesa/main/marshal.c
    U xenocara/lib/mesa/src/mesa/main/marshal.h
    U xenocara/lib/mesa/src/mesa/main/matrix.c
    U xenocara/lib/mesa/src/mesa/main/matrix.h
    U xenocara/lib/mesa/src/mesa/main/mipmap.c
    U xenocara/lib/mesa/src/mesa/main/mipmap.h
    U xenocara/lib/mesa/src/mesa/main/mm.c
    U xenocara/lib/mesa/src/mesa/main/mm.h
    U xenocara/lib/mesa/src/mesa/main/menums.h
    U xenocara/lib/mesa/src/mesa/main/mtypes.h
    U xenocara/lib/mesa/src/mesa/main/multisample.c
    U xenocara/lib/mesa/src/mesa/main/multisample.h
    U xenocara/lib/mesa/src/mesa/main/objectlabel.c
    U xenocara/lib/mesa/src/mesa/main/objectlabel.h
    U xenocara/lib/mesa/src/mesa/main/objectpurge.c
    U xenocara/lib/mesa/src/mesa/main/objectpurge.h
    U xenocara/lib/mesa/src/mesa/main/pack.c
    U xenocara/lib/mesa/src/mesa/main/pack.h
    U xenocara/lib/mesa/src/mesa/main/pbo.c
    U xenocara/lib/mesa/src/mesa/main/pbo.h
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.c
    U xenocara/lib/mesa/src/mesa/main/performance_monitor.h
    U xenocara/lib/mesa/src/mesa/main/performance_query.c
    U xenocara/lib/mesa/src/mesa/main/performance_query.h
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.c
    U xenocara/lib/mesa/src/mesa/main/pipelineobj.h
    U xenocara/lib/mesa/src/mesa/main/pixel.c
    U xenocara/lib/mesa/src/mesa/main/pixel.h
    U xenocara/lib/mesa/src/mesa/main/pixelstore.c
    U xenocara/lib/mesa/src/mesa/main/pixelstore.h
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.c
    U xenocara/lib/mesa/src/mesa/main/pixeltransfer.h
    U xenocara/lib/mesa/src/mesa/main/points.c
    U xenocara/lib/mesa/src/mesa/main/points.h
    U xenocara/lib/mesa/src/mesa/main/polygon.c
    U xenocara/lib/mesa/src/mesa/main/polygon.h
    U xenocara/lib/mesa/src/mesa/main/program_binary.c
    U xenocara/lib/mesa/src/mesa/main/program_binary.h
    U xenocara/lib/mesa/src/mesa/main/program_resource.c
    U xenocara/lib/mesa/src/mesa/main/program_resource.h
    U xenocara/lib/mesa/src/mesa/main/querymatrix.c
    U xenocara/lib/mesa/src/mesa/main/querymatrix.h
    U xenocara/lib/mesa/src/mesa/main/queryobj.c
    U xenocara/lib/mesa/src/mesa/main/queryobj.h
    U xenocara/lib/mesa/src/mesa/main/rastpos.c
    U xenocara/lib/mesa/src/mesa/main/rastpos.h
    U xenocara/lib/mesa/src/mesa/main/readpix.c
    U xenocara/lib/mesa/src/mesa/main/readpix.h
    U xenocara/lib/mesa/src/mesa/main/remap.c
    U xenocara/lib/mesa/src/mesa/main/remap.h
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.c
    U xenocara/lib/mesa/src/mesa/main/renderbuffer.h
    U xenocara/lib/mesa/src/mesa/main/robustness.c
    U xenocara/lib/mesa/src/mesa/main/samplerobj.c
    U xenocara/lib/mesa/src/mesa/main/samplerobj.h
    U xenocara/lib/mesa/src/mesa/main/scissor.c
    U xenocara/lib/mesa/src/mesa/main/scissor.h
    U xenocara/lib/mesa/src/mesa/main/shaderapi.c
    U xenocara/lib/mesa/src/mesa/main/shaderapi.h
    U xenocara/lib/mesa/src/mesa/main/shaderimage.c
    U xenocara/lib/mesa/src/mesa/main/shaderimage.h
    U xenocara/lib/mesa/src/mesa/main/shaderobj.c
    U xenocara/lib/mesa/src/mesa/main/shaderobj.h
    U xenocara/lib/mesa/src/mesa/main/shader_query.cpp
    U xenocara/lib/mesa/src/mesa/main/shared.c
    U xenocara/lib/mesa/src/mesa/main/shared.h
    U xenocara/lib/mesa/src/mesa/main/state.c
    U xenocara/lib/mesa/src/mesa/main/state.h
    U xenocara/lib/mesa/src/mesa/main/stencil.c
    U xenocara/lib/mesa/src/mesa/main/stencil.h
    U xenocara/lib/mesa/src/mesa/main/syncobj.c
    U xenocara/lib/mesa/src/mesa/main/syncobj.h
    U xenocara/lib/mesa/src/mesa/main/texcompress.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_astc.cpp
    U xenocara/lib/mesa/src/mesa/main/texcompress_astc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_bptc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_cpal.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_etc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_fxt1.h
    U xenocara/lib/mesa/src/mesa/main/texcompress.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_rgtc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.c
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc.h
    U xenocara/lib/mesa/src/mesa/main/texcompress_s3tc_tmp.h
    U xenocara/lib/mesa/src/mesa/main/texenv.c
    U xenocara/lib/mesa/src/mesa/main/texenv.h
    U xenocara/lib/mesa/src/mesa/main/texenvprogram.h
    U xenocara/lib/mesa/src/mesa/main/texformat.c
    U xenocara/lib/mesa/src/mesa/main/texformat.h
    U xenocara/lib/mesa/src/mesa/main/texgen.c
    U xenocara/lib/mesa/src/mesa/main/texgen.h
    U xenocara/lib/mesa/src/mesa/main/texgetimage.c
    U xenocara/lib/mesa/src/mesa/main/texgetimage.h
    U xenocara/lib/mesa/src/mesa/main/teximage.c
    U xenocara/lib/mesa/src/mesa/main/teximage.h
    U xenocara/lib/mesa/src/mesa/main/texobj.c
    U xenocara/lib/mesa/src/mesa/main/texobj.h
    U xenocara/lib/mesa/src/mesa/main/texparam.c
    U xenocara/lib/mesa/src/mesa/main/texparam.h
    U xenocara/lib/mesa/src/mesa/main/texstate.c
    U xenocara/lib/mesa/src/mesa/main/texstate.h
    U xenocara/lib/mesa/src/mesa/main/texstorage.c
    U xenocara/lib/mesa/src/mesa/main/texstorage.h
    U xenocara/lib/mesa/src/mesa/main/texstore.c
    U xenocara/lib/mesa/src/mesa/main/texstore.h
    U xenocara/lib/mesa/src/mesa/main/texturebindless.c
    U xenocara/lib/mesa/src/mesa/main/texturebindless.h
    U xenocara/lib/mesa/src/mesa/main/textureview.c
    U xenocara/lib/mesa/src/mesa/main/textureview.h
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.c
    U xenocara/lib/mesa/src/mesa/main/transformfeedback.h
    U xenocara/lib/mesa/src/mesa/main/vdpau.c
    U xenocara/lib/mesa/src/mesa/main/uniform_query.cpp
    U xenocara/lib/mesa/src/mesa/main/uniforms.c
    U xenocara/lib/mesa/src/mesa/main/uniforms.h
    U xenocara/lib/mesa/src/mesa/main/varray.c
    U xenocara/lib/mesa/src/mesa/main/varray.h
    U xenocara/lib/mesa/src/mesa/main/vdpau.h
    U xenocara/lib/mesa/src/mesa/main/version.c
    U xenocara/lib/mesa/src/mesa/main/version.h
    U xenocara/lib/mesa/src/mesa/main/viewport.c
    U xenocara/lib/mesa/src/mesa/main/viewport.h
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.c
    U xenocara/lib/mesa/src/mesa/main/vtxfmt.h
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.c
    U xenocara/lib/mesa/src/mesa/main/es1_conversion.h
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.c
    U xenocara/lib/mesa/src/mesa/main/streaming-load-memcpy.h
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.c
    U xenocara/lib/mesa/src/mesa/main/sse_minmax.h
    U xenocara/lib/mesa/src/mesa/main/meson.build
    U xenocara/lib/mesa/src/mesa/main/format_fallback.py
    U xenocara/lib/mesa/src/mesa/main/format_info.py
    U xenocara/lib/mesa/src/mesa/main/format_pack.py
    U xenocara/lib/mesa/src/mesa/main/format_parser.py
    U xenocara/lib/mesa/src/mesa/main/format_unpack.py
    U xenocara/lib/mesa/src/mesa/main/formats.csv
    U xenocara/lib/mesa/src/mesa/main/get_hash_generator.py
    U xenocara/lib/mesa/src/mesa/main/get_hash_params.py
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.am
    U xenocara/lib/mesa/src/mesa/main/tests/Makefile.in
    U xenocara/lib/mesa/src/mesa/main/tests/enum_strings.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/dispatch_sanity.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_formats.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/mesa_extensions.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/program_state_string.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/stubs.cpp
    U xenocara/lib/mesa/src/mesa/main/tests/meson.build
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.c
    U xenocara/lib/mesa/src/mesa/program/symbol_table.c
    U xenocara/lib/mesa/src/mesa/program/dummy_errors.c
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.c
    U xenocara/lib/mesa/src/mesa/program/arbprogparse.h
    C xenocara/lib/mesa/src/mesa/program/ir_to_mesa.cpp
    C xenocara/lib/mesa/src/mesa/program/ir_to_mesa.h
    U xenocara/lib/mesa/src/mesa/program/lex.yy.c
    U xenocara/lib/mesa/src/mesa/program/prog_cache.c
    U xenocara/lib/mesa/src/mesa/program/prog_cache.h
    U xenocara/lib/mesa/src/mesa/program/prog_execute.c
    U xenocara/lib/mesa/src/mesa/program/prog_execute.h
    U xenocara/lib/mesa/src/mesa/program/prog_instruction.c
    U xenocara/lib/mesa/src/mesa/program/prog_instruction.h
    U xenocara/lib/mesa/src/mesa/program/prog_noise.c
    U xenocara/lib/mesa/src/mesa/program/prog_noise.h
    U xenocara/lib/mesa/src/mesa/program/prog_opt_constant_fold.c
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.c
    U xenocara/lib/mesa/src/mesa/program/prog_optimize.h
    U xenocara/lib/mesa/src/mesa/program/prog_parameter.h
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.c
    U xenocara/lib/mesa/src/mesa/program/prog_parameter_layout.h
    U xenocara/lib/mesa/src/mesa/program/prog_print.c
    U xenocara/lib/mesa/src/mesa/program/prog_print.h
    U xenocara/lib/mesa/src/mesa/program/program.c
    U xenocara/lib/mesa/src/mesa/program/program.h
    U xenocara/lib/mesa/src/mesa/program/programopt.c
    U xenocara/lib/mesa/src/mesa/program/programopt.h
    U xenocara/lib/mesa/src/mesa/program/program_parse_extra.c
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.c
    U xenocara/lib/mesa/src/mesa/program/program_parse.tab.h
    U xenocara/lib/mesa/src/mesa/program/program_parser.h
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.c
    U xenocara/lib/mesa/src/mesa/program/prog_statevars.h
    U xenocara/lib/mesa/src/mesa/program/symbol_table.h
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.c
    U xenocara/lib/mesa/src/mesa/program/prog_to_nir.h
    U xenocara/lib/mesa/src/mesa/program/meson.build
    U xenocara/lib/mesa/src/mesa/program/program_lexer.l
    U xenocara/lib/mesa/src/mesa/program/program_parse.y
    U xenocara/lib/mesa/src/mesa/drivers/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.c
    U xenocara/lib/mesa/src/mesa/drivers/common/driverfuncs.h
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta_generate_mipmap.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.c
    U xenocara/lib/mesa/src/mesa/drivers/common/meta.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/x11/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxapi.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxheader.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/xfonts.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesaP.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/fakeglx.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/glxapi.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xfonts.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_api.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_buffer.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_dd.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/xmesa_x.h
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_line.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/xm_tri.c
    U xenocara/lib/mesa/src/mesa/drivers/x11/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/x11/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/dri.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/utils.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/dri_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/dri_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/megadriver_stub.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/dri/common/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texblend.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i830_vtbl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_fragprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_vtbl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/i915_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_clear.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_extensions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_regions.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_syncobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_layout.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_subimage.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/intel_tris.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i915/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_binding_tables.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_blorp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_bufmgr.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_bufmgr.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clear.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_clip.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_compute.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_conditional_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_cs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_curbe.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_defines.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_disk_cache.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_draw_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs_emit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_ff_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_formatquery.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_generate_mipmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_gs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_link.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_meta_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_misc_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_multisample_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_nir_uniforms.cpp
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_object_purgeable.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_pipe_control.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_pipe_control.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_query.h
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_query.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_query_mdapi.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_performance_query_metrics.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program_binary.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_program_cache.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_reset.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_state_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_structs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_surface_formats.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_sync.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tes.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tcs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_tes_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_vs_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_wm_surface_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen4_blorp_exec.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_clip_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_constant_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sampler_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen6_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_l3_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_sol_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen7_urb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_depth_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/gen8_multisample_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/hsw_sol.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_batchbuffer.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_buffers.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_copy_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_extensions.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_image.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_bitmap.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_draw.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_pixel_read.c
    C xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_image.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_obj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_tex_validate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/intel_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/libdrm_macros.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_metrics.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_metrics.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/genX_blorp_exec.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/genX_state_upload.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa.py
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_hsw.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_bdw.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_chv.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_sklgt2.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_sklgt3.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_sklgt4.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_bxt.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_kblgt2.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_kblgt3.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_glk.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_cflgt2.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_cflgt3.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/brw_oa_cnl.xml
    U xenocara/lib/mesa/src/mesa/drivers/dri/i965/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_array.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_bufferobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_fbo.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_local.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_render.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_scratch.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_surface.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_util.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv01_2d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_surface.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv04_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv10_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_3d.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_driver.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_render.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_fb.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_frag.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_polygon.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_raster.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv20_state_tnl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_m2mf.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_render_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_swtnl_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/nouveau/nouveau_vbo_t.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_cmdbuf.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_fragshader.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_vertprog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/r200_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/r200/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_buffer_objects.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_cmdbuf.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_common.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_debug.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_dma.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fbo.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_fog.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_mipmap_tree.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_pixel_read.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_queryobj.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_span.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex_copy.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texture.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tile.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_blit.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_context.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_chipset.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_ioctl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_vbtmp.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_sanity.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_screen.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_state_init.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_swtcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tcl.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tcl.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_tex.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_texstate.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_verts.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/radeon_maos_arrays.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/dri/radeon/server/radeon_reg.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/Makefile.sources
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast.c
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/swrast_priv.h
    U xenocara/lib/mesa/src/mesa/drivers/dri/swrast/meson.build
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.pc.in
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/osmesa.def
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/SConscript
    U xenocara/lib/mesa/src/mesa/drivers/osmesa/meson.build
    U xenocara/lib/mesa/src/mesa/math/m_debug.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_clip.c
    U xenocara/lib/mesa/src/mesa/math/m_debug_norm.c
    U xenocara/lib/mesa/src/mesa/math/m_debug_util.h
    U xenocara/lib/mesa/src/mesa/math/m_debug_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_eval.c
    U xenocara/lib/mesa/src/mesa/math/m_eval.h
    U xenocara/lib/mesa/src/mesa/math/m_matrix.c
    U xenocara/lib/mesa/src/mesa/math/m_matrix.h
    U xenocara/lib/mesa/src/mesa/math/m_trans_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_translate.c
    U xenocara/lib/mesa/src/mesa/math/m_translate.h
    U xenocara/lib/mesa/src/mesa/math/m_vector.c
    U xenocara/lib/mesa/src/mesa/math/m_vector.h
    U xenocara/lib/mesa/src/mesa/math/m_clip_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_copy_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_dotprod_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_norm_tmp.h
    U xenocara/lib/mesa/src/mesa/math/m_xform.c
    U xenocara/lib/mesa/src/mesa/math/m_xform.h
    U xenocara/lib/mesa/src/mesa/math/m_xform_tmp.h
    U xenocara/lib/mesa/src/mesa/sparc/sparc.c
    U xenocara/lib/mesa/src/mesa/sparc/sparc.h
    U xenocara/lib/mesa/src/mesa/sparc/sparc_clip.S
    U xenocara/lib/mesa/src/mesa/sparc/sparc_matrix.h
    U xenocara/lib/mesa/src/mesa/sparc/norm.S
    U xenocara/lib/mesa/src/mesa/sparc/xform.S
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atifs_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_array.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_atomicbuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_blend.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_clip.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_constbuf.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_depth.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_framebuffer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_list.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_image.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_msaa.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_pixeltransfer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_rasterizer.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_sampler.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_shader.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_stipple.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_storagebuf.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_tess.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_atom_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bitmap.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bitmap.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bitmap_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_blit.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_blit.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_bufferobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_clear.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_compute.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_condrender.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_copyimage.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawpixels_shader.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_drawtex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_eglimage.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_fbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_feedback.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_flush.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_memoryobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_msaa.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_memoryobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_msaa.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_perfmon.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_perfmon.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_queryobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_rasterpos.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_readpixels.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_semaphoreobjects.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_semaphoreobjects.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_strings.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_syncobj.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_syncobj.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texturebarrier.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_viewport.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_cb_xformfb.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_context.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_context.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_copytex.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_debug.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw_feedback.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_draw.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_extensions.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_format.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gen_mipmap.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_gl_api.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_nir.cpp
    C xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_array_merge.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_array_merge.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_private.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_private.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_temprename.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_to_tgsi_temprename.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/st_glsl_types.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_manager.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_manager.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_mesa_to_tgsi.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_builtin.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_tex_src_plane.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_nir_lower_uniforms_to_ubo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_pbo.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_program.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_sampler_view.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_scissor.h
    C xenocara/lib/mesa/src/mesa/state_tracker/st_shader_cache.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_shader_cache.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_texture.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_tgsi_lower_yuv.h
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.c
    U xenocara/lib/mesa/src/mesa/state_tracker/st_vdpau.h
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/Makefile.am
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/Makefile.in
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/st_tests_common.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/st_tests_common.h
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/test_glsl_to_tgsi_array_merge.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/test_glsl_to_tgsi_lifetime.cpp
    U xenocara/lib/mesa/src/mesa/state_tracker/tests/meson.build
    U xenocara/lib/mesa/src/mesa/swrast/s_aaline.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aaline.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aalinetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.c
    U xenocara/lib/mesa/src/mesa/swrast/s_aatriangle.h
    U xenocara/lib/mesa/src/mesa/swrast/s_aatritemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.c
    U xenocara/lib/mesa/src/mesa/swrast/s_alpha.h
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.c
    U xenocara/lib/mesa/src/mesa/swrast/s_atifragshader.h
    U xenocara/lib/mesa/src/mesa/swrast/s_bitmap.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.c
    U xenocara/lib/mesa/src/mesa/swrast/s_blend.h
    U xenocara/lib/mesa/src/mesa/swrast/s_blit.c
    U xenocara/lib/mesa/src/mesa/swrast/s_chan.h
    U xenocara/lib/mesa/src/mesa/swrast/s_clear.c
    U xenocara/lib/mesa/src/mesa/swrast/s_context.c
    U xenocara/lib/mesa/src/mesa/swrast/s_context.h
    U xenocara/lib/mesa/src/mesa/swrast/s_copypix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.c
    U xenocara/lib/mesa/src/mesa/swrast/s_depth.h
    U xenocara/lib/mesa/src/mesa/swrast/s_drawpix.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.c
    U xenocara/lib/mesa/src/mesa/swrast/s_feedback.h
    U xenocara/lib/mesa/src/mesa/swrast/s_fog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.c
    U xenocara/lib/mesa/src/mesa/swrast/s_fragprog.h
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.c
    U xenocara/lib/mesa/src/mesa/swrast/s_lines.h
    U xenocara/lib/mesa/src/mesa/swrast/s_linetemp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.c
    U xenocara/lib/mesa/src/mesa/swrast/s_logic.h
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.c
    U xenocara/lib/mesa/src/mesa/swrast/s_masking.h
    U xenocara/lib/mesa/src/mesa/swrast/s_points.c
    U xenocara/lib/mesa/src/mesa/swrast/s_points.h
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.c
    U xenocara/lib/mesa/src/mesa/swrast/s_renderbuffer.h
    U xenocara/lib/mesa/src/mesa/swrast/s_span.c
    U xenocara/lib/mesa/src/mesa/swrast/s_span.h
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.c
    U xenocara/lib/mesa/src/mesa/swrast/s_stencil.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texcombine.h
    U xenocara/lib/mesa/src/mesa/swrast/NOTES
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfetch_tmp.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texfilter.h
    U xenocara/lib/mesa/src/mesa/swrast/s_texrender.c
    U xenocara/lib/mesa/src/mesa/swrast/s_texture.c
    U xenocara/lib/mesa/src/mesa/swrast/s_triangle.c
    U xenocara/lib/mesa/src/mesa/swrast/s_triangle.h
    U xenocara/lib/mesa/src/mesa/swrast/s_tritemp.h
    U xenocara/lib/mesa/src/mesa/swrast/swrast.h
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.c
    U xenocara/lib/mesa/src/mesa/swrast/s_zoom.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_tritmp.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_vb.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/swrast_setup.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_context.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_context.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_triangle.c
    U xenocara/lib/mesa/src/mesa/swrast_setup/ss_triangle.h
    U xenocara/lib/mesa/src/mesa/swrast_setup/NOTES
    U xenocara/lib/mesa/src/mesa/tnl/t_context.c
    U xenocara/lib/mesa/src/mesa/tnl/t_context.h
    U xenocara/lib/mesa/src/mesa/tnl/t_draw.c
    U xenocara/lib/mesa/src/mesa/tnl/tnl.h
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.c
    U xenocara/lib/mesa/src/mesa/tnl/t_pipeline.h
    U xenocara/lib/mesa/src/mesa/tnl/t_rebase.c
    U xenocara/lib/mesa/src/mesa/tnl/t_rebase.h
    U xenocara/lib/mesa/src/mesa/tnl/t_split.c
    U xenocara/lib/mesa/src/mesa/tnl/t_split_copy.c
    U xenocara/lib/mesa/src/mesa/tnl/t_split.h
    U xenocara/lib/mesa/src/mesa/tnl/t_split_inplace.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_cliptmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_fog.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_light.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_lighttmp.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_normals.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_points.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_program.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_render.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_rendertmp.h
    U xenocara/lib/mesa/src/mesa/tnl/NOTES
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texgen.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_texmat.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vb_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_generic.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex.h
    U xenocara/lib/mesa/src/mesa/tnl/t_vertex_sse.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.c
    U xenocara/lib/mesa/src/mesa/tnl/t_vp_build.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_attrib_tmp.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_context.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec_eval.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_exec.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_minmax_index.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_noop.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_primitive_restart.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_private.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_api.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_draw.c
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save.h
    U xenocara/lib/mesa/src/mesa/vbo/vbo_save_loopback.c
    U xenocara/lib/mesa/src/mesa/x86/common_x86.c
    U xenocara/lib/mesa/src/mesa/x86/x86_xform.c
    U xenocara/lib/mesa/src/mesa/x86/3dnow.c
    U xenocara/lib/mesa/src/mesa/x86/sse.c
    U xenocara/lib/mesa/src/mesa/x86/assyntax.h
    U xenocara/lib/mesa/src/mesa/x86/clip_args.h
    U xenocara/lib/mesa/src/mesa/x86/norm_args.h
    U xenocara/lib/mesa/src/mesa/x86/xform_args.h
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.S
    U xenocara/lib/mesa/src/mesa/x86/common_x86_asm.h
    U xenocara/lib/mesa/src/mesa/x86/common_x86_features.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform.h
    U xenocara/lib/mesa/src/mesa/x86/x86_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/x86_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/x86_cliptest.S
    U xenocara/lib/mesa/src/mesa/x86/mmx.h
    U xenocara/lib/mesa/src/mesa/x86/mmx_blend.S
    U xenocara/lib/mesa/src/mesa/x86/mmx_blendtmp.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow.h
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/3dnow_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/sse.h
    U xenocara/lib/mesa/src/mesa/x86/sse_xform1.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform2.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform3.S
    U xenocara/lib/mesa/src/mesa/x86/sse_xform4.S
    U xenocara/lib/mesa/src/mesa/x86/sse_normal.S
    U xenocara/lib/mesa/src/mesa/x86/read_rgba_span_x86.S
    U xenocara/lib/mesa/src/mesa/x86/gen_matypes.c
    U xenocara/lib/mesa/src/mesa/x86/rtasm/x86sse.c
    U xenocara/lib/mesa/src/mesa/x86/rtasm/x86sse.h
    U xenocara/lib/mesa/src/mesa/x86-64/x86-64.c
    U xenocara/lib/mesa/src/mesa/x86-64/x86-64.h
    U xenocara/lib/mesa/src/mesa/x86-64/xform4.S
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_dmatmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_dmatmp2.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_triemit.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_tritmp.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_unfilled.h
    U xenocara/lib/mesa/src/mesa/tnl_dd/t_dd_vertex.h
    U xenocara/lib/mesa/src/vulkan/Makefile.am
    U xenocara/lib/mesa/src/vulkan/Makefile.in
    U xenocara/lib/mesa/src/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/vulkan/meson.build
    U xenocara/lib/mesa/src/vulkan/registry/vk.xml
    U xenocara/lib/mesa/src/vulkan/util/vk_alloc.h
    U xenocara/lib/mesa/src/vulkan/util/vk_debug_report.c
    U xenocara/lib/mesa/src/vulkan/util/vk_debug_report.h
    U xenocara/lib/mesa/src/vulkan/util/vk_util.c
    U xenocara/lib/mesa/src/vulkan/util/vk_util.h
    U xenocara/lib/mesa/src/vulkan/util/vk_enum_to_str.c
    U xenocara/lib/mesa/src/vulkan/util/vk_enum_to_str.h
    U xenocara/lib/mesa/src/vulkan/util/gen_enum_to_str.py
    U xenocara/lib/mesa/src/vulkan/util/meson.build
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_private.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_queue.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_x11.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_display.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_display.h
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.c
    U xenocara/lib/mesa/src/vulkan/wsi/wsi_common_wayland.h
    U xenocara/lib/mesa/src/vulkan/wsi/meson.build
    U xenocara/lib/mesa/src/getopt/.editorconfig
    U xenocara/lib/mesa/src/getopt/SConscript
    U xenocara/lib/mesa/src/getopt/getopt.h
    U xenocara/lib/mesa/src/getopt/getopt_long.c
    U xenocara/lib/mesa/src/hgl/.editorconfig
    U xenocara/lib/mesa/src/hgl/GLDispatcher.cpp
    U xenocara/lib/mesa/src/hgl/GLDispatcher.h
    U xenocara/lib/mesa/src/hgl/GLRenderer.cpp
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.cpp
    U xenocara/lib/mesa/src/hgl/GLRendererRoster.h
    U xenocara/lib/mesa/src/hgl/GLView.cpp
    U xenocara/lib/mesa/src/hgl/SConscript
    U xenocara/lib/mesa/src/hgl/meson.build
    U xenocara/lib/mesa/src/gtest/Makefile.am
    U xenocara/lib/mesa/src/gtest/Makefile.in
    U xenocara/lib/mesa/src/gtest/meson.build
    U xenocara/lib/mesa/src/gtest/src/gtest-all.cc
    U xenocara/lib/mesa/src/gtest/src/gtest_main.cc
    U xenocara/lib/mesa/src/gtest/src/gtest.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-death-test.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-filepath.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-internal-inl.h
    U xenocara/lib/mesa/src/gtest/src/gtest-port.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-printers.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-test-part.cc
    U xenocara/lib/mesa/src/gtest/src/gtest-typed-test.cc
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-death-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-message.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-param-test.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-printers.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-spi.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-test-part.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest-typed-test.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_pred_impl.h
    U xenocara/lib/mesa/src/gtest/include/gtest/gtest_prod.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-death-test-internal.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-filepath.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-internal.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-linked_ptr.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-util-generated.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-util-generated.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-param-util.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-port-arch.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-port.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-string.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-tuple.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-tuple.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-type-util.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/gtest-type-util.h.pump
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest-port.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest-printers.h
    U xenocara/lib/mesa/src/gtest/include/gtest/internal/custom/gtest.h
    U xenocara/lib/mesa/src/util/Makefile.am
    U xenocara/lib/mesa/src/util/Makefile.in
    U xenocara/lib/mesa/src/util/Makefile.sources
    U xenocara/lib/mesa/src/util/bigmath.h
    U xenocara/lib/mesa/src/util/bitscan.c
    U xenocara/lib/mesa/src/util/bitscan.h
    U xenocara/lib/mesa/src/util/bitset.h
    U xenocara/lib/mesa/src/util/build_id.c
    U xenocara/lib/mesa/src/util/build_id.h
    U xenocara/lib/mesa/src/util/crc32.c
    U xenocara/lib/mesa/src/util/crc32.h
    U xenocara/lib/mesa/src/util/debug.c
    U xenocara/lib/mesa/src/util/debug.h
    U xenocara/lib/mesa/src/util/disk_cache.c
    U xenocara/lib/mesa/src/util/disk_cache.h
    U xenocara/lib/mesa/src/util/fast_idiv_by_const.c
    U xenocara/lib/mesa/src/util/fast_idiv_by_const.h
    U xenocara/lib/mesa/src/util/format_r11g11b10f.h
    U xenocara/lib/mesa/src/util/format_rgb9e5.h
    U xenocara/lib/mesa/src/util/format_srgb.h
    U xenocara/lib/mesa/src/util/futex.h
    U xenocara/lib/mesa/src/util/list.h
    U xenocara/lib/mesa/src/util/half_float.c
    U xenocara/lib/mesa/src/util/half_float.h
    U xenocara/lib/mesa/src/util/hash_table.c
    U xenocara/lib/mesa/src/util/hash_table.h
    U xenocara/lib/mesa/src/util/macros.h
    U xenocara/lib/mesa/src/util/mesa-sha1.c
    U xenocara/lib/mesa/src/util/mesa-sha1.h
    U xenocara/lib/mesa/src/util/os_time.c
    U xenocara/lib/mesa/src/util/os_time.h
    U xenocara/lib/mesa/src/util/os_misc.c
    U xenocara/lib/mesa/src/util/os_misc.h
    U xenocara/lib/mesa/src/util/u_process.c
    U xenocara/lib/mesa/src/util/u_process.h
    U xenocara/lib/mesa/src/util/ralloc.c
    U xenocara/lib/mesa/src/util/ralloc.h
    U xenocara/lib/mesa/src/util/rand_xor.c
    U xenocara/lib/mesa/src/util/rand_xor.h
    U xenocara/lib/mesa/src/util/rb_tree.c
    U xenocara/lib/mesa/src/util/rb_tree.h
    U xenocara/lib/mesa/src/util/register_allocate.c
    U xenocara/lib/mesa/src/util/register_allocate.h
    U xenocara/lib/mesa/src/util/rgtc.c
    U xenocara/lib/mesa/src/util/rgtc.h
    U xenocara/lib/mesa/src/util/rounding.h
    U xenocara/lib/mesa/src/util/set.c
    U xenocara/lib/mesa/src/util/set.h
    U xenocara/lib/mesa/src/util/simple_list.h
    U xenocara/lib/mesa/src/util/simple_mtx.h
    U xenocara/lib/mesa/src/util/slab.c
    U xenocara/lib/mesa/src/util/slab.h
    U xenocara/lib/mesa/src/util/string_buffer.c
    U xenocara/lib/mesa/src/util/string_buffer.h
    U xenocara/lib/mesa/src/util/strndup.h
    U xenocara/lib/mesa/src/util/strtod.c
    U xenocara/lib/mesa/src/util/strtod.h
    U xenocara/lib/mesa/src/util/texcompress_rgtc_tmp.h
    U xenocara/lib/mesa/src/util/u_atomic.c
    U xenocara/lib/mesa/src/util/u_atomic.h
    U xenocara/lib/mesa/src/util/u_dynarray.h
    U xenocara/lib/mesa/src/util/u_endian.h
    U xenocara/lib/mesa/src/util/u_math.c
    U xenocara/lib/mesa/src/util/u_math.h
    U xenocara/lib/mesa/src/util/u_queue.c
    U xenocara/lib/mesa/src/util/u_queue.h
    U xenocara/lib/mesa/src/util/u_string.h
    U xenocara/lib/mesa/src/util/u_thread.h
    U xenocara/lib/mesa/src/util/u_vector.c
    U xenocara/lib/mesa/src/util/u_vector.h
    U xenocara/lib/mesa/src/util/vma.c
    U xenocara/lib/mesa/src/util/u_debug.c
    U xenocara/lib/mesa/src/util/u_debug.h
    U xenocara/lib/mesa/src/util/u_cpu_detect.c
    U xenocara/lib/mesa/src/util/u_cpu_detect.h
    U xenocara/lib/mesa/src/util/os_memory_aligned.h
    U xenocara/lib/mesa/src/util/os_memory_debug.h
    U xenocara/lib/mesa/src/util/os_memory_stdc.h
    U xenocara/lib/mesa/src/util/os_memory.h
    U xenocara/lib/mesa/src/util/u_memory.h
    U xenocara/lib/mesa/src/util/vma.h
    U xenocara/lib/mesa/src/util/format_srgb.c
    U xenocara/lib/mesa/src/util/xmlconfig.c
    U xenocara/lib/mesa/src/util/xmlconfig.h
    U xenocara/lib/mesa/src/util/mesa-sha1_test.c
    U xenocara/lib/mesa/src/util/roundeven_test.c
    U xenocara/lib/mesa/src/util/u_atomic_test.c
    U xenocara/lib/mesa/src/util/00-mesa-defaults.conf
    U xenocara/lib/mesa/src/util/format_srgb.py
    U xenocara/lib/mesa/src/util/merge_driinfo.py
    U xenocara/lib/mesa/src/util/SConscript
    U xenocara/lib/mesa/src/util/xmlpool.h
    U xenocara/lib/mesa/src/util/meson.build
    U xenocara/lib/mesa/src/util/sha1/sha1.c
    U xenocara/lib/mesa/src/util/sha1/sha1.h
    U xenocara/lib/mesa/src/util/sha1/README
    U xenocara/lib/mesa/src/util/xmlpool/Makefile.am
    U xenocara/lib/mesa/src/util/xmlpool/Makefile.in
    U xenocara/lib/mesa/src/util/xmlpool/gen_xmlpool.py
    U xenocara/lib/mesa/src/util/xmlpool/options.h
    U xenocara/lib/mesa/src/util/xmlpool/t_options.h
    U xenocara/lib/mesa/src/util/xmlpool/ca.po
    U xenocara/lib/mesa/src/util/xmlpool/de.po
    U xenocara/lib/mesa/src/util/xmlpool/es.po
    U xenocara/lib/mesa/src/util/xmlpool/nl.po
    U xenocara/lib/mesa/src/util/xmlpool/fr.po
    U xenocara/lib/mesa/src/util/xmlpool/sv.po
    U xenocara/lib/mesa/src/util/xmlpool/ca.gmo
    U xenocara/lib/mesa/src/util/xmlpool/de.gmo
    U xenocara/lib/mesa/src/util/xmlpool/es.gmo
    U xenocara/lib/mesa/src/util/xmlpool/nl.gmo
    U xenocara/lib/mesa/src/util/xmlpool/fr.gmo
    U xenocara/lib/mesa/src/util/xmlpool/sv.gmo
    U xenocara/lib/mesa/src/util/xmlpool/SConscript
    U xenocara/lib/mesa/src/util/xmlpool/meson.build
    U xenocara/lib/mesa/src/util/xmlpool/LINGUAS
    U xenocara/lib/mesa/src/util/xmlpool/POTFILES
    U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const/Makefile.am
    U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const/Makefile.in
    U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const/fast_idiv_by_const_test.cpp
    U xenocara/lib/mesa/src/util/tests/fast_idiv_by_const/meson.build
    U xenocara/lib/mesa/src/util/tests/hash_table/Makefile.am
    U xenocara/lib/mesa/src/util/tests/hash_table/Makefile.in
    U xenocara/lib/mesa/src/util/tests/hash_table/clear.c
    U xenocara/lib/mesa/src/util/tests/hash_table/collision.c
    U xenocara/lib/mesa/src/util/tests/hash_table/delete_and_lookup.c
    U xenocara/lib/mesa/src/util/tests/hash_table/delete_management.c
    U xenocara/lib/mesa/src/util/tests/hash_table/destroy_callback.c
    U xenocara/lib/mesa/src/util/tests/hash_table/insert_and_lookup.c
    U xenocara/lib/mesa/src/util/tests/hash_table/insert_many.c
    U xenocara/lib/mesa/src/util/tests/hash_table/null_destroy.c
    U xenocara/lib/mesa/src/util/tests/hash_table/random_entry.c
    U xenocara/lib/mesa/src/util/tests/hash_table/remove_key.c
    U xenocara/lib/mesa/src/util/tests/hash_table/remove_null.c
    U xenocara/lib/mesa/src/util/tests/hash_table/replacement.c
    U xenocara/lib/mesa/src/util/tests/hash_table/meson.build
    U xenocara/lib/mesa/src/util/tests/string_buffer/Makefile.am
    U xenocara/lib/mesa/src/util/tests/string_buffer/Makefile.in
    U xenocara/lib/mesa/src/util/tests/string_buffer/string_buffer_test.cpp
    U xenocara/lib/mesa/src/util/tests/string_buffer/meson.build
    U xenocara/lib/mesa/src/util/tests/set/Makefile.am
    U xenocara/lib/mesa/src/util/tests/set/Makefile.in
    U xenocara/lib/mesa/src/util/tests/set/set_test.cpp
    U xenocara/lib/mesa/src/util/tests/set/meson.build
    U xenocara/lib/mesa/src/util/tests/vma/Makefile.am
    U xenocara/lib/mesa/src/util/tests/vma/Makefile.in
    U xenocara/lib/mesa/src/util/tests/vma/vma_random_test.cpp
    U xenocara/lib/mesa/src/util/tests/vma/meson.build
    U xenocara/lib/mesa/src/glx/indirect.c
    U xenocara/lib/mesa/src/glx/indirect.h
    U xenocara/lib/mesa/src/glx/indirect_init.c
    U xenocara/lib/mesa/src/glx/indirect_size.h
    U xenocara/lib/mesa/src/glx/indirect_size.c
    U xenocara/lib/mesa/src/glx/Makefile.am
    U xenocara/lib/mesa/src/glx/Makefile.in
    U xenocara/lib/mesa/src/glx/clientattrib.c
    U xenocara/lib/mesa/src/glx/clientinfo.c
    U xenocara/lib/mesa/src/glx/compsize.c
    U xenocara/lib/mesa/src/glx/create_context.c
    U xenocara/lib/mesa/src/glx/eval.c
    U xenocara/lib/mesa/src/glx/glxclient.h
    U xenocara/lib/mesa/src/glx/glxcmds.c
    U xenocara/lib/mesa/src/glx/glxconfig.c
    U xenocara/lib/mesa/src/glx/glxconfig.h
    U xenocara/lib/mesa/src/glx/glxcurrent.c
    U xenocara/lib/mesa/src/glx/glx_error.c
    U xenocara/lib/mesa/src/glx/glx_error.h
    U xenocara/lib/mesa/src/glx/glxext.c
    U xenocara/lib/mesa/src/glx/glxextensions.c
    U xenocara/lib/mesa/src/glx/glxextensions.h
    U xenocara/lib/mesa/src/glx/glxhash.c
    U xenocara/lib/mesa/src/glx/glxhash.h
    U xenocara/lib/mesa/src/glx/glx_pbuffer.c
    U xenocara/lib/mesa/src/glx/glx_query.c
    U xenocara/lib/mesa/src/glx/indirect_glx.c
    U xenocara/lib/mesa/src/glx/indirect_init.h
    U xenocara/lib/mesa/src/glx/indirect_texture_compression.c
    U xenocara/lib/mesa/src/glx/indirect_transpose_matrix.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.c
    U xenocara/lib/mesa/src/glx/indirect_vertex_array.h
    U xenocara/lib/mesa/src/glx/indirect_vertex_array_priv.h
    U xenocara/lib/mesa/src/glx/indirect_vertex_program.c
    U xenocara/lib/mesa/src/glx/indirect_window_pos.c
    U xenocara/lib/mesa/src/glx/packrender.h
    U xenocara/lib/mesa/src/glx/packsingle.h
    U xenocara/lib/mesa/src/glx/pixel.c
    U xenocara/lib/mesa/src/glx/pixelstore.c
    U xenocara/lib/mesa/src/glx/query_renderer.c
    U xenocara/lib/mesa/src/glx/xfont.c
    U xenocara/lib/mesa/src/glx/render2.c
    U xenocara/lib/mesa/src/glx/renderpix.c
    U xenocara/lib/mesa/src/glx/single2.c
    U xenocara/lib/mesa/src/glx/singlepix.c
    U xenocara/lib/mesa/src/glx/vertarr.c
    U xenocara/lib/mesa/src/glx/drisw_glx.c
    U xenocara/lib/mesa/src/glx/drisw_priv.h
    U xenocara/lib/mesa/src/glx/dri_common.c
    U xenocara/lib/mesa/src/glx/dri_common.h
    U xenocara/lib/mesa/src/glx/dri_common_query_renderer.c
    U xenocara/lib/mesa/src/glx/dri_common_interop.c
    U xenocara/lib/mesa/src/glx/dri2.c
    U xenocara/lib/mesa/src/glx/dri2_glx.c
    U xenocara/lib/mesa/src/glx/dri2.h
    U xenocara/lib/mesa/src/glx/dri2_priv.h
    U xenocara/lib/mesa/src/glx/dri_glx.c
    U xenocara/lib/mesa/src/glx/dri_sarea.h
    U xenocara/lib/mesa/src/glx/XF86dri.c
    U xenocara/lib/mesa/src/glx/xf86dri.h
    U xenocara/lib/mesa/src/glx/xf86dristr.h
    U xenocara/lib/mesa/src/glx/dri3_glx.c
    U xenocara/lib/mesa/src/glx/dri3_priv.h
    U xenocara/lib/mesa/src/glx/applegl_glx.c
    U xenocara/lib/mesa/src/glx/driwindows_glx.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchfuncs.c
    U xenocara/lib/mesa/src/glx/g_glxglvnddispatchindices.h
    U xenocara/lib/mesa/src/glx/glxglvnd.c
    U xenocara/lib/mesa/src/glx/glxglvnd.h
    U xenocara/lib/mesa/src/glx/glxglvnddispatchfuncs.h
    U xenocara/lib/mesa/src/glx/SConscript
    U xenocara/lib/mesa/src/glx/meson.build
    U xenocara/lib/mesa/src/glx/apple/Makefile.am
    U xenocara/lib/mesa/src/glx/apple/Makefile.in
    U xenocara/lib/mesa/src/glx/apple/TODO
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.c
    U xenocara/lib/mesa/src/glx/apple/apple_cgl.h
    U xenocara/lib/mesa/src/glx/apple/appledri.c
    U xenocara/lib/mesa/src/glx/apple/appledri.h
    U xenocara/lib/mesa/src/glx/apple/appledristr.h
    U xenocara/lib/mesa/src/glx/apple/apple_glapi.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_context.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_context.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_drawable.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_log.h
    U xenocara/lib/mesa/src/glx/apple/apple_glx_pbuffer.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_pixmap.c
    U xenocara/lib/mesa/src/glx/apple/apple_glx_surface.c
    U xenocara/lib/mesa/src/glx/apple/apple_visual.c
    U xenocara/lib/mesa/src/glx/apple/apple_visual.h
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api.h
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_read.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_stereo.c
    U xenocara/lib/mesa/src/glx/apple/apple_xgl_api_viewport.c
    U xenocara/lib/mesa/src/glx/apple/glx_empty.c
    U xenocara/lib/mesa/src/glx/apple/RELEASE_NOTES
    U xenocara/lib/mesa/src/glx/apple/meson.build
    U xenocara/lib/mesa/src/glx/windows/Makefile.am
    U xenocara/lib/mesa/src/glx/windows/windowsdriconst.h
    U xenocara/lib/mesa/src/glx/windows/windowsdristr.h
    U xenocara/lib/mesa/src/glx/windows/Makefile.in
    U xenocara/lib/mesa/src/glx/windows/windowsdriproto.pc.in
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.c
    U xenocara/lib/mesa/src/glx/windows/xwindowsdri.h
    U xenocara/lib/mesa/src/glx/windows/windowsgl.c
    U xenocara/lib/mesa/src/glx/windows/windowsgl.h
    U xenocara/lib/mesa/src/glx/windows/windowsgl_internal.h
    U xenocara/lib/mesa/src/glx/windows/windows_drawable.c
    U xenocara/lib/mesa/src/glx/windows/wgl.c
    U xenocara/lib/mesa/src/glx/windows/wgl.h
    U xenocara/lib/mesa/src/glx/windows/meson.build
    U xenocara/lib/mesa/src/glx/tests/Makefile.am
    U xenocara/lib/mesa/src/glx/tests/Makefile.in
    U xenocara/lib/mesa/src/glx/tests/clientinfo_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/create_context_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/enum_sizes.cpp
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.cpp
    U xenocara/lib/mesa/src/glx/tests/fake_glx_screen.h
    U xenocara/lib/mesa/src/glx/tests/indirect_api.cpp
    U xenocara/lib/mesa/src/glx/tests/mock_xdisplay.h
    U xenocara/lib/mesa/src/glx/tests/query_renderer_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/query_renderer_implementation_unittest.cpp
    U xenocara/lib/mesa/src/glx/tests/dispatch-index-check
    U xenocara/lib/mesa/src/glx/tests/meson.build
    U xenocara/lib/mesa/src/compiler/Makefile.am
    U xenocara/lib/mesa/src/compiler/Makefile.glsl.am
    U xenocara/lib/mesa/src/compiler/Makefile.in
    U xenocara/lib/mesa/src/compiler/Makefile.nir.am
    U xenocara/lib/mesa/src/compiler/Makefile.sources
    U xenocara/lib/mesa/src/compiler/Makefile.spirv.am
    U xenocara/lib/mesa/src/compiler/blob.c
    U xenocara/lib/mesa/src/compiler/blob.h
    U xenocara/lib/mesa/src/compiler/builtin_type_macros.h
    U xenocara/lib/mesa/src/compiler/glsl_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl_types.h
    U xenocara/lib/mesa/src/compiler/nir_types.cpp
    U xenocara/lib/mesa/src/compiler/nir_types.h
    U xenocara/lib/mesa/src/compiler/shader_enums.c
    U xenocara/lib/mesa/src/compiler/shader_enums.h
    U xenocara/lib/mesa/src/compiler/shader_info.h
    U xenocara/lib/mesa/src/compiler/SConscript
    U xenocara/lib/mesa/src/compiler/meson.build
    U xenocara/lib/mesa/src/compiler/SConscript.glsl
    U xenocara/lib/mesa/src/compiler/SConscript.nir
    U xenocara/lib/mesa/src/compiler/SConscript.spirv
    U xenocara/lib/mesa/src/compiler/nir/nir.c
    U xenocara/lib/mesa/src/compiler/nir/nir.h
    U xenocara/lib/mesa/src/compiler/nir/nir_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_builtin_builder.c
    U xenocara/lib/mesa/src/compiler/nir/nir_builtin_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_clone.c
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.h
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.c
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow.h
    U xenocara/lib/mesa/src/compiler/nir/nir_control_flow_private.h
    U xenocara/lib/mesa/src/compiler/nir/nir_deref.c
    U xenocara/lib/mesa/src/compiler/nir/nir_deref.h
    U xenocara/lib/mesa/src/compiler/nir/nir_dominance.c
    U xenocara/lib/mesa/src/compiler/nir/nir_format_convert.h
    U xenocara/lib/mesa/src/compiler/nir/nir_from_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gather_info.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gather_xfb_info.c
    U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.c
    U xenocara/lib/mesa/src/compiler/nir/nir_gs_count_vertices.c
    U xenocara/lib/mesa/src/compiler/nir/nir_inline_functions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_instr_set.h
    U xenocara/lib/mesa/src/compiler/nir/nir_linking_helpers.c
    U xenocara/lib/mesa/src/compiler/nir/nir_liveness.c
    U xenocara/lib/mesa/src/compiler/nir/nir_loop_analyze.c
    U xenocara/lib/mesa/src/compiler/nir/nir_loop_analyze.h
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alpha_test.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_alu_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_array_deref_of_vec.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_atomics_to_ssbo.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bitmap.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bit_size.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bool_to_float.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_bool_to_int32.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clamp_color_outputs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_clip_cull_distance_arrays.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_constant_initializers.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_double_ops.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_drawpixels.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_global_vars_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_gs_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_load_const_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_locals_to_regs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_idiv.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_indirect_derefs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_int64.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_arrays_to_elements.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_temporaries.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_io_to_vector.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_packing.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_passthrough_edgeflags.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_patch_vertices.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_phis_to_scalar.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_regs_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_returns.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_subgroups.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_system_values.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_tex.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_to_source_mods.c
    U xenocara/lib/mesa/src/compiler/nir/nir_metadata.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_two_sided_color.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vars_to_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_vec_to_movs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_center.c
    U xenocara/lib/mesa/src/compiler/nir/nir_lower_wpos_ytransform.c
    U xenocara/lib/mesa/src/compiler/nir/nir_move_load_const.c
    U xenocara/lib/mesa/src/compiler/nir/nir_move_vec_src_uses_to_dest.c
    U xenocara/lib/mesa/src/compiler/nir/nir_normalize_cubemap_coords.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_conditional_discard.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_constant_folding.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_prop_vars.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_copy_propagate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_cse.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dce.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_cf.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_dead_write_vars.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_find_array_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_gcm.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_global_to_local.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_idiv_const.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_if.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_loop_unroll.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_large_constants.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_move_comparisons.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_move_load_ubo.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_peephole_select.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_remove_phis.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_shrink_load.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_undef.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_trivial_continues.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.c
    U xenocara/lib/mesa/src/compiler/nir/nir_phi_builder.h
    U xenocara/lib/mesa/src/compiler/nir/nir_print.c
    U xenocara/lib/mesa/src/compiler/nir/nir_propagate_invariant.c
    U xenocara/lib/mesa/src/compiler/nir/nir_remove_dead_variables.c
    U xenocara/lib/mesa/src/compiler/nir/nir_repair_ssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_search.c
    U xenocara/lib/mesa/src/compiler/nir/nir_search.h
    U xenocara/lib/mesa/src/compiler/nir/nir_search_helpers.h
    U xenocara/lib/mesa/src/compiler/nir/nir_serialize.c
    U xenocara/lib/mesa/src/compiler/nir/nir_serialize.h
    U xenocara/lib/mesa/src/compiler/nir/nir_split_per_member_structs.c
    U xenocara/lib/mesa/src/compiler/nir/nir_split_var_copies.c
    U xenocara/lib/mesa/src/compiler/nir/nir_split_vars.c
    U xenocara/lib/mesa/src/compiler/nir/nir_sweep.c
    U xenocara/lib/mesa/src/compiler/nir/nir_to_lcssa.c
    U xenocara/lib/mesa/src/compiler/nir/nir_validate.c
    U xenocara/lib/mesa/src/compiler/nir/nir_vla.h
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.c
    U xenocara/lib/mesa/src/compiler/nir/nir_worklist.h
    U xenocara/lib/mesa/src/compiler/nir/nir_xfb_info.h
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.c
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.c
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.c
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.h
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.c
    U xenocara/lib/mesa/src/compiler/nir/meson.build
    U xenocara/lib/mesa/src/compiler/nir/nir_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/nir_builder_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_constant_expressions.py
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics.py
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics_c.py
    U xenocara/lib/mesa/src/compiler/nir/nir_intrinsics_h.py
    U xenocara/lib/mesa/src/compiler/nir/README
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes.py
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_c.py
    U xenocara/lib/mesa/src/compiler/nir/nir_opcodes_h.py
    U xenocara/lib/mesa/src/compiler/nir/nir_opt_algebraic.py
    U xenocara/lib/mesa/src/compiler/nir/tests/control_flow_tests.cpp
    U xenocara/lib/mesa/src/compiler/nir/tests/vars_tests.cpp
    U xenocara/lib/mesa/src/compiler/nir/tests/algebraic_parser_test.py
    U xenocara/lib/mesa/src/compiler/nir/tests/algebraic_parser_test.sh
    U xenocara/lib/mesa/src/compiler/nir/tests/.deps/control_flow_tests-control_flow_tests.Po
    U xenocara/lib/mesa/src/compiler/nir/tests/.deps/vars_tests-vars_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_constant.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation_strings.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.h
    U xenocara/lib/mesa/src/compiler/glsl/float64_glsl.h
    U xenocara/lib/mesa/src/compiler/glsl/ast.h
    U xenocara/lib/mesa/src/compiler/glsl/ast_array_index.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_expr.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_to_hir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ast_type.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_functions.h
    U xenocara/lib/mesa/src/compiler/glsl/builtin_int64.h
    U xenocara/lib/mesa/src/compiler/glsl/builtin_types.cpp
    U xenocara/lib/mesa/src/compiler/glsl/builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/generate_ir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_atomics.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_samplers.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_lower_samplers_as_deref.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_atomics.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_uniform_initializers.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_uniforms.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_link_xfb.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_linker.c
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir_linker.h
    U xenocara/lib/mesa/src/compiler/glsl/gl_nir.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser_extras.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_symbol_table.h
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.cpp
    U xenocara/lib/mesa/src/compiler/glsl/glsl_to_nir.h
    U xenocara/lib/mesa/src/compiler/glsl/hir_field_selection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_array_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_basic_block.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_clone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_constant_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_equals.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_flattening.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_can_inline.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_inlining.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_function_detect_recursion.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_hierarchical_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_hv_accept.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_optimization.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_print_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_reader.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_rvalue_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_set_program_inouts.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_uniform.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_validate.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_variable_refcount.h
    U xenocara/lib/mesa/src/compiler/glsl/linker.cpp
    U xenocara/lib/mesa/src/compiler/glsl/linker.h
    U xenocara/lib/mesa/src/compiler/glsl/linker_util.h
    U xenocara/lib/mesa/src/compiler/glsl/linker_util.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_atomics.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_initializers.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_block_active_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/link_uniform_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/link_varyings.h
    U xenocara/lib/mesa/src/compiler/glsl/list.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.cpp
    U xenocara/lib/mesa/src/compiler/glsl/loop_analysis.h
    U xenocara/lib/mesa/src/compiler/glsl/program.h
    U xenocara/lib/mesa/src/compiler/glsl/loop_unroll.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_blend_equation_advanced.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_buffer_access.h
    U xenocara/lib/mesa/src/compiler/glsl/lower_const_arrays_to_uniforms.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_cs_derived.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_discard_flow.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_distance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_if_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_instructions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_int64.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_mat_op_to_vec.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_noise.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_offset_array.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_packed_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_named_interface_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_packing_builtins.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_subroutine.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_tess_level.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_texture_projection.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_variable_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_cond_assign.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vec_index_to_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_derefs.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vector_insert.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_vertex_id.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_output_reads.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_shared_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/lower_ubo_reference.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_algebraic.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_array_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_conditional_discard.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_folding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_propagation.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_constant_variable.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_copy_propagation_elements.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_variables.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_builtin_varyings.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_code_local.cpp
    U xenocara/lib/mesa/src/compiler/glsl/serialize.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_dead_functions.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flatten_nested_if_blocks.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_flip_matrices.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_function_inlining.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_if_simplification.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_minmax.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_rebalance_tree.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_redundant_jumps.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_structure_splitting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_swizzle.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_tree_grafting.cpp
    U xenocara/lib/mesa/src/compiler/glsl/opt_vectorize.cpp
    U xenocara/lib/mesa/src/compiler/glsl/propagate_invariance.cpp
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.cpp
    U xenocara/lib/mesa/src/compiler/glsl/s_expression.h
    U xenocara/lib/mesa/src/compiler/glsl/serialize.cpp
    U xenocara/lib/mesa/src/compiler/glsl/string_to_uint_map.cpp
    U xenocara/lib/mesa/src/compiler/glsl/string_to_uint_map.h
    C xenocara/lib/mesa/src/compiler/glsl/shader_cache.cpp
    U xenocara/lib/mesa/src/compiler/glsl/shader_cache.h
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder_print_visitor.cpp
    U xenocara/lib/mesa/src/compiler/glsl/ir_builder_print_visitor.h
    U xenocara/lib/mesa/src/compiler/glsl/opt_add_neg_to_sub.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone_scaffolding.h
    U xenocara/lib/mesa/src/compiler/glsl/standalone.cpp
    U xenocara/lib/mesa/src/compiler/glsl/standalone.h
    U xenocara/lib/mesa/src/compiler/glsl/test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.cpp
    U xenocara/lib/mesa/src/compiler/glsl/test_optpass.h
    U xenocara/lib/mesa/src/compiler/glsl/main.cpp
    U xenocara/lib/mesa/src/compiler/glsl/meson.build
    U xenocara/lib/mesa/src/compiler/glsl/README
    U xenocara/lib/mesa/src/compiler/glsl/TODO
    U xenocara/lib/mesa/src/compiler/glsl/glsl_lexer.ll
    U xenocara/lib/mesa/src/compiler/glsl/glsl_parser.yy
    U xenocara/lib/mesa/src/compiler/glsl/ir_expression_operation.py
    U xenocara/lib/mesa/src/compiler/glsl/xxd.py
    U xenocara/lib/mesa/src/compiler/glsl/float64.glsl
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-lex.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.h
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.h
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/pp.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/meson.build
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/README
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-lex.l
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/glcpp-parse.y
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/000-content-with-spaces.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/001-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/002-define-chain.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/003-define-chain-reverse.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/004-define-recursive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/005-define-composite-chain.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/005-define-composite-chain.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/006-define-composite-chain-reverse.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/007-define-composite-recursive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/007-define-composite-recursive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/008-define-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/009-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/010-undef-re-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/010-undef-re-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/011-define-func-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/012-define-func-no-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/013-define-func-1-arg-unused.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/012-define-func-no-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/013-define-func-1-arg-unused.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/014-define-func-2-arg-unused.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/014-define-func-2-arg-unused.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/015-define-object-with-parens.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/015-define-object-with-parens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/016-define-func-1-arg.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/016-define-func-1-arg.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/017-define-func-2-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/018-define-func-macro-as-parameter.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/019-define-func-1-arg-multi.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/018-define-func-macro-as-parameter.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/019-define-func-1-arg-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/020-define-func-2-arg-multi.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/020-define-func-2-arg-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/021-define-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/022-define-func-arg-with-parens.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/022-define-func-arg-with-parens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/023-define-extra-whitespace.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/023-define-extra-whitespace.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/024-define-chain-to-self-recursion.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/024-define-chain-to-self-recursion.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/025-func-macro-as-non-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/025-func-macro-as-non-macro.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/026-define-func-extra-newlines.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/026-define-func-extra-newlines.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/027-define-chain-obj-to-func.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/027-define-chain-obj-to-func.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/028-define-chain-obj-to-non-func.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/038-func-arg-with-commas.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/029-define-chain-obj-to-func-with-args.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/030-define-chain-obj-to-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/031-define-chain-func-to-func-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/032-define-func-self-recurse.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/032-define-func-self-recurse.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/033-define-func-self-compose.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/034-define-func-self-compose-non-func.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/034-define-func-self-compose-non-func.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/035-define-func-self-compose-non-func-multi-token-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/036-define-func-non-macro-multi-token-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/037-finalize-unexpanded-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/037-finalize-unexpanded-macro.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/038-func-arg-with-commas.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/039-func-arg-obj-macro-with-comma.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/040-token-pasting.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/041-if-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/042-if-1.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/043-if-0-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/043-if-0-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/044-if-1-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/045-if-0-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/045-if-0-elif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/046-if-1-elsif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/047-if-elif-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/048-if-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/048-if-nested.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/049-if-expression-precedence.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/050-if-defined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/051-if-relational.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/052-if-bitwise.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/053-if-divide-and-shift.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/053-if-divide-and-shift.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/054-if-with-macros.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/054-if-with-macros.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/055-define-chain-obj-to-func-parens-in-text.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/056-macro-argument-with-comma.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/056-macro-argument-with-comma.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/057-empty-arguments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/058-token-pasting-empty-arguments.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/058-token-pasting-empty-arguments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/059-token-pasting-integer.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/060-left-paren-in-macro-right-paren-in-text.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/061-define-chain-obj-to-func-multi.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/062-if-0-skips-garbage.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/063-comments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/064-version.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/065-if-defined-parens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/066-if-nospace-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/067-nested-ifdef-ifndef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/068-accidental-pasting.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/069-repeated-argument.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/070-undefined-macro-in-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/071-punctuator.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/072-token-pasting-same-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/073-if-in-ifdef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/074-elif-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/075-elif-elif-undef.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/076-elif-undef-nested.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/077-else-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/077-else-without-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/078-elif-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/078-elif-without-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/079-endif-without-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/079-endif-without-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/080-if-without-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/080-if-without-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/081-elif-without-expression.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/081-elif-without-expression.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/082-invalid-paste.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/083-unterminated-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/084-unbalanced-parentheses.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/085-incorrect-argument-count.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/086-reserved-macro-names.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/087-if-comments.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/088-redefine-macro-legitimate.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/089-redefine-macro-error.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/090-hash-error.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/091-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/092-redefine-macro-error-2.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/092-redefine-macro-error-2.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/093-divide-by-zero.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/093-divide-by-zero.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/094-divide-by-zero-short-circuit.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/095-recursive-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/096-paste-twice.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/097-paste-with-non-function-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/097-paste-with-non-function-macro.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/098-elif-undefined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/099-c99-example.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/100-macro-with-colon.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/101-macros-used-twice.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/101-macros-used-twice.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/102-garbage-after-endif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/103-garbage-after-else-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/104-hash-line-followed-by-code.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/104-hash-line-followed-by-code.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/106-multiline-hash-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/105-multiline-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/105-multiline-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/106-multiline-hash-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/107-multiline-hash-elif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/108-no-space-after-hash-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/108-no-space-after-hash-version.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/109-no-space-after-hash-line.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/109-no-space-after-hash-line.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/110-no-space-digits-after-hash-elif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/111-no-space-operator-after-hash-if.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/112-no-space-operator-after-hash-elif.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/113-line-and-file-macros.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/113-line-and-file-macros.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/114-paste-integer-tokens.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/115-line-continuations.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/116-disable-line-continuations.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/116-disable-line-continuations.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/117-line-continuation-and-non-continuation-backslash.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/118-comment-becomes-space.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/119-elif-after-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/120-undef-builtin.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/121-comment-bug-72686.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp-test.sh
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/122-redefine-whitespace.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/123-garbage-after-else-1.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/123-garbage-after-else-1.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/124-preprocessing-numbers.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/125-es-short-circuit-undefined.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/125-es-short-circuit-undefined.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/126-garbage-after-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/127-pragma-empty.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/128-space-before-hash.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/129-define-non-identifier.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/129-define-non-identifier.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/130-define-comment.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/130-define-comment.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/131-eof-without-newline.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/131-eof-without-newline.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/132-eof-without-newline-define.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/133-eof-without-newline-comment.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/133-eof-without-newline-comment.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/134-hash-comment-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/134-hash-comment-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/135-duplicate-parameter.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/135-duplicate-parameter.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/136-plus-plus-and-minus-minus.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/136-plus-plus-and-minus-minus.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/137-expand-macro-after-period.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/138-multi-line-comment-in-if-0.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/138-multi-line-comment-in-if-0.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/139-define-without-macro-name.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/glcpp_test.py
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/139-define-without-macro-name.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/140-null-directive.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/141-pragma-and-__LINE__.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/141-pragma-and-__LINE__.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/142-defined-within-macro.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/143-multiple-else.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/144-implicit-version.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/145-version-first.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/146-version-first-hash.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-define-macro-no-space.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-define-macro-no-space.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/147-undef-builtin-allowed.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/148-legal-characters.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/148-legal-characters.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/149-hex-const-uppercase-prefix.c
    U xenocara/lib/mesa/src/compiler/glsl/glcpp/tests/149-hex-const-uppercase-prefix.c.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/blob_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/cache_test.c
    U xenocara/lib/mesa/src/compiler/glsl/tests/array_refcount_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/builtin_variable_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/invalidate_locations_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/general_ir_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/lower_int64_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/opt_add_neg_to_sub_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/varyings_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/sampler_types_test.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/copy_constant_to_storage_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/set_uniform_initializer_tests.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.cpp
    U xenocara/lib/mesa/src/compiler/glsl/tests/uniform_initializer_utils.h
    U xenocara/lib/mesa/src/compiler/glsl/tests/meson.build
    U xenocara/lib/mesa/src/compiler/glsl/tests/lower_jump_cases.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/optimization-test.sh
    U xenocara/lib/mesa/src/compiler/glsl/tests/optimization_test.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/sexps.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings-test.sh
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings_test.py
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/array_refcount_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/blob_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/builtin_variable_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/cache_test-cache_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/copy_constant_to_storage_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/general_ir_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/invalidate_locations_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/lower_int64_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/opt_add_neg_to_sub_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/sampler_types_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/set_uniform_initializer_tests.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/uniform_initializer_utils.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/.deps/varyings_test.Po
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/000-basic-test.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/001-use-undefined-then-define.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/002-loop.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/003-less.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/004-greater.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/005-lequal.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/006-gequal.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/006-gequal.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/007-test-mod.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/008-mulassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/009-div-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/010-add-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/011-sub-assign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/012-modassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/013-lsassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/014-rsassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/015-andassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/016-orassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/017-xorassign.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/018-bitand.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/019-array.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/020-array-length.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/021-lshift.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/022-rshift.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/023-switch.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/024-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/025-function-parameters.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/026-out-function-parameter-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/026-out-function-parameter-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/027-inout-function-parameter-shaderout.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/028-conditional.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/029-fieldselection.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/030-array-as-function-parameter.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/031-__-in-function-name.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/031-__-in-function-name.vert.expected
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/032-__-in-function-name-pragma-disable.vert
    U xenocara/lib/mesa/src/compiler/glsl/tests/warnings/032-__-in-function-name-pragma-disable.vert.expected
    U xenocara/lib/mesa/src/compiler/spirv/GLSL.ext.AMD.h
    U xenocara/lib/mesa/src/compiler/spirv/GLSL.std.450.h
    U xenocara/lib/mesa/src/compiler/spirv/gl_spirv.c
    U xenocara/lib/mesa/src/compiler/spirv/nir_spirv.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info.h
    U xenocara/lib/mesa/src/compiler/spirv/spirv_to_nir.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_alu.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_amd.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_cfg.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_glsl450.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_private.h
    U xenocara/lib/mesa/src/compiler/spirv/vtn_subgroup.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_variables.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info.c
    U xenocara/lib/mesa/src/compiler/spirv/vtn_gather_types.c
    U xenocara/lib/mesa/src/compiler/spirv/spirv2nir.c
    U xenocara/lib/mesa/src/compiler/spirv/meson.build
    U xenocara/lib/mesa/src/compiler/spirv/spirv_info_c.py
    U xenocara/lib/mesa/src/compiler/spirv/spirv.core.grammar.json
    U xenocara/lib/mesa/src/compiler/spirv/vtn_gather_types_c.py
    U xenocara/lib/mesa/src/amd/Makefile.am
    U xenocara/lib/mesa/src/amd/Makefile.addrlib.am
    U xenocara/lib/mesa/src/amd/Makefile.common.am
    U xenocara/lib/mesa/src/amd/Makefile.in
    U xenocara/lib/mesa/src/amd/Makefile.sources
    U xenocara/lib/mesa/src/amd/meson.build
    U xenocara/lib/mesa/src/amd/addrlib/meson.build
    U xenocara/lib/mesa/src/amd/addrlib/inc/addrinterface.h
    U xenocara/lib/mesa/src/amd/addrlib/inc/addrtypes.h
    U xenocara/lib/mesa/src/amd/addrlib/src/addrinterface.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/amdgpu_asic_addr.h
    U xenocara/lib/mesa/src/amd/addrlib/src/chip/gfx9/gfx9_gb_reg.h
    U xenocara/lib/mesa/src/amd/addrlib/src/chip/r800/si_gb_reg.h
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrcommon.h
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrelemlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrelemlib.h
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib1.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib1.h
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib2.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrlib2.h
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrobject.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/core/addrobject.h
    U xenocara/lib/mesa/src/amd/addrlib/src/core/coord.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/core/coord.h
    U xenocara/lib/mesa/src/amd/addrlib/src/gfx9/gfx9addrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/gfx9/gfx9addrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/src/r800/ciaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/r800/ciaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/src/r800/egbaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/r800/egbaddrlib.h
    U xenocara/lib/mesa/src/amd/addrlib/src/r800/siaddrlib.cpp
    U xenocara/lib/mesa/src/amd/addrlib/src/r800/siaddrlib.h
    U xenocara/lib/mesa/src/amd/common/ac_gpu_info.c
    U xenocara/lib/mesa/src/amd/common/ac_gpu_info.h
    U xenocara/lib/mesa/src/amd/common/ac_surface.c
    U xenocara/lib/mesa/src/amd/common/ac_surface.h
    U xenocara/lib/mesa/src/amd/common/ac_binary.c
    U xenocara/lib/mesa/src/amd/common/ac_binary.h
    U xenocara/lib/mesa/src/amd/common/ac_exp_param.h
    C xenocara/lib/mesa/src/amd/common/ac_llvm_build.c
    U xenocara/lib/mesa/src/amd/common/ac_llvm_build.h
    U xenocara/lib/mesa/src/amd/common/ac_llvm_helper.cpp
    U xenocara/lib/mesa/src/amd/common/ac_llvm_util.c
    U xenocara/lib/mesa/src/amd/common/ac_llvm_util.h
    U xenocara/lib/mesa/src/amd/common/ac_shader_abi.h
    U xenocara/lib/mesa/src/amd/common/ac_shader_util.c
    U xenocara/lib/mesa/src/amd/common/ac_shader_util.h
    U xenocara/lib/mesa/src/amd/common/ac_debug.c
    U xenocara/lib/mesa/src/amd/common/ac_debug.h
    U xenocara/lib/mesa/src/amd/common/sid_tables.h
    U xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.c
    U xenocara/lib/mesa/src/amd/common/gfx9d.h
    U xenocara/lib/mesa/src/amd/common/ac_nir_to_llvm.h
    U xenocara/lib/mesa/src/amd/common/sid.h
    U xenocara/lib/mesa/src/amd/common/amd_family.h
    U xenocara/lib/mesa/src/amd/common/amd_kernel_code_t.h
    U xenocara/lib/mesa/src/amd/common/sid_tables.py
    U xenocara/lib/mesa/src/amd/common/meson.build
    U xenocara/lib/mesa/src/amd/vulkan/meson.build
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.am
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.in
    U xenocara/lib/mesa/src/amd/vulkan/Makefile.sources
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_extensions.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_extensions.h
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_debug.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_debug.h
    C xenocara/lib/mesa/src/amd/vulkan/radv_device.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_descriptor_set.h
    C xenocara/lib/mesa/src/amd/vulkan/radv_formats.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_image.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_blit2d.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_bufimage.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_clear.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_meta_copy.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_decompress.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_fast_clear.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_fmask_expand.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_cs.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_meta_resolve_fs.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_nir_to_llvm.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_llvm_helper.cpp
    U xenocara/lib/mesa/src/amd/vulkan/radv_pass.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_pipeline.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_pipeline_cache.c
    C xenocara/lib/mesa/src/amd/vulkan/radv_private.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_radeon_winsys.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_shader.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_shader_info.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_shader.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_shader_helper.h
    C xenocara/lib/mesa/src/amd/vulkan/radv_query.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_util.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi.c
    U xenocara/lib/mesa/src/amd/vulkan/si_cmd_buffer.c
    U xenocara/lib/mesa/src/amd/vulkan/vk_format.h
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_display.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_x11.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_wsi_wayland.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_android.c
    U xenocara/lib/mesa/src/amd/vulkan/radv_entrypoints_gen.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_extensions.py
    U xenocara/lib/mesa/src/amd/vulkan/radv_icd.py
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_layout.csv
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_parse.py
    U xenocara/lib/mesa/src/amd/vulkan/vk_format_table.py
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_bo.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_cs.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_surface.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_surface.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.c
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys.h
    U xenocara/lib/mesa/src/amd/vulkan/winsys/amdgpu/radv_amdgpu_winsys_public.h
    U xenocara/lib/mesa/src/intel/Makefile.am
    U xenocara/lib/mesa/src/intel/Makefile.blorp.am
    U xenocara/lib/mesa/src/intel/Makefile.common.am
    U xenocara/lib/mesa/src/intel/Makefile.compiler.am
    U xenocara/lib/mesa/src/intel/Makefile.dev.am
    U xenocara/lib/mesa/src/intel/Makefile.genxml.am
    U xenocara/lib/mesa/src/intel/Makefile.in
    U xenocara/lib/mesa/src/intel/Makefile.isl.am
    U xenocara/lib/mesa/src/intel/Makefile.sources
    U xenocara/lib/mesa/src/intel/Makefile.tools.am
    U xenocara/lib/mesa/src/intel/Makefile.vulkan.am
    U xenocara/lib/mesa/src/intel/meson.build
    U xenocara/lib/mesa/src/intel/blorp/blorp.c
    U xenocara/lib/mesa/src/intel/blorp/blorp.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_blit.c
    U xenocara/lib/mesa/src/intel/blorp/blorp_clear.c
    U xenocara/lib/mesa/src/intel/blorp/blorp_nir_builder.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_genX_exec.h
    U xenocara/lib/mesa/src/intel/blorp/blorp_priv.h
    U xenocara/lib/mesa/src/intel/blorp/meson.build
    U xenocara/lib/mesa/src/intel/blorp/TODO
    U xenocara/lib/mesa/src/intel/common/gen_clflush.h
    U xenocara/lib/mesa/src/intel/common/gen_batch_decoder.c
    U xenocara/lib/mesa/src/intel/common/gen_debug.c
    U xenocara/lib/mesa/src/intel/common/gen_debug.h
    U xenocara/lib/mesa/src/intel/common/gen_decoder.c
    U xenocara/lib/mesa/src/intel/common/gen_decoder.h
    U xenocara/lib/mesa/src/intel/common/gen_disasm.c
    U xenocara/lib/mesa/src/intel/common/gen_disasm.h
    U xenocara/lib/mesa/src/intel/common/gen_defines.h
    U xenocara/lib/mesa/src/intel/common/gen_gem.h
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.c
    U xenocara/lib/mesa/src/intel/common/gen_l3_config.h
    U xenocara/lib/mesa/src/intel/common/gen_urb_config.c
    U xenocara/lib/mesa/src/intel/common/gen_sample_positions.h
    U xenocara/lib/mesa/src/intel/common/intel_log.c
    U xenocara/lib/mesa/src/intel/common/intel_log.h
    U xenocara/lib/mesa/src/intel/common/meson.build
    U xenocara/lib/mesa/src/intel/compiler/brw_cfg.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_cfg.h
    U xenocara/lib/mesa/src/intel/compiler/brw_clip.h
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_line.c
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_point.c
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_tri.c
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_unfilled.c
    U xenocara/lib/mesa/src/intel/compiler/brw_clip_util.c
    U xenocara/lib/mesa/src/intel/compiler/brw_compile_clip.c
    U xenocara/lib/mesa/src/intel/compiler/brw_compile_sf.c
    U xenocara/lib/mesa/src/intel/compiler/brw_compiler.c
    U xenocara/lib/mesa/src/intel/compiler/brw_compiler.h
    U xenocara/lib/mesa/src/intel/compiler/brw_dead_control_flow.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_dead_control_flow.h
    U xenocara/lib/mesa/src/intel/compiler/brw_disasm.c
    U xenocara/lib/mesa/src/intel/compiler/brw_disasm_info.c
    U xenocara/lib/mesa/src/intel/compiler/brw_disasm_info.h
    U xenocara/lib/mesa/src/intel/compiler/brw_eu.c
    U xenocara/lib/mesa/src/intel/compiler/brw_eu_compact.c
    U xenocara/lib/mesa/src/intel/compiler/brw_eu_defines.h
    C xenocara/lib/mesa/src/intel/compiler/brw_eu_emit.c
    U xenocara/lib/mesa/src/intel/compiler/brw_eu.h
    U xenocara/lib/mesa/src/intel/compiler/brw_eu_util.c
    U xenocara/lib/mesa/src/intel/compiler/brw_eu_validate.c
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_builder.h
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_bank_conflicts.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_combine_constants.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_cse.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_generator.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs.h
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_live_variables.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_live_variables.h
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_lower_pack.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_lower_regioning.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_nir.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_reg_allocate.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_register_coalesce.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_sel_peephole.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_surface_builder.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_surface_builder.h
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_validate.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_fs_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_inst.h
    U xenocara/lib/mesa/src/intel/compiler/brw_interpolation_map.c
    U xenocara/lib/mesa/src/intel/compiler/brw_ir_allocator.h
    U xenocara/lib/mesa/src/intel/compiler/brw_ir_fs.h
    U xenocara/lib/mesa/src/intel/compiler/brw_ir_vec4.h
    U xenocara/lib/mesa/src/intel/compiler/brw_nir.h
    U xenocara/lib/mesa/src/intel/compiler/brw_nir.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_analyze_boolean_resolves.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_analyze_ubo_ranges.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_attribute_workarounds.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_cs_intrinsics.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_image_load_store.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_lower_mem_access_bit_sizes.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_opt_peephole_ffma.c
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_tcs_workarounds.c
    U xenocara/lib/mesa/src/intel/compiler/brw_packed_float.c
    U xenocara/lib/mesa/src/intel/compiler/brw_predicated_break.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_reg.h
    U xenocara/lib/mesa/src/intel/compiler/brw_reg_type.c
    U xenocara/lib/mesa/src/intel/compiler/brw_reg_type.h
    U xenocara/lib/mesa/src/intel/compiler/brw_shader.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_schedule_instructions.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_shader.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_builder.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_cse.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_generator.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_visitor.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_live_variables.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_live_variables.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_nir.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_gs_nir.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_reg_allocate.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_surface_builder.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_surface_builder.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tcs.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tcs.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tes.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_tes.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_vs_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/brw_vec4_vs.h
    U xenocara/lib/mesa/src/intel/compiler/brw_vue_map.c
    U xenocara/lib/mesa/src/intel/compiler/brw_wm_iz.cpp
    U xenocara/lib/mesa/src/intel/compiler/gen6_gs_visitor.cpp
    U xenocara/lib/mesa/src/intel/compiler/gen6_gs_visitor.h
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_trig_workarounds.c
    U xenocara/lib/mesa/src/intel/compiler/test_eu_compact.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_eu_validate.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_fs_cmod_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_fs_copy_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_fs_saturate_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_vec4_cmod_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_vec4_copy_propagation.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_vec4_dead_code_eliminate.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_vec4_register_coalesce.cpp
    U xenocara/lib/mesa/src/intel/compiler/test_vf_float_conversions.cpp
    U xenocara/lib/mesa/src/intel/compiler/meson.build
    U xenocara/lib/mesa/src/intel/compiler/brw_nir_trig_workarounds.py
    U xenocara/lib/mesa/src/intel/dev/gen_device_info.c
    U xenocara/lib/mesa/src/intel/dev/gen_device_info.h
    U xenocara/lib/mesa/src/intel/dev/meson.build
    U xenocara/lib/mesa/src/intel/genxml/meson.build
    U xenocara/lib/mesa/src/intel/genxml/gen4.xml
    U xenocara/lib/mesa/src/intel/genxml/gen45.xml
    U xenocara/lib/mesa/src/intel/genxml/gen5.xml
    U xenocara/lib/mesa/src/intel/genxml/gen6.xml
    U xenocara/lib/mesa/src/intel/genxml/gen7.xml
    U xenocara/lib/mesa/src/intel/genxml/gen75.xml
    U xenocara/lib/mesa/src/intel/genxml/gen8.xml
    U xenocara/lib/mesa/src/intel/genxml/gen9.xml
    U xenocara/lib/mesa/src/intel/genxml/gen10.xml
    U xenocara/lib/mesa/src/intel/genxml/gen11.xml
    U xenocara/lib/mesa/src/intel/genxml/gen4_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen45_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen5_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen6_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen7_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen75_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen8_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen9_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen10_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen11_pack.h
    U xenocara/lib/mesa/src/intel/genxml/genX_bits.h
    U xenocara/lib/mesa/src/intel/genxml/genX_xml.h
    U xenocara/lib/mesa/src/intel/genxml/genX_pack.h
    U xenocara/lib/mesa/src/intel/genxml/gen_macros.h
    U xenocara/lib/mesa/src/intel/genxml/gen_pack_header.py
    U xenocara/lib/mesa/src/intel/genxml/gen_zipped_file.py
    U xenocara/lib/mesa/src/intel/genxml/gen_bits_header.py
    U xenocara/lib/mesa/src/intel/genxml/README
    U xenocara/lib/mesa/src/intel/isl/isl_emit_depth_stencil.c
    U xenocara/lib/mesa/src/intel/isl/isl_surface_state.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen4.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen6.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen7.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen8.h
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.c
    U xenocara/lib/mesa/src/intel/isl/isl_gen9.h
    U xenocara/lib/mesa/src/intel/isl/isl.c
    U xenocara/lib/mesa/src/intel/isl/isl.h
    U xenocara/lib/mesa/src/intel/isl/isl_drm.c
    U xenocara/lib/mesa/src/intel/isl/isl_format.c
    U xenocara/lib/mesa/src/intel/isl/isl_genX_priv.h
    U xenocara/lib/mesa/src/intel/isl/isl_priv.h
    U xenocara/lib/mesa/src/intel/isl/isl_storage_image.c
    U xenocara/lib/mesa/src/intel/isl/isl_format_layout.c
    U xenocara/lib/mesa/src/intel/isl/meson.build
    U xenocara/lib/mesa/src/intel/isl/README
    U xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy_normal.c
    U xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy_sse41.c
    U xenocara/lib/mesa/src/intel/isl/gen_format_layout.py
    U xenocara/lib/mesa/src/intel/isl/isl_format_layout.csv
    U xenocara/lib/mesa/src/intel/isl/isl_tiled_memcpy.c
    U xenocara/lib/mesa/src/intel/isl/tests/isl_surf_get_image_offset_test.c
    U xenocara/lib/mesa/src/intel/tools/aub_mem.c
    U xenocara/lib/mesa/src/intel/tools/aub_mem.h
    U xenocara/lib/mesa/src/intel/tools/aub_read.c
    U xenocara/lib/mesa/src/intel/tools/aub_read.h
    U xenocara/lib/mesa/src/intel/tools/aubinator.c
    U xenocara/lib/mesa/src/intel/tools/intel_aub.h
    U xenocara/lib/mesa/src/intel/tools/aubinator_error_decode.c
    U xenocara/lib/mesa/src/intel/tools/gen_context.h
    U xenocara/lib/mesa/src/intel/tools/gen8_context.h
    U xenocara/lib/mesa/src/intel/tools/gen10_context.h
    U xenocara/lib/mesa/src/intel/tools/aub_write.h
    U xenocara/lib/mesa/src/intel/tools/aub_write.c
    U xenocara/lib/mesa/src/intel/tools/error2aub.c
    U xenocara/lib/mesa/src/intel/tools/i965_disasm.c
    U xenocara/lib/mesa/src/intel/tools/aubinator_viewer.cpp
    U xenocara/lib/mesa/src/intel/tools/aubinator_viewer.h
    U xenocara/lib/mesa/src/intel/tools/aubinator_viewer_decoder.cpp
    U xenocara/lib/mesa/src/intel/tools/aubinator_viewer_urb.h
    U xenocara/lib/mesa/src/intel/tools/intel_dump_gpu.c
    U xenocara/lib/mesa/src/intel/tools/intel_sanitize_gpu.c
    U xenocara/lib/mesa/src/intel/tools/intel_sanitize_gpu.in
    U xenocara/lib/mesa/src/intel/tools/intel_dump_gpu.in
    U xenocara/lib/mesa/src/intel/tools/meson.build
    U xenocara/lib/mesa/src/intel/tools/imgui/README
    U xenocara/lib/mesa/src/intel/tools/imgui/stb_textedit.h
    U xenocara/lib/mesa/src/intel/tools/imgui/meson.build
    U xenocara/lib/mesa/src/intel/tools/imgui/imconfig.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_draw.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_demo.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_internal.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_gtk3.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_gtk3.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_opengl3.cpp
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_impl_opengl3.h
    U xenocara/lib/mesa/src/intel/tools/imgui/imgui_memory_editor.h
    U xenocara/lib/mesa/src/intel/tools/imgui/stb_truetype.h
    U xenocara/lib/mesa/src/intel/tools/imgui/stb_rect_pack.h
    U xenocara/lib/mesa/src/intel/tools/imgui/LICENSE.txt
    U xenocara/lib/mesa/src/intel/vulkan/gen8_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_blorp_exec.c
    C xenocara/lib/mesa/src/intel/vulkan/genX_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_gpu_memcpy.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_query.c
    U xenocara/lib/mesa/src/intel/vulkan/genX_state.c
    U xenocara/lib/mesa/src/intel/vulkan/gen7_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem_stubs.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_extensions.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_extensions.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_allocator.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_android.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_batch_chain.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_blorp.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_cmd_buffer.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_descriptor_set.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_device.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_dump.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_formats.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_genX.h
    C xenocara/lib/mesa/src/intel/vulkan/anv_image.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_intel.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_add_base_work_group_id.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_apply_pipeline_layout.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_input_attachments.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_multiview.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_push_constants.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_nir_lower_ycbcr_textures.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pass.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_pipeline_cache.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_private.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_queue.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_util.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi.c
    U xenocara/lib/mesa/src/intel/vulkan/vk_format_info.h
    U xenocara/lib/mesa/src/intel/vulkan/anv_android.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_android_stubs.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi_x11.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi_wayland.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_wsi_display.c
    U xenocara/lib/mesa/src/intel/vulkan/anv_gem.c
    U xenocara/lib/mesa/src/intel/vulkan/meson.build
    U xenocara/lib/mesa/src/intel/vulkan/anv_entrypoints_gen.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_extensions_gen.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_extensions.py
    U xenocara/lib/mesa/src/intel/vulkan/anv_icd.py
    U xenocara/lib/mesa/src/intel/vulkan/TODO
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_test_helper.h
    U xenocara/lib/mesa/src/intel/vulkan/tests/block_pool_no_free.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_free_list_only.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_no_free.c
    U xenocara/lib/mesa/src/intel/vulkan/tests/state_pool_padding.c
    U xenocara/lib/mesa/src/broadcom/Makefile.am
    U xenocara/lib/mesa/src/broadcom/Makefile.cle.am
    U xenocara/lib/mesa/src/broadcom/Makefile.genxml.am
    U xenocara/lib/mesa/src/broadcom/Makefile.in
    U xenocara/lib/mesa/src/broadcom/Makefile.sources
    U xenocara/lib/mesa/src/broadcom/Makefile.v3d.am
    U xenocara/lib/mesa/src/broadcom/meson.build
    U xenocara/lib/mesa/src/broadcom/cle/v3d_decoder.c
    U xenocara/lib/mesa/src/broadcom/cle/v3d_decoder.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_helpers.h
    U xenocara/lib/mesa/src/broadcom/cle/v3dx_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/meson.build
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v21.xml
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v33.xml
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v21_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v33_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v41_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_packet_v42_pack.h
    U xenocara/lib/mesa/src/broadcom/cle/v3d_xml.h
    U xenocara/lib/mesa/src/broadcom/cle/gen_pack_header.py
    U xenocara/lib/mesa/src/broadcom/clif/clif_dump.c
    U xenocara/lib/mesa/src/broadcom/clif/clif_dump.h
    U xenocara/lib/mesa/src/broadcom/clif/clif_private.h
    U xenocara/lib/mesa/src/broadcom/clif/v3dx_dump.c
    U xenocara/lib/mesa/src/broadcom/common/v3d_cpu_tiling.h
    U xenocara/lib/mesa/src/broadcom/common/v3d_debug.c
    U xenocara/lib/mesa/src/broadcom/common/v3d_debug.h
    U xenocara/lib/mesa/src/broadcom/common/v3d_device_info.h
    U xenocara/lib/mesa/src/broadcom/common/v3d_limits.h
    U xenocara/lib/mesa/src/broadcom/common/v3d_macros.h
    U xenocara/lib/mesa/src/broadcom/compiler/nir_to_vir.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_dump.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_live_variables.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_lower_uniforms.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_copy_propagate.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_dead_code.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_opt_small_immediates.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_register_allocate.c
    U xenocara/lib/mesa/src/broadcom/compiler/vir_to_qpu.c
    U xenocara/lib/mesa/src/broadcom/compiler/qpu_schedule.c
    U xenocara/lib/mesa/src/broadcom/compiler/qpu_validate.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d33_tex.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d33_vpm_setup.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d40_tex.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d_compiler.h
    U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_image_load_store.c
    U xenocara/lib/mesa/src/broadcom/compiler/meson.build
    U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_io.c
    U xenocara/lib/mesa/src/broadcom/compiler/v3d_nir_lower_txf_ms.c
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_disasm.c
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_disasm.h
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_instr.c
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_instr.h
    U xenocara/lib/mesa/src/broadcom/qpu/qpu_pack.c
    U xenocara/lib/mesa/src/broadcom/qpu/meson.build
    U xenocara/lib/mesa/src/broadcom/qpu/tests/qpu_disasm.c
    U xenocara/lib/mesa/src/freedreno/Makefile.am
    U xenocara/lib/mesa/src/freedreno/Makefile.in
    U xenocara/lib/mesa/src/freedreno/Makefile.sources
    U xenocara/lib/mesa/src/freedreno/meson.build
    U xenocara/lib/mesa/src/freedreno/drm/freedreno_bo.c
    U xenocara/lib/mesa/src/freedreno/drm/freedreno_drmif.h
    U xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer.c
    U xenocara/lib/mesa/src/freedreno/drm/msm_bo.c
    U xenocara/lib/mesa/src/freedreno/drm/msm_pipe.c
    U xenocara/lib/mesa/src/freedreno/drm/msm_ringbuffer_sp.c
    U xenocara/lib/mesa/src/freedreno/drm/freedreno_bo_cache.c
    U xenocara/lib/mesa/src/freedreno/drm/freedreno_pipe.c
    U xenocara/lib/mesa/src/freedreno/drm/freedreno_ringbuffer.h
    U xenocara/lib/mesa/src/freedreno/drm/msm_device.c
    U xenocara/lib/mesa/src/freedreno/drm/msm_priv.h
    U xenocara/lib/mesa/src/freedreno/drm/freedreno_device.c
    U xenocara/lib/mesa/src/freedreno/drm/freedreno_priv.h
    U xenocara/lib/mesa/src/freedreno/drm/msm_drm.h
    U xenocara/lib/mesa/src/freedreno/drm/msm_ringbuffer.c
    U xenocara/lib/mesa/src/freedreno/drm/meson.build
    U xenocara/lib/mesa/src/freedreno/ir3/disasm-a3xx.c
    U xenocara/lib/mesa/src/freedreno/ir3/instr-a3xx.h
    U xenocara/lib/mesa/src/freedreno/ir3/ir3.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler.h
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_compiler_nir.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_context.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_context.h
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_cp.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_depth.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_group.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3.h
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_legalize.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir.h
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_lower_tg4_to_tex.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_print.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_ra.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_sched.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_shader.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_shader.h
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_trig.c
    U xenocara/lib/mesa/src/freedreno/ir3/ir3_nir_trig.py
    U xenocara/lib/mesa/src/freedreno/ir3/meson.build
    U xenocara/lib/mesa/src/freedreno/registers/a2xx.xml.h
    U xenocara/lib/mesa/src/freedreno/registers/a3xx.xml.h
    U xenocara/lib/mesa/src/freedreno/registers/a4xx.xml.h
    U xenocara/lib/mesa/src/freedreno/registers/a5xx.xml.h
    U xenocara/lib/mesa/src/freedreno/registers/a6xx.xml.h
    U xenocara/lib/mesa/src/freedreno/registers/adreno_common.xml.h
    U xenocara/lib/mesa/src/freedreno/registers/adreno_pm4.xml.h
    U xenocara/lib/mesa/src/gallium/Automake.inc
    U xenocara/lib/mesa/src/gallium/Makefile.am
    U xenocara/lib/mesa/src/gallium/Makefile.in
    U xenocara/lib/mesa/src/gallium/README.portability
    U xenocara/lib/mesa/src/gallium/SConscript
    U xenocara/lib/mesa/src/gallium/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/README
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/opengl32.mingw.def
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_device.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_extensionsstring.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pbuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_rendertexture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_ext_swapinterval.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_framebuffer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_icd.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_getprocaddress.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_nopfuncs.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_pixelformat.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_tls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_wgl.h
    U xenocara/lib/mesa/src/gallium/state_trackers/wgl/stw_winsys.h
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/bitmap_wrapper.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/bitmap_wrapper.h
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/hgl.c
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/hgl_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/hgl/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/Doxyfile
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/context.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/dispatch.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/interop.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/transfer.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/api/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/context.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/context.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/device.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/error.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/event.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/format.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/kernel.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/memory.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/module.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/module.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/object.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/platform.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/program.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/property.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/queue.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/resource.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/sampler.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/core/timestamp.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/compat.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/invocation.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/invocation.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/metadata.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/util.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/bitcode.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/common.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/llvm/codegen/native.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/compiler.cpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/tgsi/invocation.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/adaptor.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algebra.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/algorithm.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/factor.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/functional.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/lazy.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/pointer.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/range.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/clover/util/tuple.hpp
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_drawable.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_helpers.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_helpers.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_query_renderer.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri_screen.h
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/drisw.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/dri2.c
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/dri/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_getproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/glx_usefont.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_api.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_public.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.c
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/xm_st.h
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/glx/xlib/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_common.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_common.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h264_common.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_dec_h264_common.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_omx_common.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_omx_common.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc_common.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/vid_enc_common.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/entrypoint.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/entrypoint.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264d.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264d.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dprc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dprc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dinport.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dinport.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264dinport_decls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264e.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264e.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eprc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eprc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264einport.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264einport.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264einport_decls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eoutport.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eoutport_decls.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/names.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/tizonia/h264eoutport.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/entrypoint.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/entrypoint.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec.h
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_dec_h265.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/omx/bellagio/vid_enc.h
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/osmesa.c
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/state_trackers/osmesa/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/va/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/va/buffer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/config.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/display.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/image.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg12.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mpeg4.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_h264.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_h264_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_hevc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_hevc_enc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_vc1.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_mjpeg.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/picture_vp9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/postproc.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/va/va_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/va/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/bitmap.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/decode.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/device.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/ftab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/htab.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/mixer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/output.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/preemption.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/presentation.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/query.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/vdpau_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/vdpau/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.h.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/README
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_composite.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_priv.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_renderer.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tgsi.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_tracker.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa_yuv.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/xa-indent.sh
    U xenocara/lib/mesa/src/gallium/state_trackers/xa/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/attributes.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/block.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/xvmc_private.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/meson.build
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.h
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_blocks.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/testlib.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_context.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_rendering.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_subpicture.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/test_surface.c
    U xenocara/lib/mesa/src/gallium/state_trackers/xvmc/tests/xvmc_bench.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.am
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.in
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/Makefile.sources
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/README
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/adapter9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/authenticatedchannel9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/authenticatedchannel9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/basetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/buffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cryptosession9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/cubetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9ex.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/device9video.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/guid.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/indexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/iunknown.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_buffer_upload.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_buffer_upload.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_csmt_helper.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_debug.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_defines.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_dump.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nineexoverlayextension.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_ff.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_flags.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_helpers.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_limits.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_lock.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pdata.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_pipe.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_quirk.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_queue.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_queue.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_shader.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/nine_state.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/pixelshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/query9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/query9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/resource9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/resource9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/stateblock9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/surface9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9ex.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9ex.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/swapchain9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/texture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/threadpool.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexbuffer9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexdeclaration9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/vertexshader9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volume9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volume9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.c
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/volumetexture9.h
    U xenocara/lib/mesa/src/gallium/state_trackers/nine/meson.build
    U xenocara/lib/mesa/src/gallium/targets/dri-vdpau.dyn
    U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-gdi/libgl_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/SConscript
    U xenocara/lib/mesa/src/gallium/targets/graw-gdi/graw_gdi.c
    U xenocara/lib/mesa/src/gallium/targets/graw-null/SConscript
    U xenocara/lib/mesa/src/gallium/targets/graw-null/graw_null.c
    U xenocara/lib/mesa/src/gallium/targets/graw-null/graw_util.c
    U xenocara/lib/mesa/src/gallium/targets/graw-null/meson.build
    U xenocara/lib/mesa/src/gallium/targets/graw-xlib/SConscript
    U xenocara/lib/mesa/src/gallium/targets/graw-xlib/graw_xlib.c
    U xenocara/lib/mesa/src/gallium/targets/graw-xlib/meson.build
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/.editorconfig
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.cpp
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/GalliumContext.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.cpp
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.h
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/SoftwareRenderer.rdef
    U xenocara/lib/mesa/src/gallium/targets/haiku-softpipe/meson.build
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_i915.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_msm.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_nouveau.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_r600.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_radeonsi.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_swrast.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe_vmwgfx.c
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/pipe.sym
    U xenocara/lib/mesa/src/gallium/targets/pipe-loader/meson.build
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/opencl/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/opencl/mesa.icd.in
    U xenocara/lib/mesa/src/gallium/targets/opencl/mesa.icd
    U xenocara/lib/mesa/src/gallium/targets/opencl/opencl.sym
    U xenocara/lib/mesa/src/gallium/targets/opencl/meson.build
    U xenocara/lib/mesa/src/gallium/targets/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/dri/target.c
    U xenocara/lib/mesa/src/gallium/targets/dri/SConscript
    U xenocara/lib/mesa/src/gallium/targets/dri/meson.build
    U xenocara/lib/mesa/src/gallium/targets/dri/dri.sym
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/xlib.c
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/SConscript
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/libgl-xlib.sym
    U xenocara/lib/mesa/src/gallium/targets/libgl-xlib/meson.build
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/omx/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/omx/target.c
    U xenocara/lib/mesa/src/gallium/targets/omx/omx.sym
    U xenocara/lib/mesa/src/gallium/targets/omx/meson.build
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/osmesa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.pc.in
    U xenocara/lib/mesa/src/gallium/targets/osmesa/target.c
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.sym
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/osmesa.mingw.def
    U xenocara/lib/mesa/src/gallium/targets/osmesa/SConscript
    U xenocara/lib/mesa/src/gallium/targets/osmesa/meson.build
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/va/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/va/target.c
    U xenocara/lib/mesa/src/gallium/targets/va/va.sym
    U xenocara/lib/mesa/src/gallium/targets/va/meson.build
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/vdpau/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/vdpau/target.c
    U xenocara/lib/mesa/src/gallium/targets/vdpau/vdpau.sym
    U xenocara/lib/mesa/src/gallium/targets/vdpau/meson.build
    U xenocara/lib/mesa/src/gallium/targets/xa/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/xa/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xa/xatracker.pc.in
    U xenocara/lib/mesa/src/gallium/targets/xa/target.c
    U xenocara/lib/mesa/src/gallium/targets/xa/xa.sym
    U xenocara/lib/mesa/src/gallium/targets/xa/meson.build
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/xvmc/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/xvmc/target.c
    U xenocara/lib/mesa/src/gallium/targets/xvmc/xvmc.sym
    U xenocara/lib/mesa/src/gallium/targets/xvmc/meson.build
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.am
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/Makefile.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3d.pc.in
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/description.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/getproc.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/drm.c
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/d3dadapter9.sym
    U xenocara/lib/mesa/src/gallium/targets/d3dadapter9/meson.build
    U xenocara/lib/mesa/src/gallium/tests/meson.build
    U xenocara/lib/mesa/src/gallium/tests/graw/SConscript
    U xenocara/lib/mesa/src/gallium/tests/graw/clear.c
    U xenocara/lib/mesa/src/gallium/tests/graw/disasm.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-fragcoord.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-frontface.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fs-write-z.c
    U xenocara/lib/mesa/src/gallium/tests/graw/graw_util.h
    U xenocara/lib/mesa/src/gallium/tests/graw/gs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/meson.build
    U xenocara/lib/mesa/src/gallium/tests/graw/occlusion-query.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-sample.c
    U xenocara/lib/mesa/src/gallium/tests/graw/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/graw/shader-leak.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-srgb.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tex-swizzle.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tgsi_dump.gdb
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-gs.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-instanced.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri-large.c
    U xenocara/lib/mesa/src/gallium/tests/graw/tri.c
    U xenocara/lib/mesa/src/gallium/tests/graw/vs-test.c
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-abs.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-add.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-cb-1d.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-cb-2d.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dp3.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dp4.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-dst.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-ex2.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-face.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-flr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-frc.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-kil.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-lg2.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-lit.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-lrp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-mad-immx.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-mad.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-max.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-min.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-mov.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-mul.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-rcp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-rsq.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-sge.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-slt.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-abs.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-absneg.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-neg.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-srcmod-swz.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-sub.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-tempx.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-ucmp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/fragment-shader/frag-xpd.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/add-mix.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/add.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/line.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/mov-cb-2d.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/mov.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/geometry-shader/multi-line.txt
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-abs.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-add.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-arl.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-arr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-cb-1d.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-cb-2d.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-dp3.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-dp4.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-dst.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-ex2.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-flr.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-frc.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-imul_hi.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lg2.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lit.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-lrp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-mad.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-max.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-min.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-mov.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-mul.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-rcp.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-rsq.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-sge.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-slt.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-abs.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-absneg.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-neg.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-srcmod-swz.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-sub.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-uadd.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-umul_hi.sh
    U xenocara/lib/mesa/src/gallium/tests/graw/vertex-shader/vert-xpd.sh
    U xenocara/lib/mesa/src/gallium/tests/python/tests/regress/fragment-shader/frag-cmp.sh
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.am
    U xenocara/lib/mesa/src/gallium/tests/trivial/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/trivial/compute.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/quad-tex.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/tri.c
    U xenocara/lib/mesa/src/gallium/tests/trivial/meson.build
    U xenocara/lib/mesa/src/gallium/tests/unit/Makefile.am
    U xenocara/lib/mesa/src/gallium/tests/unit/Makefile.in
    U xenocara/lib/mesa/src/gallium/tests/unit/pipe_barrier_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/translate_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_cache_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_compatible_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_format_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/u_half_test.c
    U xenocara/lib/mesa/src/gallium/tests/unit/SConscript
    U xenocara/lib/mesa/src/gallium/tests/unit/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/gdi/gdi_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/.editorconfig
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/hgl_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/hgl/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/null_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/null_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/null/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/xlib_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/xlib/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/dri/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/kms_dri_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/kms-dri/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/wrapper_sw_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/sw/wrapper/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/freedreno_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/freedreno/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_batchbuffer.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_buffer.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/i915_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/i915/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/nouveau_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/nouveau/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/svga_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_buffer.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_context.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_fence.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmwgfx_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_msg.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_msg.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_dri.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen.h
    C xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_ioctl.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_pools.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_screen_svga.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_surface.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_shader.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.c
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/vmw_query.h
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/SConscript
    U xenocara/lib/mesa/src/gallium/winsys/svga/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_bo.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_cs.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_public.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_surface.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/amdgpu_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/amdgpu/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_bo.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_cs.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_surface.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/radeon_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/radeon/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/etnaviv_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/etnaviv_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/etnaviv/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/kmsro_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/kmsro_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/kmsro/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/tegra_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/tegra_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/tegra/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/vc4_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/vc4_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/vc4/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/v3d_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/v3d_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/v3d/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_public.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virgl_drm_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/virtgpu_drm.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/drm/meson.build
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.am
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.in
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/Makefile.sources
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_public.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_socket.c
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.c
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/virgl_vtest_winsys.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/vtest_protocol.h
    U xenocara/lib/mesa/src/gallium/winsys/virgl/vtest/meson.build
    U xenocara/lib/mesa/src/gallium/docs/Makefile
    U xenocara/lib/mesa/src/gallium/docs/make.bat
    U xenocara/lib/mesa/src/gallium/docs/source/conf.py
    U xenocara/lib/mesa/src/gallium/docs/source/context.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso.rst
    U xenocara/lib/mesa/src/gallium/docs/source/debugging.rst
    U xenocara/lib/mesa/src/gallium/docs/source/distro.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers.rst
    U xenocara/lib/mesa/src/gallium/docs/source/format.rst
    U xenocara/lib/mesa/src/gallium/docs/source/glossary.rst
    U xenocara/lib/mesa/src/gallium/docs/source/index.rst
    U xenocara/lib/mesa/src/gallium/docs/source/intro.rst
    U xenocara/lib/mesa/src/gallium/docs/source/pipeline.txt
    U xenocara/lib/mesa/src/gallium/docs/source/resources.rst
    U xenocara/lib/mesa/src/gallium/docs/source/screen.rst
    U xenocara/lib/mesa/src/gallium/docs/source/tgsi.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/blend.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/dsa.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/rasterizer.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/sampler.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/shader.rst
    U xenocara/lib/mesa/src/gallium/docs/source/cso/velems.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/freedreno/ir3-notes.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/faq.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/knobs.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/profiling.rst
    U xenocara/lib/mesa/src/gallium/docs/source/drivers/openswr/usage.rst
    U xenocara/lib/mesa/src/gallium/docs/source/exts/formatting.py
    U xenocara/lib/mesa/src/gallium/include/pipe/p_compiler.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_config.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_context.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_defines.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_format.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_screen.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_shader_tokens.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_state.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_codec.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_enums.h
    U xenocara/lib/mesa/src/gallium/include/pipe/p_video_state.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drisw_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/drm_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/graw.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/opencl_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/st_api.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_driver.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/sw_winsys.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_dmabuf.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_funcs.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/vdpau_interop.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/winsys_handle.h
    U xenocara/lib/mesa/src/gallium/include/state_tracker/xlibsw_api.h
    U xenocara/lib/mesa/src/gallium/tools/addr2line.sh
    U xenocara/lib/mesa/src/gallium/tools/trace/README.txt
    U xenocara/lib/mesa/src/gallium/tools/trace/TODO.txt
    U xenocara/lib/mesa/src/gallium/tools/trace/diff_state.py
    U xenocara/lib/mesa/src/gallium/tools/trace/dump.py
    U xenocara/lib/mesa/src/gallium/tools/trace/dump_state.py
    U xenocara/lib/mesa/src/gallium/tools/trace/format.py
    U xenocara/lib/mesa/src/gallium/tools/trace/model.py
    U xenocara/lib/mesa/src/gallium/tools/trace/parse.py
    U xenocara/lib/mesa/src/gallium/tools/trace/tracediff.sh
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/meson.build
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.c
    U xenocara/lib/mesa/src/gallium/auxiliary/cso_cache/cso_hash.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_cliptest_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_decompose_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_fs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_gs_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aaline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_aapoint.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_clip.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_cull.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_flatshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_offset.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_stipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_twoside.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_unfilled.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_line.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pipe_wide_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_prim_assembler_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_decompose.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_post_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_so_emit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_so_emit_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_split_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vertex.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_variant.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_llvm_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_vs_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline_llvm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_draw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_pipe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_screen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_ddebug/dd_util.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_pipe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_noop/noop_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_objects.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_objects.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_screen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/rbug_screen.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_rbug/README
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_defines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_dump_state.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_screen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_screen.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/tr_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/README
    U xenocara/lib/mesa/src/gallium/auxiliary/driver_trace/trace.xsl
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_arit_overflow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_assert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_bitarit.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_const.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_conv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_flow.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos_array.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_float.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_s3tc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_srgb.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_gather.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_init.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_intr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_limits.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_logic.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_misc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_printf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_aos.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_sample_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_struct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_swizzle.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_action.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_aos.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi.h
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.c
    U xenocara/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_type.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/font.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_nic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_cpufreq.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_diskstat.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_sensors_temp.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_driver_query.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_fps.c
    U xenocara/lib/mesa/src/gallium/auxiliary/hud/hud_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_primconvert.h
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_indices.c
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_indices_gen.py
    U xenocara/lib/mesa/src/gallium/auxiliary/indices/u_unfilled_gen.py
    U xenocara/lib/mesa/src/gallium/auxiliary/nir/tgsi_to_nir.c
    U xenocara/lib/mesa/src/gallium/auxiliary/nir/tgsi_to_nir.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_mman.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.c
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_process.h
    U xenocara/lib/mesa/src/gallium/auxiliary/os/os_thread.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_fenced.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_buffer_malloc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_alt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_debug.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_ondemand.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_pool.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_bufmgr_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_slab.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipebuffer/pb_validate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/postprocess.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_celshade.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_celshade.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_colors.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_filters.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_init.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa_areamap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_mlaa.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_private.h
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_program.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/pp_run.c
    U xenocara/lib/mesa/src/gallium/auxiliary/postprocess/ADDING
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_connection.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_core.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_demarshal.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_internal.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_proto.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_shader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/rbug_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rbug/README
    U xenocara/lib/mesa/src/gallium/auxiliary/renderonly/renderonly.c
    U xenocara/lib/mesa/src/gallium/auxiliary/renderonly/renderonly.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_cpu.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_execmem.h
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/rtasm/rtasm_x86sse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_aa_point.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_build.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_exec.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_emulate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_from_mesa.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_from_mesa.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_info_opcodes.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_iterate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_lowering.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_opcode_tmp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_parse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_point_sprite.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_sanity.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_scan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_strings.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_text.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_transform.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_two_side.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_ureg.h
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.c
    U xenocara/lib/mesa/src/gallium/auxiliary/tgsi/tgsi_util.h
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate.h
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_generic.c
    U xenocara/lib/mesa/src/gallium/auxiliary/translate/translate_sse.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/dbghelp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_async_debug.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_async_debug.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitcast.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_bitmask.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blit.h
    C xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_blitter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_box.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_cache.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_gallium.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_gallium.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_describe.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_flush.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_image.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_memory.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_refcnt.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_symbol.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_flags.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dirty_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dl.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_draw_quad.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dual_blend.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_defines.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_dump_state.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_fifo.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_bptc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_bptc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_etc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_latc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_latc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_other.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_rgtc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_s3tc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_yuv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_zs.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_half.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_framebuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_gen_mipmap.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_handle_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_hash_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_helpers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_idalloc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_idalloc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_index_modify.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_inlines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_linear.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_log.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_log.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_mm.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_network.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sse.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pack_color.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pointer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_prim_restart.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pstipple.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_pwr8.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_range.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_rect.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_resource.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_ringbuffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_sampler.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_screen.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_screen.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_simple_shaders.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_split_prim.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_suballoc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surface.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_surfaces.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tests.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_texture.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_tile.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer_helper.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_transfer_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_threaded_context_calls.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_upload_mgr.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_vbuf.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_video.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_viewport.h
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.c
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_debug_stack_android.cpp
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format.csv
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_pack.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_parse.py
    U xenocara/lib/mesa/src/gallium/auxiliary/util/u_format_table.py
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_bicubic_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_compositor.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_csc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_defines.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_deint_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_idct.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_matrix_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_median_filter.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_rbsp.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_bitstream.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_mpeg12_decoder.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_types.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vertex_buffers.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_video_buffer.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_vlc.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_zscan.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_probs_table.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_stubs.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys.h
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_dri3.c
    U xenocara/lib/mesa/src/gallium/auxiliary/vl/vl_winsys_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.am
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.in
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/Makefile.sources
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_priv.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_sw.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/driinfo_gallium.h
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/SConscript
    U xenocara/lib/mesa/src/gallium/auxiliary/pipe-loader/meson.build
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/drm_helper_public.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_debug_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/inline_sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper.h
    U xenocara/lib/mesa/src/gallium/auxiliary/target-helpers/sw_helper_public.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/disasm.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_batch_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_blitter.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_perfcntr.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_acc.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_acc.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_state.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/freedreno_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/disasm-a2xx.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_perfcntr.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_util.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/fd2_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/instr-a2xx.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_assemble.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_cp.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_nir_lower_scalar.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_private.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a2xx/ir2_ra.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a3xx/fd3_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a4xx/fd4_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blitter.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_image.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_image.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_perfcntr.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a5xx/fd5_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blitter.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_blitter.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_context.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_context.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_format.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_format.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_gmem.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_gmem.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_image.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_image.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_program.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_program.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_query.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_query.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/a6xx/fd6_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_gallium.c
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_gallium.h
    U xenocara/lib/mesa/src/gallium/drivers/freedreno/ir3/ir3_cmdline.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/i915/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/i915/TODO
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batchbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_batch.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_context.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_fp.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_debug_private.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_fpc_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_public.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_query.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_dynamic.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_fpc.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_immediate.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_state_static.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/i915_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/i915/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/i915/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_gldefs.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_heap.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_mm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_statebuf.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_vp3_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv17_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv31_mpeg.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv_object.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nouveau_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_bb.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_build_util.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_build_util.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_driver.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nv50.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_graph.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_graph.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nv50.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_peephole.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_print.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_ssa.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_util.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_util.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/unordered_set.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gk110.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_gm107.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_emit_nvc0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_gm107.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_gm107.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_nvc0.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_gm107.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nvc0.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gf100.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk104.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk104.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gk110.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/codegen/lib/gm107.asm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv01_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30-40_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_format.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_fragtex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv30_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_vertprog.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nv40_verttex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv30/nvfx_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_defs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/g80_texture.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_2d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3ddefs.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_push.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_metric.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_query_hw_sm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_shader_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_stateobj_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv50_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv84_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_ppp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nv50/nv98_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/gm107_texture.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_context.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_m2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_macros.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_miptree.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_program.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_metric.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_sm.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_hw_sm.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_shader_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_stateobj.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_state_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_vbo_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_bsp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_ppp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_video_vp.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nvc0_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_compute.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/nve4_p2mf.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/Makefile
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com9097.mme
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com9097.mme.h
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com90c0.mme
    U xenocara/lib/mesa/src/gallium/drivers/nouveau/nvc0/mme/com90c0.mme.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/svga/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_cmd_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_context.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_arrays.c
    C xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_elements.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_draw_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_format.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_hw_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_link.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_mksstats.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_depthstencil.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_misc.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_query.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_pipe_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_public.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_buffer_upload.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_resource_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_sampler_view.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_framebuffer.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_need_swtnl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_rss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tgsi_transform.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_tss.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vdecl.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_streamout.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_backend.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_state.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_swtnl_private.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_decl_sm30.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_insn.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_tgsi_vgpu10.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svga_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/svga/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/svga/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/includeCheck.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_caps.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_cmd.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_devcaps.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_dx.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_shaderdefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_surfacedefs.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga3d_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_escape.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_overlay.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/svga_types.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/VGPU10ShaderTokens.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_begin.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/vmware_pack_end.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/include/README
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.c
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_shader_op.h
    U xenocara/lib/mesa/src/gallium/drivers/svga/svgadump/svga_dump.py
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r300/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cb.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_chipset.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_context.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_cs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_hyperz.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_query.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_reg.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_stencilref.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_render_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_shader_semantics.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_state_inlines.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture_desc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_tgsi_to_rc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/r300_vs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/r300/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r300_fragprog_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r3xx_vertprog_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/r500_fragprog.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_code.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_compiler_util.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_deadcode.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_dataflow_swizzles.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_branches.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_emulate_loops.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_inline_literals.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_list.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_optimize.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_dead_sources.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_regalloc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_pair_translate.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_alu.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_pair.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_print.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_program_tex.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_regalloc.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_remove_constants.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_rename_regs.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_swizzle.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_variable.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/radeon_vert_fc.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/r300_compiler_tests.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_optimize_tests.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_regalloc_tests.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/radeon_compiler_util_tests.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/rc_test_helpers.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.c
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/unit_test.h
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/omod_two_writers.test
    U xenocara/lib/mesa/src/gallium/drivers/r300/compiler/tests/regalloc_tex_1d_swizzle.test
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/r600/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600d_common.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/compute_memory_pool.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/eg_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_compute_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreend.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/evergreen_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_asm.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600d.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_formats.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_hw_context.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_isa.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_opcodes.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_state_common.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r700_sq.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/cayman_msaa.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_buffer_common.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_cs.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_gpu_load.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_query.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe_common.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_pipe_common.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_query.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_test_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/r600_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_uvd.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_vce.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_vce.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_video.c
    U xenocara/lib/mesa/src/gallium/drivers/r600/radeon_video.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/egd_tables.py
    U xenocara/lib/mesa/src/gallium/drivers/r600/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/r600/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_decoder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_finalize.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_parser.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dce_cleanup.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_def_use.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_dump.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_expr.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gcm.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_gvn.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_if_conversion.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ir.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_liveness.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_pass.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_peephole.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_psi_ops.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_public.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_checker.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_coalesce.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ra_init.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_sched.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_ssa_builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_valtable.cpp
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/notes.markdown
    U xenocara/lib/mesa/src/gallium/drivers/r600/sb/sb_bc_fmt_def.inc
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_driinfo.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/cik_sdma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/driinfo_radeonsi.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_build_pm4.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_compute_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_cp_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_debug_options.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_descriptors.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_dma_cs.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_get.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_gfx_cs.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_gpu_load.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_pm4.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_perfcounter.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_public.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_query.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_query.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_nir.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_alu.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_mem.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shader_tgsi_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_shaderlib_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_binning.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_msaa.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state_viewport.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_state.h
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_test_dma.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_test_dma_perf.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/si_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/radeonsi/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_dec_jpeg.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_dec.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_dec.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_enc_1_2.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_enc.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vcn_enc.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd_enc_1_1.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd_enc.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_uvd_enc.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_40_2_2.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_50.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce_52.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_vce.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.c
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_video.h
    U xenocara/lib/mesa/src/gallium/drivers/radeon/radeon_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/README
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_asm.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_asm.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blt.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_blt.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_clear_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_clear_blit.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_context.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_context.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_disasm.h
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_emit.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_format.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_format.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_internal.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_hw.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_sw.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_sw.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_pm.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_query_pm.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rs.c
    C xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_rs.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_state.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_state.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture_state.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_texture_state.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_tiling.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_transfer.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_transfer.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_translate.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_uniforms.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_util.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_zsa.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_zsa.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/etnaviv_compiler_cmdline.c
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/cmdstream.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/common.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/common_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/isa.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state_blt.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/state.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/etnaviv/hw/texdesc_3d.xml.h
    U xenocara/lib/mesa/src/gallium/drivers/kmsro/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/kmsro/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/kmsro/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_buffer.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_compute.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs_exec.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_image.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_prim_vbuf.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_depth_test_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_pipe.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_quad_stipple.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_image.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_shader.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tex_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.c
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/sp_tile_cache.h
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/softpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_alpha.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_aos.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_blend_logicop.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_depth.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_bld_interp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_clear.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_debug.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_draw_arrays.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_flush.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_limits.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_perf.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_public.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_query.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_debug.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_priv.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_rast_tri_tmp.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_scene_queue.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_context.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_line.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_point.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_tri.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_setup_vbuf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_clip.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_derived.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_fs.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_gs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_rasterizer.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_sampler.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_setup.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_so.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vertex.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_state_vs.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_surface.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_texture.h
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_arit.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_main.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_conv.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_format.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/lp_test_printf.c
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/llvmpipe/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/swr/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_clear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_draw.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_public.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_tex_sample.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_scratch.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_shader.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_memory.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence_work.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_fence_work.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_query.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/swr_loader.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/gen_swr_context_llvm.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/SConscript
    U xenocara/lib/mesa/src/gallium/drivers/swr/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/swr/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/archrast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/eventmanager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_event.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandler.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/gen_ar_eventhandlerfile.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/events.proto
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/archrast/events_private.proto
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_knobs.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_ir_macros.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_llvm_types.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_archrast.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_backends.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_common.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/gen_knobs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/knob_defs.py
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_ar_event.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_ar_event.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_ar_eventhandler.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_ar_eventhandlerfile.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_backend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_builder.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_header_init.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_llvm.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/codegen/templates/gen_rasterizer.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/formats.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/intrin.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/isa.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/os.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/os.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/rdtsc_buckets_shared.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simd16intrin.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdintrin.h
    C xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx2.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx512.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx512_core.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_128_avx512_knights.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx2.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx512.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx512_core.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_256_avx512_knights.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_core.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_knights.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_masks.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_masks_core.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_avx512_masks_knights.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_emu.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_512_emu_masks.inl
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_interface.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/simdlib_types.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/common/swr_assert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/api.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/arena.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend_clear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend_sample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend_singlesample.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backend_impl.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/binner.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/binner.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/blend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/clip.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/conservativeRast.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/context.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/depthstencil.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/fifo.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_conversion.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_traits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_types.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/format_utils.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/frontend.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/knobs_init.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/multisample.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa_avx.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/pa.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rasterizer_impl.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/rdtsc_core.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/ringbuffer.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/state.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/state_funcs.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tessellator.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/threads.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tilemgr.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/tileset.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/utils.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate1.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate3.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_BackendPixelRate.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer0.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer1.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer3.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/gen_rasterizer.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/core/backends/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/blend_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_math.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_mem.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_gfx_mem.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_gfx_mem.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/builder_misc.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/fetch_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/jit_api.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/jit_pch.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/JitManager.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/streamout_jit.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/gen_state_llvm.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/gen_builder.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/gen_builder_meta.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/gen_builder_intrin.hpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/passes.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/lower_x86.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/jitter/shader_lib/DebugOutput.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/ClearTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/Convert.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_Linear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileX.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/LoadTile_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_Linear2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_Linear.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileW.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileX.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileY2.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/StoreTile_TileY.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/TilingFunctions.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/tilingtraits.h
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/InitMemory.cpp
    U xenocara/lib/mesa/src/gallium/drivers/swr/rasterizer/memory/InitMemory.h
    U xenocara/lib/mesa/src/gallium/drivers/tegra/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/tegra/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/tegra/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_context.c
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_context.h
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/tegra/tegra_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/tegra/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/tegra/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_bufmgr.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl_dump.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_cl.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_context.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_job.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_blend.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_io.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_nir_lower_txf_ms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_algebraic.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_constant_folding.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_copy_propagation.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_dead_code.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_peephole_sf.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_small_immediates.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_vpm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_opt_coalesce_ff_writes.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_program.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_emit_uniform_stream_resets.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_live_variables.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_lower_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qir.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_defines.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_disasm.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_schedule.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_qpu_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_query.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_register_allocate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_reorder_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_simulator_validate.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_state.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling_lt.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/vc4_tiling_lt_neon.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/vc4/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_drv.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_gem.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_packet.h
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_render_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/vc4_validate_shaders.c
    U xenocara/lib/mesa/src/gallium/drivers/vc4/kernel/README
    U xenocara/lib/mesa/src/gallium/drivers/v3d/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/v3d/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/v3d/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_blit.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_bufmgr.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_bufmgr.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_cl.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_cl.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_context.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_context.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_fence.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_formats.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_format_table.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_job.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_program.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_query.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_resource.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_draw.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_simulator_wrapper.cpp
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_simulator_wrapper.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_tiling.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_tiling.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3d_uniforms.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_context.h
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_emit.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_format_table.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_job.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_rcl.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_simulator.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/v3dx_state.c
    U xenocara/lib/mesa/src/gallium/drivers/v3d/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/v3d/Automake.inc
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.am
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.in
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Makefile.sources
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_buffer.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_context.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_encode.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_hw.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_protocol.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_public.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_query.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_resource.h
    C xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_screen.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_streamout.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_texture.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_tgsi.c
    U xenocara/lib/mesa/src/gallium/drivers/virgl/virgl_winsys.h
    U xenocara/lib/mesa/src/gallium/drivers/virgl/meson.build
    U xenocara/lib/mesa/src/gallium/drivers/virgl/Automake.inc
    U xenocara/lib/mesa/src/loader/Makefile.am
    U xenocara/lib/mesa/src/loader/Makefile.in
    U xenocara/lib/mesa/src/loader/Makefile.sources
    U xenocara/lib/mesa/src/loader/loader.c
    U xenocara/lib/mesa/src/loader/loader.h
    U xenocara/lib/mesa/src/loader/pci_id_driver_map.c
    U xenocara/lib/mesa/src/loader/pci_id_driver_map.h
    U xenocara/lib/mesa/src/loader/loader_dri3_helper.c
    U xenocara/lib/mesa/src/loader/loader_dri3_helper.h
    U xenocara/lib/mesa/src/loader/SConscript
    U xenocara/lib/mesa/src/loader/meson.build
    U xenocara/lib/mesa/docs/ARB_color_buffer_float.txt
    U xenocara/lib/mesa/docs/README.UVD
    U xenocara/lib/mesa/docs/README.VCE
    U xenocara/lib/mesa/docs/README.WIN32
    U xenocara/lib/mesa/docs/VERSIONS
    U xenocara/lib/mesa/docs/application-issues.html
    U xenocara/lib/mesa/docs/autoconf.html
    U xenocara/lib/mesa/docs/bugs.html
    U xenocara/lib/mesa/docs/codingstyle.html
    U xenocara/lib/mesa/docs/conform.html
    U xenocara/lib/mesa/docs/contents.html
    U xenocara/lib/mesa/docs/debugging.html
    U xenocara/lib/mesa/docs/developers.html
    U xenocara/lib/mesa/docs/devinfo.html
    U xenocara/lib/mesa/docs/dispatch.html
    U xenocara/lib/mesa/docs/download.html
    U xenocara/lib/mesa/docs/egl.html
    U xenocara/lib/mesa/docs/envvars.html
    U xenocara/lib/mesa/docs/extensions.html
    U xenocara/lib/mesa/docs/faq.html
    U xenocara/lib/mesa/docs/favicon.ico
    U xenocara/lib/mesa/docs/favicon.png
    U xenocara/lib/mesa/docs/features.txt
    U xenocara/lib/mesa/docs/gears.png
    U xenocara/lib/mesa/docs/helpwanted.html
    U xenocara/lib/mesa/docs/index.html
    U xenocara/lib/mesa/docs/install.html
    U xenocara/lib/mesa/docs/intro.html
    U xenocara/lib/mesa/docs/libGL.txt
    U xenocara/lib/mesa/docs/license.html
    U xenocara/lib/mesa/docs/lists.html
    U xenocara/lib/mesa/docs/llvmpipe.html
    U xenocara/lib/mesa/docs/mangling.html
    U xenocara/lib/mesa/docs/mesa.css
    U xenocara/lib/mesa/docs/meson.html
    U xenocara/lib/mesa/docs/opengles.html
    U xenocara/lib/mesa/docs/osmesa.html
    U xenocara/lib/mesa/docs/perf.html
    U xenocara/lib/mesa/docs/postprocess.html
    U xenocara/lib/mesa/docs/precompiled.html
    U xenocara/lib/mesa/docs/release-calendar.html
    U xenocara/lib/mesa/docs/releasing.html
    U xenocara/lib/mesa/docs/relnotes.html
    U xenocara/lib/mesa/docs/repository.html
    U xenocara/lib/mesa/docs/shading.html
    U xenocara/lib/mesa/docs/sourcedocs.html
    U xenocara/lib/mesa/docs/sourcetree.html
    U xenocara/lib/mesa/docs/submittingpatches.html
    U xenocara/lib/mesa/docs/systems.html
    U xenocara/lib/mesa/docs/thanks.html
    U xenocara/lib/mesa/docs/utilities.html
    U xenocara/lib/mesa/docs/versions.html
    U xenocara/lib/mesa/docs/viewperf.html
    U xenocara/lib/mesa/docs/vmware-guest.html
    U xenocara/lib/mesa/docs/webmaster.html
    U xenocara/lib/mesa/docs/xlibdriver.html
    U xenocara/lib/mesa/docs/specs/EGL_MESA_device_software.txt
    U xenocara/lib/mesa/docs/specs/EGL_MESA_drm_image_formats.txt
    U xenocara/lib/mesa/docs/specs/EGL_MESA_platform_surfaceless.txt
    U xenocara/lib/mesa/docs/specs/EGL_MESA_query_driver.txt
    U xenocara/lib/mesa/docs/specs/EXT_shader_integer_mix.spec
    U xenocara/lib/mesa/docs/specs/EXT_shader_samples_identical.txt
    U xenocara/lib/mesa/docs/specs/INTEL_shader_atomic_float_minmax.txt
    U xenocara/lib/mesa/docs/specs/MESA_configless_context.spec
    U xenocara/lib/mesa/docs/specs/MESA_copy_sub_buffer.spec
    U xenocara/lib/mesa/docs/specs/MESA_drm_image.spec
    U xenocara/lib/mesa/docs/specs/MESA_framebuffer_flip_y.txt
    U xenocara/lib/mesa/docs/specs/MESA_image_dma_buf_export.txt
    U xenocara/lib/mesa/docs/specs/MESA_multithread_makecurrent.spec
    U xenocara/lib/mesa/docs/specs/MESA_pack_invert.spec
    U xenocara/lib/mesa/docs/specs/MESA_pixmap_colormap.spec
    U xenocara/lib/mesa/docs/specs/MESA_query_renderer.spec
    U xenocara/lib/mesa/docs/specs/MESA_release_buffers.spec
    U xenocara/lib/mesa/docs/specs/MESA_shader_debug.spec
    U xenocara/lib/mesa/docs/specs/MESA_shader_integer_functions.txt
    U xenocara/lib/mesa/docs/specs/MESA_swap_control.spec
    U xenocara/lib/mesa/docs/specs/MESA_swap_frame_usage.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_array.spec
    U xenocara/lib/mesa/docs/specs/MESA_texture_signed_rgba.spec
    U xenocara/lib/mesa/docs/specs/MESA_window_pos.spec
    U xenocara/lib/mesa/docs/specs/MESA_ycbcr_texture.spec
    U xenocara/lib/mesa/docs/specs/WL_bind_wayland_display.spec
    U xenocara/lib/mesa/docs/specs/WL_create_wayland_buffer_from_image.spec
    U xenocara/lib/mesa/docs/specs/enums.txt
    U xenocara/lib/mesa/docs/specs/OLD/EGL_MESA_screen_surface.txt
    U xenocara/lib/mesa/docs/specs/OLD/MESA_agp_offset.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_packed_depth_stencil.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_program_debug.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_resize_buffers.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_set_3dfx_mode.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_sprite_point.spec
    U xenocara/lib/mesa/docs/specs/OLD/MESA_trace.spec
    U xenocara/lib/mesa/docs/relnotes/10.0.1.html
    U xenocara/lib/mesa/docs/relnotes/10.0.2.html
    U xenocara/lib/mesa/docs/relnotes/10.0.3.html
    U xenocara/lib/mesa/docs/relnotes/10.0.4.html
    U xenocara/lib/mesa/docs/relnotes/10.0.5.html
    U xenocara/lib/mesa/docs/relnotes/10.0.html
    U xenocara/lib/mesa/docs/relnotes/10.1.1.html
    U xenocara/lib/mesa/docs/relnotes/10.1.2.html
    U xenocara/lib/mesa/docs/relnotes/10.1.3.html
    U xenocara/lib/mesa/docs/relnotes/10.1.4.html
    U xenocara/lib/mesa/docs/relnotes/10.1.5.html
    U xenocara/lib/mesa/docs/relnotes/10.1.6.html
    U xenocara/lib/mesa/docs/relnotes/10.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.1.html
    U xenocara/lib/mesa/docs/relnotes/10.2.2.html
    U xenocara/lib/mesa/docs/relnotes/10.2.3.html
    U xenocara/lib/mesa/docs/relnotes/10.2.4.html
    U xenocara/lib/mesa/docs/relnotes/10.2.5.html
    U xenocara/lib/mesa/docs/relnotes/10.2.6.html
    U xenocara/lib/mesa/docs/relnotes/10.2.7.html
    U xenocara/lib/mesa/docs/relnotes/10.2.8.html
    U xenocara/lib/mesa/docs/relnotes/10.2.9.html
    U xenocara/lib/mesa/docs/relnotes/10.2.html
    U xenocara/lib/mesa/docs/relnotes/3.1
    U xenocara/lib/mesa/docs/relnotes/10.3.1.html
    U xenocara/lib/mesa/docs/relnotes/10.3.2.html
    U xenocara/lib/mesa/docs/relnotes/10.3.3.html
    U xenocara/lib/mesa/docs/relnotes/10.3.4.html
    U xenocara/lib/mesa/docs/relnotes/10.3.5.html
    U xenocara/lib/mesa/docs/relnotes/10.3.6.html
    U xenocara/lib/mesa/docs/relnotes/10.3.7.html
    U xenocara/lib/mesa/docs/relnotes/10.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.1.html
    U xenocara/lib/mesa/docs/relnotes/10.4.2.html
    U xenocara/lib/mesa/docs/relnotes/10.4.3.html
    U xenocara/lib/mesa/docs/relnotes/10.4.4.html
    U xenocara/lib/mesa/docs/relnotes/10.4.5.html
    U xenocara/lib/mesa/docs/relnotes/10.4.6.html
    U xenocara/lib/mesa/docs/relnotes/10.4.7.html
    U xenocara/lib/mesa/docs/relnotes/10.4.html
    U xenocara/lib/mesa/docs/relnotes/10.5.0.html
    U xenocara/lib/mesa/docs/relnotes/10.5.1.html
    U xenocara/lib/mesa/docs/relnotes/10.5.2.html
    U xenocara/lib/mesa/docs/relnotes/10.5.3.html
    U xenocara/lib/mesa/docs/relnotes/10.5.4.html
    U xenocara/lib/mesa/docs/relnotes/10.5.5.html
    U xenocara/lib/mesa/docs/relnotes/10.5.6.html
    U xenocara/lib/mesa/docs/relnotes/10.5.7.html
    U xenocara/lib/mesa/docs/relnotes/10.5.8.html
    U xenocara/lib/mesa/docs/relnotes/3.2
    U xenocara/lib/mesa/docs/relnotes/10.5.9.html
    U xenocara/lib/mesa/docs/relnotes/10.6.0.html
    U xenocara/lib/mesa/docs/relnotes/10.6.1.html
    U xenocara/lib/mesa/docs/relnotes/10.6.2.html
    U xenocara/lib/mesa/docs/relnotes/10.6.3.html
    U xenocara/lib/mesa/docs/relnotes/10.6.4.html
    U xenocara/lib/mesa/docs/relnotes/10.6.5.html
    U xenocara/lib/mesa/docs/relnotes/10.6.6.html
    U xenocara/lib/mesa/docs/relnotes/10.6.7.html
    U xenocara/lib/mesa/docs/relnotes/10.6.8.html
    U xenocara/lib/mesa/docs/relnotes/10.6.9.html
    U xenocara/lib/mesa/docs/relnotes/11.0.0.html
    U xenocara/lib/mesa/docs/relnotes/11.0.1.html
    U xenocara/lib/mesa/docs/relnotes/11.0.2.html
    U xenocara/lib/mesa/docs/relnotes/11.0.3.html
    U xenocara/lib/mesa/docs/relnotes/11.0.4.html
    U xenocara/lib/mesa/docs/relnotes/11.0.5.html
    U xenocara/lib/mesa/docs/relnotes/11.0.6.html
    U xenocara/lib/mesa/docs/relnotes/11.0.7.html
    U xenocara/lib/mesa/docs/relnotes/11.0.8.html
    U xenocara/lib/mesa/docs/relnotes/11.0.9.html
    U xenocara/lib/mesa/docs/relnotes/11.1.0.html
    U xenocara/lib/mesa/docs/relnotes/11.1.1.html
    U xenocara/lib/mesa/docs/relnotes/11.1.2.html
    U xenocara/lib/mesa/docs/relnotes/11.1.3.html
    U xenocara/lib/mesa/docs/relnotes/3.3
    U xenocara/lib/mesa/docs/relnotes/11.1.4.html
    U xenocara/lib/mesa/docs/relnotes/11.2.0.html
    U xenocara/lib/mesa/docs/relnotes/11.2.1.html
    U xenocara/lib/mesa/docs/relnotes/11.2.2.html
    U xenocara/lib/mesa/docs/relnotes/12.0.0.html
    U xenocara/lib/mesa/docs/relnotes/12.0.1.html
    U xenocara/lib/mesa/docs/relnotes/12.0.2.html
    U xenocara/lib/mesa/docs/relnotes/12.0.3.html
    U xenocara/lib/mesa/docs/relnotes/12.0.4.html
    U xenocara/lib/mesa/docs/relnotes/12.0.5.html
    U xenocara/lib/mesa/docs/relnotes/12.0.6.html
    U xenocara/lib/mesa/docs/relnotes/13.0.0.html
    U xenocara/lib/mesa/docs/relnotes/13.0.1.html
    U xenocara/lib/mesa/docs/relnotes/13.0.2.html
    U xenocara/lib/mesa/docs/relnotes/13.0.3.html
    U xenocara/lib/mesa/docs/relnotes/13.0.4.html
    U xenocara/lib/mesa/docs/relnotes/13.0.5.html
    U xenocara/lib/mesa/docs/relnotes/13.0.6.html
    U xenocara/lib/mesa/docs/relnotes/17.0.0.html
    U xenocara/lib/mesa/docs/relnotes/17.0.1.html
    U xenocara/lib/mesa/docs/relnotes/17.0.2.html
    U xenocara/lib/mesa/docs/relnotes/17.0.3.html
    U xenocara/lib/mesa/docs/relnotes/17.0.4.html
    U xenocara/lib/mesa/docs/relnotes/17.0.5.html
    U xenocara/lib/mesa/docs/relnotes/17.0.6.html
    U xenocara/lib/mesa/docs/relnotes/3.4
    U xenocara/lib/mesa/docs/relnotes/17.0.7.html
    U xenocara/lib/mesa/docs/relnotes/17.1.0.html
    U xenocara/lib/mesa/docs/relnotes/17.1.1.html
    U xenocara/lib/mesa/docs/relnotes/17.1.10.html
    U xenocara/lib/mesa/docs/relnotes/17.1.2.html
    U xenocara/lib/mesa/docs/relnotes/17.1.3.html
    U xenocara/lib/mesa/docs/relnotes/17.1.4.html
    U xenocara/lib/mesa/docs/relnotes/17.1.5.html
    U xenocara/lib/mesa/docs/relnotes/17.1.6.html
    U xenocara/lib/mesa/docs/relnotes/17.1.7.html
    U xenocara/lib/mesa/docs/relnotes/17.1.8.html
    U xenocara/lib/mesa/docs/relnotes/17.1.9.html
    U xenocara/lib/mesa/docs/relnotes/17.2.0.html
    U xenocara/lib/mesa/docs/relnotes/17.2.1.html
    U xenocara/lib/mesa/docs/relnotes/17.2.2.html
    U xenocara/lib/mesa/docs/relnotes/17.2.3.html
    U xenocara/lib/mesa/docs/relnotes/17.2.4.html
    U xenocara/lib/mesa/docs/relnotes/17.2.5.html
    U xenocara/lib/mesa/docs/relnotes/17.2.6.html
    U xenocara/lib/mesa/docs/relnotes/17.2.7.html
    U xenocara/lib/mesa/docs/relnotes/17.2.8.html
    U xenocara/lib/mesa/docs/relnotes/17.3.0.html
    U xenocara/lib/mesa/docs/relnotes/17.3.1.html
    U xenocara/lib/mesa/docs/relnotes/17.3.2.html
    U xenocara/lib/mesa/docs/relnotes/17.3.3.html
    U xenocara/lib/mesa/docs/relnotes/17.3.4.html
    U xenocara/lib/mesa/docs/relnotes/17.3.5.html
    U xenocara/lib/mesa/docs/relnotes/17.3.6.html
    U xenocara/lib/mesa/docs/relnotes/17.3.7.html
    U xenocara/lib/mesa/docs/relnotes/17.3.8.html
    U xenocara/lib/mesa/docs/relnotes/17.3.9.html
    U xenocara/lib/mesa/docs/relnotes/18.0.0.html
    U xenocara/lib/mesa/docs/relnotes/18.0.1.html
    U xenocara/lib/mesa/docs/relnotes/18.0.2.html
    U xenocara/lib/mesa/docs/relnotes/18.0.3.html
    U xenocara/lib/mesa/docs/relnotes/18.0.4.html
    U xenocara/lib/mesa/docs/relnotes/18.0.5.html
    U xenocara/lib/mesa/docs/relnotes/18.1.0.html
    U xenocara/lib/mesa/docs/relnotes/18.1.1.html
    U xenocara/lib/mesa/docs/relnotes/18.1.2.html
    U xenocara/lib/mesa/docs/relnotes/18.1.3.html
    U xenocara/lib/mesa/docs/relnotes/18.1.4.html
    U xenocara/lib/mesa/docs/relnotes/18.1.5.html
    U xenocara/lib/mesa/docs/relnotes/18.1.6.html
    U xenocara/lib/mesa/docs/relnotes/18.1.7.html
    U xenocara/lib/mesa/docs/relnotes/18.1.8.html
    U xenocara/lib/mesa/docs/relnotes/18.1.9.html
    U xenocara/lib/mesa/docs/relnotes/18.2.0.html
    U xenocara/lib/mesa/docs/relnotes/18.2.1.html
    U xenocara/lib/mesa/docs/relnotes/18.2.2.html
    U xenocara/lib/mesa/docs/relnotes/3.5
    U xenocara/lib/mesa/docs/relnotes/18.2.3.html
    U xenocara/lib/mesa/docs/relnotes/18.2.4.html
    U xenocara/lib/mesa/docs/relnotes/18.2.5.html
    U xenocara/lib/mesa/docs/relnotes/18.2.6.html
    U xenocara/lib/mesa/docs/relnotes/18.2.7.html
    U xenocara/lib/mesa/docs/relnotes/18.2.8.html
    U xenocara/lib/mesa/docs/relnotes/18.3.0.html
    U xenocara/lib/mesa/docs/relnotes/18.3.1.html
    U xenocara/lib/mesa/docs/relnotes/18.3.2.html
    U xenocara/lib/mesa/docs/relnotes/19.0.0.html
    U xenocara/lib/mesa/docs/relnotes/19.0.1.html
    U xenocara/lib/mesa/docs/relnotes/19.0.2.html
    U xenocara/lib/mesa/docs/relnotes/19.0.3.html
    U xenocara/lib/mesa/docs/relnotes/19.0.4.html
    U xenocara/lib/mesa/docs/relnotes/19.0.5.html
    N xenocara/lib/mesa/docs/relnotes/19.0.6.html
    N xenocara/lib/mesa/docs/relnotes/19.0.7.html
    N xenocara/lib/mesa/docs/relnotes/19.0.8.html
    U xenocara/lib/mesa/docs/relnotes/3.2.1
    U xenocara/lib/mesa/docs/relnotes/3.4.1
    U xenocara/lib/mesa/docs/relnotes/3.4.2
    U xenocara/lib/mesa/docs/relnotes/4.0
    U xenocara/lib/mesa/docs/relnotes/4.0.1
    U xenocara/lib/mesa/docs/relnotes/4.0.2
    U xenocara/lib/mesa/docs/relnotes/4.0.3
    U xenocara/lib/mesa/docs/relnotes/4.1
    U xenocara/lib/mesa/docs/relnotes/5.0
    U xenocara/lib/mesa/docs/relnotes/5.0.1
    U xenocara/lib/mesa/docs/relnotes/5.1
    U xenocara/lib/mesa/docs/relnotes/5.0.2
    U xenocara/lib/mesa/docs/relnotes/6.0
    U xenocara/lib/mesa/docs/relnotes/6.0.1
    U xenocara/lib/mesa/docs/relnotes/6.1
    U xenocara/lib/mesa/docs/relnotes/6.2
    U xenocara/lib/mesa/docs/relnotes/6.2.1
    U xenocara/lib/mesa/docs/relnotes/6.3
    U xenocara/lib/mesa/docs/relnotes/6.3.1
    U xenocara/lib/mesa/docs/relnotes/6.3.2
    U xenocara/lib/mesa/docs/relnotes/6.4
    U xenocara/lib/mesa/docs/relnotes/6.4.1.html
    U xenocara/lib/mesa/docs/relnotes/6.4.2.html
    U xenocara/lib/mesa/docs/relnotes/6.4.html
    U xenocara/lib/mesa/docs/relnotes/6.5.1.html
    U xenocara/lib/mesa/docs/relnotes/6.5.2.html
    U xenocara/lib/mesa/docs/relnotes/6.5.3.html
    U xenocara/lib/mesa/docs/relnotes/6.5.html
    U xenocara/lib/mesa/docs/relnotes/7.0.1.html
    U xenocara/lib/mesa/docs/relnotes/7.0.2.html
    U xenocara/lib/mesa/docs/relnotes/7.0.3.html
    U xenocara/lib/mesa/docs/relnotes/7.0.4.html
    U xenocara/lib/mesa/docs/relnotes/7.0.html
    U xenocara/lib/mesa/docs/relnotes/7.1.html
    U xenocara/lib/mesa/docs/relnotes/7.10.1.html
    U xenocara/lib/mesa/docs/relnotes/7.10.2.html
    U xenocara/lib/mesa/docs/relnotes/7.10.3.html
    U xenocara/lib/mesa/docs/relnotes/7.10.html
    U xenocara/lib/mesa/docs/relnotes/7.11.1.html
    U xenocara/lib/mesa/docs/relnotes/7.11.2.html
    U xenocara/lib/mesa/docs/relnotes/7.11.html
    U xenocara/lib/mesa/docs/relnotes/7.2.html
    U xenocara/lib/mesa/docs/relnotes/7.3.html
    U xenocara/lib/mesa/docs/relnotes/7.4.1.html
    U xenocara/lib/mesa/docs/relnotes/7.4.2.html
    U xenocara/lib/mesa/docs/relnotes/7.4.3.html
    U xenocara/lib/mesa/docs/relnotes/7.4.4.html
    U xenocara/lib/mesa/docs/relnotes/7.4.html
    U xenocara/lib/mesa/docs/relnotes/7.5.1.html
    U xenocara/lib/mesa/docs/relnotes/7.5.2.html
    U xenocara/lib/mesa/docs/relnotes/7.5.html
    U xenocara/lib/mesa/docs/relnotes/7.6.1.html
    U xenocara/lib/mesa/docs/relnotes/7.6.html
    U xenocara/lib/mesa/docs/relnotes/7.7.1.html
    U xenocara/lib/mesa/docs/relnotes/7.7.html
    U xenocara/lib/mesa/docs/relnotes/7.8.1.html
    U xenocara/lib/mesa/docs/relnotes/7.8.2.html
    U xenocara/lib/mesa/docs/relnotes/7.8.3.html
    U xenocara/lib/mesa/docs/relnotes/7.8.html
    U xenocara/lib/mesa/docs/relnotes/7.9.1.html
    U xenocara/lib/mesa/docs/relnotes/7.9.2.html
    U xenocara/lib/mesa/docs/relnotes/7.9.html
    U xenocara/lib/mesa/docs/relnotes/8.0.1.html
    U xenocara/lib/mesa/docs/relnotes/8.0.2.html
    U xenocara/lib/mesa/docs/relnotes/8.0.3.html
    U xenocara/lib/mesa/docs/relnotes/8.0.4.html
    U xenocara/lib/mesa/docs/relnotes/8.0.5.html
    U xenocara/lib/mesa/docs/relnotes/8.0.html
    U xenocara/lib/mesa/docs/relnotes/9.0.1.html
    U xenocara/lib/mesa/docs/relnotes/9.0.2.html
    U xenocara/lib/mesa/docs/relnotes/9.0.3.html
    U xenocara/lib/mesa/docs/relnotes/9.0.html
    U xenocara/lib/mesa/docs/relnotes/9.1.1.html
    U xenocara/lib/mesa/docs/relnotes/9.1.2.html
    U xenocara/lib/mesa/docs/relnotes/9.1.3.html
    U xenocara/lib/mesa/docs/relnotes/9.1.4.html
    U xenocara/lib/mesa/docs/relnotes/9.1.5.html
    U xenocara/lib/mesa/docs/relnotes/9.1.6.html
    U xenocara/lib/mesa/docs/relnotes/9.1.7.html
    U xenocara/lib/mesa/docs/relnotes/9.1.html
    U xenocara/lib/mesa/docs/relnotes/9.2.1.html
    U xenocara/lib/mesa/docs/relnotes/9.2.2.html
    U xenocara/lib/mesa/docs/relnotes/9.2.3.html
    U xenocara/lib/mesa/docs/relnotes/9.2.4.html
    U xenocara/lib/mesa/docs/relnotes/9.2.5.html
    U xenocara/lib/mesa/docs/relnotes/9.2.html
    U xenocara/lib/mesa/doxygen/Makefile
    U xenocara/lib/mesa/doxygen/README
    U xenocara/lib/mesa/doxygen/common.doxy
    U xenocara/lib/mesa/doxygen/core_subset.doxy
    U xenocara/lib/mesa/doxygen/doxy.bat
    U xenocara/lib/mesa/doxygen/gallium.doc
    U xenocara/lib/mesa/doxygen/gallium.doxy
    U xenocara/lib/mesa/doxygen/gbm.doxy
    U xenocara/lib/mesa/doxygen/glapi.doxy
    U xenocara/lib/mesa/doxygen/glsl.doxy
    U xenocara/lib/mesa/doxygen/header.html
    U xenocara/lib/mesa/doxygen/header_subset.html
    U xenocara/lib/mesa/doxygen/i965.doxy
    U xenocara/lib/mesa/doxygen/main.doxy
    U xenocara/lib/mesa/doxygen/math.doxy
    U xenocara/lib/mesa/doxygen/math_subset.doxy
    U xenocara/lib/mesa/doxygen/nir.doxy
    U xenocara/lib/mesa/doxygen/radeon_subset.doxy
    U xenocara/lib/mesa/doxygen/swrast.doxy
    U xenocara/lib/mesa/doxygen/swrast_setup.doxy
    U xenocara/lib/mesa/doxygen/tnl.doxy
    U xenocara/lib/mesa/doxygen/tnl_dd.doxy
    U xenocara/lib/mesa/doxygen/vbo.doxy
    U xenocara/lib/mesa/scons/crossmingw.py
    U xenocara/lib/mesa/scons/custom.py
    U xenocara/lib/mesa/scons/dxsdk.py
    U xenocara/lib/mesa/scons/fixes.py
    U xenocara/lib/mesa/scons/gallium.py
    U xenocara/lib/mesa/scons/llvm.py
    U xenocara/lib/mesa/scons/source_list.py
    U xenocara/lib/mesa/scons/x11.py
    
    44 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jmesa:yesterday -jmesa xenocara/lib/mesa

CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/07/01 02:36:48

Modified files:
	lib/mesa       : VERSION configure 
	lib/mesa/include/CL: cl_d3d10.h cl_d3d11.h 
	                     cl_dx9_media_sharing.h cl_ext.h cl_gl_ext.h 
	                     cl_platform.h opencl.h 
	lib/mesa/include/EGL: eglplatform.h 
	lib/mesa/include/GLES3: gl31.h gl3ext.h 
	lib/mesa/include/KHR: khrplatform.h 
	lib/mesa/src/amd/common: ac_llvm_build.c 
	lib/mesa/src/amd/vulkan: radv_cmd_buffer.c radv_device.c 
	                         radv_formats.c radv_meta_clear.c 
	                         radv_meta_copy.c radv_pipeline.c 
	                         radv_private.h radv_query.c 
	lib/mesa/src/compiler/glsl: shader_cache.cpp 
	lib/mesa/src/egl/drivers/dri2: egl_dri2.c egl_dri2.h 
	                               platform_android.c platform_drm.c 
	                               platform_surfaceless.c 
	                               platform_wayland.c platform_x11.c 
	lib/mesa/src/gallium/auxiliary/util: u_blitter.c 
	lib/mesa/src/gallium/drivers/etnaviv: etnaviv_emit.c 
	                                      etnaviv_resource.c 
	lib/mesa/src/gallium/drivers/svga: svga_draw.c 
	lib/mesa/src/gallium/drivers/swr: swr_screen.cpp 
	lib/mesa/src/gallium/drivers/swr/rasterizer/common: simdlib.hpp 
	lib/mesa/src/gallium/drivers/virgl: virgl_screen.c 
	lib/mesa/src/gallium/winsys/svga/drm: vmw_screen_ioctl.c 
	lib/mesa/src/getopt: getopt.h getopt_long.c 
	lib/mesa/src/intel/compiler: brw_eu_emit.c 
	lib/mesa/src/intel/vulkan: anv_image.c genX_cmd_buffer.c 
	lib/mesa/src/mapi/glapi/gen: gl_XML.py static_data.py 
	lib/mesa/src/mesa/drivers/dri/i965: brw_performance_query.c 
	                                    intel_screen.c 
	lib/mesa/src/mesa/main: context.c 
	lib/mesa/src/mesa/program: ir_to_mesa.cpp ir_to_mesa.h 
	lib/mesa/src/mesa/state_tracker: st_cb_fbo.c st_context.c 
	                                 st_extensions.c 
	                                 st_glsl_to_nir.cpp 
	                                 st_glsl_to_tgsi.cpp 
	                                 st_manager.c st_shader_cache.c 

Log message:
Merge Mesa 19.0.8


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/07/01 02:38:25

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/01 02:56:36

Modified files:
	usr.bin/mg     : dired.c mg.1 

Log message:
add dired-goto-file


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/01 02:59:41

Modified files:
	infrastructure/bin: dpb 
	infrastructure/lib/DPB: Config.pm Core.pm External.pm Locks.pm 

Log message:
a bit more love for the control socket
- try to create it as %L/dpb-$$  by default.
If we can't, no biggie. If the user explicitly asked for a control socket,
we DO abort otherwise.
- if CONTROL is explicitly empty, do not load the extra code.
- try to remove the socket at exit

- add a new wipehost command, that will try to kill any job on that host
(if some remain), then zap all locks and affinity info related to that host
"it's dead jim"


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/01 03:05:45

Modified files:
	share/man/man1 : dpb.1 

Log message:
document changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	benoit@cvs.openbsd.org	2019/07/01 03:49:43

Modified files:
	math/ecm       : Makefile distinfo 
Removed files:
	math/ecm/patches: patch-Makefile_am patch-Makefile_in 

Log message:
Update to ecm-7.0.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/01 04:02:50

Log message:
    Import py-recommonmark-0.5.0
    
    A docutils-compatibility bridge to CommonMark.  This allows you to write
    CommonMark inside of Docutils & Sphinx projects.
    
    Needed to build the documentation of llvm-8.0.0
    
    Help from danj@ and kmos@, ok kmos@
    
    Status:
    
    Vendor Tag:	jca
    Release Tags:	jca_20190701
    
    N ports/textproc/py-recommonmark/Makefile
    N ports/textproc/py-recommonmark/distinfo
    N ports/textproc/py-recommonmark/patches/patch-recommonmark_parser_py
    N ports/textproc/py-recommonmark/patches/patch-tests_test_basic_py
    N ports/textproc/py-recommonmark/pkg/PLIST
    N ports/textproc/py-recommonmark/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/01 04:04:48

Modified files:
	textproc       : Makefile 

Log message:
+py-recommonmark +py-recommonmark,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/01 04:21:12

Modified files:
	www/newsboat   : Makefile 

Log message:
explicitly pass MODCARGO_ENV to MAKE_ENV.

pass MAKE_JOBS and CARGO_HOME to cargo. solve a build problem with
upcoming rust 1.36

ok jca@ fcambus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/01 05:21:23

ports/devel/cbindgen/patches

Update of /cvs/ports/devel/cbindgen/patches
In directory cvs.openbsd.org:/tmp/cvs-serv86426/patches

Log Message:
Directory /cvs/ports/devel/cbindgen/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/01 05:25:58

Modified files:
	devel/cbindgen : Makefile 
Added files:
	devel/cbindgen/patches: patch-tests_tests_rs 

Log message:
Compile tests with cc/c++ instead of gcc/g++ and drop SEPARATE_BUILD

This lets tests run. Failures:
test_expand
test_expand_default_features
test_expand_features
test_expand_no_default_features


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/01 05:35:42

Modified files:
	infrastructure/templates: Makefile.template 

Log message:
move COMPILER string template and its description to the position
used in most of the ports
ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/01 06:03:41

Modified files:
	infrastructure/lib/DPB: Config.pm Core.pm External.pm State.pm 

Log message:
tweak things:
- %h -> FQDN is a bit harsh. Let it be short_hostname
- add %$  to mean dpb own pid
- refactor expand_*_path to be one routine
- tweak the control socket prompt to be 'dpb@host[pid]$ '


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/01 06:05:22

Modified files:
	share/man/man1 : dpb.1 

Log message:
document control name changes


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/07/01 06:13:51

Modified files:
	sys/net        : pf.c 

Log message:
Link the state and the source track to keep the source track while
there are states which refer it.

OK sashan


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/01 07:52:09

Modified files:
	net/irssi      : Makefile 
	net/irssi/pkg  : PLIST-otr 

Log message:
Fix -otr package

tj's -otr split requires version 1.2.1, but the committed @conflict marker
included this version due to an extra "=" that was not part of the OK'ed
diff.

"please go ahead" tj


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/07/01 08:09:58

Modified files:
	sysutils/firmware/intel: Makefile 
	sysutils/firmware/intel/pkg: PLIST 

Log message:
Also ship the firmware for the 06-4f-01 CPU, e.g. this one:
cpu0: Intel(R) Xeon(R) CPU E5-1660 v4 @ 3.20GHz, 3193.06 MHz, 06-4f-01
Intel places the microcode in the intel-ucode-with-caveats directory
on github.  We have checked their recommended Linux patches.  After
adjusting minor issues in our ucode loading, we came to the conclusion
to include 06-4f-01 in the intel cpu firmware updates.
OK jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/01 08:47:56

Modified files:
	usr.sbin/bgpd  : rde_rib.c 

Log message:
Must update the nexthop state before dropping the nexthop reference
for NEXTHOP_LOOKUP else nexthop_unref() triggers a safety check.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/01 09:06:38

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Simplify and clarify logic in take_charge().

Use #define's instead of magic numbers. Use total elapsed time
to decide when to give up.

No intentional functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/01 09:15:54

Modified files:
	gnu/llvm/tools/clang/lib/Basic/Targets: Mips.h 
	gnu/llvm/lib/Target/Mips: MipsISelLowering.cpp 

Log message:
Implement the 'h' register constraint on mips64. This lets clang build
pieces of software that use the constraint if the compiler claims
to be compatible with GCC 4.2.1.

Note that the constraint was removed in GCC 4.4. The reason was that
'h' could generate code whose result is unpredictable. The underlying
reason is that the HI and LO registers are special, and the optimizer
has to be careful when choosing the order of HI/LO accesses. It looks
that LLVM has the needed logic.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/01 09:20:16

Modified files:
	share/mk       : bsd.own.mk 

Log message:
Switch the default compiler on octeon to clang.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/01 09:21:09

Modified files:
	distrib/sets/lists/comp: clang.octeon 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/01 09:55:50

Modified files:
	lib/csu        : Makefile 

Log message:
Need to compile rcrt0.o with -fno-jump-tables on powerpc as well.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/01 09:57:35

Modified files:
	libexec/ld.so/powerpc: ldasm.S 

Log message:
Remove stray comma.

ok deraadt@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/01 09:58:38

Modified files:
	libexec/ld.so/powerpc: Makefile.inc 

Log message:
Compile with -fno-jump-tables to avoid relocations in _dl_boot_bind() when
building with clang.

ok deraadt@, visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/07/01 10:29:05

Modified files:
	security/botan : Makefile 

Log message:
The sha1 i386 assembler implementation uses esp as regular register.
This does not work well with the opportunistic stack-register protection,
the process may be aborted.  Fall back to C implementation.
OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/01 10:48:17

Modified files:
	infrastructure/db: user.list 

Log message:
user.list cleanup:

- comment out lines for ports which have been removed
- update port paths for puppetdb which has been split to puppetdb4/puppetdb5


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/01 10:52:02

Modified files:
	lib/libc/sys   : kqueue.2 
	sys/kern       : kern_event.c 

Log message:
kevent(2): remove 24hr timeout limit

As with nanosleep(2), poll(2), and select(2), here we can chip away at
the timespec until it's empty.  This lets us support the full range of
the timespec regardless of the kernel's HZ.

Update the manpage accordingly.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/01 10:53:59

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Nuke unused variable 'retries'.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/01 12:39:26

Modified files:
	sys/dev/pci/drm/i915: intel_display.c 

Log message:
drm/i915/gen9+: Fix initial readout for Y tiled framebuffers

From Imre Deak
d9a515867bdba59ebf196a6ade10faae8e8be36a in mainline linux

ok jsg


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/07/01 13:07:59

Modified files:
	devel/p5-FFI-CheckLib: Makefile distinfo 

Log message:
update p5-FFI-CheckLib to 0.25


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/01 13:36:17

Modified files:
	usr.bin/mg     : dired.c 

Log message:
Check if user tries to go to current directory in dired-goto-file.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/01 13:38:40

Modified files:
	sys/dev/wscons : wsdisplay.c wsdisplayvar.h 

Log message:
Use timeout_add_msec(9)

Trivial conversion from ticks to milliseconds where macros already come in
milliseconds and timeout values only need reduction by hz to use the new API.

OK mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/01 14:17:13

Modified files:
	infrastructure/db: user.list 

Log message:
syntactically significant typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/07/01 14:53:36

Modified files:
	graphics/krita : Makefile distinfo 

Log message:
Bufgix update krita 4.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/01 15:13:03

Modified files:
	sys/sys        : proc.h 
	sys/uvm        : uvm_extern.h 

Log message:
Document which mechanism protect some fields used w/o KERNEL_LOCK().

ok visa@, semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/01 16:43:04

Modified files:
	usr.bin/mandoc : dbm.c dbm_map.h man_term.c mansearch.c 
	                 mdoc_markdown.c roff.c tbl_term.c 

Log message:
delete trailing whitespace and space-tab sequences; no code change;
patch from Michal Nowak <mnowak at startmail dot com>
who found these with git pbchk in the illumos tree


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/01 17:29:50

Modified files:
	share/man/man7 : roff.7 

Log message:
use the standard spelling of the word "idiosyncrasy";
suggested by Michal Nowak <mnowak at startmail dot com>


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/01 20:09:59

Modified files:
	sys/dev/pci/drm: drm_fb_helper.c 
	sys/dev/pci/drm/i915: i915_perf.c intel_breadcrumbs.c 
	                      intel_guc_ct.c intel_guc_submission.c 
	                      intel_lpe_audio.c 
	sys/dev/pci/drm/include/linux: spinlock_types.h 

Log message:
Use IPL_TTY for locks used as arguments to spin_lock_irq() and
spin_lock_irqsave() to closer match the linux interrupt blocking
behaviour.  Prompted by a discussion with kettenis@.
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/07/01 22:19:32

Modified files:
	news/py-sabyenc: Makefile distinfo 

Log message:
Update to py-sabyenc-3.3.6.

Minor update, which hardens sabyenc against strange article size defined
in NZB.

While here switch PERMIT_PACKAGE_CDROM to PERMIT_PACKAGE.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2019/07/01 23:20:47

Modified files:
	openssh        : press.html 

Log message:
SecurityPortal is gone, replace link with equivalent one to archive.org.
Pointed out by Karen Reinhart.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2019/07/01 23:34:45

Modified files:
	openssh        : press.html 

Log message:
Replace remaining securityportal links with equivalent ones to archive.org.
Pointed out Karen Reinhart.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/02 00:40:49

Modified files:
	sys/dev/pci/drm/i915: intel_guc.c 

Log message:
Use IPL_TTY for locks used as arguments to spin_lock_irq() and
spin_lock_irqsave() to closer match the linux interrupt blocking
behaviour.  Prompted by a discussion with kettenis@.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/07/02 03:04:53

Modified files:
	sys/net        : pf.c pf_lb.c pfvar.h 

Log message:
When source address tracking record is used for "route-to", the next
hop interface configured with "route-to" was not used.  Keep the
interface within the pf_src_node and use it when the record is used.

OK sashan


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/07/02 03:17:53

Log message:
    Import slant-0.0.21.
    
    Slant is an open source, minimal remote system monitor. It models host
    fitness via a set of numeric quantifiers, for instance, CPU usage quantified
    as a percent average over all CPUs, memory usage over available memory,
    number of processes over maximum configured, etc. For past behaviour, slant
    maintains a set of time-interval-bound circular queues (hourly, daily, etc.)
    with current data aggregated into each time series. An important design
    decision of slant is that each monitoring host retains its own [bounded]
    history.
    
    From Kristaps Dzonsons.
    
    ok jturner@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190701
    
    N ports/sysutils/slant/Makefile
    N ports/sysutils/slant/distinfo
    N ports/sysutils/slant/pkg/PLIST
    N ports/sysutils/slant/pkg/DESCR
    N ports/sysutils/slant/pkg/slant_collectd.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/07/02 03:18:44

Modified files:
	sysutils       : Makefile 

Log message:
+slant


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/07/02 03:36:20

Modified files:
	usr.sbin/smtpd : enqueue.c smtpc.c smtpctl.c 

Log message:
Replace mkstemp/fdopen/unlink dances with tmpfile.
No functional change.

OK gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/02 04:13:03

Modified files:
	graphics/opencv: Makefile 

Log message:
Drop the clang module, not needed

While here, strip base-gcc from COMPILER (a recent c++ compiler is
required) and move to PERMIT_PACKAGE.  ok rsadowski@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/02 04:17:00

Modified files:
	infrastructure/lib/DPB: External.pm 

Log message:
one single error


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/02 04:21:27

Modified files:
	productivity/tryton: Makefile.inc 
	productivity/tryton/5.0/account: Makefile distinfo 
	productivity/tryton/5.0/sao: Makefile distinfo 
	productivity/tryton/5.0/sao/files: sao-dependencies.sh 
	productivity/tryton/5.0/tryton: Makefile distinfo 
	productivity/tryton/5.0/trytond: Makefile distinfo 
	productivity/tryton/5.2/account: Makefile distinfo 
	productivity/tryton/5.2/account_payment_clearing: Makefile 
	                                                  distinfo 
	productivity/tryton/5.2/account_payment_clearing/pkg: PLIST 
	productivity/tryton/5.2/product: Makefile distinfo 
	productivity/tryton/5.2/product/pkg: PLIST 
	productivity/tryton/5.2/sale_supply_drop_shipment: Makefile 
	                                                   distinfo 
	productivity/tryton/5.2/sale_supply_drop_shipment/pkg: PLIST 
	productivity/tryton/5.2/sao: Makefile distinfo 
	productivity/tryton/5.2/sao/files: sao-dependencies.sh 
	productivity/tryton/5.2/sao/pkg: PLIST 
	productivity/tryton/5.2/tryton: Makefile distinfo 
	productivity/tryton/5.2/trytond: Makefile distinfo 

Log message:
tryton maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/02 06:03:14

Modified files:
	infrastructure/templates: Makefile.template 

Log message:
use simpler text for COMPILER, add COMPILER_LANGS, separate from the standard
dependencies as I found it a bit unclear with everything bunched together

ok aja@ kirby@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/02 06:07:00

Modified files:
	usr.sbin/bgpd  : rde_update.c 

Log message:
up_generate_default() needs to fake a prefix entry so that the outbound
filtering can happen. rde_filter no longer reads the re pointer but
instead the prefix entry pointer pt. So instead of faking a re entry
allocate a pt entry including the refcount dance. Also make sure that
the validation state is set to ROA_NOTFOUND.
Problem found by dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/02 07:17:28

Modified files:
	usr.sbin/syslogd: syslogd.c 

Log message:
React properly to the very unlikely cases where snprintf(3) may
fail.  Log the message without formating, that is the best syslogd(8)
can do.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/02 08:54:36

Modified files:
	sys/kern       : kern_time.c 
	sys/sys        : time.h 

Log message:
R.I.P. timespecfix(); ok visa@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/02 09:26:07

Modified files:
	sys/dev/pci/drm/i915: intel_fbdev.c 

Log message:
re-add framebuffer size change from 1.4 that was lost in the big
update

ok jsg


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/07/02 09:31:43

Modified files:
	share/zoneinfo/datfiles: africa antarctica asia australasia 
	                         europe factory northamerica pacificnew 
	                         southamerica systemv zone.tab 
	                         zone1970.tab 

Log message:
Update to tzdata2019b from www.iana.org


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/02 09:54:05

Modified files:
	lib/libc/gen   : getgrent.c getgrouplist.c getpwent.c 

Log message:
The "always hint that getpw operation is happening with access() the YP
lock file" would trash errno, creating confusion.
One instance found by richardipsum@fastmail, other two identified from
original commit
ok millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/02 10:04:18

Modified files:
	www/webkitgtk4 : Makefile distinfo 

Log message:
Update to webkitgtk4-2.24.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/02 10:25:39

Modified files:
	usr.bin/mg     : def.h funmap.c match.c mg.1 

Log message:
I totally forgot about the instance where blink-and-insert can be
called from the mg startup file. My previous diff broke that instance.
So this diff reverts my change but adds a man page line to
blink-and-insert in case someone should try to use it interactively,
again.  Also, should anyone ever want to add an interactive version of
blink-and-insert in the future, the code is there. And the code could
be useful in another, related instance.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/02 10:48:11

Modified files:
	www/tor-browser/browser/patches: 
	                                 patch-netwerk_cache_nsDiskCacheDeviceSQL_cpp 
	                                 patch-storage_mozStorageConnection_cpp 

Log message:
Regen patches


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/02 10:51:49

Modified files:
	www/firefox-esr: Makefile 
Added files:
	www/firefox-esr/patches: 
	                         patch-servo_components_style_build_gecko_rs 

Log message:
Fix build with upcoming rust 1.36.

found by semarie@ in
https://reviews.freebsd.org/D20810#change-K68aYoUXfAu1, regression in
rust itself tracked in https://github.com/rust-lang/rust/issues/62301

Builds fine with rust 1.35.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/02 10:52:09

Modified files:
	www/tor-browser/browser: Makefile 
Added files:
	www/tor-browser/browser/patches: 
	                                 patch-servo_components_style_build_gecko_rs 

Log message:
Fix build with upcoming rust 1.36.

found by semarie@ in
https://reviews.freebsd.org/D20810#change-K68aYoUXfAu1, regression in
rust itself tracked in https://github.com/rust-lang/rust/issues/62301

Builds fine with rust 1.35.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/02 10:57:58

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/patches: patch-LibreNMS_Config_php patch-daily_sh 
	                      patch-html_install_php 
	                      patch-includes_common_php 
	                      patch-includes_defaults_inc_php 
	                      patch-includes_functions_php 
	                      patch-includes_html_output_capture_inc_php 
	net/librenms/pkg: PLIST 

Log message:
update to librenms-1.53


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/02 12:31:26

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
youtube-dl: update to 2019.07.02; unbreak soundcloud
Changelog:
https://github.com/ytdl-org/youtube-dl/releases/tag/2019.07.02

OK juanfra@ kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/07/02 13:31:28

Modified files:
	lib/libcrypto  : arm_arch.h 
	lib/libcrypto/arch/aarch64: Makefile.inc 
Added files:
	lib/libcrypto  : arm64cpuid.S 

Log message:
Add cpuid support for arm64 so that we can recognize which
hardware crypto features are available.

"no objections" kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/02 14:09:19

Modified files:
	usr.bin/tmux   : server-client.c tmux.1 

Log message:
Command prompt key presses need to avoid the command queue, GitHub issue
1817. Also a tmux.1 fix from jmc.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/02 14:12:11

Modified files:
	sys/arch/arm64/dev: mainbus.c 
	sys/dev/ofw    : files.ofw 
Added files:
	sys/dev/ofw    : ofw_thermal.c ofw_thermal.h 

Log message:
Add thermal zone handling code.  This provides support for thermal zones
defined in device trees that link together thermal sensors and cooling
devices to actively or passively cool devices when certain trip points
are reached.

ok mlarkin@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/02 14:13:50

Modified files:
	sys/arch/arm64/arm64: cpu.c 
	sys/arch/arm64/include: cpu.h 

Log message:
Register cpu(4) as a cooling device.  This supports passive cooling by
clamping the maximum DVFS state.

ok mlarkin@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/02 14:14:44

Modified files:
	sys/dev/fdt    : rktemp.c 

Log message:
Register rktemp(4) as a thermal sensor with the thermal zone support code.

ok mlarkin@, patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/02 14:30:02

Modified files:
	net/irssi      : Makefile 
	net/irssi/pkg  : PLIST-main 

Log message:
fix upgrades; @pkgpath needed to be flavour-dependent. problem reported
by mazocomp at disroot.org.  ok kn@

if someone is really using the socks FLAVOR, please comment on jca's
mail here -> https://marc.info/?l=openbsd-ports&m=156208684023116&w=2


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/02 14:42:45

Modified files:
	sys/arch/powerpc/include: tcb.h 

Log message:
Drop % from register name used for register variable since it makes clang
unhappy.

ok deraadt@, visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/02 15:17:24

Modified files:
	sys/dev/acpi   : acpi.c acpiec.c acpivar.h 

Log message:
acpi_set_gpehandler: turn edge arg into flags, add support for
passing GPE_DIRECT which directly executes the supplied callback and
clears a level interrupt rather than going through acpi_taskq which
can be slow when other driver callbacks are in the queue.

This should not be used for GPE handlers that need to do anything
ACPI-related.

ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/02 15:27:25

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/07/02 16:55:41

Modified files:
	www/openradtool: Makefile distinfo 

Log message:
Update openradtool to 0.7.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/07/02 17:10:39

Modified files:
	lang/janet     : Makefile distinfo 
	lang/janet/patches: patch-Makefile 
	lang/janet/pkg : PLIST 

Log message:
Update janet to 1.0.0.

Release notes: https://github.com/janet-lang/janet/releases/tag/v1.0.0


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	kn@cvs.openbsd.org	2019/07/02 17:37:47

Modified files:
	app/cwm        : cwmrc.5 

Log message:
command uses execvp(3) not execve(2)

util.c:u_exec() has been doing so since import.


CVSROOT:	/cvs
Module name:	src
Changes by:	ians@cvs.openbsd.org	2019/07/02 18:08:18

Modified files:
	sys/dev/ic     : wdc.c 

Log message:
Don't check if unsigned value is less than zero

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/02 20:32:57

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/02 21:24:04

Modified files:
	bin/csh        : set.c 
	bin/mt         : mtrmt.c 
	sbin/dhclient  : options.c 
	sbin/disklabel : editor.c 
	sbin/fdisk     : misc.c 
	sbin/growfs    : growfs.c 
	sbin/ifconfig  : ifconfig.c 
	sbin/iked      : ca.c 
	sbin/ipsecctl  : pfkdump.c 
	sbin/isakmpd   : policy.c 
	sbin/ncheck_ffs: ncheck_ffs.c 
	sbin/newfs     : mkfs.c 
	sbin/unwind    : parse.y 
	usr.bin/cdio   : cdio.c 
	usr.bin/doas   : doas.c 
	usr.bin/finger : util.c 
	usr.bin/mg     : cscope.c 
	usr.bin/nc     : socks.c 
	usr.bin/openssl: apps.c ca.c req.c s_time.c 
	usr.bin/signify: signify.c 
	usr.bin/ssh    : moduli.c 
	usr.bin/top    : display.c 
	usr.bin/xargs  : strnsubst.c 
	usr.sbin/bgpd  : util.c 
	usr.sbin/cron  : atrun.c 
	usr.sbin/hostapd: hostapd.c 
	usr.sbin/identd: identd.c 
	usr.sbin/installboot: util.c 
	usr.sbin/iscsid: pdu.c 
	usr.sbin/ldapd : util.c 
	usr.sbin/lpd   : printer.c 
	usr.sbin/lpr/common_source: rmjob.c startdaemon.c 
	usr.sbin/lpr/lpd: printjob.c 
	usr.sbin/radiusd: util.c 
	usr.sbin/smtpd : envelope.c mail.maildir.c smtp_session.c util.c 
	usr.sbin/tcpdump: print-bgp.c 
	usr.sbin/tftpd : tftpd.c 
	usr.sbin/user  : user.c 
	usr.sbin/ypserv/ypserv: ypserv_db.c 
	lib/libc/asr   : asr_debug.c getnameinfo.c getnameinfo_async.c 
	lib/libc/gen   : getcap.c 
	lib/libc/locale: setlocale.c 
	lib/libc/net   : inet_net_ntop.c 
	lib/libc/rpc   : clnt_perror.c 
	lib/libc/time  : asctime.c 
	lib/libcrypto/objects: obj_dat.c 
	lib/libcrypto/ts: ts_rsp_sign.c 
	lib/libutil    : uucplock.c 
	libexec/ftpd   : ftpd.c 

Log message:
snprintf/vsnprintf return < 0 on error, rather than -1.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/07/02 23:04:19

Modified files:
	usr.sbin/ntpd  : log.c 

Log message:
Forgotten va_copy/va_end; on some archs that is really needed. ok benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/07/02 23:25:29

Modified files:
	sysutils/firmware/amdgpu: Makefile distinfo 
	sysutils/firmware/amdgpu/pkg: PLIST 

Log message:
update amdgpu firmware to linux-firmware 20190312

Compared to our previous 20181218 firmware this updates
polaris12 (rx550, wx2100 etc) and adds picasso, raven2 and vega20.

Needed for a planned backport of picasso support.

I tried the latest 20190618 release on vega10 (Vega 56) but that
currently hangs on boot with our linux 4.19 based amdgpu:

amdgpu_device_resize_fb_bar: stub
amdgpu: [powerplay] Failed message: 0x4, input parameter: 0x10, error code: 0xffffffff
WARNING ring->wptr % 2 || count % 2 failed at /usr/src/sys/dev/pci/drm/amd/amdgpu/uvd_v7_0.c:1387

ok patrick@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/03 00:15:48

Modified files:
	usr.sbin/bgpctl: bgpctl.c 

Log message:
Remove unneccessary type cast


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/03 00:22:01

Modified files:
	usr.sbin/bgpctl: mrtparser.c 

Log message:
Add a default case to subtype switch in the table v2 parser.
If a unknown subtype is encountered it is better to fail.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/07/03 03:41:46

Modified files:
	www/py-django  : Makefile.inc 
	www/py-django/lts: Makefile distinfo 
	www/py-django/lts/pkg: PLIST 
	www/py-django/stable: Makefile distinfo 
	www/py-django/stable/pkg: PLIST 

Log message:
update django to 1.11.22 and 2.2.3.
from wen heping (thanks).


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/03 03:42:15

Modified files:
	devel/py-sip   : Makefile distinfo 
	devel/py-sip/pkg: PLIST 

Log message:
Update to py-sip 4.19.17.

Adds support for c++11 'enum class foo' constructs per
https://www.riverbankcomputing.com/static/Docs/sip/incompatibilities.html#sip-v4-19-4
- required by upcoming qgis 3.8.

Went in a bulk build without fallout.
Also tested by Caspar Schutijser with tortoisehg.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/03 03:45:05

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-src_server_CMakeLists_txt 
	geo/qgis/pkg   : PLIST 
Added files:
	geo/qgis/patches: patch-src_core_qgsapplication_cpp 

Log message:
Update to qgis 3.8.0, compatible with proj 6.

Enforce py-sip>=4.19.4 requirement for c++11 scoped enums.
Backport https://github.com/qgis/QGIS/pull/30336 to fix issues with proj 6.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/03 04:08:10

Modified files:
	sys/sys        : socket.h 

Log message:
prepare sysctl net mib to allow runtime tuning of rx q pressure thresholds

this renames the PF_LINK bit of the mib from "link_layer" to "link".
then it makes it a node that could be used for generic link layer
bits. the first of these is an "ifrxq" node where the "pressure_return"
and "pressure_drop" things go.

ok visa@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/03 04:19:45

Modified files:
	sys/kern       : uipc_domain.c 
	sys/sys        : sysctl.h 
	sys/net        : ifq.c 

Log message:
add the kernel side of net.link.ifrxq.pressure_return and pressure_drop

these values are used as the backpressure thresholds in the interface
rx q processing code. theyre being exposed as tunables to userland
while we are figuring out what the best values for them are.

ok visa@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/03 04:32:33

Modified files:
	sbin/sysctl    : Makefile sysctl.c 

Log message:
wire up net.link.ifrxq.pressure_return and pressure_drop

ok visa@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/03 04:32:57

Modified files:
	sbin/sysctl    : Makefile 

Log message:
oops, DEBUG=-g wasn't for the tree.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/03 04:34:59

Modified files:
	sys/dev/pci    : if_myx.c 

Log message:
use ifiq_input return values to apply backpressure to rings.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/03 06:51:02

Modified files:
	usr.sbin/pkg_add/OpenBSD: Temp.pm PackageRepository.pm 

Log message:
make error message more explicit, so that ppl don't get confused by the
privsep


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/03 07:15:39

Modified files:
	devel/py-llvmlite: Makefile 

Log message:
Require base-clang, drop dep on devel/llvm and add LLVM to WANTLIB

Doesn't build with ports-gcc or ports-clang.  devel/llvm isn't needed at
all.  Explicitely use llvm-config from base.

While here do a bit of reordering and move to PERMIT_PACKAGE.
"sounds good to me" rpointel@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/03 07:48:08

Modified files:
	usr.sbin/pkg_add/OpenBSD: Temp.pm 

Log message:
refine the error handling
useful to keep the last error from OpenBSD::Temp around, with all particulars


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/03 07:56:54

Modified files:
	textproc/p5-XML-Tidy: Makefile distinfo 

Log message:
update to p5-XML-Tidy-1.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/03 07:57:59

Modified files:
	textproc/p5-XML-SAX: Makefile distinfo 
	textproc/p5-XML-SAX/patches: patch-Makefile_PL 

Log message:
update to p5-XML-SAX-1.02


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/03 08:07:47

Modified files:
	net/librenms   : Makefile distinfo 
	net/librenms/pkg: PLIST 

Log message:
update to librenms-1.53.1


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/03 08:32:02

Modified files:
	sys/kern       : kern_descrip.c kern_event.c 

Log message:
Lock the kernel when removing file descriptors from the descriptor
table. This should prevent a race with kevent when unlocked code
closes file descriptors that are fully set up.

OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/03 08:38:26

ports/databases/pecl-redis/patches

Update of /cvs/ports/databases/pecl-redis/patches
In directory cvs.openbsd.org:/tmp/cvs-serv61752/patches

Log Message:
Directory /cvs/ports/databases/pecl-redis/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/03 08:38:55

Modified files:
	databases/pecl-redis: Makefile distinfo 
Added files:
	databases/pecl-redis/patches: patch-library_c 

Log message:
update to pecl-redis-5.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/03 10:15:28

Modified files:
	x11/xscreensaver: Makefile distinfo 
	x11/xscreensaver/patches: patch-configure_in 
	                          patch-driver_XScreenSaver_ad_in 
	x11/xscreensaver/pkg: PLIST 

Log message:
update to xscreensaver-5.43


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/03 10:33:06

Modified files:
	usr.bin/mandoc : main.c 

Log message:
prevent mandoc from segfaulting if /tmp is not writable
okay schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/03 12:11:07

Modified files:
	usr.bin/mg     : def.h funmap.c kbd.c 

Log message:
selfinsert() can't be called directly from a startup file or by
'eval-current-buffer' since it is by design, meant to be called interactively
as characters are typed in a buffer. ask_selfinsert() allows selfinsert() to
be used by excline(). Having ask_selfinsert() helps with regression testing.
No manual page entry since use case is a bit obscure. See 'insert' command.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/03 14:38:57

Modified files:
	net/arp-scan   : Makefile distinfo 
	net/arp-scan/patches: patch-arp-scan_c patch-link-bpf_c 
	                      patch-mac-vendor_txt 

Log message:
update mac-vendor table, regen patches while there


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/07/03 15:04:26

Modified files:
	sys/arch/arm64/arm64: conf.c 

Log message:
Allocate a new major for tap(4) also note that pseudo-device tun is for tap
as well.  This was done for all archs but was not part of the arm64 import.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/03 15:20:14

Modified files:
	sys/dev/ofw    : ofw_thermal.c 

Log message:
OF_finddevice(9) returns -1 if the node in question couldn't be found.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/03 16:12:30

Modified files:
	sys/dev/ofw    : ofw_thermal.c 

Log message:
Skip thermal zones without "trips" or "cooling-maps" nodes.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/03 16:39:33

Modified files:
	share/man/man9 : tsleep.9 
	sys/kern       : kern_acct.c kern_smr.c kern_synch.c 
	sys/sys        : systm.h time.h 
	sys/uvm        : uvm_pdaemon.c uvm_pmemrange.c 

Log message:
Add tsleep_nsec(9), msleep_nsec(9), and rwsleep_nsec(9).

Equivalent to their unsuffixed counterparts except that (a) they take
a timeout in terms of nanoseconds, and (b) INFSLP, aka UINT64_MAX (not
zero) indicates that a timeout should not be set.

For now, zero nanoseconds is not a strictly valid invocation: we log a
warning on DIAGNOSTIC kernels if we see such a call.  We still sleep
until the next tick in such a case, however.  In the future this could
become some sort of poll... TBD.

To facilitate conversions to these interfaces: add inline conversion
functions to sys/time.h for turning your timeout into nanoseconds.

Also do a few easy conversions for warmup and to demonstrate how
further conversions should be done.

Lots of input from mpi@ and ratchov@.  Additional input from tedu@,
deraadt@, mortimer@, millert@, and claudio@.

Partly inspired by FreeBSD r247787.

positive feedback from deraadt@, ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/03 19:39:44

Modified files:
	usr.bin/systat : if.c 

Log message:
set ierrs and oerrs titles when changing fails/drops/errs, not ierrs twice


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 19:53:23

Modified files:
	sys/dev/pci/drm: drm_vblank.c 
	sys/dev/pci/drm/i915: intel_engine_cs.c 
	sys/dev/pci/drm/include/linux: seqlock.h 

Log message:
Make seqlock_init() take an IPL argument so the engine stats lock which
uses write_seqlock_irqsave() will be backed by a mutex with IPL_TTY.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/03 20:32:21

Modified files:
	infrastructure/lib/DPB: External.pm 

Log message:
create the directory to the socket path
noticed by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:04:00

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_device.c 
	sys/dev/pci/drm/include/drm: amd_asic_type.h 

Log message:
drm/amdgpu: add picasso to asic_type enum

From Likun Gao
be9699e3923000ea32c2f4522e1e4de333d21d47 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:06:01

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_device.c soc15.c 

Log message:
drm/amdgpu: add soc15 support for picasso

From Likun Gao
ad5a67a7ea87e625721a5d0c4e9f12100372f1f6 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:07:46

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_vm.c 

Log message:
drm/amdgpu: add picasso support for vm

From Likun Gao
5f4e2085eeab8c6386452bc18f4f680d1ea3b9d2 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:09:49

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_device.c 
	sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm.c 

Log message:
drm/amd/display/dm: add picasso support

From Likun Gao
b22ab73314c0dfa91ac1948812c7e8050240c563 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:11:40

Modified files:
	sys/dev/pci/drm/amd/powerplay/hwmgr: hwmgr.c processpptables.c 

Log message:
drm/amdgpu: Add support of powerplay for picasso

From Likun Gao
186b073decbf7573971b1786ffeb2fe776d0d9e7 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:13:49

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_psp.c psp_v10_0.c 

Log message:
drm/amdgpu: initilize picasso psp firmwares support

From Likun Gao
227f3dc5f615eb31e007f5db4da7297c66a36e24 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:15:38

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_ucode.c 

Log message:
drm/amdgpu: add picasso ucode loading method

From Likun Gao
669018bdcd858def1c43d130b4cc29409ed8c036 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:17:35

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_vcn.c 

Log message:
drm/amdgpu: add picasso support for vcn

From Likun Gao
86771d9a58fa8f6b2b871f72c6beaf269f309718 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:19:54

Modified files:
	sys/dev/pci/drm/amd/amdgpu: mmhub_v1_0.c 

Log message:
drm/amdgpu: add clockgating support for picasso

From Likun Gao
79f3641cc03881ba98aa549a149b34c838b7d7fb in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:21:39

Modified files:
	sys/dev/pci/drm/amd/amdgpu: gmc_v9_0.c 

Log message:
drm/amdgpu: add picasso support for gmc

From Likun Gao
e21f561ad52a6c909c64d2856a3ad03a4042a5df in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:23:30

Modified files:
	sys/dev/pci/drm/amd/amdgpu: gfx_v9_0.c 

Log message:
drm/amdgpu: add picasso support for gfx_v9_0

From Likun Gao
501a580ae6a4087ed7c8e4fdcf3de7a5ca56bdd1 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:25:21

Modified files:
	sys/dev/pci/drm/amd/amdgpu: sdma_v4_0.c 

Log message:
drm/amdgpu: add picasso support for sdma_v4

From Likun Gao
84ad2e1bd6e6fededa7ed389d0a171d0822abaac in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:27:05

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_kms.c 

Log message:
drm/amdgpu: add picasso for amdgpu kms

From Likun Gao
b95874cfa83e9096b7654cd79e35157c918005f5 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:28:41

Modified files:
	sys/dev/pci/drm/amd/amdgpu: soc15.c 

Log message:
drm/amdgpu: Add pg support for gfxoff for PCO

From Kenneth Feng
8c7bf5834a334dad9a1c3a2ddc93e26bdeeadd57 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:30:42

Modified files:
	sys/dev/pci/drm/amd/amdgpu: soc15.c 

Log message:
drm/amdgpu: Enable SDMA power gating for PCO

From Kenneth Feng
a4494fda32adb4e8d7441f680219b6e99ffbf6e7 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:33:07

Modified files:
	sys/dev/pci/drm/amd/amdgpu: soc15.c 

Log message:
drm/amdgpu: enable vcn powergating for PCO

From Kenneth Feng
1a84d967c180d421a9182a227fc1fee3701cc7d6 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:34:37

Modified files:
	sys/dev/pci/drm/amd/amdgpu: soc15.c 

Log message:
drm/amdgpu: add ip blocks for picasso (v2)

From Huang Rui
40c2358b1102b65d2c173a43083894af630f0e60 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:36:14

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_drv.c 

Log message:
drm/amdgpu: add new raven series device

From Huang Rui
367b013ce0064c782cec784233805eeb67417747 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:37:47

Modified files:
	sys/dev/pci/drm/amd/amdgpu: soc15.c 

Log message:
drm/amdgpu/soc15: clean up picasso support

From Alex Deucher
23ecdc6187ef74e00b78e889446a309628719b6e in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:39:07

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_kms.c 

Log message:
drm/amdgpu: use IP presence to free uvd and vce handles

From Alex Deucher
44876ae294dd7d7bcdfb527d12b86beb54cd013b in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/03 21:41:35

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_device.c amdgpu_drv.c 
	                            amdgpu_psp.c amdgpu_ucode.c 
	                            amdgpu_vcn.c amdgpu_vm.c gfx_v9_0.c 
	                            gmc_v9_0.c mmhub_v1_0.c psp_v10_0.c 
	                            sdma_v4_0.c soc15.c 
	sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm.c 
	sys/dev/pci/drm/amd/powerplay/hwmgr: hwmgr.c processpptables.c 
	sys/dev/pci/drm/include/drm: amd_asic_type.h 

Log message:
drm/amdgpu: simplify Raven, Raven2, and Picasso handling

From Alex Deucher
741deade2a704a434bd5939118c43d38e9ddac25 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	solene@cvs.openbsd.org	2019/07/03 23:06:06

Modified files:
	usr.sbin/acme-client: acme-client.conf.5 

Log message:
Use v02 let's encrypt API key as in the example file

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/03 23:19:31

Modified files:
	etc            : ntpd.conf 

Log message:
add server time.cloudflare.com.
- Cloudflare have very good adjacency (if PCH did anycast ntp, we'd use it)
- As ntp input, it is great they don't leapsmear
- Not all their nodes do ntp, hope they succeed at scaling that up
- ntpd constrains (un-auth) ntp packets within a TLS constraint window
so there is no downside (unlike pool.ntp entries which slowly decay
but that's a story for another commit..)
ok otto


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/04 00:31:03

Modified files:
	sys/dev/pci    : if_ixl.c 

Log message:
when the mac address changes, update the mac/vlan filters accordingly.

ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/07/04 00:38:00

Modified files:
	graphics/p5-Image-ExifTool: Makefile distinfo 
	graphics/p5-Image-ExifTool/pkg: PLIST 

Log message:
update to 11.50.
PERMIT_PACKAGE_CDROM->PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/04 00:52:03

Modified files:
	security/suricata: Makefile 
	x11/gnome/librsvg: Makefile 

Log message:
explicitly set CARGO_HOME in environment: permit to have a writeable
directory for cargo to create a package cache lock.

required for upcoming lang/rust 1.36.0

ok landry@ jca@ tb@ aja@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/04 00:52:48

ports/security/sn0int/patches

Update of /cvs/ports/security/sn0int/patches
In directory cvs.openbsd.org:/tmp/cvs-serv83047/patches

Log Message:
Directory /cvs/ports/security/sn0int/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/04 00:54:52

Modified files:
	security/sn0int: Makefile 
Added files:
	security/sn0int/patches: 
	                         patch-modcargo-crates_rustyline-4_0_0_src_history_rs 
	                         patch-modcargo-crates_rustyline-4_0_0_src_lib_rs 

Log message:
backport a fix to rustyline crate for upcoming lang/rust 1.36.0

https://github.com/kkawakam/rustyline/pull/218

ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 00:58:28

Modified files:
	security/sn0int: Makefile 

Log message:
mark BROKEN-i386


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 00:59:57

Modified files:
	games/gzdoom   : Makefile 

Log message:
mark BROKEN-i386


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/04 01:23:45

Modified files:
	www/seamonkey  : Makefile 

Log message:
Mark BROKEN-amd64, fallout from llvm 8 update.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/04 03:47:09

Modified files:
	usr.sbin/pkg_add/OpenBSD: UpdateSet.pm 

Log message:
gc old code (unused since it couldn't work without a state)
hack "print" to do the right thing because it wouldn't.
this will probably need some cleanse at some point, like doing smart_join
in a smarter way.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/04 03:48:24

Modified files:
	regress/usr.sbin/pkg_add: Makefile 

Log message:
add a beautify test... which obviously found bugs, ahah


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/04 04:20:59

Modified files:
	regress/usr.sbin/bgpd/unittests: rde_community_test.c 

Log message:
Add a dummy attr_writebuf() so that this code links again.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/04 06:07:23

Modified files:
	lang/clazy     : Makefile distinfo 
	lang/clazy/patches: patch-CMakeLists_txt 
	lang/clazy/pkg : PLIST 

Log message:
Update to clazy-1.5 which adds support for llvm-8

It also drops libclazylib.so, but that one isn't used by the ports tree.
There is something fishy with libClazyPlugin.so (renamed from
libClangLazy.so) which is directly used as a shared lib by
bin/clazy-standalone.

ok rsadowski@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/04 06:13:01

Modified files:
	devel/kdevelop : Makefile 
	devel/qt-creator: Makefile 

Log message:
Require latest lang/clazy version

Only kdevelop has a runtime dependency on lang/clazy, though.
Requested by rsadowski@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/04 07:00:42

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) ca

- Add undocumented options -crlsec and -sigopt
- Sync argument name between usage and options description

ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 07:41:01

Modified files:
	textproc/p5-ack: Makefile distinfo 
	textproc/p5-ack/pkg: PLIST 

Log message:
update to p5-ack-3.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 07:41:38

Modified files:
	security/yubico/yubikey-personalization: Makefile distinfo 

Log message:
update to ykpers-1.20.0


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/04 07:55:20

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) crl

- Add undocumented options -crlnumber, -hash_old, -nameopt and -verify

ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 08:46:23

Modified files:
	graphics/py-Pillow: Makefile distinfo 
	graphics/py-Pillow/pkg: PLIST 

Log message:
update to py-Pillow 6.1.0


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/04 08:50:01

Modified files:
	usr.sbin/pkg_add/OpenBSD: Temp.pm 

Log message:
unbreak, mkdtemp returns a scalar
found out the hard way by otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/04 08:53:27

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocation.pm 

Log message:
unhardcode  error message, suggested by otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/04 09:08:27

Modified files:
	usr.sbin/pkg_add/OpenBSD: Paths.pm 

Log message:
get vartmp to point to /tmp


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/07/04 09:25:17

Modified files:
	usr.sbin/pkg_add: pkg_info.1 pkg_add.1 

Log message:
PKG_TMPDIR now defaults to /tmp instead of /var/tmp


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 09:39:32

Modified files:
	net/putty      : Makefile 

Log message:
use autoreconf in net/putty for a tidier Makefile


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 09:40:45

Modified files:
	lang/php/7.3   : Makefile distinfo 

Log message:
update to php-7.3.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 09:40:55

Modified files:
	lang/php/7.2   : Makefile distinfo 

Log message:
update to php-7.2.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 09:42:43

Modified files:
	lang/php/7.3   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.3/pkg: Tag: OPENBSD_6_5 PLIST-main 

Log message:
update to php-7.3.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 09:42:51

Modified files:
	lang/php/7.2   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.2/pkg: Tag: OPENBSD_6_5 PLIST-main 

Log message:
update to php-7.2.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/04 09:58:53

Modified files:
	games/puzzles  : Makefile distinfo 
	games/puzzles/patches: patch-gtk_c 
Removed files:
	games/puzzles/patches: patch-Makefile_gtk 

Log message:
Update to puzzles 20190415.

Switches to gtk+3, reuse configure/autohell provided toolchain instead
of patching generated makefiles and having an horrible dist target.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/04 10:16:51

Modified files:
	usr.bin/ssh    : sshpty.c 

Log message:
stat() returns precisely -1 to indicate error


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/04 10:20:10

Modified files:
	usr.bin/ssh    : sshpty.c 

Log message:
fatal() if getgrnam() cannot find "tty"


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 11:11:05

Modified files:
	emulators/qemu : Makefile distinfo 
	emulators/qemu/patches: patch-audio_sndioaudio_c patch-configure 
	emulators/qemu/pkg: PLIST 
Added files:
	emulators/qemu/patches: patch-audio_audio_c 
	                        patch-audio_audio_template_h 
	                        patch-qapi_audio_json 

Log message:
update to qemu-4.0.0, from Brad "With much help from ratchov@ to update
the sndio backend for various API changes with QEMU."


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/04 11:42:17

Modified files:
	sys/kern       : uipc_socket.c 
	share/man/man9 : sosplice.9 

Log message:
Remove a useless kernel lock from the TCP socket splicing path.
When send buffer space in the drain socket becomes available, a
task is added to move data, and also the userland was informed.
The latter is not usefull as this would mix a kernel and user stream.
So programs do not wait for this event.  Avoid calling sowakeup()
from sowwakeup(), this also reduces grabing the kernel lock.  Instead
inform the userland about the write event when the splicing is
dissolved in sounsplice().
OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/04 12:09:17

Modified files:
	sys/dev        : softraid.c softraid_crypto.c softraidvar.h 

Log message:
Fix a free size panic when detaching a crypto softraid on i386.
Store the size of struct sr_workunit depending on the softraid type
in struct sr_discipline.
testing and OK jan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/07/04 12:16:52

Modified files:
	security/botan2: Makefile distinfo 
	security/botan2/patches: patch-src_tests_main_cpp 
	security/botan2/pkg: PLIST 
Added files:
	security/botan2/patches: patch-src_cli_sandbox_cpp 

Log message:
update botan2 to 2.10.0
Disable upstream pledge for now as it is broken.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/04 12:57:50

Modified files:
	devel/py-freezegun: Makefile distinfo 
	devel/py-freezegun/pkg: PLIST 

Log message:
Update devel/py-freezegun 0.3.9 -> 0.3.12

Update py-freezegun to 0.3.12. This version fixes incompatibilities
with Python 3.7.x fixing tests for any python3 ports using it.

OK jung@ (maintainer) sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/04 13:02:14

Modified files:
	astro/py-astral: Makefile distinfo 
	astro/py-astral/pkg: PLIST 

Log message:
Update astro/py-astral 1.4 -> 1.10.1

From Wen Heping. Thank you!

Tweaked to move to PERMIT_PACKAGE

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/07/04 13:04:17

Modified files:
	usr.bin/doas   : doas.1 

Log message:
note that authentication is required, unless otherwise configured.
ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 13:57:40

Modified files:
	audio/beets    : Makefile 

Log message:
set PORTHOME in TEST_ENV


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/04 14:05:26

Modified files:
	audio/beets    : Makefile 

Log message:
fix previous - duh, PORTHOME should just be a port variable, not in TEST_ENV.
use consistent spacing around = while there.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/04 14:53:31

Modified files:
	textproc/py-unidecode: Makefile distinfo 
	textproc/py-unidecode/pkg: PLIST 

Log message:
Update textproc/py-unidecode 1.0.23 -1.1.1

From the changelog:

* Fix tests failing on PyPy 7.1.1
* Add more Latin letter variants in U+1F1xx page.
* Make it possible to use the Unidecode command-line utility via
"python -m unidecode" (thanks to Jon Dufresne)
* General clean up of code and documentation (thanks to Jon Dufresne)

Moved package to PERMIT_PACKAGE and removed now-extraneous setting of
LC_CTYPE (lang/python module does that now by default).

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/07/04 19:03:36

Modified files:
	sysutils/slant : Makefile 

Log message:
Add a RUN_DEPENDS on openradtool as well. Found the hard way by
jungleboogie0 at gmail dot com. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 19:23:22

Modified files:
	sys/netinet    : if_ether.h 

Log message:
add ac_trunkport to arpcom so trunks can coordinate owning an interface

Ethernet interfaces can be used by trunk(4), and i'm about to commit
a new aggr(4) driver which should not be able to use an interface
while trunk owns it and visa versa.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 19:24:56

Modified files:
	sys/net        : if_trunk.c 

Log message:
record when trunk takes over an interface by setting ac_trunkport

this will be used to prevent trunk and the upcoming aggr driver
from taking ownership of an Ethernet interface at the same time.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 19:35:58

Added files:
	sys/net        : if_aggr.c 

Log message:
add aggr(4), a dedicated driver that implements 802.1AX link aggregation

802.1AX (formerly known as 802.3ad) describes the Link Aggregation
Control Protocol (LACP) and how to use it in a bunch of different
state machines to control when to bundle interfaces into an
aggregation.

technically the trunk(4) driver already implements support for
802.1AX, but it had a couple of problems i struggled to deal with
as part of that driver. firstly, i couldnt easily make the output
path in trunk mpsafe without getting bogged down, and the state
machine handling had a few hard to diagnose edge cases that i couldnt
figure out.

the new driver has an mpsafe output path, and implements ifq bypass
like vlan(4) does. this means output with aggr(4) is up to twice
as fast as trunk(4). the implementation of the state machines as
per the standard means the driver behaves more correctly in edge
cases like when a physical link looks like it is up, but is logically
unidirectional.

the code has been good enough for me to use in production, but it
does need more work. that can happen in tree now instead of carrying
a large diff around.

some testing by ccardenas@, hrvoje popovski, and jmatthew@
ok deraadt@ ccardenas@ jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 19:37:13

Modified files:
	sys/conf       : files 

Log message:
wire up aggr


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 19:37:53

Modified files:
	sys/conf       : GENERIC 

Log message:
add aggr, but leave it commented out for now.

it needs to be a bit more robust before making it more available to try.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 19:39:55

Added files:
	share/man/man4 : aggr.4 

Log message:
make a start at a manpage for aggr(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 19:41:14

Modified files:
	share/man/man4 : Makefile 

Log message:
+aggr.4


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 20:27:48

Modified files:
	sys/net        : if_aggr.c 

Log message:
tweak mtu handling and propagate mtu setting to trunkports

make setting a trunkports mtu to its current mtu a nop. set a
trunkports mtu to the aggr mtu when the port is getting added. set
the mtu on all trunkports when the aggr mtu is set so things look
consistent. restore a trunkports mtu when it is removed from an
aggr.

this is mostly cosmetic since the mtu on trunkports isn't really
used anywhere.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 20:36:31

Modified files:
	sys/net        : if_aggr.c 

Log message:
report a port as active to userland if it is muxed


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 21:34:53

Modified files:
	sys/net        : if_aggr.c 

Log message:
move a declaration before a statement.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/04 22:03:13

Modified files:
	regress/usr.bin/ssh: multiplex.sh 

Log message:
Add a sleep to allow forwards to come up.

Currently when the multiplex client requests a forward it returns
once the request has been sent but not necessarily when the forward
is up.  This causes intermittent text failures due to this race,
so add some sleeps to mitigate this until we can fix it properly.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/04 22:12:46

Modified files:
	regress/usr.bin/ssh: conch-ciphers.sh test-exec.sh 

Log message:
Adapt the PuTTY/Conch tests to new key names.

A recent regress change (2a9b3a2ce411d16cda9c79ab713c55f65b0ec257 in
portable) broke the PuTTY and Twisted Conch interop tests, because the
key they want to use is now called ssh-rsa rather than rsa.  Adapt the
tests to the new file names.  bz#3020, patch from cjwatson at debian.org.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/04 22:19:39

Modified files:
	regress/usr.bin/ssh: Makefile 

Log message:
Add (recently added) rsa_oldfmt to CLEANFILES.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 22:41:23

Modified files:
	share/man/man9 : smr_call.9 SMR_LIST_INIT.9 SMR_PTR_GET.9 

Log message:
Xr between all the different smr pages.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 22:46:26

Modified files:
	share/man/man9 : SMR_PTR_GET.9 

Log message:
make the pointer value argument name "v" instead of "value"

this makes a sentence read better when there's no syntax hilighting
in effect.

while here, say the write-write memory barrier is implemented with
membar_producer so it's easier to go read about what that provides.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/04 22:55:41

Modified files:
	usr.bin/ssh    : sftp-server.c ssh-keygen.c 
	usr.bin/ssh/sftp-server: Makefile 
	usr.bin/ssh/ssh-keygen: Makefile 
	usr.bin/ssh/sshd: Makefile 
Added files:
	usr.bin/ssh    : sftp-realpath.c 

Log message:
add a local implementation of BSD realpath() for sftp-server use
ahead of OpenBSD's realpath changing to match POSIX;

ok deraadt@ (thanks for snaps testing)


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 22:56:16

Modified files:
	sys/net        : if_aggr.c 

Log message:
init the log of tx times to somewhere in the past when adding a port.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 22:59:00

Modified files:
	sys/net        : if_aggr.c 

Log message:
iterate over distributing ports when populating the tx map, not all ports

this probably explains why ive seen a box decide not to use a
distributing port, even though the state machine and all the lacp
state flags say it's fine. it may also explain why jmatthew@ has
seen a port still transmitting after it's been removed from an
aggr(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 23:00:07

Modified files:
	sys/net        : if_aggr.c 

Log message:
initialise sc_lacp_timeout to AGGR_LACP_TIMEOUT_SLOW, not 0;

it's the same, but there was a misleading comment on the same line
which this cleans up too.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/04 23:00:40

Modified files:
	sys/net        : if_aggr.c 

Log message:
fix the $OpenBSD$ tag


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/04 23:04:26

Modified files:
	lib/libc/stdlib: realpath.c 

Log message:
The last consumer of pre-posix realpath behaviour has stopped
requiring it (sftp-server).
Remove the /exists///// behaviour from here.  The /nonexistant
behaviour remains in the kernel and needs to be shot next.
There may be ports fallout, but we doubt it.
ok beck djm


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/07/04 23:22:57

Modified files:
	share/man/man4 : aggr.4 

Log message:
tweak previous; ok dlg


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/04 23:30:50

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/05 00:02:29

Modified files:
	usr.sbin/pkg_add/OpenBSD: Subst.pm 

Log message:
add the strerror to the error message


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/05 00:21:14

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackingElement.pm md5.pm 

Log message:
revisit die messages: remove extra "\n", add $! if needed, don't use
string concat as die takes a list like print.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/05 00:40:26

Modified files:
	graphics/zint  : Makefile distinfo 

Log message:
upstream uploaded correct tarball
move to PERMIT_PACKAGE while here


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/07/05 00:49:28

Modified files:
	usr.sbin/relayd: parse.y 

Log message:
Fix integer sizes in format strings and enable formatting warnings
for yyerror.

From Moritz Buhl
ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/07/05 00:56:22

Modified files:
	sbin/pfctl     : parse.y 

Log message:
Fix integer sizes in format strings and enable formatting warnings
for yyerror.

From Moritz Buhl
ok bluhm@ claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/07/05 01:17:56

Modified files:
	editors/libreoffice: Makefile distinfo 

Log message:
update to libreoffice-6.2.5.2


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/05 01:18:12

Modified files:
	sys/net        : if_aggr.c 

Log message:
pretend to handle setting trunkproto, but only support setting it to lacp


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/05 01:32:01

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
revert header removal that snuck into previous


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/05 01:34:40

Modified files:
	usr.bin/sndiod : utils.c 
	usr.bin/aucat  : utils.c 

Log message:
Fix spacing and comments, no code change.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/05 01:52:27

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Do not use uninitialized buffer name.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/05 05:50:46

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) dgst

- Add undocumented option -r

ok jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/05 05:53:01

Modified files:
	graphics/makehuman: Makefile 
	graphics/mhgui : Makefile 
	graphics/scratch: Makefile 
	security/ssh-ldap-helper: Makefile 
	telephony/iaxclient: Makefile 
	www/p5-HTML-Tidy: Makefile 
	emulators/gambatte: Makefile 
	textproc/sphinx: Makefile 
	x11/qwt        : Makefile 
	productivity/qhacc: Makefile 
	benchmarks/sysbench: Makefile 
	devel/giggle   : Makefile 
	x11/gnome/autoar: Makefile 
	productivity/glabels: Makefile 
	geo/geoclue    : Makefile 
	multimedia/synfig: Makefile 
	textproc/redland: Makefile 
	x11/gnome/libgepub: Makefile 
	x11/afterstep  : Makefile 
	graphics/gegl  : Makefile 
	x11/gtkglarea  : Makefile 
	geo/spatialite/libgaiagraphics: Makefile 
	multimedia/kguitar: Makefile 
	x11/roxterm    : Makefile 
	net/librest    : Makefile 
	databases/py-mysqlclient: Makefile 
	databases/py-mysql: Makefile 
	databases/mydumper: Makefile 
	x11/kde/accessibility3: Makefile 
	graphics/quesoglc: Makefile 

Log message:
sync WANTLIB


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/05 06:10:10

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/dev/pci/drm/i915: intel_hotplug.c 

Log message:
Use multi-threaded task queues to prevent deadlocks in the case where a
tasks sleeps and expects to be woken up by a task that will be submitted
to the same task queue.  That scenario happens in the output hotplug code.

We probably should spend some time on tuning the number of threads but
let's make things work correctly first.

Based on some serious debugging done by Sven M. Hallberg.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/07/05 06:35:16

Modified files:
	sys/dev/ic     : bwfm.c bwfmvar.h 

Log message:
Since on a SCAN each node is provided in its own event,
the limited ring for asynchronous can easily overflow.
Work around this by chaining the mbufs into a list.

Fixes a panic for jcs@
ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/05 06:35:40

Modified files:
	usr.bin/ssh/ssh-keygen: Makefile 

Log message:
still compile uuencode.c, unbreaks build


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/05 06:55:36

Modified files:
	lib/libc/gen   : getcwd.3 
	lib/libc/stdlib: realpath.3 

Log message:
improve verb-tense for explaining the calling convention of __
ok guenther jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/07/05 07:07:48

Modified files:
	mail/kopano/webapp: Makefile distinfo 
	mail/kopano/webapp/pkg: PLIST 

Log message:
update to 3.5.8.2343


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/05 07:15:52

Modified files:
	regress/usr.sbin/relayd: Server.pm 

Log message:
Put some padding in Perl pack of struct timeval.  On armv7 struct
timeval is 16 bytes, on i386 only 12 bytes were needed.  The
additional space makes setsockopt(2) succeed in armv7 regress.
from Moritz Buhl


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/05 07:23:27

Modified files:
	usr.sbin/syslogd: privsep.c syslogd.c syslogd.h 

Log message:
When syslogd(8) parent process terminates, the file cleanup code
did not work anymore.  unveil(2) prevented removal.  Cleaning the
UNIX domain sockets is not necessary.  They are harmless and unlinked
before a new bind.  So delete that functionality and convert global
to local variables.  Providing /var/run/syslog.pid is a common
feature that should be kept.  A stale pid file is confusing.  So
add a constant path to unveil(2) to allow pid file removal.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2019/07/05 07:42:06

Modified files:
	usr.sbin/relayd: relay_http.c relayd.conf.5 

Log message:
Add a new macro called $HOST that expands to the Host header's value or falls
back to the same value as $SERVER_ADDR in case the Host header is not available.

ok reyk@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/05 08:11:26

Modified files:
	usr.bin/lock   : lock.c lock.1 

Log message:
lock(1): make "-n" and "-t timeout" mutually exclusive.

It doesn't make sense to simultaneously say "never time out" and "release
this terminal in a few minutes".

Input from kn@.

"just go for it" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/05 08:33:10

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) ec, enc and pkcs7

- For ec, add -param_out description
- For enc, add -v usage and description
- For pkcs7, add -print usage and description

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/05 08:50:59

Modified files:
	usr.bin/mg     : extend.c 

Log message:
Make mg display the correct file name in the minibuffer if you load
another file in a startup file (e.g via find-file), then experience
another unrelated error with one of the lines being evaluated.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/05 08:55:38

Modified files:
	multimedia/x265: Makefile distinfo 
Added files:
	multimedia/x265/patches: patch-source_common_lowres_cpp 

Log message:
Update to x265 3.1

Add patch to "Fix crash with aq-motion when aq-mode is disabled".

From Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/05 09:23:35

Modified files:
	sys/arch/octeon/octeon: autoconf.c 

Log message:
If there is no explicit device class match for a given boot device,
use DV_IFNET. This makes all network interfaces available for root
device selection.

Requested by and OK patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/05 09:42:54

Modified files:
	security/keybase: Makefile 
	security/keybase/pkg: PLIST 
Added files:
	security/keybase/pkg: README 

Log message:
Add kbfsfuse to the package to enable the access to KBFS.

Spell checker sthen@. OK abieber@ (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/05 09:43:43

Modified files:
	astro/sunclock : Makefile 
	devel/ipython  : Makefile 
	devel/pyflakes : Makefile 
	devel/pylint   : Makefile 
	devel/bpython  : Makefile 
	graphics/dcmtk : Makefile 

Log message:
move some REVISION lines that are buried away low down in the Makefile


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/05 10:01:57

Modified files:
	sysutils/flashrom: Makefile distinfo 
	sysutils/flashrom/patches: patch-Makefile patch-flashrom_8_tmpl 
	                           patch-hwaccess_c patch-hwaccess_h 
	                           patch-physmap_c 

Log message:
update to flashrom-1.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/05 10:57:39

Modified files:
	graphics/opencv2: Makefile 

Log message:
graphics/opencv2 Makefile tidying, ok rsadowski:

- use PERMIT_PACKAGE, maintain the information about patents in a
comment but we don't care about PERMIT_*_CDROM any more. additionally
opencv2 is not a multipackages port so -docs doesn't make sense anyway.

- remove base-gcc from COMPILER, base-gcc won't be used on a port
with ONLY_FOR_ARCHS set to ${GCC4_ARCHS} ${CLANG_ARCHS}

- remove ONLY_FOR_ARCHS, it's unnecessary now that base-gcc is
removed from COMPILER :)

- sync WANTLIB, bump REVISION


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/05 11:01:45

Modified files:
	devel/qt-creator: Makefile 
Added files:
	devel/qt-creator/patches: 
	                          patch-src_tools_clangrefactoringbackend_source_findcursorusr_h 
	                          patch-src_tools_clangrefactoringbackend_source_symbolscollector_cpp 

Log message:
Fix build with upcoming llvm-8 update

ok rsadowski@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/05 12:31:54

Log message:
    Import devel/p5-DateTime-Format-Flexible 0.31
    
    From Wen Heping < wenheping2000 at hotmail dot com >, thanks!
    
    OK sthen@
    
    DateTime::Format::Flexible attempts to take any string you give it and parse
    it into a DateTime object. The test file tests 2500+ variations of date/time
    strings.
    
    Status:
    
    Vendor Tag:	cwen
    Release Tags:	cwen_20190705
    
    N ports/devel/p5-DateTime-Format-Flexible/Makefile
    N ports/devel/p5-DateTime-Format-Flexible/distinfo
    N ports/devel/p5-DateTime-Format-Flexible/pkg/DESCR
    N ports/devel/p5-DateTime-Format-Flexible/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/05 12:35:17

Log message:
    Import devel/p5-Module-Util 1.09
    
    From Wen Heping < wenheping2000 at hotmail dot com >, thanks!
    
    OK sthen@
    
    This module provides a few useful functions for manipulating module
    names. Its main aim is to centralise some of the functions commonly used
    by modules that manipulate other modules in some way, like converting
    module names to relative paths.
    
    Status:
    
    Vendor Tag:	cwen
    Release Tags:	cwen_20190705
    
    N ports/devel/p5-Module-Util/Makefile
    N ports/devel/p5-Module-Util/distinfo
    N ports/devel/p5-Module-Util/pkg/DESCR
    N ports/devel/p5-Module-Util/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/05 12:38:47

Modified files:
	devel          : Makefile 

Log message:
+ p5-DateTime-Format-Flexible
+ p5-Module-Util


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/05 13:06:50

Modified files:
	sys/arch/sparc64/dev: vpci.c 

Log message:
Fix vpci_bus_map() if the case where the "child" space in the "ranges"
property doesn't start at address zero.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/07/05 13:27:30

Modified files:
	math/R         : Makefile distinfo 
	math/R/patches : patch-configure 

Log message:
Update to R 3.6.1

Help regarding shared libraries versioning by sthen@; OK kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/05 16:10:50

Modified files:
	sys/kern       : kern_watchdog.c 

Log message:
Use timeout_add_msec(9)

Although the period is specified in seconds, convert to milliseconds so
uneven periods are not truncated after integer division by two.

Input and OK cheloha


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/07/05 16:22:40

Modified files:
	usr.sbin/vmctl : main.c 

Log message:
zap an extra space in usage();
from alessandro gallo


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/05 16:53:47

Modified files:
	lib/libsndio   : aucat.h 

Log message:
Add forgotten copyright notice, found by Jason Thorpe <thorpej at me.com>.
Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/06 00:14:49

Added files:
	x11/kde4/py-kde/patches: patch-sip_kdecore_typedefs_sip 
	                         patch-sip_kdeui_kfontchooser_sip 
	                         patch-sip_kdeui_kfontdialog_sip 

Log message:
Fix build with py-sip 4.19.17.

Somehow missed in my bulk, grab a patch from ubuntu and remove a
duplicated weird typedef.

build failure reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:15:14

Modified files:
	graphics/colord-gtk: Makefile distinfo 
	graphics/colord-gtk/pkg: PLIST 

Log message:
Update to colord-gtk-0.2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:22:35

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.183.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:22:46

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.183.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:23:01

Modified files:
	sysutils/awscli: Makefile distinfo 

Log message:
Update to awscli-1.16.193.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:25:42

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.668.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:29:09

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-253.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:32:49

Modified files:
	textproc       : Makefile 
Removed files:
	textproc/gxml  : Makefile distinfo 
	textproc/gxml/pkg: DESCR PLIST 

Log message:
Remove gxml; it's unused and its prefered usage is through meson
subprojects.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:33:58

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register gxml removal.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/07/06 01:36:14

Modified files:
	devel/jd-gui   : Makefile distinfo 

Log message:
update jd-gui to 1.6.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/07/06 01:36:45

Modified files:
	devel/py-yamllint: Makefile distinfo 

Log message:
update yamllint to 1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:43:45

Modified files:
	textproc/enchant2: Makefile distinfo 

Log message:
Update to enchant2-2.2.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 01:46:36

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-digitalocean: Makefile distinfo 
	sysutils/terraform/provider-fastly: Makefile distinfo 
	sysutils/terraform/provider-vault: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 02:08:45

Modified files:
	x11/gtk+3      : Makefile distinfo 

Log message:
Update to gtk+3-3.24.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/07/06 04:15:44

Modified files:
	astro/kstars   : Makefile distinfo 
	astro/kstars/pkg: PLIST 

Log message:
Update kstars to 3.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/06 06:11:01

Modified files:
	textproc/icu4c : Makefile 
Added files:
	textproc/icu4c/patches: patch-source_data_Makefile_in 

Log message:
icu4c: unbreak on big endian archs by reintroducing removed rules, see
https://unicode-org.atlassian.net/browse/ICU-20533

While here move to PERMIT_PACKAGE.

tweaks and OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/06 07:34:00

Modified files:
	x11/gnome/libgweather: Makefile distinfo 

Log message:
Update to libgweather-3.32.2.

ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/07/06 07:37:09

Modified files:
	sys/dev/usb    : if_mue.c 

Log message:
Ensure Rx/Tx resources are freed during interface stop.


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/07/06 07:55:20

Modified files:
	sys/dev/pci    : if_alc.c 

Log message:
Re-add some printf's as they were originally.

From Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/06 09:00:03

Modified files:
	lang/flang     : Makefile.inc 
	lang/ponyc     : Makefile 

Log message:
Disable flang and ponyc, they don't build with llvm-8

Disabling flang was suggested by bcallah@ (maintainer), who will be away
for some days.  Upstream ponyc doesn't support llvm-8 yet.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/06 09:06:37

Modified files:
	devel/llvm     : Makefile distinfo 
	devel/llvm/patches: patch-include_llvm_BinaryFormat_Dwarf_def 
	                    patch-include_llvm_CodeGen_AsmPrinter_h 
	                    patch-include_llvm_CodeGen_MachineFrameInfo_h 
	                    patch-include_llvm_InitializePasses_h 
	                    patch-lib_CodeGen_AsmPrinter_AsmPrinter_cpp 
	                    patch-lib_CodeGen_PrologEpilogInserter_cpp 
	                    patch-lib_CodeGen_TargetLoweringBase_cpp 
	                    patch-lib_CodeGen_TargetPassConfig_cpp 
	                    patch-lib_MC_MCParser_AsmParser_cpp 
	                    patch-lib_Target_AArch64_AArch64AsmPrinter_cpp 
	                    patch-lib_Target_AArch64_AArch64FrameLowering_cpp 
	                    patch-lib_Target_AArch64_AArch64ISelLowering_cpp 
	                    patch-lib_Target_AArch64_AArch64InstrInfo_td 
	                    patch-lib_Target_AArch64_AArch64Subtarget_h 
	                    patch-lib_Target_AArch64_CMakeLists_txt 
	                    patch-lib_Target_PowerPC_PPCISelLowering_cpp 
	                    patch-lib_Target_Sparc_SparcISelLowering_cpp 
	                    patch-lib_Target_X86_CMakeLists_txt 
	                    patch-lib_Target_X86_X86FixupGadgets_cpp 
	                    patch-lib_Target_X86_X86FrameLowering_cpp 
	                    patch-lib_Target_X86_X86InstrCompiler_td 
	                    patch-lib_Target_X86_X86MCInstLower_cpp 
	                    patch-lib_Target_X86_X86RegisterInfo_td 
	                    patch-lib_Target_X86_X86Subtarget_cpp 
	                    patch-lib_Target_X86_X86Subtarget_h 
	                    patch-lib_Target_X86_X86TargetMachine_cpp 
	                    patch-lib_Target_X86_X86_h 
	                    patch-lib_Target_X86_X86_td 
	                    patch-lib_Transforms_Scalar_LoopIdiomRecognize_cpp 
	                    patch-test_Assembler_debug-variant-discriminator_ll 
	                    patch-tools_clang_include_clang_Basic_DiagnosticSemaKinds_td 
	                    patch-tools_clang_include_clang_Driver_CC1Options_td 
	                    patch-tools_clang_include_clang_Driver_Options_td 
	                    patch-tools_clang_include_clang_Sema_Sema_h 
	                    patch-tools_clang_lib_Basic_Targets_X86_cpp 
	                    patch-tools_clang_lib_Basic_Targets_X86_h 
	                    patch-tools_clang_lib_CodeGen_CGCall_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_Arch_AArch64_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_Clang_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_Gnu_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_OpenBSD_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_OpenBSD_h 
	                    patch-tools_clang_lib_Frontend_CompilerInvocation_cpp 
	                    patch-tools_clang_lib_Sema_SemaChecking_cpp 
	                    patch-tools_clang_lib_Sema_SemaDeclAttr_cpp 
	                    patch-tools_lld_ELF_DriverUtils_cpp 
	                    patch-tools_lld_ELF_Driver_cpp 
	                    patch-tools_lld_ELF_Options_td 
	                    patch-tools_lld_ELF_Symbols_h 
	                    patch-tools_lld_ELF_Writer_cpp 
	                    patch-tools_lldb_source_Plugins_UnwindAssembly_x86_x86AssemblyInspectionEngine_cpp 
	                    patch-tools_lldb_source_Plugins_UnwindAssembly_x86_x86AssemblyInspectionEngine_h 
	devel/llvm/pkg : PFRAG.no-powerpc-main PLIST-lldb PLIST-main 
	lang/clang     : clang.port.mk 
Added files:
	devel/llvm/patches: 
	                    patch-tools_clang_include_clang_Basic_CodeGenOptions_def 
Removed files:
	devel/llvm/patches: patch-include_llvm_ADT_Optional_h 
	                    patch-lib_Bitcode_Reader_MetadataLoader_cpp 
	                    patch-lib_CodeGen_SelectionDAG_DAGCombiner_cpp 
	                    patch-lib_Support_Unix_Threading_inc 
	                    patch-lib_Target_Mips_MCTargetDesc_MipsMCAsmInfo_cpp 
	                    patch-lib_Target_Sparc_AsmParser_SparcAsmParser_cpp 
	                    patch-lib_Target_Sparc_InstPrinter_SparcInstPrinter_cpp 
	                    patch-lib_Target_Sparc_InstPrinter_SparcInstPrinter_h 
	                    patch-lib_Target_Sparc_SparcInstr64Bit_td 
	                    patch-lib_Target_Sparc_SparcInstrInfo_td 
	                    patch-lib_Target_X86_AsmParser_X86AsmParser_cpp 
	                    patch-lib_Target_X86_InstPrinter_X86ATTInstPrinter_cpp 
	                    patch-lib_Target_X86_InstPrinter_X86ATTInstPrinter_h 
	                    patch-lib_Target_X86_InstPrinter_X86IntelInstPrinter_cpp 
	                    patch-lib_Target_X86_InstPrinter_X86IntelInstPrinter_h 
	                    patch-lib_Target_X86_X86ISelLowering_cpp 
	                    patch-lib_Target_X86_X86InstrFPStack_td 
	                    patch-lib_Target_X86_X86InstrInfo_td 
	                    patch-lib_Target_X86_X86RegisterInfo_cpp 
	                    patch-test_Assembler_debug-info_ll 
	                    patch-tools_clang_include_clang_Analysis_Analyses_FormatString_h 
	                    patch-tools_clang_include_clang_Frontend_CodeGenOptions_def 
	                    patch-tools_clang_lib_Analysis_FormatString_cpp 
	                    patch-tools_clang_lib_Basic_Targets_PPC_h 
	                    patch-tools_clang_lib_Driver_ToolChains_Arch_AArch64_h 
	                    patch-tools_clang_lib_Frontend_InitHeaderSearch_cpp 
	                    patch-tools_clang_lib_Parse_ParseStmtAsm_cpp 
	                    patch-tools_lld_ELF_Config_h 
	                    patch-tools_lld_ELF_SyntheticSections_cpp 
	                    patch-tools_lldb_include_lldb_Host_openbsd_HostInfoOpenBSD_h 
	                    patch-tools_lldb_scripts_utilsOsType_py 
	                    patch-tools_lldb_source_Host_openbsd_HostInfoOpenBSD_cpp 
	                    patch-unittests_ADT_OptionalTest_cpp 
	                    patch-utils_TableGen_X86RecognizableInstr_cpp 

Log message:
Update to llvm-8.0.0

Most patch merges inspired from patrick's work on base-clang.  Consumer
ports fixed/marked BROKEN as discussed with bcallah@ and rsadowski@.
powerpc tests and PLIST fixes from cwen@, thanks!  rust-1.36 tests by
semarie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/06 09:07:55

Modified files:
	devel/include-what-you-use: Makefile distinfo 
	devel/include-what-you-use/patches: patch-iwyu_include_picker_cc 
	devel/include-what-you-use/pkg: PLIST 

Log message:
Update to include-what-you-use-0.12, to unbreak with llvm-8.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/06 10:16:27

Added files:
	devel/include-what-you-use/patches: patch-iwyu_cc 

Log message:
Let include-what-you-use build on powerpc.

powerpc is the only platform where llvm isn't built with all supported
targets (only the powerpc backend is enabled).  So include-what-you-use
can't call LLVMInitializeX86*() there.  Maybe llvm should also ship the
X86 backend on powerpc, as suggested by jsg@, but this is not trivial.
Tests by cwen@, ok cwen@ jsg@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/07/06 12:14:34

Modified files:
	net/ocserv     : Makefile distinfo 

Log message:
Update to ocserv-0.12.4.

Bug fix release. While here switch PERMIT_PACKAGE_CDROM to
PERMIT_PACKAGE. Feedback from sthen@, thanks!

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/06 13:39:43

Added files:
	regress/usr.sbin/pkg_add: check-beautify 

Log message:
oops. added but not committed. Reminded by Patrick


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/06 13:42:40

Log message:
    import py-mulpyplexer-0.08
    
    Module that multiplexes interactions with lists of python objects.
    
    ok kn@ a while ago
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20190607
    
    N ports/devel/py-mulpyplexer/Makefile
    N ports/devel/py-mulpyplexer/distinfo
    N ports/devel/py-mulpyplexer/pkg/DESCR
    N ports/devel/py-mulpyplexer/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/06 13:44:07

Modified files:
	devel          : Makefile 

Log message:
+py-mulpyplexer


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/06 14:12:46

Modified files:
	net/gpodder    : Makefile distinfo 
	net/gpodder/pkg: PLIST 

Log message:
Update to gpodder 3.10.9

This is a bug fix release, with Youtube downloads working again after
breaking 3 weeks ago when http access was discontinued by google.

From Tim, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/06 14:20:27

Modified files:
	x11/i3status   : Makefile distinfo 
	x11/i3status/patches: patch-i3status_conf 
	                      patch-src_print_battery_info_c 
	                      patch-src_print_wireless_info_c 
Added files:
	x11/i3status/patches: patch-Makefile_in patch-src_pulse_c 

Log message:
update to i3status-2.13


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/06 14:26:45

Modified files:
	sysutils/rofi  : Makefile distinfo 
	sysutils/rofi/pkg: PLIST 

Log message:
update to rofi-1.5.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/06 14:28:31

Modified files:
	devel/flawfinder: Makefile distinfo 

Log message:
update to flawfinder-2.0.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/06 14:29:37

Modified files:
	sysutils/rclone: Makefile distinfo 
	sysutils/rclone/files: rclone.bash rclone.zsh 

Log message:
update to rclone-1.48.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/07/06 14:32:42

Log message:
    Add p5-HTTP-MultiPartParser
    
    This class provides a low-level API for processing MultiPart MIME data
    streams conforming to MultiPart types as defined in RFC 2616.
    
    From wen heping <wenheping2000 () hotmail ! com>
    OK cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190706
    
    N ports/www/p5-HTTP-MultiPartParser/Makefile
    N ports/www/p5-HTTP-MultiPartParser/distinfo
    N ports/www/p5-HTTP-MultiPartParser/pkg/DESCR
    N ports/www/p5-HTTP-MultiPartParser/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/07/06 14:34:17

Log message:
    Add www/p5-WWW-Form-UrlEncoded-XS
    
    WWW::Form::UrlEncoded::XS provides an application/x-www-form-urlencoded
    parser and builder that is implemented in XS.
    
    Tweaks and OK cwen@ for 0.25, 0.26 is only test updates
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190706
    
    N ports/www/p5-WWW-Form-UrlEncoded-XS/Makefile
    N ports/www/p5-WWW-Form-UrlEncoded-XS/distinfo
    N ports/www/p5-WWW-Form-UrlEncoded-XS/pkg/DESCR
    N ports/www/p5-WWW-Form-UrlEncoded-XS/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/07/06 14:36:57

Log message:
    Add www/p5-WWW-Form-UrlEncoded
    
    WWW::Form::UrlEncoded provides application/x-www-form-urlencoded parser and
    builder. This module aims to have compatibility with other CPAN modules like
    HTTP::Body's urlencoded parser.
    
    From wen heping <wenheping2000 () hotmail ! com>
    OK and tweaks from cwen@ for 0.25, 0.26 is test updates,
    plus upstream merged a patch from cwen to disable backwards compat
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190706
    
    N ports/www/p5-WWW-Form-UrlEncoded/Makefile
    N ports/www/p5-WWW-Form-UrlEncoded/distinfo
    N ports/www/p5-WWW-Form-UrlEncoded/pkg/DESCR
    N ports/www/p5-WWW-Form-UrlEncoded/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/06 14:37:29

Modified files:
	usr.bin/tmux   : format-draw.c grid.c screen-write.c style.c 
	                 tmux.h 

Log message:
Correctly clear underscore colour in grid_get_cell1, also fix struct
grid_cell to avoid padding. Fixes increased memory use reported by Suraj
N Kurapati.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/07/06 14:38:09

Modified files:
	www            : Makefile 

Log message:
+ p5-HTTP-MultiPartParser
+ p5-WWW-Form-UrlEncoded
+ p5-WWW-Form-UrlEncoded-XS
cvs: ----------------------------------------------------------------------


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/06 14:56:34

Modified files:
	usr.bin/tmux   : cmd-resize-pane.c cmd.c server-client.c 

Log message:
Correctly adjust mouse position if the status line is at the top and
more than one line. GitHub issue 1822.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/06 15:12:38

Modified files:
	usr.sbin/ldomctl: mdstore.c 

Log message:
Pad message since newer firmware doesn't like it without padding.

Tested by kn@ and jan@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/06 15:20:19

Modified files:
	usr.sbin/ldomctl: mdstore.c 

Log message:
Make sure we use the svc_handle for the negotiated major version of the
"mdstore" service.


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/06 16:13:23

Modified files:
	gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils: MM_Any.pm 

Log message:
Fix Makemaker manpage section detection

This patch sets the section in perl manpages to "3p" instead of "3"
which should be less confusing as you do find them in section 3p
on OpenBSD.

Initial idea and OK espie@, makes sense to schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/06 19:05:00

Modified files:
	usr.bin/ssh    : channels.c hostfile.c sshbuf-misc.c 
	                 sshconnect2.c sshkey.c 

Log message:
Remove some set but never used variables. ok daraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/06 20:04:40

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) pkcs12, req, verify and x509

- For pkcs12, add -camellia*/-idea, -LMK and -password
- For req, add -multivalue-rdn, -pkeyopt and -sigopt
- For verify, add -CRLfile and -trusted, and down -check_ss_sig description
- For x509, add -next_serial and -sigopt
- Remove the escape in -multivalue-rdn from ca section

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/07/07 00:40:10

Modified files:
	sys/dev/usb    : if_axe.c if_axen.c if_mos.c if_mue.c if_smsc.c 

Log message:
Eliminate duplicate code in xxx_detach().

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/07/07 01:14:57

Modified files:
	usr.sbin/ntpd  : client.c config.c ntp.c 

Log message:
Sometimes ntp peers are unreliable (looking at you pool.ntp.org!)
and net config can change as well. So if a peer does not respond,
throw it out of the pool if it's a pool member and re-resolve to
find a replacement. Hold on to good peers so we end up with a good
set of peers. ok benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/07 02:11:32

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.25.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/07 02:11:59

Modified files:
	lang/guile2    : Makefile distinfo 

Log message:
Update to guile2-2.2.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/07 04:43:46

Modified files:
	sys/dev/ata    : wd.c 

Log message:
Use timeout_add_msec(9)

RECOVERYTIME is twice per second, so sleep for 500 milliseconds
and reflect the unit to be clear.

OK patrick


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/07 04:52:56

Modified files:
	lib/libcrypto/pem: pvkfmt.c 

Log message:
Fix pvk format processing in libcrypto

- Return the valid pointer in i2b_PVK()
- Use EVP_Decrypt* instead of EVP_Encrypt*
- Fix error handling after BIO_write() in i2b_PVK_bio()

ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/07 04:58:53

Modified files:
	x11/xchm       : Makefile distinfo 
	x11/xchm/pkg   : PLIST 
Removed files:
	x11/xchm/patches: patch-src_chmframe_cpp 

Log message:
update to xCHM 1.30, now hosted on github


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/07 05:02:24

Modified files:
	emulators/qemu : Makefile 

Log message:
qemu: PERMIT_PACKAGE update and tweak to layout / comment, from Brad.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/07 05:05:11

Modified files:
	net/irssi      : Tag: OPENBSD_6_5 Makefile 
Added files:
	net/irssi/patches: Tag: OPENBSD_6_5 
	                   patch-src_irc_core_irc-core_c 
	                   patch-src_irc_core_irc-servers-reconnect_c 
	                   patch-src_irc_core_irc-servers-setup_c 

Log message:
add upstream patches to irssi in -stable for the sasl use-after-free,
CVE-2019-13045

just patching rather than updating to 1.2.1 to simplify updates (irssi
checks that plugins are built against the same version number)

discussed with kn@ solene@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/07 05:11:22

Modified files:
	usr.sbin/syspatch: syspatch.sh 

Log message:
Tell user to look at manually running /usr/libexec/reorder_kernel in case
it fails at the end of the syspatch run.
Because a kernel syspatch was installed, a user could think the kernel
was updated accordingly; which is not the case if reorder_kernel fails.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/07 05:17:36

Modified files:
	sys/dev/pci    : mpii.c 

Log message:
tweak config pending handling so it waits for all ports to finish scanning

it waited until any port finished scanning before calling
config_pending_decr, but if you have disks on other ports then they
may race with the rest of the kernel getting to mountroot. this
tweaks the config pending dance so it waits for all ports and avoids
the race.

i just got lucky on my system where root was on the first port.
kettenis has been poking a t4 where the disks are all over the place
and he lost the race.

tested by and ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/07 05:20:56

Modified files:
	x11/gnome/adwaita-icon-theme: Makefile 
	x11/gnome/aisleriot: Makefile 
	x11/gnome/amtk : Makefile 
	x11/gnome/at-spi2-atk: Makefile 
	x11/gnome/at-spi2-core: Makefile 
	x11/gnome/autoar: Makefile 
	x11/gnome/backgrounds: Makefile 
	x11/gnome/baobab: Makefile 
	x11/gnome/bijiben: Makefile 
	x11/gnome/books: Makefile 
	x11/gnome/calculator: Makefile 
	x11/gnome/calendar: Makefile 
	x11/gnome/caribou: Makefile 
	x11/gnome/characters: Makefile 
	x11/gnome/chrome-gnome-shell: Makefile 
	x11/gnome/clocks: Makefile 
	x11/gnome/color-manager: Makefile 
	x11/gnome/contacts: Makefile 
	x11/gnome/control-center: Makefile 
	x11/gnome/dconf-editor: Makefile 
	x11/gnome/desktop: Makefile 
	x11/gnome/devel-docs: Makefile 
	x11/gnome/devhelp: Makefile 
	x11/gnome/dictionary: Makefile 
	x11/gnome/doc-utils: Makefile 
	x11/gnome/documents: Makefile 
	x11/gnome/eog  : Makefile 
	x11/gnome/eog-plugins: Makefile 
	x11/gnome/epub-thumbnailer: Makefile 
	x11/gnome/file-roller: Makefile 
	x11/gnome/font-viewer: Makefile 
	x11/gnome/gcr  : Makefile 
	x11/gnome/gdl  : Makefile 
	x11/gnome/gdm  : Makefile 
	x11/gnome/gedit: Makefile 
	x11/gnome/gedit-plugins: Makefile 
	x11/gnome/getting-started-docs: Makefile 
	x11/gnome/gfbgraph: Makefile 
	x11/gnome/ghex : Makefile 
	x11/gnome/gjs  : Makefile 
	x11/gnome/grilo: Makefile 
	x11/gnome/grilo-plugins: Makefile 
	x11/gnome/gucharmap: Makefile 
	x11/gnome/gvfs : Makefile 
	x11/gnome/icon-theme: Makefile 
	x11/gnome/icon-theme-symbolic: Makefile 
	x11/gnome/initial-setup: Makefile 
	x11/gnome/keyring: Makefile 
	x11/gnome/latex: Makefile 
	x11/gnome/libbonobo: Makefile 
	x11/gnome/libbonoboui: Makefile 
	x11/gnome/libcryptui: Makefile 
	x11/gnome/libdazzle: Makefile 
	x11/gnome/libgda: Makefile 
	x11/gnome/libgepub: Makefile 
	x11/gnome/libgnome: Makefile 
	x11/gnome/libgnome-keyring: Makefile 
	x11/gnome/libgnomecanvas: Makefile 
	x11/gnome/libgnomekbd: Makefile 
	x11/gnome/libgnomeui: Makefile 
	x11/gnome/libmediaart: Makefile 
	x11/gnome/librsvg: Makefile 
	x11/gnome/libsecret: Makefile 
	x11/gnome/libxklavier: Makefile 
	x11/gnome/libzapojit: Makefile 
	x11/gnome/maps : Makefile 
	x11/gnome/menus: Makefile 
	x11/gnome/mime-data: Makefile 
	x11/gnome/mono-gnome: Makefile 
	x11/gnome/mousetweaks: Makefile 
	x11/gnome/music: Makefile 
	x11/gnome/mutter: Makefile 
	x11/gnome/nautilus: Makefile 
	x11/gnome/ocrfeeder: Makefile 
	x11/gnome/online-accounts: Makefile 
	x11/gnome/online-miners: Makefile 
	x11/gnome/orca : Makefile 
	x11/gnome/photos: Makefile 
	x11/gnome/planner: Makefile 
	x11/gnome/power-manager: Makefile 
	x11/gnome/py-atspi: Makefile 
	x11/gnome/quadrapassel: Makefile 
	x11/gnome/recipes: Makefile 
	x11/gnome/screenshot: Makefile 
	x11/gnome/seahorse: Makefile 
	x11/gnome/seahorse-nautilus: Makefile 
	x11/gnome/seahorse-sharing: Makefile 
	x11/gnome/session: Makefile 
	x11/gnome/settings-daemon: Makefile 
	x11/gnome/shell: Makefile 
	x11/gnome/shell-extensions: Makefile 
	x11/gnome/sushi: Makefile 
	x11/gnome/system-monitor: Makefile 
	x11/gnome/tepl : Makefile 
	x11/gnome/terminal: Makefile 
	x11/gnome/themes-extra: Makefile 
	x11/gnome/todo : Makefile 
	x11/gnome/totem: Makefile 
	x11/gnome/totem-pl-parser: Makefile 
	x11/gnome/tracker: Makefile 
	x11/gnome/tracker-miners: Makefile 
	x11/gnome/tweaks: Makefile 
	x11/gnome/usage: Makefile 
	x11/gnome/user-docs: Makefile 
	x11/gnome/vfs2 : Makefile 
	x11/gnome/vinagre: Makefile 
	x11/gnome/weather: Makefile 
	x11/gnome/yelp : Makefile 
	x11/gnome/yelp-xsl: Makefile 
	x11/gnome/zenity: Makefile 

Log message:
PERMIT_PACKAGE_CDROM -> PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/07 06:42:55

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm Temp.pm 

Log message:
use last_error
fix again tmpfile so that it fails as it should


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/07 08:04:07

Modified files:
	devel/llvm/patches: patch-lib_CodeGen_AsmPrinter_AsmPrinter_cpp 
	                    patch-lib_CodeGen_ReturnProtectorPass_cpp 
	                    patch-lib_MC_MCELFStreamer_cpp 
	                    patch-lib_Target_PowerPC_PPCISelLowering_cpp 
	                    patch-lib_Target_X86_MCTargetDesc_X86AsmBackend_cpp 

Log message:
Whitespace and comments sync with base


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/07 08:41:55

Modified files:
	sys/arch/sh/sh : cpu.c sh_machdep.c 

Log message:
print the cpu model in the correct place (only)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/07 08:45:15

Modified files:
	usr.sbin/ldomctl: mdstore.c 

Log message:
Add support for version 3.0 of the "mdstore" protocol.


CVSROOT:	/cvs
Module name:	ports
Changes by:	anton@cvs.openbsd.org	2019/07/07 08:50:49

Modified files:
	mail/mdsort    : Makefile distinfo 

Log message:
Update to mdsort-4.0.0. While here, switch to PERMIT_PACKAGE.

ok kn@ rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/07/07 08:58:04

Modified files:
	math/py-scipy  : Makefile 
	devel/csmith   : Makefile 
	graphics/py-matplotlib: Makefile 
	math/py-numpy  : Makefile 
	math/py-sympy  : Makefile 
	net/ncftp      : Makefile 

Log message:
PERMIT_PACKAGE_CDROM -> PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/07 09:21:31

Modified files:
	x11/i3status   : Makefile 

Log message:
Missing BDEP:
configure: error: xmlto is required for generating man pages


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/07/07 09:22:20

Modified files:
	net/litecoin   : Makefile 
	net/litecoin/pkg: litecoind.rc 

Log message:
fix typo in daemon_user

While here switch PERMIT_PACKAGE_CDROM to PERMIT_PACKAGE. Hint from Ivan.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/07/07 10:14:37

Modified files:
	security/ruby-pledge: Makefile distinfo 
	security/ruby-pledge/pkg: PLIST 

Log message:
Update to ruby-pledge 1.2.0

This adds an unveil library and Pledge.unveil for access to unveil(2) from
Ruby.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/07 10:25:27

Modified files:
	net/litecoin   : Makefile 
	net/litecoin/pkg: litecoind.rc 

Log message:
Remove useless homemade variable from rc.d script.
Don't hardcode /etc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/07 10:58:46

Modified files:
	audio/taglib   : Makefile 
Added files:
	audio/taglib/patches: patch-tests_test_synchdata_cpp 

Log message:
taglib: fix narrowing issues on arm and ppc, unbreak the build.
Tested on macppc.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/07/07 11:09:20

Modified files:
	devel/ocaml-menhir: Makefile 

Log message:
Take maintainer and update to PERMIT_PACKAGE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/07 11:55:01

Modified files:
	lang/cython    : Makefile distinfo 

Log message:
Update to cython 0.29.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/07 12:11:21

Modified files:
	devel/py-ana   : Makefile distinfo 
	devel/py-ana/pkg: PLIST 

Log message:
update to py-ana-0.06


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/07 12:25:15

Removed files:
	x11/i3status/patches: patch-src_print_wireless_info_c 

Log message:
remove unneeded patch; stdlib.h is included already


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/07 12:41:11

Modified files:
	devel/py-r2pipe: Makefile distinfo 

Log message:
update to py3-r2pipe-1.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/07 12:42:21

Modified files:
	www/libsass    : Makefile distinfo 

Log message:
update to libsass-3.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/07 12:42:23

Modified files:
	www/sassc      : Makefile distinfo 

Log message:
update to sassc-3.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/07 12:46:45

Modified files:
	devel/ruby-rspec/3: Makefile.inc 
	devel/ruby-rspec/3/core: Makefile distinfo 
	devel/ruby-rspec/3/expectations: Makefile distinfo 
	devel/ruby-rspec/3/its: Makefile 
	devel/ruby-rspec/3/mocks: Makefile distinfo 
	devel/ruby-rspec/3/rspec: Makefile 
	devel/ruby-rspec/3/support: Makefile distinfo 

Log message:
- update rspec ports:
core to 3.8.2
expectations to 3.8.4
mocks to 3.8.1
support to 3.8.2
- drop maintainership


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/07 13:00:45

Modified files:
	lang/elixir    : Makefile distinfo 
	lang/elixir/patches: patch-bin_elixir 
	lang/elixir/pkg: PLIST 

Log message:
update to elixir-1.9.0


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/07/07 13:17:40

Modified files:
	usr.sbin/ntpd  : control.c 

Log message:
proper level of two messages, prompted by deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/07/07 13:18:14

Modified files:
	www/openradtool: Makefile distinfo 

Log message:
Update openradtool to 0.7.6


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/07/07 13:21:28

Modified files:
	usr.bin/doas   : doas.conf.5 env.c 

Log message:
fix one last edge case regarding PATH, allows simpler config.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/07 16:03:16

Modified files:
	textproc/p5-PDF-API2: Makefile distinfo 

Log message:
p5-PDF-API2: update to 2.034

From Wen Heping < wenheping2000 at hotmail dot com > with some tweaks
from me.

OK sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/07 19:16:02

Modified files:
	sys/conf       : GENERIC 

Log message:
uncomment aggr(4) to make it easier for people to try


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/07 21:39:10

Modified files:
	sys/dev/pci/drm: linux_hdmi.c 

Log message:
remove duplicate hdmi.h include
reported by Ralf Schuelke


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/07 23:04:38

Modified files:
	gnu/llvm/lib/Target/Mips: Mips64InstrInfo.td 

Log message:
Fix instruction guard. This prevents the compiler from using
the MIPS64 mul instruction on pre-MIPS64 subtargets.


CVSROOT:	/cvs
Module name:	ports
Changes by:	visa@cvs.openbsd.org	2019/07/07 23:08:45

Modified files:
	infrastructure/mk: arch-defines.mk 

Log message:
Use clang as the default compiler on mips64.

OK jca@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/08 00:01:18

Modified files:
	www/p5-HTML-Tidy: Makefile 

Log message:
Fix WANTLIB to ubbreak:
tidyp-1 -> tidyp-1.04


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/08 01:56:53

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: 
	                    patch-tools_clang_lib_Driver_ToolChains_OpenBSD_cpp 
	devel/llvm/pkg : PLIST-main 

Log message:
Major fix for -stdlib=libstdc++, properly register libOptRemarks.so

I botched the library search paths when merging OpenBSD.cpp, repair
that.  Also always add -L${LOCALBASE}/lib like was done before.
Looks like I committed an old diff which lacked SHARED_LIBS+=OptRemarks.

While here, force-disable Z3 support from math/z3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/08 02:26:23

Modified files:
	textproc/p5-PDF-Table: Makefile distinfo 

Log message:
p5-PDF-Table : update to 0.11.0
Changelog:
https://metacpan.org/source/OMEGA/PDF-Table-0.11.0/Changes

From Wen Heping < wenheping2000 at hotmail dot com >, with tweaks
from me.

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/08 02:39:16

ports/www/p5-WWW-Search-Ebay/patches

Update of /cvs/ports/www/p5-WWW-Search-Ebay/patches
In directory cvs.openbsd.org:/tmp/cvs-serv97270/patches

Log Message:
Directory /cvs/ports/www/p5-WWW-Search-Ebay/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/08 02:41:22

Modified files:
	www/p5-WWW-Search-Ebay: Makefile distinfo 
Added files:
	www/p5-WWW-Search-Ebay/patches: patch-lib_WWW_Search_Ebay_pm 

Log message:
www/p5-WWW-Search-Ebay: update to 3.052
Changelog:
https://metacpan.org/source/MTHURN/WWW-Search-Ebay-3.052/Changes

With tweaks and an additional patch from afresh1@

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/08 02:47:56

Modified files:
	www/p5-HTML-SiteTear: Makefile distinfo 

Log message:
p5-HTML-SiteTear: update to 1.46
Changelog:
https://metacpan.org/source/TKURITA/HTML-SiteTear-1.46/Changes

OK afresh1@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/08 02:49:20

Modified files:
	graphics/termtosvg: Makefile distinfo 
	graphics/termtosvg/pkg: PLIST 

Log message:
Update termtosvg to 0.9.0.

While there, switch PERMIT_PACKAGE_CDROM to PERMIT_PACKAGE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/08 02:52:15

Modified files:
	www/p5-HTML-TableContentParser: Makefile distinfo 
	www/p5-HTML-TableContentParser/pkg: DESCR 

Log message:
www/p5-HTML-TableContentParser: update to 0.301
Changelog:
https://metacpan.org/source/WYANT/HTML-TableContentParser-0.301/Changes

While here, reflowed DESCR.

OK afresh1@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/08 03:21:10

Modified files:
	sys/kern       : vfs_lookup.c 

Log message:
When an unlink failed due to unveil, the use count of the inode was
not decremented.  You could not unmount the file system anymore.
A vput(9) in namei(9) fixes this.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/07/08 03:46:54

Modified files:
	mail/courier-authlib: Makefile distinfo 
	mail/courier-authlib/patches: patch-Makefile_in 
	mail/courier-authlib/pkg: PLIST-ldap PLIST-main PLIST-mysql 
	                          PLIST-pgsql PLIST-userdb 
Removed files:
	mail/courier-authlib/patches: patch-libs_rfc822_configure_ac 

Log message:
update to 0.69 and fix dependencies only needed for regression tests
hints and ok sthen@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/08 03:48:04

Log message:
    Import devel/p5-Test-Version 2.09
    
    This module's goal is to be a one stop shop for checking to see that
    your versions across your dist are sane.
    
    From Wen Heping < wenheping2000 at hotmail.com >, thanks!
    
    OK afresh1@
    
    Status:
    
    Vendor Tag:	cwen
    Release Tags:	cwen_20190708
    
    N ports/devel/p5-Test-Version/Makefile
    N ports/devel/p5-Test-Version/distinfo
    N ports/devel/p5-Test-Version/pkg/DESCR
    N ports/devel/p5-Test-Version/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/08 03:49:59

Modified files:
	devel          : Makefile 

Log message:
+p5-Test-Version


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/08 04:55:39

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgSign.pm 

Log message:
error out if we can't create the temp file


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/08 04:59:30

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCreate.pm 

Log message:
check ::Temp creation


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/08 05:03:47

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCreate.pm 

Log message:
actually use error, we can delay fatal problems


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/08 05:38:14

Modified files:
	usr.bin/tmux   : screen-write.c 

Log message:
Use the clear history function for the 3J sequence rather than doing it manually.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/08 05:50:02

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 

Log message:
uniform error messages on temp file creation


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/08 05:56:18

Modified files:
	lib/libcrypto/pem: pvkfmt.c 

Log message:
Clean up pvkfmt.c

- Replace EVP_CIPHER_CTX_init with EVP_CIPHER_CTX_new and handle return value
- Replace EVP_CIPHER_CTX_cleanup with EVP_CIPHER_CTX_free
- Change two 'return -1;' to 'goto err;' for avoiding leak
- Remove the case if enclevel == 0
- Change enclevel checking to make more consistent
- Change all goto label to 'err' and insert space before goto label

ok and advise from tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/08 07:13:29

Modified files:
	infrastructure/bin: check-lib-depends 

Log message:
Kill a remnant of linux emulation support.

OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/08 08:15:12

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) dsa, ocsp, rsa and smime

- dsa   : add missing -pvk-none, -pvk-strong and -pvk-weak
add pvk format to -inform and -outform
- ocsp  : add missing -header, -ignore_err, -no_explicit and -timeout
- rsa   : add missing -pvk-none, -pvk-strong and -pvk-weak
add missing -RSAPublicKey_in and -RSAPublicKey_out
add pvk format to -inform and -outform
- smime : add missing -nosmimecap
- add pvk description at common format part

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/08 08:19:58

Modified files:
	regress/sys/kern/sosplice/error: args-idle-EINVAL.pl 
	                                 args-max-EINVAL.pl 

Log message:
Add some padding bytes to syscall argument struct so that tests
pass on armv7.
from Moritz Buhl


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/08 10:30:56

Modified files:
	lang/php       : Makefile.inc 
	lang/php/7.1   : Makefile 
	lang/php/7.2   : Makefile 
	lang/php/7.3   : Makefile 

Log message:
fix PKGSTEM variable in pkg-readmes/php-7.x files (this one is a bit fiddly
because it uses a shared files/ directory rather than separate copies in
7.{1,2,3}/pkg/README-main).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/08 11:22:28

Modified files:
	multimedia/libtheora: Makefile 

Log message:
Disable asm on armv7, broken (as expected...)


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/08 11:49:57

Modified files:
	sys/net        : pf_table.c radix.c 
	sys/netinet    : ip_spd.c 

Log message:
free(9) sizes for M_RTABLE.

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/07/08 12:48:30

Modified files:
	lib/libc/sys   : getgroups.2 mount.2 setgroups.2 
	share/man/man4 : termios.4 

Log message:
Get rid of an old convention of wrapping preprocessor constants in curly
braces.

no objection from jmc@ and schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/08 12:53:18

Modified files:
	sys/kern       : kern_resource.c sched_bsd.c 
	sys/sys        : proc.h sched.h 

Log message:
Untangle code setting the scheduling priority of a thread.

- `p_estcpu' and `p_usrpri' represent the priority and are now only set
in a single function.

- Call resched_proc() after updating the priority and stop calling it
from schedclock() since `spc_curpriority' should match curproc's priority.

- Rename updatepri() to match decay_cpu() and stop updating per-thread
member.

- Merge two resched_proc() in one inside setrunnable().

Tweak and ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/08 13:23:17

Modified files:
	share/man/man4 : termios.4 

Log message:
more cleanup, in particular remove more braces around .Dv,
remove some bogus .Dv, and get rid of .Tn


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/07/08 13:57:11

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm(4): remove a "set but not used" variable, found when building the
kernel with gcc9.

ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/07/08 13:57:42

Modified files:
	sys/arch/amd64/amd64: pmap.c 

Log message:
amd64 pmap: remove a "set but not used" variable, found when building the
kernel with gcc9.

ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/08 14:29:11

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Clear search marks before resize, GitHub issue 1823.


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/07/08 15:19:54

Modified files:
	lib/libc/uuid  : uuid.3 

Log message:
fix typo: RCF -> RFC

From Evan Silberman


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/07/08 16:02:59

Modified files:
	sys/dev/ic     : ahci.c 

Log message:
Remove some "set but not used" variables in ahci(4)'s hibernate code.

ok jmatthew


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/07/08 17:59:32

Modified files:
	sys/conf       : param.c 

Log message:
Remove trailing whitespace from a macro

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/08 21:46:41

Modified files:
	share/man/man7 : man.7 

Log message:
The non-standard .EX/.EE macro pair was invented for Version 9 AT&T UNIX
and only got adopted by GNU two decades later.
Thanks to Doug McIlroy <doug at cs dot dartmouth dot edu>
for pointing out the error.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/08 22:15:00

Modified files:
	usr.bin/ssh    : auth-options.c auth-options.h 

Log message:
cap the number of permiopen/permitlisten directives we're willing to
parse on a single authorized_keys line; ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/07/08 23:43:03

Modified files:
	sys/dev/usb    : files.usb 

Log message:
ure(4) and url(4) need ifmedia attribute.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/09 01:00:52

Modified files:
	graphics/ffmpeg: Makefile distinfo 
	x11/mplayer    : Makefile 
Removed files:
	graphics/ffmpeg/patches: patch-libavformat_aacdec_c 

Log message:
Bug fix update to FFmpeg 4.1.4.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/07/09 03:33:55

Modified files:
	sys/dev/usb    : uvideo.h 

Log message:
Fix whitespace issue.

ok jan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/07/09 03:46:17

Modified files:
	editors/neovim : Makefile distinfo 
Removed files:
	editors/neovim/patches: patch-src_nvim_getchar_c 

Log message:
Update editors/neovim to version 0.3.8.

Tested by Paco Esteban, input and OK kn@. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/09 03:55:09

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/dev/pci/drm/include/linux: dma-fence.h 

Log message:
add dma_fence_wait_any_timeout() required for parts of amdgpu
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/09 03:57:57

Modified files:
	sys/dev/pci/drm: drm_linux.c 

Log message:
Use wake_up_process() instead of wakeup() in dma_fence_default_wait_cb()
as there is code which uses schedule_timeout() for dma fences.

suggested by kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/09 03:59:18

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_cs.c 

Log message:
unstub amdgpu_cs_wait_any_fence()


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/09 04:00:30

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_sa.c 

Log message:
unstub dma_fence_wait_any_timeout() call in amdgpu_sa_bo_new()


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/09 04:48:30

Modified files:
	regress/usr.sbin/pkg_add: Makefile my mycreate 
Added files:
	regress/usr.sbin/pkg_add: inject-order 

Log message:
tweak the command runs to be able to inject code systematically, in order
to trigger some bugs more easily


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/09 04:48:53

Removed files:
	regress/usr.sbin/pkg_add: injectadd 

Log message:
byebye, superseded by generic


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/09 04:56:07

Modified files:
	net/bitlbee-facebook: Makefile distinfo 

Log message:
Update to bitlbee-facebook 1.2.0

- Fix ERROR_QUEUE_OVERFLOW on login by bumping orca agent version
- Fix "Failed to read fixed header" with TLS 1.3 / GnuTLS 3.6.x
- Add workplace chat support (enable the "work" setting to use it)

From Eivind Eide <xenofil at gmail dot com>, thanks.

Switch to PERMIT_PACKAGE while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/09 04:59:47

Modified files:
	regress/usr.sbin/pkg_add: my 

Log message:
a bit too enthusiastic in removing code


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/09 05:02:52

Modified files:
	usr.bin/openssl: genrsa.c 

Log message:
Convert openssl(1) genrsa to the newer style of option handling

ok tb@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/09 05:19:05

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) genrsa

Add missing -camellia*/-idea description to genrsa section.

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/09 05:24:09

Modified files:
	usr.sbin/pkg_add/OpenBSD: State.pm 

Log message:
knob for testing, do not even look in installurl by default


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/09 05:24:28

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-src_bootstrap_lib_rs 
	                   patch-src_bootstrap_test_rs 
	                   patch-src_librustdoc_test_rs 
	                   patch-src_libstd_sys_unix_os_rs 
	                   patch-src_libstd_sys_unix_stack_overflow_rs 
	                   patch-src_test_run-pass_out-of-stack_rs 
	                   patch-src_test_run-pass_stack-probes-lto_rs 
	                   patch-src_test_run-pass_stack-probes_rs 
	                   patch-src_tools_cargo_src_cargo_core_compiler_context_compilation_files_rs 
	                   patch-vendor_openssl-sys_build_main_rs 
	lang/rust/pkg  : PLIST-main 
Removed files:
	lang/rust/patches: patch-src_tools_compiletest_src_main_rs 

Log message:
update lang/rust to 1.36.0

Announce: https://blog.rust-lang.org/2019/07/04/Rust-1.36.0.html
Release notes: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1360-2019-07-04

ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/09 05:27:09

Modified files:
	regress/usr.sbin/pkg_add: my 

Log message:
don't look into installurl


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/07/09 05:30:19

Modified files:
	sys/net        : pf.c pf_if.c pfvar.h 

Log message:
Fix previous commit which made src-node have a reference for the kif.
Src-node should use the reference counter since it might live longer
than its table entry, rule or the associated states.

OK sashan


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/07/09 05:35:06

Modified files:
	sys/kern       : sys_pipe.c syscalls.master 

Log message:
unlock pipe(2) and pipe2(2) syscalls

initial work from mpi@

ok visa@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/07/09 05:36:10

Modified files:
	sys/kern       : syscalls.c init_sysent.c 

Log message:
resync


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/09 06:23:25

Modified files:
	sys/kern       : kern_prot.c 

Log message:
The system calls getgroups(2) and setgroups(2) pass the number of
groups as signed int.  Do not use unsigned int within the kernel
for length calculations.  Now getgroups(2) fails with EINVAL if
called with negative length value.
from Moritz Buhl; OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/09 06:44:47

Modified files:
	usr.bin/tmux   : menu.c 

Log message:
Add j and k for navigation in menus, GitHub issue 1828.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/09 06:47:58

Modified files:
	regress/usr.sbin/syslogd: args-tls-cafile-toobig.pl 

Log message:
On slow armv7 machine reconnect timeout is faster than test, so
error message appears twice.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/09 07:19:36

Modified files:
	usr.bin/tmux   : control.c 

Log message:
Do not leak empty lines, GitHub issue 1824.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/09 07:21:37

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/patches: 
	                    patch-include_llvm_CodeGen_ReturnProtectorLowering_h 
	                    patch-include_llvm_CodeGen_TargetFrameLowering_h 
	                    patch-lib_CodeGen_ReturnProtectorLowering_cpp 
	                    patch-lib_Target_AArch64_AArch64ReturnProtectorLowering_cpp 
	                    patch-lib_Target_AArch64_AArch64ReturnProtectorLowering_h 
	                    patch-lib_Target_X86_X86MCInstLower_cpp 
	                    patch-lib_Target_X86_X86ReturnProtectorLowering_cpp 
	                    patch-tools_clang_include_clang_Basic_CodeGenOptions_def 
	                    patch-tools_lld_ELF_Options_td 
Added files:
	devel/llvm/patches: 
	                    patch-lib_Target_Mips_AsmParser_MipsAsmParser_cpp 
	                    patch-lib_Target_Mips_MCTargetDesc_MipsTargetStreamer_cpp 
	                    patch-lib_Target_Mips_Mips64InstrInfo_td 
	                    patch-lib_Target_Mips_MipsAsmPrinter_cpp 
	                    patch-lib_Target_Mips_MipsISelLowering_cpp 
	                    patch-lib_Target_Mips_MipsInstrInfo_td 
	                    patch-lib_Target_Mips_MipsTargetStreamer_h 
	                    patch-lib_Target_Sparc_SparcAsmPrinter_cpp 
	                    patch-tools_clang_include_clang_AST_FormatString_h 
	                    patch-tools_clang_lib_AST_FormatString_cpp 
	                    patch-tools_clang_lib_Basic_Targets_Mips_h 
	                    patch-tools_clang_lib_Driver_ToolChains_Arch_X86_cpp 
	                    patch-tools_lld_ELF_SyntheticSections_cpp 
Removed files:
	devel/llvm/patches: patch-lib_Target_X86_X86Subtarget_cpp 

Log message:
Merge various improvements from base

o clang:
- add back kernel printf %b length specifier support (%llb, etc, lost in
the update to 8.0.0)
o lld:
- Restore previous section after setting the MIPS ABI marker
- Fix output section alignement when entry size isn't a power of two
o arm64, amd64:
- Do not store the retguard cookie in frame in leaf functions if possible
- Emit variable length trap padding in retguard epilogue
o amd64:
- move code that selects retpoline by default to a different source file
o mips64:
- Fix a bug in memory operand handling
- Implement SGE pseudo-instructions
- Implement .cplocal directive
- Fix instruction guard
- Implement the 'h' register constraint on mips64
o sparc64:
- Remove cast that truncates immediate operands to 32 bits


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/09 07:26:52

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/pkg: PLIST 

Log message:
Update to glib2-2.60.5.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/09 07:49:47

Modified files:
	regress/usr.sbin/pkg_add: Makefile 
Added files:
	regress/usr.sbin/pkg_add: Wrapper.pm inject-temp1 

Log message:
add a test using fault injection to trigger OpenBSD::Temp errors


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/09 08:03:12

Modified files:
	usr.bin/tmux   : arguments.c cmd-send-keys.c format.c 
	                 input-keys.c key-string.c tmux.1 tmux.h 

Log message:
Add a -H flag to send-keys to send literal keys given as hex numbers
(needed for control clients to send mouse sequences). Also add some
format flags for UTF-8 and SGR mouse mode. Requested by Bradley Smith in
GitHub issues 1832 and 1833.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/09 08:40:43

Modified files:
	regress/usr.sbin/pkg_add: Makefile 
Added files:
	regress/usr.sbin/pkg_add: inject-temp2 

Log message:
add a test that explicitly requires test to run.
thanks to tedu's tweaks to doas, there's no simpler way than to recurse
thru make...


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/09 09:01:08

Modified files:
	share/man/man5 : bsd.regress.mk.5 

Log message:
REGRESS_ROOT_TARGETS has less magic than documented

okay bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/07/09 09:02:15

Modified files:
	sys/kern       : sys_pipe.c syscalls.master 

Log message:
backout the unlock of pipe(2) and pipe2(2)

assert "cpipe->pipe_buffer.cnt == 0" occured whereas it shouldn't.

Reported-by: syzbot+b559fa9d3292c3cb0343@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/07/09 09:02:55

Modified files:
	sys/kern       : syscalls.c init_sysent.c 

Log message:
resync


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/09 09:09:38

Modified files:
	regress/usr.sbin/syslogd: ttylog.c 

Log message:
There was a race what is read first: the EOF from stdin to terminate
the tty log collector, or log messages from the ptty.  So some log
messages could get lost at the end of testing.  Now all available
messages are read from the ptty before the test program terminates.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/09 09:15:49

Modified files:
	sys/net        : bridgectl.c 

Log message:
Add missing mtx_leave() in error path.

Reported by kn@, ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/09 09:43:24

Modified files:
	usr.sbin/smtpd : lka_report.c 

Log message:
rework link-connect output so that messages enqueued over the unix socket
no longer display "local:0" as their source and dest addresses, but
"unix:/var/run/smtpd.sock" currently we only support enqueueing over the
control socket but that may not always be the case.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/07/09 10:39:55

Modified files:
	infrastructure/db: user.list 

Log message:
reserve 511 for tacacs_


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/09 10:42:48

Modified files:
	sbin/pfctl     : pfctl.c 

Log message:
Add parentheses for readability

Prompted by and OK deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/09 11:00:12

Modified files:
	regress/sys/kern/realpath: realpathtest.c 

Log message:
Fix white spaces.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/07/09 11:13:32

Added files:
	net/tacacs+    : Makefile distinfo 

Log message:
Add tacacs+ by Shrubbery.net

TACACS+ is used for authentication, authorization, and accounting on
Cisco routers. This daemon provides a server for TACACS+ routers.

Tests done by Ampie Niemand, Jan Vlach(MAINTAINER) and myself. OK/tweaks sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/07/09 11:24:22

Added files:
	net/tacacs+/patches: patch-pwlib_c patch-tac_plus_c 
	                     patch-tac_plus_conf_5_in patch-tac_plus_h 
	net/tacacs+/pkg: DESCR PLIST README tac_plus.rc 

Log message:
tweaking previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/07/09 11:29:39

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
renable net/tacacs+
no longer absolete,


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/09 11:30:39

Modified files:
	regress/sys/kern/realpath: realpath3.c realpathtest.c 

Log message:
Regress realpath(3) fails since the non directory hack has been
removed from libc.  Make the regress implementation more POSIX
compliant like it has been done for the kernel.
OK beck@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 11:52:02

Modified files:
	security/nss   : Makefile distinfo 
	security/nss/patches: patch-nss_coreconf_OpenBSD_mk 

Log message:
Update to nss 3.45, required by gecko 69.

See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.45_release_notes
Bump minor as PK11_FindRawCertsWithSubject was added to the API.
Remove patch chunk merged upstream (from #1554659)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/07/09 11:54:46

Modified files:
	lang/go        : Makefile distinfo 
	lang/go/pkg    : PLIST 

Log message:
Update lang/go to Go 1.12.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 11:58:22

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
Bump minimum sqlite requirement to 3.27.2, and nss to 3.44.1, as that's
what gecko 68 requires.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/07/09 11:58:33

Modified files:
	lib/libtls/man : tls_read.3 

Log message:
Group tls_{handshake,read,write,close}() return values documentation.

Move the documentation for tls_error() down so that both the special return
values for tls_{handshake,read,write,close}() directly follow the standard
return values for the same functions.

Prompted by deraadt@.

ok deraadt@ schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 11:59:09

Modified files:
	www/seamonkey  : Makefile 

Log message:
bump after mozilla.port.mk change


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 12:04:16

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/mozilla-firefox/patches: 
	                             patch-js_src_jit_ProcessExecutableMemory_h 
	                             patch-security_manager_pki_resources_content_exceptionDialog_js 
	                             patch-storage_mozStorageConnection_cpp 
	                             patch-widget_nsPrintSettingsImpl_cpp 
	www/firefox-i18n: Makefile Makefile.inc distinfo 
Removed files:
	www/mozilla-firefox/patches: patch-servo_components_style_lib_rs 
	                             patch-servo_components_style_traits_lib_rs 

Log message:
Update to firefox 68.0.

See https://www.mozilla.org/en-US/firefox/68.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-21/

Remove servo patches finally unneeded with rust 1.36.0.

Note that it is very unlikely this will get backported to 6.5-stable, as
this new release requires cbindgen 0.8.7 and rust 1.34, which are not
going to get backported either. Which also means no 68.0esr for -stable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 12:05:15

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr-i18n: Makefile.inc distinfo 

Log message:
Update to firefox-esr 60.8.0.

See https://www.mozilla.org/en-US/firefox/60.8.0/releasenotes/
Fixes https://www.mozilla.org/security/advisories/mfsa2019-22/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 12:09:19

Modified files:
	mail/thunderbird-i18n: Makefile.inc distinfo 
	mail/mozilla-thunderbird: Makefile distinfo 

Log message:
Update to thunderbird 60.8.0.

See https://www.thunderbird.net/en-US/thunderbird/60.8.0/releasenotes/
Probably fixes
https://www.mozilla.org/en-US/security/advisories/mfsa2019-23/ (guessed
number)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 12:12:57

Modified files:
	www/firefox-esr: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
MFC: Update to firefox-esr 60.8.0.

See https://www.mozilla.org/en-US/firefox/60.8.0/releasenotes/
Fixes https://www.mozilla.org/security/advisories/mfsa2019-22/

packages at the usual spot. ppl wanting 68.0 should use -current.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 12:14:50

ports/www/firefox-i18n/bn

Update of /cvs/ports/www/firefox-i18n/bn
In directory cvs.openbsd.org:/tmp/cvs-serv40129/bn

Log Message:
Directory /cvs/ports/www/firefox-i18n/bn added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 12:15:36

Modified files:
	www/firefox-i18n: Makefile.inc Makefile distinfo 
Added files:
	www/firefox-i18n/bn: Makefile 

Log message:
Seems bn-BD & bn-IN were merged in a single bengali (bn) localization.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/09 12:17:56

Removed files:
	www/firefox-i18n/as: Makefile 
	www/firefox-i18n/bn-BD: Makefile 
	www/firefox-i18n/bn-IN: Makefile 
	www/firefox-i18n/en-ZA: Makefile 
	www/firefox-i18n/mai: Makefile 
	www/firefox-i18n/ml: Makefile 
	www/firefox-i18n/or: Makefile 

Log message:
Garbage collect unlinked langpacks:

* Assamese (as)
* Bengali - Bangladesh (bn-BD)
* Bengali - India (bn-IN)
* English - South Africa (en-ZA)
* Maithili (mai)
* Malayalam (ml)
* Odia (or)


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/09 12:59:15

Modified files:
	sys/kern       : tty.c 

Log message:
Use timeout_add_msec(9)

As per termios(4), "VTIME is a timer of 0.1 second granularity", so
convert it to milliseconds by reducing by hz and multiplying with 1000.

Furthermore, the specification (and our implementation) define members
of the c_cc arry to be of type unsigned char, so both the previous as
well as the now used arithmetic operations are guaranteed to not
overflow.

Since the timeout_add(9) API takes an int argument, the previous long
type would always be demoted anyway, so change it to int directly.

With this and hz gone, remove the obselete comment.

While here, use more mnemonic variable names.

Feedback and OK mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/07/09 14:22:43

Modified files:
	net/tacacs+    : Makefile 
	net/tacacs+/patches: patch-pwlib_c patch-tac_plus_c 
	                     patch-tac_plus_conf_5_in patch-tac_plus_h 
	net/tacacs+/pkg: PLIST README tac_plus.rc 
Added files:
	net/tacacs+/files: tac_plus.conf.sample 

Log message:
i let it slip through my fingers
no bump since it doesn't currently build/package


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/09 14:40:02

src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil

Update of /cvs/src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil
In directory cvs.openbsd.org:/tmp/cvs-serv19707/gnu/usr.bin/perl/cpan/OpenBSD-Unveil

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/09 14:40:02

src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib

Update of /cvs/src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib
In directory cvs.openbsd.org:/tmp/cvs-serv19707/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/09 14:40:03

src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib/OpenBSD

Update of /cvs/src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib/OpenBSD
In directory cvs.openbsd.org:/tmp/cvs-serv19707/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib/OpenBSD

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib/OpenBSD added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/09 14:40:03

src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/t

Update of /cvs/src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/t
In directory cvs.openbsd.org:/tmp/cvs-serv19707/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/t

Log Message:
Directory /cvs/src/gnu/usr.bin/perl/cpan/OpenBSD-Unveil/t added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/09 14:41:54

Added files:
	gnu/usr.bin/perl/cpan/OpenBSD-Unveil: Unveil.xs 
	gnu/usr.bin/perl/cpan/OpenBSD-Unveil/lib/OpenBSD: Unveil.pm 
	gnu/usr.bin/perl/cpan/OpenBSD-Unveil/t: OpenBSD-Unveil.t 

Log message:
Add OpenBSD::Unveil, a perl interface to unveil(2)

OK brynet@, bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/09 14:42:52

Modified files:
	distrib/sets/lists/base: md.alpha md.amd64 md.arm64 md.armv7 
	                         md.hppa md.i386 md.landisk md.loongson 
	                         md.luna88k md.macppc md.octeon md.sgi 
	                         md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	kn@cvs.openbsd.org	2019/07/09 15:38:44

Modified files:
	app/cwm        : cwm.1 

Log message:
Add application section

Link what is described as "applications" here to how they are actually
defined in cwmrc(5).

While here, call the configuration file what it is instead of reusing
the default path (already mentioned in the FILES section).

OK okan


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/09 17:48:08

Modified files:
	sys/arch/alpha/alpha: trap.c 
	sys/arch/amd64/amd64: trap.c 
	sys/arch/arm64/arm64: trap.c 
	sys/arch/hppa/hppa: trap.c 
	sys/arch/i386/i386: trap.c 
	sys/arch/m88k/m88k: trap.c 
	sys/arch/mips64/mips64: trap.c 
	sys/arch/powerpc/powerpc: trap.c 
	sys/arch/sh/sh : trap.c 
	sys/arch/sparc64/sparc64: trap.c 
	sys/arch/arm/arm: fault.c 

Log message:
I wrote the pc-page-writeable and sp-not-MAP_STACK code to be shared, and
then ran into the messaging being poor.  Then I fixed the messages. But
there are two sub-cases of sp-not-MAP_STACK -- one at syscall time, and
another at regular userland trap (on some architectures), and I bungled
that messaging.  Correct that now, while I look for yet another better way...
discovered by millert, who ran an pre-MAP_STACK binary.


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/09 18:01:12

Modified files:
	gnu/usr.bin/perl: MANIFEST 

Log message:
Put OpenBSD::Unveil in perl MANIFEST


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/09 18:17:53

Modified files:
	sys/arch/sparc64/conf: RAMDISK 

Log message:
+ixl (which was used to debug problems on T4-1)


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/07/09 23:53:37

Modified files:
	usr.sbin/ntpd  : control.c 

Log message:
fix printing when the pool is specified as an IP address; reported by and
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/07/10 01:04:27

Modified files:
	usr.bin/ssh    : sftp.c 

Log message:
Fix a typo and make <esc><right> move right to the closest end of a word
just like <esc><left> moves left to the closest beginning of a word.

ok djm


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 01:21:47

Modified files:
	regress/usr.sbin/pkg_add: Makefile 
Added files:
	regress/usr.sbin/pkg_add: inject-temp3 

Log message:
another error injection


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/10 01:56:08

Modified files:
	devel/cbindgen : Makefile distinfo 
	devel/cbindgen/patches: patch-tests_tests_rs 

Log message:
Update to cbindgen 0.9.0, required by gecko 69 since #1559814

for some reason tests are supposed to use CXX/CC from the env, but with
TEST_ENV = CC=${CC} CXX=${CXX} seems its not working, so adapt the patch
accordingly. same 4 tests still fail.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/10 01:56:30

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/dev/pci/drm/i915: intel_breadcrumbs.c 
	sys/dev/pci/drm/include/linux: kthread.h 
	sys/dev/pci/drm/scheduler: gpu_scheduler.c 

Log message:
Implement Linux kthread interfaces.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/07/10 02:16:10

Modified files:
	sys/dev/usb    : uvideo.c 

Log message:
Also dump interface association descriptor when debugging is
compiled in.

ok jan@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/07/10 02:21:43

Modified files:
	sys/dev/usb    : uvideo.c 

Log message:
The USB video class specification has increased its probe buffer
sizes with each specification.  Use the correct size for the given
version, since some newer devices cannot handle small buffers.

ok jan@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 03:18:09

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCreate.pm 

Log message:
make pkg_create fail properly (return 1 is useless there)

OpenBSD::Temp error handling as well


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 03:34:09

Modified files:
	usr.sbin/pkg_add/OpenBSD: Temp.pm 

Log message:
deal with temp dir creation failures.
make the END{} block transparent for exit


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 03:34:38

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 

Log message:
make the END{} block transparent for exit


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/10 04:28:28

Modified files:
	usr.bin/openssl: dsa.c 

Log message:
Add missing option openssl dsa -modulus

ok bcook@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 05:13:06

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageLocation.pm 

Log message:
use last_error


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 05:15:15

Modified files:
	usr.sbin/pkg_add/OpenBSD: Add.pm 

Log message:
yet another error


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/10 05:20:10

Modified files:
	usr.bin/tmux   : cmd-refresh-client.c control-notify.c tmux.1 
	                 tmux.h 

Log message:
Add -F to refresh-client to specify flags for control clients - one flag
at the moment, no-output which turns off forwarding pane output. From
Thomas Adam. GitHub issue 1834.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 05:48:37

Modified files:
	regress/usr.sbin/pkg_add: Makefile 
Added files:
	regress/usr.sbin/pkg_add: temp1.ref temp2.ref temp3.ref 

Log message:
tweak the pipe to backsubstitute USER for `whoami` so that we can store
the ref error messages


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 05:53:16

Modified files:
	regress/usr.sbin/pkg_add: Makefile temp1.ref temp2.ref temp3.ref 

Log message:
actually we only care about the first error line, and the final status
so just tell sed to do that


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 05:55:40

Modified files:
	regress/usr.sbin/pkg_add: Makefile inject-temp1 inject-temp2 
Added files:
	regress/usr.sbin/pkg_add: inject-temp4 temp4.ref 

Log message:
yet another creation instance


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/10 05:56:01

Modified files:
	usr.sbin/pkg_add/OpenBSD: Delete.pm 

Log message:
yet another last_error


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/10 06:48:08

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
in man.cgi(8), disable -O toc by default; requested by deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/10 07:20:28

Modified files:
	security/py-josepy: Makefile distinfo 
	security/py-josepy/pkg: PLIST 

Log message:
update to py-josepy 1.2.0
* Support for Python 2.6 and 3.3 has been removed.
* Known incompatibilities with Python 3.8 have been resolved.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/10 07:26:20

Modified files:
	databases/freetds: Makefile distinfo 

Log message:
update to freetds-1.1.11


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/07/10 07:35:51

Modified files:
	bin/ed         : ed.1 

Log message:
document the dropping of the second / and ? in line address REs;
thread started by mazocomp; diff from ropers, shortened by me;

ok martijn schwarze


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/07/10 08:05:45

Modified files:
	mail/p5-Mail-DMARC: Makefile distinfo 
	mail/p5-Mail-DMARC/patches: 
	                            patch-lib_Mail_DMARC_Report_Receive_pm 
Removed files:
	mail/p5-Mail-DMARC/patches: patch-lib_Mail_DMARC_Report_Send_pm 

Log message:
Update to 1.20190308 from Wen Heping


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/10 08:21:34

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Use NULL instead of 0 where a pointer is expected.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/10 08:22:53

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Slot name can't be empty. So, no need to check if it is empty.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/10 08:24:42

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Swap "if" and "else" code blocks in slot_new() to improve readability.

No behavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/10 08:28:44

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Replace the "umap" bitmap by a simple table of slot pointers.

Makes the code simpler at virtually no cost since we need 8 entries
only. No behavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/10 08:30:39

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Remove few level 3 debug printfs related to slot allocation.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/10 08:33:24

Modified files:
	usr.bin/tmux   : cmd-send-keys.c 

Log message:
The command item changes so can't keep getting the target out of it, need to use
the one from the first item. Fixes crash reported by M Kelly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/10 09:14:49

Modified files:
	www/squid      : Makefile distinfo 
Removed files:
	www/squid/patches: patch-src_comm_TcpAcceptor_cc 

Log message:
update to squid-4.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/07/10 09:24:40

Modified files:
	infrastructure/db: network.conf 

Log message:
fix cpan path to avoid an https -> http redirect


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/07/10 09:25:03

Modified files:
	databases/db   : Makefile.inc 
	databases/qdbm : Makefile 
	databases/sqlite3: Makefile 
	devel/libffi   : Makefile 
	devel/metaauto : Makefile 
	devel/yasm     : Makefile 
	graphics/tiff  : Makefile 
	lang/lua       : Makefile.inc 
	security/cyrus-sasl2: Makefile 
	security/libotr: Makefile 
	textproc/docbook: Makefile 
	textproc/icu4c : Makefile 
	x11/dbus       : Makefile 

Log message:
switch some master_sites and homepage lines to https. ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/10 09:52:17

Modified files:
	sys/kern       : kern_sig.c kern_synch.c sys_futex.c 

Log message:
Stop sleeping at PUSER.

This allows to enforce that sleeping priorities will now always be <
PUSER.

ok visa@, ratchov@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/07/10 10:43:20

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/isofs/cd9660: cd9660_vnops.c 
	sys/kern       : kern_descrip.c kern_sysctl.c vfs_syscalls.c 
	                 vfs_vnops.c 
	sys/miscfs/fuse: fuse_vnops.c 
	sys/msdosfs    : msdosfs_vnops.c 
	sys/nfs        : nfs_kq.c 
	sys/sys        : file.h 
	sys/tmpfs      : tmpfs_vnops.c 
	sys/ufs/ufs    : ufs_vnops.c 

Log message:
Make read/write of the f_offset field belonging to struct file MP-safe;
as part of the effort to unlock the kernel. Instead of relying on the
vnode lock, introduce a dedicated lock per file. Exclusive write access
is granted using the new foffset_enter and foffset_leave API. A
convenience function foffset_get is also available for threads that only
need to read the current offset.

The lock acquisition order in vn_write has been changed to match the one
in vn_read in order to avoid a potential deadlock. This change also gets
rid of a documented race in vn_read().

Inspired by the FreeBSD implementation.

With help and ok mpi@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/10 11:14:47

Modified files:
	databases/db   : Makefile.inc 
	databases/db/v3: Makefile 
	databases/db/v4: Makefile 

Log message:
better HOMEPAGE, separate out REVISION lines


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/10 12:21:07

Modified files:
	math/py-graphviz: Makefile distinfo 

Log message:
update to py-graphviz-0.11.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/10 12:40:30

Modified files:
	textproc/pdfpc : Makefile 

Log message:
drop maintainership


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/10 12:40:38

Modified files:
	sysutils/borgmatic: Makefile distinfo 
	sysutils/borgmatic/pkg: PLIST 

Log message:
update to borgmatic-1.3.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/10 12:40:58

Modified files:
	x11/i3status/patches: patch-src_print_battery_info_c 

Log message:
merged upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/10 12:45:31

Modified files:
	sys/netinet    : tcp.h tcp_input.c 

Log message:
Received SACK options are managed by a linked list at the TCP socket.
There is a global tunable limit net.inet.tcp.sackholelimit, default
is 32768.  If an attacker manages to attach all these sack holes
to a few TCP connections, the lists may grow long.  Traversing them
might cause higher CPU consumption on the victim machine.  In
practice such a situation is hard to create as the TCP retransmit
and 2*msl timer flush the list periodically.  For additional
protection, enforce a per connection limit of 128 SACK holes in the
list.
reported by Reuven Plevinsky and Tal Vainshtein
discussed with claudio@ and procter@; OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/10 13:17:12

Modified files:
	net/py-pf      : Makefile 

Log message:
add XXX comment, struct pfi_kif changed in base, python version in this needs syncing


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/10 13:17:45

Modified files:
	net/pfstat     : Makefile 

Log message:
bump, struct pfi_kif changed


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/10 13:38:56

Modified files:
	usr.bin/mandoc : main.c mandoc.1 mandoc.h mandoc_msg.c manpath.c 
	                 read.c tag.c 

Log message:
Some time ago, i simplified mandoc_msg() such that it can be used
everywhere and not only in the parsers.
For more uniform messages, use it at more places instead of err(3),
in particular in the main program.
While here, integrate a few trivial functions called at exactly one
place into the main option parser, and let a few more functions use
the normal convention of returning 0 for success and -1 for error.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/10 13:53:52

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
obfuscate auth parameters in smtp reporting


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/10 14:30:45

Modified files:
	textproc/ruby-rouge: Makefile distinfo 
	textproc/ruby-rouge/pkg: PLIST 

Log message:
Update ruby-rouge to 3.6.0.

While there, switch PERMIT_PACKAGE_CDROM to PERMIT_PACKAGE.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/07/10 15:01:28

Modified files:
	archivers/lzo2 : Makefile 
	audio/pulseaudio: Makefile 
	databases/freetds: Makefile 
	devel/desktop-file-utils: Makefile 
	devel/harfbuzz : Makefile 
	devel/mpfr     : Makefile 
	devel/nspr     : Makefile 
	devel/slib     : Makefile 
	geo/geoclue    : Makefile 
	graphics/cairo : Makefile 
	graphics/colord: Makefile 
	graphics/colord-gtk: Makefile 
	graphics/shared-color-targets: Makefile 
	lang/php       : Makefile.inc 
	math/blas      : Makefile 
	math/lapack    : Makefile 
	misc/shared-mime-info: Makefile 
	net/deluge     : Makefile 
	print/cups-filters: Makefile 
	print/foomatic-db: Makefile 
	print/foomatic-db-engine: Makefile 
	print/ghostscript/gnu: Makefile 
	print/ijs      : Makefile 
	sysutils/polkit: Makefile 
	x11/dbus-glib  : Makefile 
	x11/driconf    : Makefile 
	x11/hicolor-icon-theme: Makefile 
	x11/xkbcommon  : Makefile 

Log message:
switch some more homepage and master_sites links to https. input/ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/10 16:25:04

Modified files:
	databases/freetds: Makefile 

Log message:
https homepage


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/10 16:27:31

Modified files:
	lang/php       : Makefile Makefile.inc 
	lang/php/7.1   : Makefile 
	lang/php/7.2   : Makefile 
	lang/php/7.3   : Makefile 

Log message:
it seems php have done some cdn shuffling, now the various country.php.net
are a single cdn backed server and issue a redirect to https://www.php.net/.
replace MASTER_SITES with the single https://www.php.net/distributions/.
this also suggests the mishmash of working and broken backends for
www.php.net that resulted in using secure.php.net as the homepage have
been cleaned up, so switch that back to https://www.php.net/.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/10 19:35:40

Modified files:
	sys/dev/pci/drm: drm_panel_orientation_quirks.c 

Log message:
drm: panel-orientation-quirks: Add quirk for GPD pocket2

From Hans de Goede
2446563dd6d7cbd850d26943e30aeedd3501a54c in linux 4.19.y/4.19.58
15abc7110a77555d3bf72aaef46d1557db0a4ac5 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/10 19:38:19

Modified files:
	sys/dev/pci/drm: drm_panel_orientation_quirks.c 

Log message:
drm: panel-orientation-quirks: Add quirk for GPD MicroPC

From Hans de Goede
027e043f9c78c06d3c3e0fa657a831d7f3d82e9c in linux 4.19.y/4.19.58
652b8b086538c8a10de5aa5cbdaef79333b46358 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/10 19:43:20

Modified files:
	sys/dev/pci/drm/i915: intel_csr.c 

Log message:
drm/i915/dmc: protect against reading random memory

From Lucas De Marchi
600d3712ae122be3ceab0d7ac8246caa3d87dcea in linux 4.19.y/4.19.58
bc7b488b1d1c71dc4c5182206911127bc6c410d6 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/10 19:46:35

Modified files:
	sys/dev/pci/drm/amd/powerplay/hwmgr: process_pptables_v1_0.c 
	sys/dev/pci/drm/amd/powerplay/inc: hwmgr.h 
	sys/dev/pci/drm/amd/powerplay/smumgr: polaris10_smumgr.c 

Log message:
drm/amd/powerplay: use hardware fan control if no powerplay fan table

From Evan Quan
ec6d8c9e6687868dfd58994b2ea1758fe60f2733 in linux 4.19.y/4.19.58
f78c581e22d4b33359ac3462e8d0504735df01f4 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/10 19:48:43

Modified files:
	sys/dev/pci/drm/amd/amdgpu: gfx_v9_0.c 

Log message:
drm/amdgpu/gfx9: use reset default for PA_SC_FIFO_SIZE

From Alex Deucher
ec5d99e18d306bed13935b0f0634bd00caa26a42 in linux 4.19.y/4.19.58
25f09f858835b0e9a06213811031190a17d8ab78 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/10 19:50:55

Modified files:
	sys/dev/pci/drm: drm_fb_helper.c 

Log message:
drm/fb-helper: generic: Don't take module ref for fbcon

From Noralf Tronnes
e9fde78c3a4f7f374ffe589771f08e119d0879aa in linux 4.19.y/4.19.58
6ab20a05f4c7ed45632e24d5397d6284e192567d in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/10 21:35:33

Modified files:
	usr.sbin/ldomd : ldomd.8 

Log message:
Xr ldomctl 8


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/07/10 21:54:17

Modified files:
	include        : paths.h 

Log message:
add /usr/local/sbin. ok deraadt millert


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/10 21:54:27

Modified files:
	usr.bin/telnet : telnet.c 

Log message:
on 12-Mar-98 when art replaced two sprintf calls with snprintf to avoid
an overflow, he left spaces at the end of the line.  we have been incredibly
sloppy and not notice his oversight for 21 years.
bonus Y2K joke included.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/10 22:26:37

Modified files:
	sys/dev/pci/drm/include/linux: bitmap.h 

Log message:
include linux/string.h so drm_panel_orientation_quirks.c can get the
definition for match_string()


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/10 23:11:16

Modified files:
	usr.bin/telnet : genget.c 

Log message:
I visited telnet to find and fix some monster bug, and within 20 minutes
rediscovered that telnet has more more signal race conditions and trashing
of global state than all the rest of the openbsd source tree (where signal
races have either been fixed or marked with "XXX signal race".  I don't
feel like being a hero here today, so I'm fixing a whitespace error in an
unrelated file.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/07/10 23:42:41

Modified files:
	usr.sbin/ldomd : ldomd.8 

Log message:
sort Xr;


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/07/11 00:15:02

Modified files:
	sys/sys        : file.h 

Log message:
zero pad and align FO_POSITION; no binary change


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/11 00:30:35

Modified files:
	usr.bin/which  : whereis.1 

Log message:
tedu: when you commit a change with global impact, please do a full
build to verify there's no fallout, machines are fast now and 1 hour
of your time is worth saving a bunch of others 1+ hour of their time
in this case, paths.h broke this as noticed by jmc and 3 of my build
machines so far, but I might as well restart them all, so call it 8
machines impacted.


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/07/11 00:55:02

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
The privileged process of dhclient(8) runs several ioctl(2)s that are forbidden
by pledge(2) and therefore we cannot add it here. Instead we can restrict the
filesystem access to only two files, mentioned below, via unveil(2).

- /etc/resolv.conf -> write/create permissions
- /etc/resolv.conf.tail -> read permissions

OK brynet@ deraadt@ kn@
krw@ left the decision to other people who understand unveil(2)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/11 01:03:45

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddDelete.pm Error.pm PkgCreate.pm 

Log message:
tweak the way we report bugs
- the catch/catchall distinction is no longer relevant, strip some info
by default now
- use state->{cmd} to display the command name properly

This makes sure final displays show the command name.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/11 01:14:23

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddDelete.pm PkgCreate.pm State.pm 

Log message:
move the display of cmd into fatal, and don't say it's a fatal error, it's
already obvious


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/11 01:15:02

Modified files:
	regress/usr.sbin/pkg_add: Makefile temp1.ref temp2.ref temp3.ref 

Log message:
tweak tests to match simpler behavior
also actually check the return code now that it makes sense


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/07/11 03:28:54

Modified files:
	usr.sbin/switchd: switchd.conf.5 

Log message:
to avoid confusion, use the IANA-registered port rather than the old made-up
port in the manpage example. been sitting in my tree for ages and suggested
by someone on one of the mailing lists but I forget the details.


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/07/11 03:39:53

Modified files:
	sys/net        : pf.c 

Log message:
fix NULL pointer dereference, reported and fix tested by sthen

ok yasuoka


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/11 04:31:48

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) s_client

- Add undocumented options below.
-alpn, -certform, -dtls1, -host, -keyform, -keymatexport, -keymatexportlen,
-legacy_server_connect, -mtu, -no_ign_eof, -no_legacy_server_connect, -pass
-port, -serverpref, -sess_in, -sess_out, -status, -timeout, -use_srtp,
-verify_return_error

- Remove -psk and -psk_identity since not exist in source code.

I didn't add these 4 options since these were no-op.
-nextprotoneg, -legacy_renegotiation, -no_comp, -no_ssl2

This option was removed from manual in the past.
-no_ssl3

ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/11 04:37:28

Modified files:
	lib/libcrypto/arc4random: arc4random_linux.h 

Log message:
Using pthread_atfork instead of __register_atfork with uClibc on noMMU

uClibc on noMMU doesn't provide __register_atfork().
Reported by redbirdtek on Github issue.
https://github.com/libressl-portable/portable/issues/538

ok bcook@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/07/11 04:42:00

Log message:
    Import DBD::MariaDB, a fork of DBD::Mysql with lot of fixed bugs
    and new features.
    
    ok sthen@ on a slighter different version
    
    pkg/DESCR
    DBD::MariaDB is the Perl5 Database Interface driver for MariaDB and
    MySQL databases. In other words: DBD::MariaDB is an interface between
    the Perl programming language and the MariaDB/MySQL programming API
    that comes with the MariaDB/MySQL relational database management
    system. Most functions provided by this programming API are supported.
    
    Status:
    
    Vendor Tag:	giovanni
    Release Tags:	giovanni_20190711
    
    N ports/databases/p5-DBD-MariaDB/Makefile
    N ports/databases/p5-DBD-MariaDB/distinfo
    N ports/databases/p5-DBD-MariaDB/pkg/DESCR
    N ports/databases/p5-DBD-MariaDB/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/07/11 04:44:38

Modified files:
	databases      : Makefile 

Log message:
+p5-DBD-MariaDB


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/11 05:31:09

Modified files:
	gnu/usr.bin/clang: Makefile.inc 

Log message:
Compile clang with -fomit-frame-pointer on mips64. This releases the
frame pointer for better use and lets the compiler run a little faster.
The resulting compiler binary is a half bit smaller too.

Note that frame pointer elimination is not applicable everywhere.
mips64 has the tooling that allow its use in this case.

OK kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/11 05:56:53

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
there are three ways to authenticate 'AUTH PLAIN', 'AUTH PLAIN <creds>' and
'AUTH LOGIN', this ensures all three have credentials obfuscated in smtp
reports


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/11 05:57:36

Modified files:
	sys/kern       : uipc_socket.c 

Log message:
listen(2) should return EINVAL if the socket is connected.
This behavior matches NetBSD, POSIX, and our own man page.
Fix whitespace while here.
from Moritz Buhl; OK millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/11 07:06:46

Modified files:
	infrastructure/db: user.list 

Log message:
reserve uid 839 for exabgp


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/11 08:14:52

Modified files:
	net/exabgp     : Makefile distinfo 
	net/exabgp/patches: patch-setup_py 
	net/exabgp/pkg : DESCR PLIST 
Added files:
	net/exabgp/files: exabgp.conf 
	net/exabgp/patches: patch-dev_bin_python-profile 
	                    patch-dev_bin_pythonstats 
	                    patch-etc_exabgp_example-healthcheck_conf 
	                    patch-exabgp_daemon_env 
	                    patch-lib_exabgp_application_bgp_py 
	                    patch-lib_exabgp_application_cli_py 
	                    patch-lib_exabgp_application_healthcheck_py 
	                    patch-lib_exabgp_configuration_usage_py 
	                    patch-lib_exabgp_vendoring_profiler_py 
	                    patch-qa_sbin_bgp 
	net/exabgp/pkg : exabgp.rc 
Removed files:
	net/exabgp/files: exabgp 

Log message:
update to exabgp-4.1.2, add rc.d script for those running it as a daemon
rather than in testing.

this is a major update and 3.x configurations will need changing, for details
see https://github.com/Exa-Networks/exabgp/wiki/Migration-from-3.4-to-4.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/11 08:34:13

Modified files:
	devel/proj     : Makefile distinfo 

Log message:
Update to proj 6.1.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/07/11 10:28:13

Log message:
    Import xxhash-0.7.0.
    
    DESCR:
    xxHash is an extremely fast non-cryptographic hash algorithm, running at
    RAM speed limits. Code is highly portable, and hashes are identical on
    all platforms (little / big endian).
    
    Comments/suggestions from sthen@, juanfra@, and kn@. Thanks!
    
    OK sthen@, kn@
    
    Status:
    
    Vendor Tag:	bket
    Release Tags:	bket_20190711
    
    N ports/sysutils/xxhash/Makefile
    N ports/sysutils/xxhash/distinfo
    N ports/sysutils/xxhash/patches/patch-Makefile
    N ports/sysutils/xxhash/pkg/DESCR
    N ports/sysutils/xxhash/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/11 10:56:52

Modified files:
	usr.bin/mandoc : mdoc_argv.c 
	regress/usr.bin/mandoc/mdoc/Bl: column.in column.out_lint 

Log message:
When parsing a tab character that is not preceded by a space character
on an .It -column line, args() sets the MDOC_PHRASEQL flag to Quote
the Last word of the Phrase.  Even if it turns out this quoting is not
needed because the word is already quoted for other reasons, clear the
flag at the end of parsing the phrase, such that the flag does not leak
to the next phrase.

This patch fixes the bug that the trailing Macro on a line of the form
.It "word<tab>word" Ta word Macro<eol>
was incorrectly considered quoted and hence not parsed.

Bug found by Havard Eidnes (he@) with the NetBSD gettytab(5) manual page:
https://gnats.netbsd.org/cgi-bin/query-pr-single.pl?number=54361
Reported via Thomas Klausner (wiz@).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/11 11:01:15

Modified files:
	regress/usr.bin/mandoc/mdoc/Bl: column.out_ascii 
	                                column.out_markdown 

Log message:
fix date which got broken by Mdocdate during commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	tj@cvs.openbsd.org	2019/07/11 11:16:59

Modified files:
	archivers/lzo  : Makefile 
	archivers/py-lzo: Makefile 
	archivers/rzip : Makefile 
	archivers/unrar: Makefile 
	audio/libmpd   : Makefile 
	audio/musepack : Makefile 
	devel/argp-standalone: Makefile 
	devel/libaudiofile: Makefile 
	devel/nasm     : Makefile 

Log message:
switch more homepage and master_sites links to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/07/11 11:28:27

Modified files:
	www/phpmyadmin : Makefile distinfo 
	www/phpmyadmin/pkg: PLIST 

Log message:
security update to 4.9.0.2
fixes PMASA-2019-3 and PMASA-2019-4


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/07/11 11:28:32

Modified files:
	usr.bin/tsort  : tsort.c 

Log message:
Remove duplicate pledge(2) and comment from another era. While here also place
the final pledge "stdio" within main() for better readability.

OK espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/11 12:07:54

Modified files:
	sys/dev/wsfont : wsfont.c wsfont.h 

Log message:
Kill commented-out wsfont_remove().

Gets rid of an unused free(9) w/o size argument.

ok jan@, anton@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/11 12:20:18

Modified files:
	usr.bin/mg     : cmode.c dired.c extend.c funmap.c funmap.h 
	                 grep.c 

Log message:
Allow functions that have 1 or more parameters receive and process
multiple arguments when evaluated in a startup file or via one of the
'eval' commands.

This diff does treat the '(' and ')' chars differently during
evaluation than previously, in-so-far as they are not ignored if they
are at the end or start of a line now. However, even though these
characters are not ignored, this diff should not change the behaviour
of an extant .mg file, with '(' and ')' chars at the end and start of
a line.  This situation is accomodated for in this diff (with limited
testing though).


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/11 14:24:00

Modified files:
	devel/gettext  : Makefile 

Log message:
The msgmerge utility can use OpenMP; turn off for now.
From j@bitminer.ca


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/11 14:35:39

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-doc_nano_1 patch-src_Makefile_in 

Log message:
maintenance update to 4.3


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/11 14:58:54

Modified files:
	usr.sbin/smtpd : lka.c lka_report.c report_smtp.c smtp_session.c 
	                 smtpd.h 

Log message:
introduce link-reset to let smtpd report resets happening in a session


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/11 15:04:59

Modified files:
	usr.sbin/smtpd : lka.c lka_report.c report_smtp.c smtp_session.c 
	                 smtpd.h 

Log message:
modify link-identify so it reports if HELO or EHLO was used


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/11 15:18:06

Modified files:
	sys/arch/powerpc/include: atomic.h 

Log message:
Use "i" constrain instead of "n" constrain in inline assembly.  Makes clang
happy.

ok visa@, mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/11 15:40:03

Modified files:
	usr.sbin/smtpd : lka.c lka_report.c report_smtp.c smtp_session.c 
	                 smtpd.h 

Log message:
introduce link-auth to the smtp reporting stream so that filters may know
if a link has been authenticated successfully or not and for which user


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/11 18:04:59

Modified files:
	sbin/sysctl    : sysctl.c 
	sys/kern       : kern_sysctl.c kern_timeout.c 
	sys/sys        : sysctl.h timeout.h 

Log message:
sysctl(2): add KERN_TIMEOUT_STATS: timeout(9) status and statistics.

With these totals one can track the throughput of the timeout(9) layer
from userspace.

With input from mpi@.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/07/11 19:39:46

Modified files:
	lang/janet     : Makefile distinfo 

Log message:
Update janet to 1.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	visa@cvs.openbsd.org	2019/07/11 20:16:23

Modified files:
	security/gnupg : Makefile 

Log message:
Fix build with clang on mips64.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/07/11 20:49:57

Modified files:
	devel/sdl2-image: Makefile distinfo 

Log message:
update to sdl2-image 2.0.5

addresses TALOS-2019-0820 (CVE-2019-5051), TALOS-2019-0821
(CVE-2019-5052), TALOS-2019-0841, TALOS-2019-0842, TALOS-2019-0843, and
TALOS-2019-0844

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/07/11 20:59:26

Modified files:
	devel/sdl2-image: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
update to sdl2-image 2.0.5. Backport to -stable because of security
fixes.

addresses TALOS-2019-0820 (CVE-2019-5051), TALOS-2019-0821
(CVE-2019-5052), TALOS-2019-0841, TALOS-2019-0842, TALOS-2019-0843, and
TALOS-2019-0844

ok sthen@ (original PERMIT_PACKAGE_CDROM left in place)


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/11 21:03:49

Modified files:
	sys/arch/octeon/include: autoconf.h 
	sys/arch/octeon/octeon: autoconf.c machdep.c 

Log message:
Make rootdev parsing a little saner. The "rootdev=" prefix can be
removed already in process_bootargs(). Pass the value as a parameter
to parse_uboot_root(). Set uboot_rootdev only if parsing succeeds.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/11 21:09:23

Modified files:
	sys/arch/octeon/octeon: machdep.c 

Log message:
Remove unnecessary extern declarations.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/11 21:56:21

Modified files:
	usr.bin/ssh    : sftp-client.c 

Log message:
print explicit "not modified" message if a file was requested for
resumed download but was considered already complete.

bz#2978 ok dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/11 22:08:39

Modified files:
	usr.bin/ssh    : ssh-keyscan.c 

Log message:
include SHA2-variant RSA key algorithms in KEX proposal; allows
ssh-keyscan to harvest keys from servers that disable olde SHA1
ssh-rsa. bz#3029 from Jakub Jelen


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/07/11 22:13:15

Modified files:
	lang/ruby      : Makefile.inc 

Log message:
Update to PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/07/11 22:42:35

Modified files:
	net/weechat    : Makefile distinfo 
	net/weechat/patches: patch-src_plugins_CMakeLists_txt 
	                     patch-src_plugins_lua_CMakeLists_txt 
	                     patch-src_plugins_python_CMakeLists_txt 
	                     patch-src_plugins_ruby_CMakeLists_txt 
	net/weechat/pkg: PLIST-main 
Added files:
	net/weechat/patches: patch-src_core_hook_wee-hook-timer_h 
	                     patch-tests_CMakeLists_txt 

Log message:
Update weecaht to 2.5

Notable Port changes:
- Spell checking is now default
- Simplify pre-configure
- Enable tests
- s/_CDROM//

OK abieber


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/07/11 23:08:21

Modified files:
	sysutils/raspberrypi-firmware: Makefile distinfo 
	sysutils/raspberrypi-firmware/pkg: PLIST 

Log message:
update to 1.20190709

adds rpi4 files without breaking U-Boot like 1.20190620 did
https://github.com/raspberrypi/firmware/issues/1157


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/07/12 00:09:32

Modified files:
	sysutils       : Makefile 

Log message:
+xxhash


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/12 00:22:03

Modified files:
	geo/gdal       : Makefile distinfo 

Log message:
Update to gdal 3.0.1.

See https://trac.osgeo.org/gdal/wiki/Release/3.0.1-News


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/12 00:30:55

Modified files:
	lib/libsndio   : amsg.h aucat.c 
	usr.bin/sndiod : dev.c dev.h sock.c 

Log message:
Add affinity between the program and its mixer control.

Currently, if there are two instances of the same program, sndiod will
allocate one volume control to each. If both programs disconnect and
reconnect, the information of which control is assigned to which
program is lost. This makes difficult to run two instances of a player
and crossfade between each other with a MIDI controller.

To address this, the program chooses a 32-bit "id" (for now the
process pid) and sends it to the server. The server records the id in
the client's slot structure.  When the server accepts a new
connection, it uses the id to identify the slot the client used during
the previous connection; if it was not recycled yet, it's assigned to
the program.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/12 02:54:14

Modified files:
	devel/libaudiofile: Makefile 

Log message:
Unbreak: changing HOMEPAGE requires a bump


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/12 04:21:09

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix manual openssl(1) s_server

- Add undocumented options below.
-alpn, -cert2, -certform, -dcertform, -dkeyform, -dpass, -dtls1, -key2,
-keyform, -keymatexport, -keymatexportlen, -mtu, -named_curve, -no_cache,
-no_ecdhe, -no_ticket, -pass, -port, -servername, -servername_fatal,
-status, -status_timeout, -status_url, -status_verbose, -timeout,
-tlsextdebug, -use_srtp, -verify_return_error

- Remove -hack, -psk and -psk_hint since not exist in source code.

I didn't add these 5 options since these were no-op.
-chain, -legacy_renegotiation, -nextprotoneg, -no_comp, -no_ssl2

This option was removed from manual in the past.
-no_ssl3

ok and suggestions from jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/12 06:39:10

Modified files:
	usr.bin/su     : su.1 

Log message:
Delete a sentence about the prompt that has nothing to do with su(1).
It depends on the shell, is done by the shell if at all, is documented
in the ksh(1) manual, and who knows what other shells may or may not do.
Suggested by deraadt@.


CVSROOT:	/cvs
Module name:	src
Changes by:	solene@cvs.openbsd.org	2019/07/12 07:56:28

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/isofs/cd9660: cd9660_vnops.c 
	sys/kern       : kern_descrip.c kern_sysctl.c vfs_syscalls.c 
	                 vfs_vnops.c 
	sys/miscfs/fuse: fuse_vnops.c 
	sys/msdosfs    : msdosfs_vnops.c 
	sys/nfs        : nfs_kq.c 
	sys/sys        : file.h 
	sys/tmpfs      : tmpfs_vnops.c 
	sys/ufs/ufs    : ufs_vnops.c 

Log message:
Revert anton@ changes about read/write unlocking
https://marc.info/?l=openbsd-cvs&m=156277704122293&w=2

ok anton@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/07/12 09:01:33

Modified files:
	usr.sbin/acme-client: http.c 

Log message:
According to RFC 8555 we MUST send an User-Agent.
Pointed out and diff by Wolf, thanks!
Tweaked by me.
OK benno


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 09:50:35

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: distinfo 
	security/letsencrypt/client/pkg: PLIST 
	security/letsencrypt/py-acme: distinfo 

Log message:
update to certbot/py-acme 0.36.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 09:56:21

Modified files:
	telephony/asterisk: Makefile distinfo 

Log message:
update to asterisk-16.4.1

AST-2019-002: Remote crash vulnerability with MESSAGE messages:
A specially crafted SIP in-dialog MESSAGE message can cause Asterisk to crash.

AST-2019-003: Remote Crash Vulnerability in chan_sip channel driver:
When T.38 faxing is done in Asterisk a T.38 reinvite may be sent to an
endpoint to switch it to T.38. If the endpoint responds with an improperly
formatted SDP answer including both a T.38 UDPTL stream and an audio or video
stream containing only codecs not allowed on the SIP peer or user a crash will
occur. The code incorrectly assumes that there will be at least one common
codec when T.38 is also in the SDP answer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 09:58:44

Modified files:
	telephony/asterisk: Tag: OPENBSD_6_5 Makefile distinfo 
	telephony/asterisk/patches: Tag: OPENBSD_6_5 
	                            patch-build_tools_cflags_xml 
	                            patch-res_res_odbc_c 
	                            patch-res_res_pjsip_pjsip_options_c 
	                            patch-res_res_pjsip_registrar_c 
	                            patch-third-party_pjproject_Makefile 
	telephony/asterisk/pkg: Tag: OPENBSD_6_5 PLIST-main 

Log message:
MFC update to asterisk-16.4.1

AST-2019-002: Remote crash vulnerability with MESSAGE messages:
A specially crafted SIP in-dialog MESSAGE message can cause Asterisk to crash.

AST-2019-003: Remote Crash Vulnerability in chan_sip channel driver:
When T.38 faxing is done in Asterisk a T.38 reinvite may be sent to an
endpoint to switch it to T.38. If the endpoint responds with an improperly
formatted SDP answer including both a T.38 UDPTL stream and an audio or video
stream containing only codecs not allowed on the SIP peer or user a crash will
occur. The code incorrectly assumes that there will be at least one common
codec when T.38 is also in the SDP answer.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/12 10:53:57

Modified files:
	share/man/man9 : Makefile rtalloc.9 
Added files:
	share/man/man9 : rtable_walk.9 

Log message:
Document & cross Xr rtable_walk(9).

With inputs from jmc@ and schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/12 10:57:45

Modified files:
	share/man/man9 : rtrequest.9 

Log message:
non-null -> not .Dv NULL

Suggested by schwarze@ in a different thread


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 11:05:59

Modified files:
	www/composer   : Makefile distinfo 

Log message:
update to composer-1.8.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/12 11:54:38

Modified files:
	security/keybase: Makefile distinfo 
	security/keybase/pkg: README 
Added files:
	security/keybase/patches: 
	                          patch-go_kbfs_libkbfs_folder_branch_ops_go 

Log message:
Update to keybase 4.2.0. Tests and OK abieber@ (MAINTAINER).


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/12 13:28:48

Modified files:
	bin/ed         : ed.1 

Log message:
Minor polishing:
* Delete a stray blank from the command line synopsis
and add the missing .Ar markup to it.
* Do not mention the terminating newline for the empty command
since it isn't mentioned for any other command either.
* Make the description of the empty command easier to understand.
Joint work with martijn@ and jmc@.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/12 13:31:29

Modified files:
	regress/usr.sbin/httpd/tests: Makefile 
	regress/usr.sbin/ospfd: Makefile 
	regress/usr.sbin/relayd: Makefile 
	regress/usr.sbin/switchd: Makefile 
	regress/usr.sbin/syslogd: Makefile 
	regress/sys/kern/sosplice: Makefile.inc 
	regress/sys/kern/sosplice/error: Makefile 
	regress/sys/kern/sosplice/perf: Makefile 
	regress/sys/kern/sosplice/tcp: Makefile 
	regress/sys/kern/sosplice/udp: Makefile 
	regress/sys/net/pf_divert: Makefile 

Log message:
Test should also run if there is no obj directory.  Name regress
targets consistently with a run- prefix.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/12 13:43:51

Modified files:
	sys/netinet    : tcp_input.c tcp_usrreq.c tcp_var.h 
	usr.bin/netstat: inet.c 

Log message:
Count the number of TCP SACK options that were dropped due to the
sack hole list length or pool limit.
OK claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 14:44:13

Modified files:
	archivers/arc  : Makefile 
	archivers/brotli: Makefile 
	archivers/cabextract: Makefile 
	archivers/deco : Makefile 
	archivers/deutex: Makefile 
	archivers/fastjar: Makefile 
	archivers/fuse-zip: Makefile 
	archivers/gcab : Makefile 
	archivers/gcpio: Makefile 
	archivers/geteltorito: Makefile 
	archivers/gshar+gunshar: Makefile 
	archivers/gtar : Makefile 
	archivers/ha   : Makefile 
	archivers/hs-zip-archive: Makefile 
	archivers/hs-zlib: Makefile 
	archivers/innoextract: Makefile 
	archivers/libtar: Makefile 
	archivers/libzip: Makefile 
	archivers/lxsplit: Makefile 
	archivers/lz4json: Makefile 
	archivers/lzip/clzip: Makefile 
	archivers/lzip/lunzip: Makefile 
	archivers/lzip/lzip: Makefile 
	archivers/lzip/lziprecover: Makefile 
	archivers/lzip/lzlib: Makefile 
	archivers/lzip/pdlzip: Makefile 
	archivers/lzip/plzip: Makefile 
	archivers/lzip/tarlz: Makefile 
	archivers/lzo  : Makefile 
	archivers/lzop : Makefile 
	archivers/makeself: Makefile 
	archivers/p5-Archive-Extract: Makefile 
	archivers/p5-Archive-Zip: Makefile 
	archivers/p5-Compress-Bzip2: Makefile 
	archivers/p5-Compress-LZO: Makefile 
	archivers/p5-POE-Filter-Zlib: Makefile 
	archivers/p5-PerlIO-gzip: Makefile 
	archivers/par1cmdline: Makefile 
	archivers/par2cmdline: Makefile 
	archivers/pecl-lzf: Makefile 
	archivers/pecl-rar: Makefile 
	archivers/pigz : Makefile 
	archivers/py-libarchive-c: Makefile 
	archivers/py-lzo: Makefile 
	archivers/quazip: Makefile 
	archivers/ripole: Makefile 
	archivers/ruby-minitar: Makefile 
	archivers/rzip : Makefile 
	archivers/sltar: Makefile 
	archivers/snappy: Makefile 
	archivers/ucl  : Makefile 
	archivers/unrar: Makefile 
	archivers/unshield: Makefile 
	archivers/unzip: Makefile 
	archivers/woff2: Makefile 
	archivers/xdms : Makefile 
	archivers/xz   : Makefile 
	archivers/zip  : Makefile 
	archivers/zipios: Makefile 
	archivers/zoo  : Makefile 
	archivers/zopfli: Makefile 
	archivers/zstd : Makefile 
	archivers/zziplib: Makefile 
	astro/ansiweather: Makefile 
	astro/celestia : Makefile 
	astro/dgpsip   : Makefile 
	astro/jday     : Makefile 
	astro/phoon    : Makefile 
	astro/py-metar : Makefile 
	astro/wcslib   : Makefile 
	astro/wmglobe  : Makefile 
	astro/wmmoonclock: Makefile 
	astro/wmspaceweather: Makefile 
	astro/wmsun    : Makefile 
	audio/abcde    : Makefile 
	audio/adplay   : Makefile 
	audio/adplug   : Makefile 
	audio/alac_decoder: Makefile 
	audio/aqualung : Makefile 
	audio/ario     : Makefile 
	audio/ascd     : Makefile 
	audio/aucatctl : Makefile 
	audio/audacious-plugins: Makefile 
	audio/calf     : Makefile 
	audio/cantata  : Makefile 
	audio/caps-plugins: Makefile 
	audio/cd-discid: Makefile 
	audio/cdparanoia: Makefile 
	audio/celt     : Makefile 
	audio/celt07   : Makefile 
	audio/checkmate: Makefile 
	audio/chromaprint: Makefile 
	audio/clementine: Makefile 
	audio/cmixer   : Makefile 
	audio/cmt      : Makefile 
	audio/cmu-sphinx3: Makefile 
	audio/cmu-sphinxbase: Makefile 
	audio/cmus     : Makefile 
	audio/cplay    : Makefile 
	audio/cuetools : Makefile 
	audio/curseradio: Makefile 
	audio/deadbeef : Makefile 
	audio/disc-cover: Makefile 
	audio/dumb     : Makefile 
	audio/easytag  : Makefile 
	audio/espeak   : Makefile 
	audio/exaile   : Makefile 
	audio/faudio   : Makefile 
	audio/flac     : Makefile 
	audio/flac123  : Makefile 
	audio/fluidsynth: Makefile 
	audio/fookebox : Makefile 
	audio/freealut : Makefile 
	audio/gimmix   : Makefile 
	audio/glyr     : Makefile 
	audio/gmpc     : Makefile 
	audio/gmpc-plugins: Makefile 
	audio/goattracker: Makefile 
	audio/gogglesmm: Makefile 
	audio/gqmpeg   : Makefile 
	audio/gradio   : Makefile 
	audio/grip     : Makefile 
	audio/gsound   : Makefile 
	audio/gtkpod   : Makefile 
	audio/herrie   : Makefile 
	audio/hs-libmpd: Makefile 
	audio/hydrogen : Makefile 
	audio/id3ed    : Makefile 
	audio/id3lib   : Makefile 
	audio/jack     : Makefile 
	audio/ladspa   : Makefile 
	audio/liba52   : Makefile 
	audio/libao    : Makefile 
	audio/libbs2b  : Makefile 
	audio/libcddb  : Makefile 
	audio/libcdio  : Makefile 
	audio/libcdio-paranoia: Makefile 
	audio/libcue   : Makefile 
	audio/libdca   : Makefile 
	audio/libdiscid: Makefile 
	audio/libgpod  : Makefile 
	audio/libid3tag: Makefile 
	audio/liblastfm: Makefile 
	audio/libmad   : Makefile 
	audio/libmikmod: Makefile 
	audio/libmp3splt: Makefile 
	audio/libmpd   : Makefile 
	audio/libmpdclient: Makefile 
	audio/libmusicbrainz: Makefile 
	audio/libmusicbrainz5: Makefile 
	audio/libnjb   : Makefile 
	audio/libofa   : Makefile 
	audio/libogg   : Makefile 
	audio/libopusenc: Makefile 
	audio/libsamplerate: Makefile 
	audio/libsidplay: Makefile 
	audio/libsndfile: Makefile 
	audio/libsoxr  : Makefile 
	audio/libvorbis: Makefile 
	audio/libworkman: Makefile 
	audio/libxmp   : Makefile 
	audio/lmms     : Makefile 
	audio/mac      : Makefile 
	audio/madplay  : Makefile 
	audio/mcp-plugins: Makefile 
	audio/midish   : Makefile 
	audio/mikmod   : Makefile 
	audio/milkytracker: Makefile 
	audio/mkplaylist: Makefile 
	audio/mono-taglib: Makefile 
	audio/morseplayer: Makefile 
	audio/mp3applygain: Makefile 
	audio/mp3blaster: Makefile 
	audio/mp3cut   : Makefile 
	audio/mp3info  : Makefile 
	audio/mp3splt  : Makefile 
	audio/mp3splt-gtk: Makefile 
	audio/mp3wrap  : Makefile 
	audio/mpc      : Makefile 
	audio/mpd      : Makefile 
	audio/mpd-add-similar: Makefile 
	audio/mpdscribble: Makefile 
	audio/mpg123   : Makefile 
	audio/mpg321   : Makefile 
	audio/mscore   : Makefile 
	audio/mt-daapd : Makefile 
	audio/multimux : Makefile 
	audio/mumble   : Makefile 
	audio/musepack : Makefile 
	audio/musique  : Makefile 
	audio/nap      : Makefile 
	audio/ncmpc    : Makefile 
	audio/ncmpcpp  : Makefile 
	audio/normalize: Makefile 
	audio/nosefart : Makefile 
	audio/nspmod   : Makefile 
	audio/ocp      : Makefile 
	audio/openal   : Makefile 
	audio/opennap  : Makefile 
	audio/opus     : Makefile 
	audio/opus-tools: Makefile 
	audio/opusfile : Makefile 
	audio/p5-Audio-CD: Makefile 
	audio/p5-Audio-FLAC-Header: Makefile 
	audio/p5-Audio-M4P: Makefile 
	audio/p5-Audio-MPD: Makefile 
	audio/p5-Audio-MPD-Common: Makefile 
	audio/p5-Audio-Musepack: Makefile 
	audio/p5-Audio-Scan: Makefile 
	audio/p5-Audio-Scrobbler: Makefile 
	audio/p5-Audio-WMA: Makefile 
	audio/p5-CDDB-File: Makefile 
	audio/p5-CDDB_get: Makefile 
	audio/p5-MP3-ID3v1Tag: Makefile 
	audio/p5-MP3-Info: Makefile 
	audio/p5-MP3-Tag: Makefile 
	audio/p5-MP4-Info: Makefile 
	audio/p5-MPEG-Audio-Frame: Makefile 
	audio/p5-Music-Audioscrobbler-MPD: Makefile 
	audio/p5-Music-Audioscrobbler-Submit: Makefile 
	audio/p5-MusicBrainz-DiscID: Makefile 
	audio/p5-Ogg-Vorbis-Header: Makefile 
	audio/p5-Ogg-Vorbis-Header-PurePerl: Makefile 
	audio/p5-POE-Component-Client-MPD: Makefile 
	audio/p5-cddb  : Makefile 
	audio/p5-gnupod: Makefile 
	audio/p5-libvorbis: Makefile 
	audio/pacpl    : Makefile 
	audio/parlatype: Makefile 
	audio/paulstretch: Makefile 
	audio/pavucontrol: Makefile 
	audio/pianobar : Makefile 
	audio/picard   : Makefile 
	audio/pithos   : Makefile 
	audio/pms      : Makefile 
	audio/portaudio-svn: Makefile 
	audio/portmidi : Makefile 
	audio/potamus  : Makefile 
	audio/puddletag: Makefile 
	audio/pulseaudio: Makefile 
	audio/py-acoustid: Makefile 
	audio/py-ao    : Makefile 
	audio/py-audio : Makefile 
	audio/py-cddb  : Makefile 
	audio/py-eyed3 : Makefile 
	audio/py-id3   : Makefile 
	audio/py-last  : Makefile 
	audio/py-mpd   : Makefile 
	audio/py-mpd2  : Makefile 
	audio/py-ogg   : Makefile 
	audio/py-tagger: Makefile 
	audio/py-tagpy : Makefile 
	audio/py-vorbis: Makefile 
	audio/pykaraoke: Makefile 
	audio/pympd    : Makefile 
	audio/qsynth   : Makefile 
	audio/radiotray: Makefile 
	audio/rhythmbox: Makefile 
	audio/rtunes   : Makefile 
	audio/rubberband: Makefile 
	audio/ruby-taglib: Makefile 
	audio/ruby-vorbis_comment: Makefile 
	audio/schismtracker: Makefile 
	audio/scmpc    : Makefile 
	audio/shntool  : Makefile 
	audio/sidplay  : Makefile 
	audio/siren    : Makefile 
	audio/snack    : Makefile 
	audio/solfege  : Makefile 
	audio/sonata   : Makefile 
	audio/sound-theme-freedesktop: Makefile 
	audio/soundtouch: Makefile 
	audio/soundtracker: Makefile 
	audio/sox      : Makefile 
	audio/speech-dispatcher: Makefile 
	audio/speex    : Makefile 
	audio/streamripper: Makefile 
	audio/swh-plugins: Makefile 
	audio/tagtool  : Makefile 
	audio/tap-plugins: Makefile 
	audio/timidity : Makefile 
	audio/tracker  : Makefile 
	audio/twolame  : Makefile 
	audio/umurmur  : Makefile 
	audio/vamp-plugin-sdk: Makefile 
	audio/vgmplay  : Makefile 
	audio/vlorb    : Makefile 
	audio/vorbis-tools: Makefile 
	audio/vorbisgain: Makefile 
	audio/wavpack  : Makefile 
	audio/wmmp     : Makefile 
	audio/wmmp3    : Makefile 
	audio/wmtune   : Makefile 
	audio/xcd      : Makefile 
	audio/xcdplayer: Makefile 
	audio/xmcd     : Makefile 
	audio/xmms2    : Makefile 
	audio/xmms2-scrobbler: Makefile 
	audio/xmp      : Makefile 
	audio/ympd     : Makefile 
	audio/zeya     : Makefile 
	benchmarks/blogbench: Makefile 
	benchmarks/bonnie++: Makefile 
	benchmarks/fs_mark: Makefile 
	benchmarks/httperf: Makefile 
	benchmarks/netperf-wrapper: Makefile 
	benchmarks/netpipe: Makefile 
	benchmarks/netstrain: Makefile 
	benchmarks/p5-Dumbbench: Makefile 
	benchmarks/randread: Makefile 
	benchmarks/siege: Makefile 
	benchmarks/smtp-benchmark: Makefile 
	benchmarks/speedtest-cli: Makefile 
	benchmarks/sysbench: Makefile 
	benchmarks/tcpblast: Makefile 
	benchmarks/tsung: Makefile 
	benchmarks/ubench: Makefile 
	benchmarks/wrk : Makefile 
	biology/AcePerl: Makefile 
	biology/bioperl: Makefile 
	biology/emboss : Makefile 
	biology/hmmer  : Makefile 
	biology/nutdb  : Makefile 
	biology/p5-Bio-ASN1-EntrezGene: Makefile 
	biology/py-biopython: Makefile 
	books/AsteriskGuide: Makefile 
	books/AsteriskTFOT: Makefile 
	books/autobook : Makefile 
	books/cvs-guide: Makefile 
	books/diveintopython: Makefile 
	books/diveintopython3: Makefile 
	books/docbook-guide: Makefile 
	books/gcide    : Makefile 
	books/haskell-report: Makefile 
	books/man-pages-posix: Makefile 
	books/mason-book: Makefile 
	books/svnbook  : Makefile 
	books/thinking-forth: Makefile 
	books/utp      : Makefile 
	books/vol3ol   : Makefile 
	books/vol6a    : Makefile 
	cad/abc        : Makefile 
	cad/fritzing   : Makefile 
	cad/geda-gaf   : Makefile 
	cad/gerbv      : Makefile 
	cad/gnucap     : Makefile 
	cad/graywolf   : Makefile 
	cad/gtkwave    : Makefile 
	cad/kicad      : Makefile 
	cad/kicad-library: Makefile 
	cad/klogic     : Makefile 
	cad/magic      : Makefile 
	cad/necpp      : Makefile 
	cad/netgen     : Makefile 
	cad/ngspice    : Makefile 
	cad/openscad   : Makefile 
	cad/opensta    : Makefile 
	cad/pcb        : Makefile 
	cad/qelectrotech: Makefile 
	cad/qrouter    : Makefile 
	cad/qucs       : Makefile 
	cad/qucs-s     : Makefile 
	cad/tkgate     : Makefile 
	cad/xcircuit   : Makefile 
	cad/xnecview   : Makefile 
	cad/xschem     : Makefile 
	cad/yosys      : Makefile 
	chinese/c2t    : Makefile 
	chinese/cconv  : Makefile 
	chinese/libchewing: Makefile 
	chinese/libpinyin: Makefile 
	chinese/py-zhCodecs: Makefile 
	chinese/ttfm   : Makefile 
	comms/amtterm  : Makefile 
	comms/birda    : Makefile 
	comms/bottlerocket: Makefile 
	comms/c3270    : Makefile 
	comms/chirp    : Makefile 
	comms/colrdx   : Makefile 
	comms/dfu-util : Makefile 
	comms/efax     : Makefile 
	comms/ems-flasher: Makefile 
	comms/fldigi   : Makefile 
	comms/flipit   : Makefile 
	comms/gammu    : Makefile 
	comms/gmfsk    : Makefile 
	comms/gnuradio : Makefile 
	comms/gpsk31   : Makefile 
	comms/hackrf   : Makefile 
	comms/hamlib   : Makefile 
	comms/hylafax  : Makefile 
	comms/jpilot   : Makefile 
	comms/kermit   : Makefile 
	comms/lcdproc  : Makefile 
	comms/libhidapi: Makefile 
	comms/mgetty+sendfax: Makefile 
	comms/minicom  : Makefile 
	comms/minimodem: Makefile 
	comms/owx      : Makefile 
	comms/p5-Device-Gsm: Makefile 
	comms/p5-Device-Modem: Makefile 
	comms/p5-Device-SerialPort: Makefile 
	comms/p5-SendPage: Makefile 
	comms/picocom  : Makefile 
	comms/pilot-link: Makefile 
	comms/py-gammu : Makefile 
	comms/qodem    : Makefile 
	comms/qpage    : Makefile 
	comms/qtserialport: Makefile 
	comms/rtl-sdr  : Makefile 
	comms/scmxx    : Makefile 
	comms/seyon    : Makefile 
	comms/sigrok   : Makefile.inc 
	comms/spisniffer: Makefile 
	comms/sredird  : Makefile 
	comms/tkhylafax: Makefile 
	comms/tlf      : Makefile 
	comms/wammu    : Makefile 
	comms/wy60     : Makefile 
	comms/x3270    : Makefile 
	comms/xastir   : Makefile 
	comms/xdx      : Makefile 
	comms/xlog     : Makefile 
	converters/base64: Makefile 
	converters/bdf2psf: Makefile 
	converters/convmv: Makefile 
	converters/d1489: Makefile 
	converters/dos2unix: Makefile 
	converters/enca: Makefile 
	converters/fondu: Makefile 
	converters/html2text: Makefile 
	converters/k2pdfopt: Makefile 
	converters/lastools: Makefile 
	converters/libpst: Makefile 
	converters/libunistring: Makefile 
	converters/libytnef: Makefile 
	converters/lua-iconv: Makefile 
	converters/lua-utf8: Makefile 
	converters/mpack: Makefile 
	converters/opencc: Makefile 
	converters/otf2bdf: Makefile 
	converters/p5-Calendar-Simple: Makefile 
	converters/p5-Catalyst-Plugin-Charsets-Japanese: Makefile 
	converters/p5-Catalyst-View-JSON: Makefile 
	converters/p5-Convert-ASCII-Armour: Makefile 
	converters/p5-Convert-ASN1: Makefile 
	converters/p5-Convert-BER: Makefile 
	converters/p5-Convert-BinHex: Makefile 
	converters/p5-Convert-Binary-C: Makefile 
	converters/p5-Convert-Color: Makefile 
	converters/p5-Convert-PEM: Makefile 
	converters/p5-Convert-TNEF: Makefile 
	converters/p5-Convert-UU: Makefile 
	converters/p5-Convert-UUlib: Makefile 
	converters/p5-Cpanel-JSON-XS: Makefile 
	converters/p5-Date-Tolkien-Shire: Makefile 
	converters/p5-Date-Tolkien-Shire-Data: Makefile 
	converters/p5-DateManip: Makefile 
	converters/p5-Encode-IMAPUTF7: Makefile 
	converters/p5-Finance-Currency-Convert-XE: Makefile 
	converters/p5-JSON: Makefile 
	converters/p5-JSON-DWIW: Makefile 
	converters/p5-JSON-MaybeXS: Makefile 
	converters/p5-JSON-XS: Makefile 
	converters/p5-JSON-XS-VersionOneAndTwo: Makefile 
	converters/p5-Jcode: Makefile 
	converters/p5-MARC-Record: Makefile 
	converters/p5-Net-IDN-Encode: Makefile 
	converters/p5-Net-IDN-Nameprep: Makefile 
	converters/p5-Sereal-Decoder: Makefile 
	converters/p5-Sereal-Encoder: Makefile 
	converters/p5-Text-Iconv: Makefile 
	converters/p5-Types-Serialiser: Makefile 
	converters/p5-Unicode-LineBreak: Makefile 
	converters/p5-Unicode-Map: Makefile 
	converters/p5-Unicode-Map8: Makefile 
	converters/p5-Unicode-MapUTF8: Makefile 
	converters/p5-Unicode-String: Makefile 
	converters/p5-Unicode-Stringprep: Makefile 
	converters/pflogx: Makefile 
	converters/ppmtoTbmp: Makefile 
	converters/py-cjkcodecs: Makefile 
	converters/py-html2text: Makefile 
	converters/py-iconvcodec: Makefile 
	converters/py-mini-amf: Makefile 
	converters/qprint: Makefile 
	converters/recode: Makefile 
	converters/ripmime: Makefile 
	converters/rpm2cpio: Makefile 
	converters/ruby-multi_json: Makefile 
	converters/sqlite2mdoc: Makefile 
	converters/unoconv: Makefile 
	converters/unsf: Makefile 
	converters/uudeview: Makefile 
	converters/wv  : Makefile 
	converters/wv2 : Makefile 
	converters/xlhtml: Makefile 
	converters/xmltoman: Makefile 
	databases/architect: Makefile 
	databases/barman: Makefile 
	databases/citus: Makefile 
	databases/db   : Makefile.inc 
	databases/evolution-data-server: Makefile 
	databases/gdbm : Makefile 
	databases/gnats: Makefile 
	databases/gq   : Makefile 
	databases/hs-HDBC: Makefile 
	databases/hs-HDBC-sqlite3: Makefile 
	databases/influxdb: Makefile 
	databases/jxplorer: Makefile 
	databases/kdb  : Makefile 
	databases/kexi : Makefile 
	databases/ksql : Makefile 
	databases/kyotocabinet: Makefile 
	databases/lbdb : Makefile 
	databases/leveldb: Makefile 
	databases/libdbi: Makefile 
	databases/libdbi-drivers: Makefile 
	databases/libpqxx: Makefile 
	databases/libzdb: Makefile 
	databases/liquibase: Makefile 
	databases/luadbi: Makefile 
	databases/lualdap: Makefile 
	databases/luasqlite3: Makefile 
	databases/luma : Makefile 
	databases/mariadb: Makefile 
	databases/mdbtools: Makefile 
	databases/mongodb: Makefile 
	databases/mydumper: Makefile 
	databases/mysql-utilities: Makefile 
	databases/mysql-zrm: Makefile 
	databases/mysql2pgsql: Makefile 
	databases/mytop: Makefile 
	databases/openldap23: Makefile 
	databases/p5-AnyEvent-CouchDB: Makefile 
	databases/p5-AsciiDB-TagFile: Makefile 
	databases/p5-BerkeleyDB: Makefile 
	databases/p5-CGI-Application-Plugin-DBH: Makefile 
	databases/p5-Catalyst-Controller-Rose: Makefile 
	databases/p5-Catalyst-Model-CDBI: Makefile 
	databases/p5-Catalyst-Model-DBI: Makefile 
	databases/p5-Catalyst-Model-DBIC-Schema: Makefile 
	databases/p5-Catalyst-Model-DBIDM: Makefile 
	databases/p5-Catalyst-Model-RDBO: Makefile 
	databases/p5-Class-DBI: Makefile 
	databases/p5-Class-DBI-AbstractSearch: Makefile 
	databases/p5-Class-DBI-AsForm: Makefile 
	databases/p5-Class-DBI-FromCGI: Makefile 
	databases/p5-Class-DBI-FromForm: Makefile 
	databases/p5-Class-DBI-Loader: Makefile 
	databases/p5-Class-DBI-Loader-Relationship: Makefile 
	databases/p5-Class-DBI-Pager: Makefile 
	databases/p5-Class-DBI-Plugin-RetrieveAll: Makefile 
	databases/p5-Class-DBI-Plugin-Type: Makefile 
	databases/p5-Class-DBI-SQLite: Makefile 
	databases/p5-Class-DBI-mysql: Makefile 
	databases/p5-CouchDB-View: Makefile 
	databases/p5-DBD-CSV: Makefile 
	databases/p5-DBD-Chart: Makefile 
	databases/p5-DBD-LDAP: Makefile 
	databases/p5-DBD-Mock: Makefile 
	databases/p5-DBD-Pg: Makefile 
	databases/p5-DBD-SQLite: Makefile 
	databases/p5-DBD-SQLite2: Makefile 
	databases/p5-DBD-XBase: Makefile 
	databases/p5-DBD-mysql: Makefile 
	databases/p5-DBD-mysqlPP: Makefile 
	databases/p5-DBI: Makefile 
	databases/p5-DBI-Shell: Makefile 
	databases/p5-DBICx-TestDatabase: Makefile 
	databases/p5-DBIx-Class: Makefile 
	databases/p5-DBIx-Class-Cursor-Cached: Makefile 
	databases/p5-DBIx-Class-DynamicDefault: Makefile 
	databases/p5-DBIx-Class-HTMLWidget: Makefile 
	databases/p5-DBIx-Class-IntrospectableM2M: Makefile 
	databases/p5-DBIx-Class-Schema-Loader: Makefile 
	databases/p5-DBIx-Class-TimeStamp: Makefile 
	databases/p5-DBIx-Class-UUIDColumns: Makefile 
	databases/p5-DBIx-Class-Validation: Makefile 
	databases/p5-DBIx-Connector: Makefile 
	databases/p5-DBIx-ContextualFetch: Makefile 
	databases/p5-DBIx-DBSchema: Makefile 
	databases/p5-DBIx-DWIW: Makefile 
	databases/p5-DBIx-DataModel: Makefile 
	databases/p5-DBIx-Migration: Makefile 
	databases/p5-DBIx-SearchBuilder: Makefile 
	databases/p5-DBIx-Simple: Makefile 
	databases/p5-DBIx-XHTML_Table: Makefile 
	databases/p5-DBM-Deep: Makefile 
	databases/p5-Data-Page: Makefile 
	databases/p5-Data-Pageset: Makefile 
	databases/p5-Data-RandomPerson: Makefile 
	databases/p5-GDBM_File: Makefile 
	databases/p5-Ima-DBI: Makefile 
	databases/p5-Jifty-DBI: Makefile 
	databases/p5-Mojo-Pg: Makefile 
	databases/p5-Redis: Makefile 
	databases/p5-Rose-DB: Makefile 
	databases/p5-Rose-DB-Object: Makefile 
	databases/p5-Rose-DateTime: Makefile 
	databases/p5-Rose-Object: Makefile 
	databases/p5-SQL-Abstract: Makefile 
	databases/p5-SQL-Abstract-Limit: Makefile 
	databases/p5-SQL-ReservedWords: Makefile 
	databases/p5-SQL-Statement: Makefile 
	databases/p5-SQL-Translator: Makefile 
	databases/p5-Sort-SQL: Makefile 
	databases/p5-Tangram: Makefile 
	databases/p5-Tie-DBI: Makefile 
	databases/p5-ldap: Makefile 
	databases/p5-pgsql: Makefile 
	databases/p5-sybperl: Makefile 
	databases/pecl-redis: Makefile 
	databases/percona-toolkit: Makefile 
	databases/pg-toolbox: Makefile 
	databases/pg_stats_reporter: Makefile 
	databases/pg_statsinfo: Makefile 
	databases/pgadmin3: Makefile 
	databases/pgbadger: Makefile 
	databases/pgcluu: Makefile 
	databases/pgfouine: Makefile 
	databases/pgloader: Makefile 
	databases/pgmodeler: Makefile 
	databases/pgtcl: Makefile 
	databases/pgworksheet: Makefile 
	databases/pkglocatedb: Makefile 
	databases/ports-readmes: Makefile 
	databases/ports-readmes-dancer: Makefile 
	databases/postgresql: Makefile 
	databases/postgresql-odbc: Makefile 
	databases/postgresql-pllua: Makefile 
	databases/postgresql-plr: Makefile 
	databases/postgresql-plv8: Makefile 
	databases/postgresql-previous: Makefile 
	databases/postgresql_autodoc: Makefile 
	databases/puppetdb4: Makefile 
	databases/puppetdb5: Makefile 
	databases/py-apsw: Makefile 
	databases/py-bsddb3: Makefile 
	databases/py-carbon: Makefile 
	databases/py-cdb: Makefile 
	databases/py-flask-sqlalchemy: Makefile 
	databases/py-influxdb: Makefile 
	databases/py-ldap: Makefile 
	databases/py-ldap3: Makefile 
	databases/py-minidb: Makefile 
	databases/py-mongo: Makefile 
	databases/py-mysql: Makefile 
	databases/py-mysqlclient: Makefile 
	databases/py-odbc: Makefile 
	databases/py-peewee: Makefile 
	databases/py-pg_activity: Makefile 
	databases/py-pgsql: Makefile 
	databases/py-pickleshare: Makefile 
	databases/py-puppetdb: Makefile 
	databases/py-pygresql: Makefile 
	databases/py-redis: Makefile 
	databases/py-sql: Makefile 
	databases/py-sqlalchemy: Makefile 
	databases/py-sqlalchemy-migrate: Makefile 
	databases/py-sqlite: Makefile 
	databases/py-sqlite2: Makefile 
	databases/py-sqlobject: Makefile 
	databases/py-sqlparse: Makefile 
	databases/py-storm: Makefile 
	databases/py-sybase: Makefile 
	databases/py-whisper: Makefile 
	databases/qdbm : Makefile 
	databases/qt3-sqlite3-plugin: Makefile 
	databases/redis: Makefile 
	databases/repmgr: Makefile 
	databases/riak : Makefile 
	databases/ruby-amalgalite: Makefile 
	databases/ruby-hiera-eyaml: Makefile 
	databases/ruby-hiera-eyaml-gpg: Makefile 
	databases/ruby-hiera-file: Makefile 
	databases/ruby-hiera3: Makefile 
	databases/ruby-kirbybase: Makefile 
	databases/ruby-ldap: Makefile 
	databases/ruby-mysql: Makefile 
	databases/ruby-mysql2: Makefile 
	databases/ruby-pg: Makefile 
	databases/ruby-redis: Makefile 
	databases/ruby-sequel_pg: Makefile 
	databases/ruby-sqlite3: Makefile 
	databases/ruby-tiny_tds: Makefile 
	databases/sharedance: Makefile 
	databases/skytools: Makefile 
	databases/soprano: Makefile 
	databases/sqlite: Makefile 
	databases/sqlite3: Makefile 
	databases/sqlite3-odbc: Makefile 
	databases/sqlite3-tcl: Makefile 
	databases/sqlitebrowser: Makefile 
	databases/sqliteman: Makefile 
	databases/sqlports: Makefile 
	databases/sqsh : Makefile 
	databases/strigi: Makefile 
	databases/tdbc : Makefile 
	databases/tdbc-mysql: Makefile 
	databases/tdbc-postgres: Makefile 
	databases/tdbc-sqlite3: Makefile 
	databases/tinycdb: Makefile 
	databases/tokyocabinet: Makefile 
	databases/virtuoso: Makefile 
	databases/xapian-bindings: Makefile 
	databases/xapian-core: Makefile 
	devel/ElectricFence: Makefile 
	devel/ORBit2   : Makefile 
	devel/adb      : Makefile 
	devel/afl      : Makefile 
	devel/ald      : Makefile 
	devel/alex     : Makefile 
	devel/apache-ant: Makefile 
	devel/apktool  : Makefile 
	devel/appstream-glib: Makefile 
	devel/apr      : Makefile 
	devel/apr-util : Makefile 
	devel/argp-standalone: Makefile 
	devel/argtable : Makefile 
	devel/asm6     : Makefile 
	devel/astyle   : Makefile 
	devel/atf      : Makefile 
	devel/atk      : Makefile 
	devel/atk2mm   : Makefile 
	devel/autoconf-archive: Makefile 
	devel/automake/1.10: Makefile 
	devel/avr/gcc  : Makefile 
	devel/avrdude  : Makefile 
	devel/bashunit : Makefile 
	devel/beediff  : Makefile 
	devel/bison    : Makefile 
	devel/blame    : Makefile 
	devel/blocksruntime: Makefile 
	devel/boehm-gc : Makefile 
	devel/boost    : Makefile 
	devel/boris    : Makefile 
	devel/bouml    : Makefile 
	devel/bpython  : Makefile 
	devel/bullet   : Makefile 
	devel/bzr      : Makefile 
	devel/bzr-svn  : Makefile 
	devel/cabal-install: Makefile 
	devel/capstone : Makefile.inc 
	devel/capstone/main: Makefile 
	devel/cargo-generate-vendor: Makefile 
	devel/catalyst : Makefile 
	devel/catalyst-tutorial: Makefile 
	devel/cbindgen : Makefile 
	devel/cbmc     : Makefile 
	devel/ccrtp    : Makefile 
	devel/cdk      : Makefile 
	devel/cflow    : Makefile 
	devel/cgdb     : Makefile 
	devel/check    : Makefile 
	devel/chmlib   : Makefile 
	devel/cil      : Makefile 
	devel/cjose    : Makefile 
	devel/cln      : Makefile 
	devel/cmake    : Makefile 
	devel/cmocka   : Makefile 
	devel/cmockery : Makefile 
	devel/codeblocks: Makefile 
	devel/codeworker: Makefile 
	devel/colordiff: Makefile 
	devel/commoncpp: Makefile 
	devel/coxpcall : Makefile 
	devel/cpp-hocon: Makefile 
	devel/cppcheck : Makefile 
	devel/cpphs    : Makefile 
	devel/cppunit  : Makefile 
	devel/cscope   : Makefile 
	devel/ctftools : Makefile 
	devel/cudd     : Makefile 
	devel/cunit    : Makefile 
	devel/cutils   : Makefile 
	devel/cvs-fast-export: Makefile 
	devel/cvs20hg  : Makefile 
	devel/cvs2cl   : Makefile 
	devel/cvs2gitdump: Makefile 
	devel/cvs2svn  : Makefile 
	devel/cvsgraph : Makefile 
	devel/cvslock  : Makefile 
	devel/cvsplot  : Makefile 
	devel/cvsps    : Makefile 
	devel/cvstrac  : Makefile 
	devel/cvsutils : Makefile 
	devel/cvsweb   : Makefile 
	devel/darcs    : Makefile 
	devel/dbus-sharp: Makefile 
	devel/dbus-sharp-glib: Makefile 
	devel/dconf    : Makefile 
	devel/ddd      : Makefile 
	devel/dejagnu  : Makefile 
	devel/desktop-file-utils: Makefile 
	devel/dex2jar  : Makefile 
	devel/dfu-programmer: Makefile 
	devel/diffutiltcl: Makefile 
	devel/dissy    : Makefile 
	devel/distcc   : Makefile 
	devel/dlib     : Makefile 
	devel/doc++    : Makefile 
	devel/dotconf  : Makefile 
	devel/doxygen  : Makefile 
	devel/doxygen-gui: Makefile 
	devel/droplet  : Makefile 
	devel/dtc      : Makefile 
	devel/dune     : Makefile 
	devel/ectags   : Makefile 
	devel/elftoolchain: Makefile 
	devel/etl      : Makefile 
	devel/expect-lite: Makefile 
	devel/fasm     : Makefile 
	devel/ffcall   : Makefile 
	devel/flake8   : Makefile 
	devel/flatzebra: Makefile 
	devel/fossil   : Makefile 
	devel/frama-c  : Makefile 
	devel/fribidi  : Makefile 
	devel/gas      : Makefile 
	devel/gconf-editor: Makefile 
	devel/gconf2   : Makefile 
	devel/gdb      : Makefile 
	devel/geany    : Makefile 
	devel/gengetopt: Makefile 
	devel/geotiff  : Makefile 
	devel/gettext  : Makefile 
	devel/gflags   : Makefile 
	devel/giblib   : Makefile 
	devel/giggle   : Makefile 
	devel/gindent  : Makefile 
	devel/git-cola : Makefile 
	devel/git-lfs  : Makefile 
	devel/github-backup: Makefile 
	devel/gitsh    : Makefile 
	devel/glade    : Makefile 
	devel/glib2    : Makefile 
	devel/glib2mm  : Makefile 
	devel/glog     : Makefile 
	devel/glpk     : Makefile 
	devel/gmake    : Makefile 
	devel/gmc4cc   : Makefile 
	devel/gmp      : Makefile 
	devel/go-check-v1: Makefile 
	devel/go-goptlib: Makefile 
	devel/go-tools : Makefile 
	devel/goffice08: Makefile 
	devel/gpatch   : Makefile 
	devel/gperf    : Makefile 
	devel/gputils  : Makefile 
	devel/grcs     : Makefile 
	devel/greg     : Makefile 
	devel/gsettings-desktop-schemas: Makefile 
	devel/gsl      : Makefile 
	devel/gsoap    : Makefile 
	devel/gtest    : Makefile 
	devel/gtkparasite: Makefile 
	devel/gwenhywfar: Makefile 
	devel/gyp      : Makefile 
	devel/happy    : Makefile 
	devel/harfbuzz : Makefile 
	devel/hasktags : Makefile 
	devel/help2man : Makefile 
	devel/hs-ConfigFile: Makefile 
	devel/hs-FindBin: Makefile 
	devel/hs-HUnit : Makefile 
	devel/hs-MissingH: Makefile 
	devel/hs-QuickCheck: Makefile 
	devel/hs-ansi-terminal: Makefile 
	devel/hs-ansi-wl-pprint: Makefile 
	devel/hs-async : Makefile 
	devel/hs-base16-bytestring: Makefile 
	devel/hs-base64-bytestring: Makefile 
	devel/hs-cereal: Makefile 
	devel/hs-cmdargs: Makefile 
	devel/hs-conduit: Makefile 
	devel/hs-constraints: Makefile 
	devel/hs-convertible: Makefile 
	devel/hs-data-default: Makefile 
	devel/hs-data-ordlist: Makefile 
	devel/hs-dlist : Makefile 
	devel/hs-echo  : Makefile 
	devel/hs-edit-distance: Makefile 
	devel/hs-enclosed-exceptions: Makefile 
	devel/hs-exceptions: Makefile 
	devel/hs-extensible-exceptions: Makefile 
	devel/hs-fgl   : Makefile 
	devel/hs-hashable: Makefile 
	devel/hs-hinotify: Makefile 
	devel/hs-hslogger: Makefile 
	devel/hs-lifted-async: Makefile 
	devel/hs-lifted-base: Makefile 
	devel/hs-mmap  : Makefile 
	devel/hs-mmorph: Makefile 
	devel/hs-monad-control: Makefile 
	devel/hs-mtl   : Makefile 
	devel/hs-nats  : Makefile 
	devel/hs-network: Makefile 
	devel/hs-network-uri: Makefile 
	devel/hs-old-locale: Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 14:45:17

Modified files:
	devel/hs-old-time: Makefile 
	devel/hs-parsec: Makefile 
	devel/hs-primitive: Makefile 
	devel/hs-random: Makefile 
	devel/hs-regex-applicative: Makefile 
	devel/hs-regex-base: Makefile 
	devel/hs-regex-compat: Makefile 
	devel/hs-regex-compat-tdfa: Makefile 
	devel/hs-regex-posix: Makefile 
	devel/hs-regex-tdfa: Makefile 
	devel/hs-resourcet: Makefile 
	devel/hs-sandi : Makefile 
	devel/hs-scientific: Makefile 
	devel/hs-semigroups: Makefile 
	devel/hs-shelly: Makefile 
	devel/hs-split : Makefile 
	devel/hs-stm   : Makefile 
	devel/hs-syb   : Makefile 
	devel/hs-system-fileio: Makefile 
	devel/hs-system-filepath: Makefile 
	devel/hs-tagged: Makefile 
	devel/hs-tar   : Makefile 
	devel/hs-temporary: Makefile 
	devel/hs-test-framework: Makefile 
	devel/hs-test-framework-hunit: Makefile 
	devel/hs-test-framework-quickcheck2: Makefile 
	devel/hs-text  : Makefile 
	devel/hs-tf-random: Makefile 
	devel/hs-transformers-base: Makefile 
	devel/hs-transformers-compat: Makefile 
	devel/hs-unix-compat: Makefile 
	devel/hs-utf8-string: Makefile 
	devel/hs-vector: Makefile 
	devel/hs-void  : Makefile 
	devel/hub      : Makefile 
	devel/hyena    : Makefile 
	devel/id-utils : Makefile 
	devel/iniparser: Makefile 
	devel/intellij : Makefile 
	devel/ipython  : Makefile 
	devel/iso-codes: Makefile 
	devel/itcl     : Makefile 
	devel/jadx     : Makefile 
	devel/jam      : Makefile 
	devel/jansson  : Makefile 
	devel/jdk/1.8  : Makefile 
	devel/jdk/11   : Makefile 
	devel/jenkins  : Makefile.inc 
	devel/jimarc4random: Makefile 
	devel/json-c   : Makefile 
	devel/json-glib: Makefile 
	devel/jsoncpp  : Makefile 
	devel/jsonrpc-glib: Makefile 
	devel/kdevelop : Makefile 
	devel/kdiff3   : Makefile 
	devel/keystone : Makefile.inc 
	devel/kproperty: Makefile 
	devel/kreport  : Makefile 
	devel/kyua-cli : Makefile 
	devel/kyua-testers: Makefile 
	devel/lazarus  : Makefile 
	devel/legit    : Makefile 
	devel/libIDL   : Makefile 
	devel/libaio_compat: Makefile 
	devel/libast   : Makefile 
	devel/libaudiofile: Makefile 
	devel/libbfio  : Makefile 
	devel/libbinio : Makefile 
	devel/libbio   : Makefile 
	devel/libconfig: Makefile 
	devel/libconfuse: Makefile 
	devel/libdaemon: Makefile 
	devel/libdisorder: Makefile 
	devel/libdockapp: Makefile 
	devel/libdshconfig: Makefile 
	devel/libdsm   : Makefile 
	devel/libdvdread: Makefile 
	devel/libdwarf : Makefile 
	devel/libee    : Makefile 
	devel/libestr  : Makefile 
	devel/libev    : Makefile 
	devel/libevent2: Makefile 
	devel/libeventextra: Makefile 
	devel/libexecinfo: Makefile 
	devel/libfastjson: Makefile 
	devel/libffi   : Makefile 
	devel/libfirm  : Makefile 
	devel/libfmt   : Makefile 
	devel/libftdi  : Makefile 
	devel/libftdi1 : Makefile 
	devel/libgcroots: Makefile 
	devel/libgee   : Makefile 
	devel/libglade2: Makefile 
	devel/libgsf   : Makefile 
	devel/libgtop2 : Makefile 
	devel/libguess : Makefile 
	devel/libidn   : Makefile 
	devel/libidn2  : Makefile 
	devel/libinotify: Makefile 
	devel/libio    : Makefile 
	devel/libiscsi : Makefile 
	devel/libivykis: Makefile 
	devel/libixp   : Makefile 
	devel/liblognorm: Makefile 
	devel/liblouis : Makefile 
	devel/libmagic : Makefile 
	devel/libmpc   : Makefile 
	devel/libmtp   : Makefile 
	devel/libnfs   : Makefile 
	devel/libnotify: Makefile 
	devel/libofx   : Makefile 
	devel/liboil   : Makefile 
	devel/liboop   : Makefile 
	devel/libopensync: Makefile 
	devel/libotf   : Makefile 
	devel/libowfat : Makefile 
	devel/libpeas  : Makefile 
	devel/libplist : Makefile 
	devel/libproplist: Makefile 
	devel/libregexp9: Makefile 
	devel/libsigsegv: Makefile 
	devel/libslang : Makefile 
	devel/libspectrum: Makefile 
	devel/libtermkey: Makefile 
	devel/libtool  : Makefile 
	devel/libunique: Makefile 
	devel/libusb1  : Makefile 
	devel/libutf   : Makefile 
	devel/libvmime : Makefile 
	devel/libvstr  : Makefile 
	devel/libvterm : Makefile 
	devel/libwnck  : Makefile 
	devel/libwnck3 : Makefile 
	devel/libxsvf  : Makefile 
	devel/libyajl  : Makefile 
	devel/libyaml  : Makefile 
	devel/log4c    : Makefile 
	devel/log4cplus: Makefile 
	devel/log4cpp  : Makefile 
	devel/lpc21isp : Makefile 
	devel/lpeg     : Makefile 
	devel/ltcltk   : Makefile 
	devel/lua-bit32: Makefile 
	devel/lua-bitop: Makefile 
	devel/lua-cliargs: Makefile 
	devel/lua-compat53: Makefile 
	devel/lua-lgi  : Makefile 
	devel/lua-openbsd: Makefile 
	devel/lua-term : Makefile 
	devel/lua-tz   : Makefile 
	devel/luaalarm : Makefile 
	devel/luacheck : Makefile 
	devel/luacopas : Makefile 
	devel/luadoc   : Makefile 
	devel/luaevent : Makefile 
	devel/luafs    : Makefile 
	devel/luapack  : Makefile 
	devel/luaposix : Makefile 
	devel/luaprofiler: Makefile 
	devel/luarexlib: Makefile 
	devel/luarings : Makefile 
	devel/luastdlib: Makefile 
	devel/lutok    : Makefile 
	devel/m4       : Makefile 
	devel/maven    : Makefile 
	devel/mcs      : Makefile 
	devel/mercurial: Makefile 
	devel/metaauto : Makefile 
	devel/mingw    : Makefile 
	devel/mk       : Makefile 
	devel/mm       : Makefile 
	devel/mm-common: Makefile 
	devel/mono-addins: Makefile 
	devel/mono-gdata: Makefile 
	devel/mono-notify: Makefile 
	devel/monotone : Makefile 
	devel/mowgli   : Makefile 
	devel/mpfr     : Makefile 
	devel/msgpack  : Makefile 
	devel/mspdebug : Makefile 
	devel/mygui    : Makefile 
	devel/nagelfar : Makefile 
	devel/naken430asm: Makefile 
	devel/nasm     : Makefile 
	devel/netbeans : Makefile 
	devel/npth     : Makefile 
	devel/nspr     : Makefile 
	devel/ocaml-graph: Makefile 
	devel/ocaml-ocamlbuild: Makefile 
	devel/ocaml-parmap: Makefile 
	devel/ocaml-pcre: Makefile 
	devel/ode      : Makefile 
	devel/ois      : Makefile 
	devel/openocd  : Makefile 
	devel/ophis    : Makefile 
	devel/orc      : Makefile 
	devel/p5-Acme-Damn: Makefile 
	devel/p5-Algorithm-C3: Makefile 
	devel/p5-Algorithm-CurveFit: Makefile 
	devel/p5-Algorithm-Dependency: Makefile 
	devel/p5-Algorithm-IncludeExclude: Makefile 
	devel/p5-Alien-wxWidgets: Makefile 
	devel/p5-Any-Moose: Makefile 
	devel/p5-AnyEvent: Makefile 
	devel/p5-AnyEvent-HTTP: Makefile 
	devel/p5-App-CLI: Makefile 
	devel/p5-App-Cmd: Makefile 
	devel/p5-AppConfig: Makefile 
	devel/p5-Array-Compare: Makefile 
	devel/p5-Array-Diff: Makefile 
	devel/p5-Array-RefElem: Makefile 
	devel/p5-Array-Window: Makefile 
	devel/p5-AutoXS-Header: Makefile 
	devel/p5-B-Deobfuscate: Makefile 
	devel/p5-B-Hooks-EndOfScope: Makefile 
	devel/p5-B-Keywords: Makefile 
	devel/p5-B-Utils: Makefile 
	devel/p5-BFD   : Makefile 
	devel/p5-BSD-Resource: Makefile 
	devel/p5-BSD-arc4random: Makefile 
	devel/p5-BSD-stat: Makefile 
	devel/p5-Benchmark-Timer: Makefile 
	devel/p5-Best  : Makefile 
	devel/p5-Bit-Vector-Minimal: Makefile 
	devel/p5-CLASS : Makefile 
	devel/p5-CPAN-Meta-Check: Makefile 
	devel/p5-Cache-Cache: Makefile 
	devel/p5-Cache-FastMmap: Makefile 
	devel/p5-Cache-Memcached: Makefile 
	devel/p5-Cache-Mmap: Makefile 
	devel/p5-Cache-Simple-TimedExpiry: Makefile 
	devel/p5-Canary-Stability: Makefile 
	devel/p5-Carp-Always: Makefile 
	devel/p5-Carp-Assert-More: Makefile 
	devel/p5-Carp-Clan: Makefile 
	devel/p5-Carp-Datum: Makefile 
	devel/p5-Catalyst-Manual: Makefile 
	devel/p5-Catalyst-Plugin-C3: Makefile 
	devel/p5-Catalyst-Plugin-StackTrace: Makefile 
	devel/p5-Check-ISA: Makefile 
	devel/p5-Class-Accessor: Makefile 
	devel/p5-Class-Accessor-Chained: Makefile 
	devel/p5-Class-Accessor-Grouped: Makefile 
	devel/p5-Class-Accessor-Lite: Makefile 
	devel/p5-Class-AutoClass: Makefile 
	devel/p5-Class-Autouse: Makefile 
	devel/p5-Class-Base: Makefile 
	devel/p5-Class-C3: Makefile 
	devel/p5-Class-C3-Adopt-NEXT: Makefile 
	devel/p5-Class-C3-Componentised: Makefile 
	devel/p5-Class-C3-XS: Makefile 
	devel/p5-Class-Classless: Makefile 
	devel/p5-Class-Container: Makefile 
	devel/p5-Class-Data-Accessor: Makefile 
	devel/p5-Class-Data-Inheritable: Makefile 
	devel/p5-Class-Date: Makefile 
	devel/p5-Class-ErrorHandler: Makefile 
	devel/p5-Class-Factory: Makefile 
	devel/p5-Class-Factory-Util: Makefile 
	devel/p5-Class-Generate: Makefile 
	devel/p5-Class-Gomor: Makefile 
	devel/p5-Class-Handle: Makefile 
	devel/p5-Class-Inner: Makefile 
	devel/p5-Class-InsideOut: Makefile 
	devel/p5-Class-Inspector: Makefile 
	devel/p5-Class-Load: Makefile 
	devel/p5-Class-Load-XS: Makefile 
	devel/p5-Class-MakeMethods: Makefile 
	devel/p5-Class-Meta: Makefile 
	devel/p5-Class-Meta-Express: Makefile 
	devel/p5-Class-Method-Modifiers: Makefile 
	devel/p5-Class-MethodMapper: Makefile 
	devel/p5-Class-Mix: Makefile 
	devel/p5-Class-Multimethods: Makefile 
	devel/p5-Class-ReturnValue: Makefile 
	devel/p5-Class-Std: Makefile 
	devel/p5-Class-Std-Fast: Makefile 
	devel/p5-Class-Std-Utils: Makefile 
	devel/p5-Class-Throwable: Makefile 
	devel/p5-Class-Tiny: Makefile 
	devel/p5-Class-Trigger: Makefile 
	devel/p5-Class-Unload: Makefile 
	devel/p5-Class-Virtual: Makefile 
	devel/p5-Class-WhiteHole: Makefile 
	devel/p5-Class-XPath: Makefile 
	devel/p5-Class-XSAccessor: Makefile 
	devel/p5-Clone : Makefile 
	devel/p5-Clone-Choose: Makefile 
	devel/p5-Clone-PP: Makefile 
	devel/p5-Config-Any: Makefile 
	devel/p5-Config-Auto: Makefile 
	devel/p5-Config-AutoConf: Makefile 
	devel/p5-Config-General: Makefile 
	devel/p5-Config-IniFiles: Makefile 
	devel/p5-Config-Options: Makefile 
	devel/p5-Config-Simple: Makefile 
	devel/p5-Config-Std: Makefile 
	devel/p5-Coro  : Makefile 
	devel/p5-Curses: Makefile 
	devel/p5-Curses-UI: Makefile 
	devel/p5-Curses-Widgets: Makefile 
	devel/p5-Data-Alias: Makefile 
	devel/p5-Data-Buffer: Makefile 
	devel/p5-Data-Compare: Makefile 
	devel/p5-Data-Dump: Makefile 
	devel/p5-Data-Dump-Streamer: Makefile 
	devel/p5-Data-Dumper-Concise: Makefile 
	devel/p5-Data-Dumper-Simple: Makefile 
	devel/p5-Data-GUID: Makefile 
	devel/p5-Data-Hierarchy: Makefile 
	devel/p5-Data-ICal: Makefile 
	devel/p5-Data-ICal-TimeZone: Makefile 
	devel/p5-Data-IEEE754: Makefile 
	devel/p5-Data-Lazy: Makefile 
	devel/p5-Data-Munge: Makefile 
	devel/p5-Data-Printer: Makefile 
	devel/p5-Data-Random: Makefile 
	devel/p5-Data-SExpression: Makefile 
	devel/p5-Data-ShowTable: Makefile 
	devel/p5-Data-Stag: Makefile 
	devel/p5-Data-Structure-Util: Makefile 
	devel/p5-Data-Types: Makefile 
	devel/p5-Data-UUID: Makefile 
	devel/p5-Data-Uniqid: Makefile 
	devel/p5-Data-VString: Makefile 
	devel/p5-Data-Validate: Makefile 
	devel/p5-Data-Validate-IP: Makefile 
	devel/p5-Data-Validate-Struct: Makefile 
	devel/p5-Data-Visitor: Makefile 
	devel/p5-Date-Calc: Makefile 
	devel/p5-Date-Extract: Makefile 
	devel/p5-Date-Handler: Makefile 
	devel/p5-Date-ICal: Makefile 
	devel/p5-Date-Leapyear: Makefile 
	devel/p5-Date-Simple: Makefile 
	devel/p5-DateTime: Makefile 
	devel/p5-DateTime-Calendar-Mayan: Makefile 
	devel/p5-DateTime-Cron-Simple: Makefile 
	devel/p5-DateTime-Event-ICal: Makefile 
	devel/p5-DateTime-Event-Recurrence: Makefile 
	devel/p5-DateTime-Format-Builder: Makefile 
	devel/p5-DateTime-Format-HTTP: Makefile 
	devel/p5-DateTime-Format-ICal: Makefile 
	devel/p5-DateTime-Format-ISO8601: Makefile 
	devel/p5-DateTime-Format-Mail: Makefile 
	devel/p5-DateTime-Format-Natural: Makefile 
	devel/p5-DateTime-Format-Pg: Makefile 
	devel/p5-DateTime-Format-SQLite: Makefile 
	devel/p5-DateTime-Format-Strptime: Makefile 
	devel/p5-DateTime-Precise: Makefile 
	devel/p5-DateTime-Set: Makefile 
	devel/p5-DateTime-TimeZone: Makefile 
	devel/p5-Declare-Constraints-Simple: Makefile 
	devel/p5-Devel-Caller: Makefile 
	devel/p5-Devel-CheckBin: Makefile 
	devel/p5-Devel-CheckLib: Makefile 
	devel/p5-Devel-CheckOS: Makefile 
	devel/p5-Devel-Cover: Makefile 
	devel/p5-Devel-Cover-Report-Clover: Makefile 
	devel/p5-Devel-Cycle: Makefile 
	devel/p5-Devel-GlobalDestruction: Makefile 
	devel/p5-Devel-Hide: Makefile 
	devel/p5-Devel-NYTProf: Makefile 
	devel/p5-Devel-PartialDump: Makefile 
	devel/p5-Devel-Refcount: Makefile 
	devel/p5-Devel-SawAmpersand: Makefile 
	devel/p5-Devel-Size-Report: Makefile 
	devel/p5-Devel-SmallProf: Makefile 
	devel/p5-Devel-StackTrace: Makefile 
	devel/p5-Devel-StackTrace-AsHTML: Makefile 
	devel/p5-Devel-Symdump: Makefile 
	devel/p5-Devel-TraceUse: Makefile 
	devel/p5-Devel-ebug: Makefile 
	devel/p5-Devel-ptkdb: Makefile 
	devel/p5-Device-USB: Makefile 
	devel/p5-Dir-Self: Makefile 
	devel/p5-Directory-Scratch: Makefile 
	devel/p5-Dist-CheckConflicts: Makefile 
	devel/p5-EV    : Makefile 
	devel/p5-Env-PS1: Makefile 
	devel/p5-Error : Makefile 
	devel/p5-Eval-Closure: Makefile 
	devel/p5-Event-ExecFlow: Makefile 
	devel/p5-Exception-Class: Makefile 
	devel/p5-Expect: Makefile 
	devel/p5-Expect-Simple: Makefile 
	devel/p5-Exporter-Lite: Makefile 
	devel/p5-Exporter-Tidy: Makefile 
	devel/p5-Exporter-Tiny: Makefile 
	devel/p5-ExtUtils-CChecker: Makefile 
	devel/p5-ExtUtils-Config: Makefile 
	devel/p5-ExtUtils-CppGuess: Makefile 
	devel/p5-ExtUtils-Depends: Makefile 
	devel/p5-ExtUtils-Helpers: Makefile 
	devel/p5-ExtUtils-InstallPaths: Makefile 
	devel/p5-ExtUtils-PkgConfig: Makefile 
	devel/p5-ExtUtils-Typemaps-Default: Makefile 
	devel/p5-ExtUtils-XSBuilder: Makefile 
	devel/p5-ExtUtils-XSpp: Makefile 
	devel/p5-File-Attributes: Makefile 
	devel/p5-File-Attributes-Recursive: Makefile 
	devel/p5-File-BOM: Makefile 
	devel/p5-File-BaseDir: Makefile 
	devel/p5-File-ChangeNotify: Makefile 
	devel/p5-File-Copy-Recursive: Makefile 
	devel/p5-File-CreationTime: Makefile 
	devel/p5-File-DesktopEntry: Makefile 
	devel/p5-File-DirCompare: Makefile 
	devel/p5-File-Find-Object: Makefile 
	devel/p5-File-Find-Object-Rule: Makefile 
	devel/p5-File-Find-Rule: Makefile 
	devel/p5-File-Find-Rule-Filesys-Virtual: Makefile 
	devel/p5-File-Find-Rule-Perl: Makefile 
	devel/p5-File-Flat: Makefile 
	devel/p5-File-FnMatch: Makefile 
	devel/p5-File-HomeDir: Makefile 
	devel/p5-File-MimeInfo: Makefile 
	devel/p5-File-Modified: Makefile 
	devel/p5-File-NCopy: Makefile 
	devel/p5-File-Path-Expand: Makefile 
	devel/p5-File-ReadBackwards: Makefile 
	devel/p5-File-Remove: Makefile 
	devel/p5-File-RsyncP: Makefile 
	devel/p5-File-Share: Makefile 
	devel/p5-File-ShareDir: Makefile 
	devel/p5-File-ShareDir-Install: Makefile 
	devel/p5-File-ShareDir-PathClass: Makefile 
	devel/p5-File-Slurp: Makefile 
	devel/p5-File-Slurper: Makefile 
	devel/p5-File-Sync: Makefile 
	devel/p5-File-Tail: Makefile 
	devel/p5-File-Tempdir: Makefile 
	devel/p5-File-Touch: Makefile 
	devel/p5-File-Type: Makefile 
	devel/p5-File-chdir: Makefile 
	devel/p5-File-chmod: Makefile 
	devel/p5-File-pushd: Makefile 
	devel/p5-FileHandle-Unget: Makefile 
	devel/p5-Filesys-Statvfs: Makefile 
	devel/p5-Filter-Template: Makefile 
	devel/p5-Forest: Makefile 
	devel/p5-Fortran-Format: Makefile 
	devel/p5-FreezeThaw: Makefile 
	devel/p5-Getargs-Long: Makefile 
	devel/p5-Getopt-ArgvFile: Makefile 
	devel/p5-Getopt-Euclid: Makefile 
	devel/p5-Getopt-Long-Descriptive: Makefile 
	devel/p5-Getopt-Tabular: Makefile 
	devel/p5-Git-Repository: Makefile 
	devel/p5-Glib-Object-Introspection: Makefile 
	devel/p5-Glib2 : Makefile 
	devel/p5-Graph : Makefile 
	devel/p5-Guard : Makefile 
	devel/p5-Hash-AutoHash: Makefile 
	devel/p5-Hash-AutoHash-Args: Makefile 
	devel/p5-Hash-Flatten: Makefile 
	devel/p5-Hash-Merge: Makefile 
	devel/p5-Hash-Merge-Simple: Makefile 
	devel/p5-Hash-MultiValue: Makefile 
	devel/p5-Hash-NoRef: Makefile 
	devel/p5-Hash-Util-FieldHash-Compat: Makefile 
	devel/p5-Heap  : Makefile 
	devel/p5-Hook-LexWrap: Makefile 
	devel/p5-IO-AIO: Makefile 
	devel/p5-IO-All: Makefile 
	devel/p5-IO-BufferedSelect: Makefile 
	devel/p5-IO-Capture: Makefile 
	devel/p5-IO-Digest: Makefile 
	devel/p5-IO-KQueue: Makefile 
	devel/p5-IO-Lambda: Makefile 
	devel/p5-IO-LockedFile: Makefile 
	devel/p5-IO-Multiplex: Makefile 
	devel/p5-IO-Pager: Makefile 
	devel/p5-IO-Pipely: Makefile 
	devel/p5-IO-Prompt-Tiny: Makefile 
	devel/p5-IO-SessionData: Makefile 
	devel/p5-IO-String: Makefile 
	devel/p5-IO-Tee: Makefile 
	devel/p5-IO-TieCombine: Makefile 
	devel/p5-IO-Tty: Makefile 
	devel/p5-IO-stringy: Makefile 
	devel/p5-IPC-Run: Makefile 
	devel/p5-IPC-Run-SafeHandles: Makefile 
	devel/p5-IPC-Run3: Makefile 
	devel/p5-IPC-ShareLite: Makefile 
	devel/p5-IPC-Shareable: Makefile 
	devel/p5-IPC-Signal: Makefile 
	devel/p5-IPC-System-Simple: Makefile 
	devel/p5-Import-Into: Makefile 
	devel/p5-Importer: Makefile 
	devel/p5-Inline: Makefile 
	devel/p5-Internals: Makefile 
	devel/p5-Iterator: Makefile 
	devel/p5-Iterator-Util: Makefile 
	devel/p5-Lchown: Makefile 
	devel/p5-List-AllUtils: Makefile 
	devel/p5-List-Compare: Makefile 
	devel/p5-List-Cycle: Makefile 
	devel/p5-List-MoreUtils: Makefile 
	devel/p5-List-MoreUtils-XS: Makefile 
	devel/p5-Locale-Hebrew: Makefile 
	devel/p5-Locale-Maketext-Gettext: Makefile 
	devel/p5-Locale-PGettext: Makefile 
	devel/p5-Locale-US: Makefile 
	devel/p5-Locale-gettext: Makefile 
	devel/p5-LockFile-Simple: Makefile 
	devel/p5-Log-Agent: Makefile 
	devel/p5-Log-Any: Makefile 
	devel/p5-Log-Any-Adapter-Callback: Makefile 
	devel/p5-Log-Dispatch: Makefile 
	devel/p5-Log-Dispatch-FileRotate: Makefile 
	devel/p5-Log-Dispatch-Perl: Makefile 
	devel/p5-Log-Trace: Makefile 
	devel/p5-MCE   : Makefile 
	devel/p5-MLDBM : Makefile 
	devel/p5-MLDBM-Sync: Makefile 
	devel/p5-MRO-Compat: Makefile 
	devel/p5-Math-Base-Convert: Makefile 
	devel/p5-Memoize-ExpireLRU: Makefile 
	devel/p5-Mixin-Linewise: Makefile 
	devel/p5-Mock-Config: Makefile 
	devel/p5-Modern-Perl: Makefile 
	devel/p5-Module-Build: Makefile 
	devel/p5-Module-Build-Tiny: Makefile 
	devel/p5-Module-Build-XSUtil: Makefile 
	devel/p5-Module-Find: Makefile 
	devel/p5-Module-Implementation: Makefile 
	devel/p5-Module-Install: Makefile 
	devel/p5-Module-Install-AuthorTests: Makefile 
	devel/p5-Module-Install-Repository: Makefile 
	devel/p5-Module-Install-XSUtil: Makefile 
	devel/p5-Module-Manifest: Makefile 
	devel/p5-Module-Pluggable: Makefile 
	devel/p5-Module-Pluggable-Fast: Makefile 
	devel/p5-Module-Refresh: Makefile 
	devel/p5-Module-Runtime: Makefile 
	devel/p5-Module-ScanDeps: Makefile 
	devel/p5-Module-Starter: Makefile 
	devel/p5-Module-Versions-Report: Makefile 
	devel/p5-Module-Which: Makefile 
	devel/p5-Moo   : Makefile 
	devel/p5-MooX-StrictConstructor: Makefile 
	devel/p5-MooX-Types-MooseLike: Makefile 
	devel/p5-Moose : Makefile 
	devel/p5-MooseX-Aliases: Makefile 
	devel/p5-MooseX-AttributeHelpers: Makefile 
	devel/p5-MooseX-Clone: Makefile 
	devel/p5-MooseX-ConfigFromFile: Makefile 
	devel/p5-MooseX-Daemonize: Makefile 
	devel/p5-MooseX-Emulate-Class-Accessor-Fast: Makefile 
	devel/p5-MooseX-Getopt: Makefile 
	devel/p5-MooseX-Has-Sugar: Makefile 
	devel/p5-MooseX-InsideOut: Makefile 
	devel/p5-MooseX-Log-Log4perl: Makefile 
	devel/p5-MooseX-MarkAsMethods: Makefile 
	devel/p5-MooseX-Method-Signatures: Makefile 
	devel/p5-MooseX-MethodAttributes: Makefile 
	devel/p5-MooseX-MultiInitArg: Makefile 
	devel/p5-MooseX-NonMoose: Makefile 
	devel/p5-MooseX-POE: Makefile 
	devel/p5-MooseX-Params-Validate: Makefile 
	devel/p5-MooseX-Role-Parameterized: Makefile 
	devel/p5-MooseX-Role-WithOverloading: Makefile 
	devel/p5-MooseX-SemiAffordanceAccessor: Makefile 
	devel/p5-MooseX-Storage: Makefile 
	devel/p5-MooseX-StrictConstructor: Makefile 
	devel/p5-MooseX-Traits-Pluggable: Makefile 
	devel/p5-MooseX-Types: Makefile 
	devel/p5-MooseX-Types-Common: Makefile 
	devel/p5-MooseX-Types-DateTime: Makefile 
	devel/p5-MooseX-Types-LoadableClass: Makefile 
	devel/p5-MooseX-Types-Path-Class: Makefile 
	devel/p5-MooseX-Types-Path-Tiny: Makefile 
	devel/p5-MooseX-Types-Stringlike: Makefile 
	devel/p5-Mouse : Makefile 
	devel/p5-MouseX-Types: Makefile 
	devel/p5-Net-Server: Makefile 
	devel/p5-Number-Compare: Makefile 
	devel/p5-Number-Compare-Date: Makefile 
	devel/p5-OLE-Storage_Lite: Makefile 
	devel/p5-Object-Declare: Makefile 
	devel/p5-Object-Event: Makefile 
	devel/p5-Object-Pluggable: Makefile 
	devel/p5-Object-Realize: Makefile 
	devel/p5-PAR   : Makefile 
	devel/p5-PAR-Dist: Makefile 
	devel/p5-POE   : Makefile 
	devel/p5-POE-Component-IKC: Makefile 
	devel/p5-POE-Component-Pluggable: Makefile 
	devel/p5-POE-Component-PubSub: Makefile 
	devel/p5-POE-Component-Syndicator: Makefile 
	devel/p5-POE-Loop-Event: Makefile 
	devel/p5-POE-Loop-Tk: Makefile 
	devel/p5-POE-Test-Loops: Makefile 
	devel/p5-POE-XS-Queue-Array: Makefile 
	devel/p5-POSIX-strftime-Compiler: Makefile 
	devel/p5-Package-DeprecationManager: Makefile 
	devel/p5-Package-Generator: Makefile 
	devel/p5-Package-New: Makefile 
	devel/p5-Package-Stash: Makefile 
	devel/p5-Package-Stash-XS: Makefile 
	devel/p5-Package-Variant: Makefile 
	devel/p5-PadWalker: Makefile 
	devel/p5-Pango : Makefile 
	devel/p5-Parallel-ForkManager: Makefile 
	devel/p5-Parallel-Prefork: Makefile 
	devel/p5-Params-CallbackRequest: Makefile 
	devel/p5-Params-Classify: Makefile 
	devel/p5-Params-Coerce: Makefile 
	devel/p5-Params-Util: Makefile 
	devel/p5-Params-Validate: Makefile 
	devel/p5-Paranoid: Makefile 
	devel/p5-Parse-PlainConfig: Makefile 
	devel/p5-Parse-RecDescent: Makefile 
	devel/p5-Parse-Win32Registry: Makefile 
	devel/p5-Path-Class: Makefile 
	devel/p5-Path-Tiny: Makefile 
	devel/p5-Perl-Command: Makefile 
	devel/p5-Perl-Critic: Makefile 
	devel/p5-Perl6-Junction: Makefile 
	devel/p5-PerlIO-eol: Makefile 
	devel/p5-PerlIO-via-Bzip2: Makefile 
	devel/p5-PerlIO-via-Timeout: Makefile 
	devel/p5-PerlIO-via-dynamic: Makefile 
	devel/p5-PerlIO-via-symlink: Makefile 
	devel/p5-Pod-Constant: Makefile 
	devel/p5-Pod-Coverage: Makefile 
	devel/p5-Pod-ToDemo: Makefile 
	devel/p5-Probe-Perl: Makefile 
	devel/p5-Proc-Background: Makefile 
	devel/p5-Proc-Daemon: Makefile 
	devel/p5-Proc-Fork: Makefile 
	devel/p5-Proc-Guard: Makefile 
	devel/p5-Proc-PID-File: Makefile 
	devel/p5-Proc-Simple: Makefile 
	devel/p5-Rcs   : Makefile 
	devel/p5-Readonly: Makefile 
	devel/p5-Readonly-XS: Makefile 
	devel/p5-Ref-Util: Makefile 
	devel/p5-Ref-Util-XS: Makefile 
	devel/p5-Regexp-Copy: Makefile 
	devel/p5-Regexp-IPv6: Makefile 
	devel/p5-Regexp-Shellish: Makefile 
	devel/p5-Return-MultiLevel: Makefile 
	devel/p5-Return-Value: Makefile 
	devel/p5-Role-Basic: Makefile 
	devel/p5-Role-Tiny: Makefile 
	devel/p5-SDL   : Makefile 
	devel/p5-SVN-Notify: Makefile 
	devel/p5-SVN-Simple: Makefile 
	devel/p5-SVN-Web: Makefile 
	devel/p5-Safe-Isa: Makefile 
	devel/p5-Scalar-Defer: Makefile 
	devel/p5-Scope-Guard: Makefile 
	devel/p5-Scope-Upper: Makefile 
	devel/p5-Search-Elasticsearch: Makefile 
	devel/p5-Set-Infinite: Makefile 
	devel/p5-Set-IntRange: Makefile 
	devel/p5-Set-Object: Makefile 
	devel/p5-Shell : Makefile 
	devel/p5-Shell-Command: Makefile 
	devel/p5-Signal-Mask: Makefile 
	devel/p5-Smart-Comments: Makefile 
	devel/p5-Sort-Naturally: Makefile 
	devel/p5-Spiffy: Makefile 
	devel/p5-Stream-Buffered: Makefile 
	devel/p5-String-CRC32: Makefile 
	devel/p5-String-Format: Makefile 
	devel/p5-String-Formatter: Makefile 
	devel/p5-String-Scanf: Makefile 
	devel/p5-String-Truncate: Makefile 
	devel/p5-Sub-Attribute: Makefile 
	devel/p5-Sub-Exporter: Makefile 
	devel/p5-Sub-Exporter-ForMethods: Makefile 
	devel/p5-Sub-Exporter-Progressive: Makefile 
	devel/p5-Sub-Identify: Makefile 
	devel/p5-Sub-Info: Makefile 
	devel/p5-Sub-Install: Makefile 
	devel/p5-Sub-Lambda: Makefile 
	devel/p5-Sub-Name: Makefile 
	devel/p5-Sub-Override: Makefile 
	devel/p5-Sub-Quote: Makefile 
	devel/p5-Sub-Uplevel: Makefile 
	devel/p5-Switch: Makefile 
	devel/p5-Symbol-Global-Name: Makefile 
	devel/p5-Sys-Mmap: Makefile 
	devel/p5-Sys-SigAction: Makefile 
	devel/p5-System-Command: Makefile 
	devel/p5-TAP-Formatter-JUnit: Makefile 
	devel/p5-TAP-Harness-JUnit: Makefile 
	devel/p5-Taint-Runtime: Makefile 
	devel/p5-Task-Weaken: Makefile 
	devel/p5-Tcl   : Makefile 
	devel/p5-Term-Encoding: Makefile 
	devel/p5-Term-ProgressBar: Makefile 
	devel/p5-Term-Prompt: Makefile 
	devel/p5-Term-ReadLine-Gnu: Makefile 
	devel/p5-Term-ReadLine-Perl: Makefile 
	devel/p5-Term-ReadLine-TTYtter: Makefile 
	devel/p5-Term-ReadLine-Zoid: Makefile 
	devel/p5-Term-Shell: Makefile 
	devel/p5-Term-ShellUI: Makefile 
	devel/p5-Term-Size: Makefile 
	devel/p5-Term-Size-Any: Makefile 
	devel/p5-Term-Size-Perl: Makefile 
	devel/p5-Term-Table: Makefile 
	devel/p5-Test-Assertions: Makefile 
	devel/p5-Test-Base: Makefile 
	devel/p5-Test-Bits: Makefile 
	devel/p5-Test-CPAN-Meta: Makefile 
	devel/p5-Test-Class: Makefile 
	devel/p5-Test-ClassAPI: Makefile 
	devel/p5-Test-Cmd: Makefile 
	devel/p5-Test-Command: Makefile 
	devel/p5-Test-Command-Simple: Makefile 
	devel/p5-Test-Compile: Makefile 
	devel/p5-Test-Corpus-Audio-MPD: Makefile 
	devel/p5-Test-Deep: Makefile 
	devel/p5-Test-Deep-JSON: Makefile 
	devel/p5-Test-Deep-Type: Makefile 
	devel/p5-Test-Differences: Makefile 
	devel/p5-Test-DistManifest: Makefile 
	devel/p5-Test-Distribution: Makefile 
	devel/p5-Test-EOL: Makefile 
	devel/p5-Test-Exception: Makefile 
	devel/p5-Test-Exit: Makefile 
	devel/p5-Test-Expect: Makefile 
	devel/p5-Test-FailWarnings: Makefile 
	devel/p5-Test-Fatal: Makefile 
	devel/p5-Test-File: Makefile 
	devel/p5-Test-File-ShareDir: Makefile 
	devel/p5-Test-Group: Makefile 
	devel/p5-Test-HTML-Tidy: Makefile 
	devel/p5-Test-HexDifferences: Makefile 
	devel/p5-Test-Inline: Makefile 
	devel/p5-Test-Inter: Makefile 
	devel/p5-Test-JSON: Makefile 
	devel/p5-Test-LeakTrace: Makefile 
	devel/p5-Test-LectroTest: Makefile 
	devel/p5-Test-LongString: Makefile 
	devel/p5-Test-Manifest: Makefile 
	devel/p5-Test-Memory-Cycle: Makefile 
	devel/p5-Test-MockModule: Makefile 
	devel/p5-Test-MockObject: Makefile 
	devel/p5-Test-MockRandom: Makefile 
	devel/p5-Test-MockSleep: Makefile 
	devel/p5-Test-MockTime: Makefile 
	devel/p5-Test-More-UTF8: Makefile 
	devel/p5-Test-Most: Makefile 
	devel/p5-Test-Needs: Makefile 
	devel/p5-Test-NoTabs: Makefile 
	devel/p5-Test-NoWarnings: Makefile 
	devel/p5-Test-Number-Delta: Makefile 
	devel/p5-Test-Object: Makefile 
	devel/p5-Test-Output: Makefile 
	devel/p5-Test-POE-Server-TCP: Makefile 
	devel/p5-Test-Perl-Critic: Makefile 
	devel/p5-Test-Pod: Makefile 
	devel/p5-Test-Pod-Content: Makefile 
	devel/p5-Test-Pod-Coverage: Makefile 
	devel/p5-Test-Portability-Files: Makefile 
	devel/p5-Test-Regexp: Makefile 
	devel/p5-Test-Reporter: Makefile 
	devel/p5-Test-Requires: Makefile 
	devel/p5-Test-RequiresInternet: Makefile 
	devel/p5-Test-Script: Makefile 
	devel/p5-Test-SharedFork: Makefile 
	devel/p5-Test-SubCalls: Makefile 
	devel/p5-Test-Taint: Makefile 
	devel/p5-Test-Time: Makefile 
	devel/p5-Test-TrailingSpace: Makefile 
	devel/p5-Test-Trap: Makefile 
	devel/p5-Test-URI: Makefile 
	devel/p5-Test-Unit: Makefile 
	devel/p5-Test-UseAllModules: Makefile 
	devel/p5-Test-WWW-Mechanize: Makefile 
	devel/p5-Test-WWW-Mechanize-Catalyst: Makefile 
	devel/p5-Test-Warn: Makefile 
	devel/p5-Test-Warnings: Makefile 
	devel/p5-Test-Weaken: Makefile 
	devel/p5-Test-XML: Makefile 
	devel/p5-Test-YAML: Makefile 
	devel/p5-Test-YAML-Valid: Makefile 
	devel/p5-Test-utf8: Makefile 
	devel/p5-Test2-Suite: Makefile 
	devel/p5-Text-FixEOL: Makefile 
	devel/p5-Text-vFile-asData: Makefile 
	devel/p5-Throwable: Makefile 
	devel/p5-Tie-Array-Sorted: Makefile 
	devel/p5-Tie-CPHash: Makefile 
	devel/p5-Tie-Cache: Makefile 
	devel/p5-Tie-Cache-LRU: Makefile 
	devel/p5-Tie-Cache-LRU-Expires: Makefile 
	devel/p5-Tie-Hash-Indexed: Makefile 
	devel/p5-Tie-Hash-MultiValue: Makefile 
	devel/p5-Tie-IxHash: Makefile 
	devel/p5-Tie-LLHash: Makefile 
	devel/p5-Tie-RegexpHash: Makefile 
	devel/p5-Tie-Simple: Makefile 
	devel/p5-Tie-ToObject: Makefile 
	devel/p5-Time-Duration: Makefile 
	devel/p5-Time-Duration-Parse: Makefile 
	devel/p5-Time-Format: Makefile 
	devel/p5-Time-Out: Makefile 
	devel/p5-Time-Piece-MySQL: Makefile 
	devel/p5-Time-Progress: Makefile 
	devel/p5-Time-TimeDate: Makefile 
	devel/p5-Time-Warp: Makefile 
	devel/p5-Time-modules: Makefile 
	devel/p5-Tree-DAG_Node: Makefile 
	devel/p5-Tree-Simple: Makefile 
	devel/p5-Tree-Simple-View: Makefile 
	devel/p5-Tree-Simple-VisitorFactory: Makefile 
	devel/p5-Try-Tiny: Makefile 
	devel/p5-Type-Tiny: Makefile 
	devel/p5-Universal-can: Makefile 
	devel/p5-Universal-exports: Makefile 
	devel/p5-Universal-isa: Makefile 
	devel/p5-Universal-moniker: Makefile 
	devel/p5-Universal-require: Makefile 
	devel/p5-Unix-Mknod: Makefile 
	devel/p5-VCP-autrijus: Makefile 
	devel/p5-Variable-Magic: Makefile 
	devel/p5-Want  : Makefile 
	devel/p5-WeakRef: Makefile 
	devel/p5-YAML  : Makefile 
	devel/p5-YAML-Shell: Makefile 
	devel/p5-YAML-Syck: Makefile 
	devel/p5-YAML-Tiny: Makefile 
	devel/p5-YAML-XS: Makefile 
	devel/p5-ZMQ   : Makefile 
	devel/p5-ZMQ-Constants: Makefile 
	devel/p5-ZMQ-LibZMQ3: Makefile 
	devel/p5-aliased: Makefile 
	devel/p5-autobox: Makefile 
	devel/p5-bareword-filehandles: Makefile 
	devel/p5-boolean: Makefile 
	devel/p5-capitalization: Makefile 
	devel/p5-common-sense: Makefile 
	devel/p5-enum  : Makefile 
	devel/p5-forks : Makefile 
	devel/p5-indirect: Makefile 
	devel/p5-lib-abs: Makefile 
	devel/p5-libintl: Makefile 
	devel/p5-local-lib: Makefile 
	devel/p5-namespace-autoclean: Makefile 
	devel/p5-namespace-clean: Makefile 
	devel/p5-prefork: Makefile 
	devel/p5-strictures: Makefile 
	devel/pango    : Makefile 
	devel/pangomm  : Makefile 
	devel/pangox-compat: Makefile 
	devel/pasmo    : Makefile 
	devel/pccts    : Makefile 
	devel/pcre     : Makefile 
	devel/pcre++   : Makefile 
	devel/pcre2    : Makefile 
	devel/pear-Cache: Makefile 
	devel/pear-Config: Makefile 
	devel/pear-Console-Table: Makefile 
	devel/pear-Date: Makefile 
	devel/pear-Date-Holidays: Makefile.inc 
	devel/pear-Log : Makefile 
	devel/pear-System-Command: Makefile 
	devel/pear-Validate: Makefile 
	devel/perltidy : Makefile 
	devel/physfs   : Makefile 
	devel/pkgconf  : Makefile 
	devel/pkgconfig: Makefile 
	devel/plib     : Makefile 
	devel/pony-stable: Makefile 
	devel/popt     : Makefile 
	devel/premake4 : Makefile 
	devel/proj     : Makefile 
	devel/promu    : Makefile 
	devel/protobuf : Makefile 
	devel/protobuf-c: Makefile 
	devel/protozero: Makefile 
	devel/pscan    : Makefile 
	devel/pth      : Makefile 
	devel/ptlib    : Makefile 
	devel/pudb     : Makefile 
	devel/py-Checker: Makefile 
	devel/py-SOAPpy: Makefile 
	devel/py-addons: Makefile 
	devel/py-algorithm-munkres: Makefile 
	devel/py-anytree: Makefile 
	devel/py-apipkg: Makefile 
	devel/py-appdirs: Makefile 
	devel/py-argcomplete: Makefile 
	devel/py-argh  : Makefile 
	devel/py-asn1  : Makefile 
	devel/py-asn1-modules: Makefile 
	devel/py-astroid: Makefile 
	devel/py-async-timeout: Makefile 
	devel/py-attrs : Makefile 
	devel/py-automat: Makefile 
	devel/py-babel : Makefile 
	devel/py-backports: Makefile 
	devel/py-backports-abc: Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 14:46:30

Modified files:
	devel/py-backports-functools-lru-cache: Makefile 
	devel/py-backports-shutil-get-terminal-size: Makefile 
	devel/py-backports-ssl-match-hostname: Makefile 
	devel/py-bencode: Makefile 
	devel/py-binaryornot: Makefile 
	devel/py-binplist: Makefile 
	devel/py-biplist: Makefile 
	devel/py-blessings: Makefile 
	devel/py-blinker: Makefile 
	devel/py-blist : Makefile 
	devel/py-buildbot: Makefile.inc 
	devel/py-buildslave: Makefile 
	devel/py-bytecodeassembler: Makefile 
	devel/py-cached-property: Makefile 
	devel/py-cairocffi: Makefile 
	devel/py-certifi: Makefile 
	devel/py-cffi  : Makefile 
	devel/py-chai  : Makefile 
	devel/py-cheetah: Makefile 
	devel/py-click : Makefile 
	devel/py-click-log: Makefile 
	devel/py-click-plugins: Makefile 
	devel/py-click-threading: Makefile 
	devel/py-clint : Makefile 
	devel/py-cloudpickle: Makefile 
	devel/py-codestyle: Makefile 
	devel/py-colorama: Makefile 
	devel/py-configargparse: Makefile 
	devel/py-configobj: Makefile 
	devel/py-configparser: Makefile 
	devel/py-constantly: Makefile 
	devel/py-construct: Makefile 
	devel/py-contextlib2: Makefile 
	devel/py-cooldict: Makefile 
	devel/py-country: Makefile 
	devel/py-coverage: Makefile 
	devel/py-coveralls: Makefile 
	devel/py-cparser: Makefile 
	devel/py-curtsies: Makefile 
	devel/py-dateutil: Makefile 
	devel/py-decorator: Makefile 
	devel/py-decoratortools: Makefile 
	devel/py-dispatcher: Makefile 
	devel/py-distutils-extra: Makefile 
	devel/py-doit  : Makefile 
	devel/py-dtfabric: Makefile 
	devel/py-dulwich: Makefile 
	devel/py-easyprocess: Makefile 
	devel/py-editdist: Makefile 
	devel/py-efilter: Makefile 
	devel/py-elftools: Makefile 
	devel/py-entrypoints: Makefile 
	devel/py-enum34: Makefile 
	devel/py-execnet: Makefile 
	devel/py-extras: Makefile 
	devel/py-extremes: Makefile 
	devel/py-fasteners: Makefile 
	devel/py-fastimport: Makefile 
	devel/py-faulthandler: Makefile 
	devel/py-filebytes: Makefile 
	devel/py-flaky : Makefile 
	devel/py-flexmock: Makefile 
	devel/py-fpconst: Makefile 
	devel/py-frozendict: Makefile 
	devel/py-funcsigs: Makefile 
	devel/py-functools32: Makefile 
	devel/py-funcy : Makefile 
	devel/py-future: Makefile 
	devel/py-futures: Makefile 
	devel/py-gdata : Makefile 
	devel/py-gevent: Makefile 
	devel/py-gitdb : Makefile 
	devel/py-gitpython: Makefile 
	devel/py-gobject: Makefile 
	devel/py-greenlet: Makefile 
	devel/py-guppy : Makefile 
	devel/py-hachoir-core: Makefile 
	devel/py-hachoir-metadata: Makefile 
	devel/py-hachoir-parser: Makefile 
	devel/py-hamcrest: Makefile 
	devel/py-hypothesis: Makefile 
	devel/py-icalendar: Makefile 
	devel/py-incremental: Makefile 
	devel/py-iniparse: Makefile 
	devel/py-intervaltree: Makefile 
	devel/py-ioflo : Makefile 
	devel/py-ipykernel: Makefile 
	devel/py-ipython_genutils: Makefile 
	devel/py-iso3166: Makefile 
	devel/py-iso639: Makefile 
	devel/py-isodate: Makefile 
	devel/py-isort : Makefile 
	devel/py-jedi  : Makefile 
	devel/py-jmespath: Makefile 
	devel/py-jsonrpclib: Makefile 
	devel/py-jsonschema: Makefile 
	devel/py-jupyter_client: Makefile 
	devel/py-jupyter_core: Makefile 
	devel/py-kid   : Makefile 
	devel/py-kiwisolver: Makefile 
	devel/py-lazy-object-proxy: Makefile 
	devel/py-liblarch: Makefile 
	devel/py-logilab-common: Makefile 
	devel/py-magic : Makefile 
	devel/py-mccabe: Makefile 
	devel/py-minimock: Makefile 
	devel/py-mock  : Makefile 
	devel/py-monotonic: Makefile 
	devel/py-monthdelta: Makefile 
	devel/py-more-itertools: Makefile 
	devel/py-mox   : Makefile 
	devel/py-munch : Makefile 
	devel/py-mxDateTime: Makefile 
	devel/py-nbconvert: Makefile 
	devel/py-nbformat: Makefile 
	devel/py-nbval : Makefile 
	devel/py-nose  : Makefile 
	devel/py-nose-warnings-filters: Makefile 
	devel/py-nosexcover: Makefile 
	devel/py-notify: Makefile 
	devel/py-objgraph: Makefile 
	devel/py-olefile: Makefile 
	devel/py-optik : Makefile 
	devel/py-parallel: Makefile 
	devel/py-parsing: Makefile 
	devel/py-parso : Makefile 
	devel/py-path.py: Makefile 
	devel/py-pathlib: Makefile 
	devel/py-pathlib2: Makefile 
	devel/py-pathspec: Makefile 
	devel/py-pbr   : Makefile 
	devel/py-peak-rules: Makefile 
	devel/py-pexpect: Makefile 
	devel/py-pip   : Makefile 
	devel/py-pluggy: Makefile 
	devel/py-plugnplay: Makefile 
	devel/py-ply   : Makefile 
	devel/py-pretend: Makefile 
	devel/py-prioritized_methods: Makefile 
	devel/py-progressbar: Makefile 
	devel/py-prompt_toolkit: Makefile 
	devel/py-protobuf: Makefile 
	devel/py-protocols: Makefile 
	devel/py-ptyprocess: Makefile 
	devel/py-py    : Makefile 
	devel/py-pyinotify: Makefile 
	devel/py-pyprof2calltree: Makefile 
	devel/py-pyro  : Makefile 
	devel/py-pyte  : Makefile 
	devel/py-python2-pythondialog: Makefile 
	devel/py-r2pipe: Makefile 
	devel/py-radix : Makefile 
	devel/py-rcsparse: Makefile 
	devel/py-robotframework: Makefile 
	devel/py-rope  : Makefile 
	devel/py-ruamel.ordereddict: Makefile 
	devel/py-ruledispatch: Makefile 
	devel/py-selectors2: Makefile 
	devel/py-send2trash: Makefile 
	devel/py-serial: Makefile 
	devel/py-setproctitle: Makefile 
	devel/py-setuptools: Makefile 
	devel/py-setuptools_git: Makefile 
	devel/py-setuptools_scm: Makefile 
	devel/py-setuptools_scm_git_archive: Makefile 
	devel/py-setuptools_trial: Makefile 
	devel/py-sh    : Makefile 
	devel/py-silc  : Makefile 
	devel/py-simpleeval: Makefile 
	devel/py-simplegeneric: Makefile 
	devel/py-simplejson: Makefile 
	devel/py-singledispatch: Makefile 
	devel/py-sip   : Makefile 
	devel/py-six   : Makefile 
	devel/py-smmap : Makefile 
	devel/py-sortedcontainers: Makefile 
	devel/py-spark-parser: Makefile 
	devel/py-stdnum: Makefile 
	devel/py-subprocess32: Makefile 
	devel/py-suds  : Makefile 
	devel/py-symboltype: Makefile 
	devel/py-tabulate: Makefile 
	devel/py-test  : Makefile 
	devel/py-test-benchmark: Makefile 
	devel/py-test-cov: Makefile 
	devel/py-test-expect: Makefile 
	devel/py-test-forked: Makefile 
	devel/py-test-httpbin: Makefile 
	devel/py-test-localserver: Makefile 
	devel/py-test-mock: Makefile 
	devel/py-test-runner: Makefile 
	devel/py-test-subtesthack: Makefile 
	devel/py-test-xdist: Makefile 
	devel/py-testpath: Makefile 
	devel/py-testtools: Makefile 
	devel/py-texscythe: Makefile 
	devel/py-tox   : Makefile 
	devel/py-tpg   : Makefile 
	devel/py-traitlets: Makefile 
	devel/py-trollius: Makefile 
	devel/py-turbocheetah: Makefile 
	devel/py-turbokid: Makefile 
	devel/py-twisted: Makefile 
	devel/py-txaio : Makefile 
	devel/py-typing: Makefile 
	devel/py-tzlocal: Makefile 
	devel/py-uncompyle6: Makefile 
	devel/py-unicorn: Makefile 
	devel/py-unit  : Makefile 
	devel/py-unittest2: Makefile 
	devel/py-urwid : Makefile 
	devel/py-uv    : Makefile 
	devel/py-vcversioner: Makefile 
	devel/py-virtualenv: Makefile 
	devel/py-wbem  : Makefile 
	devel/py-wcwidth: Makefile 
	devel/py-wheel : Makefile 
	devel/py-whichcraft: Makefile 
	devel/py-wrapt : Makefile 
	devel/py-wsgiutils: Makefile 
	devel/py-wurlitzer: Makefile 
	devel/py-xdg   : Makefile 
	devel/py-xdis  : Makefile 
	devel/py-xlsxwriter: Makefile 
	devel/py-xmlrunner: Makefile 
	devel/py-yamllint: Makefile 
	devel/py-yapf  : Makefile 
	devel/py-zopecomponent: Makefile 
	devel/py-zopeevent: Makefile 
	devel/py-zopeinterface: Makefile 
	devel/py-zopetesting: Makefile 
	devel/pybugz   : Makefile 
	devel/pycdc    : Makefile 
	devel/pycharm  : Makefile 
	devel/pyflakes : Makefile 
	devel/pygame   : Makefile 
	devel/pylint   : Makefile 
	devel/pyrex    : Makefile 
	devel/pyusb    : Makefile 
	devel/qbs      : Makefile 
	devel/qgit     : Makefile 
	devel/qjson    : Makefile 
	devel/qt-creator: Makefile 
	devel/quilt    : Makefile 
	devel/quirks   : Makefile 
	devel/rapidsvn : Makefile 
	devel/rats     : Makefile 
	devel/rcs-fast-import: Makefile 
	devel/re2c     : Makefile 
	devel/readline : Makefile 
	devel/rebar    : Makefile 
	devel/remake   : Makefile 
	devel/reposurgeon: Makefile 
	devel/rgbds    : Makefile 
	devel/riscv-elf: Makefile.inc 
	devel/rlog     : Makefile 
	devel/ruby-abstract: Makefile 
	devel/ruby-arrayfields: Makefile 
	devel/ruby-atomic: Makefile 
	devel/ruby-bundler: Makefile 
	devel/ruby-cicphash: Makefile 
	devel/ruby-colorize: Makefile 
	devel/ruby-concurrent-ruby: Makefile 
	devel/ruby-daemon_controller: Makefile 
	devel/ruby-daemons: Makefile 
	devel/ruby-deep_merge: Makefile 
	devel/ruby-diff-lcs: Makefile 
	devel/ruby-fast_gettext: Makefile 
	devel/ruby-ffi : Makefile 
	devel/ruby-flexmock: Makefile 
	devel/ruby-gettext: Makefile 
	devel/ruby-gettext-setup: Makefile 
	devel/ruby-gir_ffi: Makefile 
	devel/ruby-git : Makefile 
	devel/ruby-hoe : Makefile 
	devel/ruby-i18n: Makefile 
	devel/ruby-indentation: Makefile 
	devel/ruby-isolate: Makefile 
	devel/ruby-jeweler: Makefile 
	devel/ruby-json_pure: Makefile 
	devel/ruby-kgio: Makefile 
	devel/ruby-libv8: Makefile 
	devel/ruby-locale: Makefile 
	devel/ruby-metaclass: Makefile 
	devel/ruby-minitest: Makefile 
	devel/ruby-narray: Makefile 
	devel/ruby-ncurses: Makefile 
	devel/ruby-nio4r: Makefile 
	devel/ruby-open4: Makefile 
	devel/ruby-opt_parse_validator: Makefile 
	devel/ruby-prof: Makefile 
	devel/ruby-puppet_forge: Makefile 
	devel/ruby-racc: Makefile 
	devel/ruby-rake-remote_task: Makefile 
	devel/ruby-rb-gsl: Makefile 
	devel/ruby-ref : Makefile 
	devel/ruby-rgen: Makefile 
	devel/ruby-rr  : Makefile 
	devel/ruby-ruby2ruby: Makefile 
	devel/ruby-ruby_parser: Makefile 
	devel/ruby-rubyinline: Makefile 
	devel/ruby-sexp_processor: Makefile 
	devel/ruby-subset_sum: Makefile 
	devel/ruby-systemu: Makefile 
	devel/ruby-therubyracer: Makefile 
	devel/ruby-thor: Makefile 
	devel/ruby-thread_safe: Makefile 
	devel/ruby-tilt: Makefile 
	devel/ruby-transaction-simple: Makefile 
	devel/ruby-trollop: Makefile 
	devel/ruby-uuid: Makefile 
	devel/ruby-uuidtools: Makefile 
	devel/ruby-xdg : Makefile 
	devel/ruby-yajl: Makefile 
	devel/ruby-zentest: Makefile 
	devel/samurai  : Makefile 
	devel/scons    : Makefile 
	devel/sdcc     : Makefile 
	devel/sdl-gfx  : Makefile 
	devel/sdl-pango: Makefile 
	devel/sdl-sound: Makefile 
	devel/sdl2     : Makefile 
	devel/sdl2-gfx : Makefile 
	devel/sdl2-net : Makefile 
	devel/sfio     : Makefile 
	devel/shapelib : Makefile 
	devel/shellcheck: Makefile 
	devel/shtool   : Makefile 
	devel/shunit2  : Makefile 
	devel/simulavr : Makefile 
	devel/slib     : Makefile 
	devel/sparsehash: Makefile 
	devel/spe      : Makefile 
	devel/spice-protocol: Makefile 
	devel/spidermonkey60: Makefile 
	devel/splint   : Makefile 
	devel/spyder   : Makefile.inc 
	devel/src      : Makefile 
	devel/srecord  : Makefile 
	devel/startup-notification: Makefile 
	devel/stfl     : Makefile 
	devel/stp      : Makefile 
	devel/subversion: Makefile 
	devel/swig     : Makefile 
	devel/t1lib    : Makefile 
	devel/tbb      : Makefile 
	devel/tclap    : Makefile 
	devel/tclarc4random: Makefile 
	devel/tcllib   : Makefile 
	devel/tclthread: Makefile 
	devel/teensyloader: Makefile 
	devel/template-glib: Makefile 
	devel/ti-msp430gcc: Makefile 
	devel/tig      : Makefile 
	devel/tkcvs    : Makefile 
	devel/tkdiff   : Makefile 
	devel/tklib    : Makefile 
	devel/tmake    : Makefile 
	devel/tortoisehg: Makefile 
	devel/ucpp     : Makefile 
	devel/udis86   : Makefile 
	devel/unibilium: Makefile 
	devel/universal-ctags: Makefile 
	devel/utfcpp   : Makefile 
	devel/uthash   : Makefile 
	devel/uuid     : Makefile 
	devel/valgrind : Makefile 
	devel/vanessa  : Makefile.inc 
	devel/vim-command-t: Makefile 
	devel/vim-taglist: Makefile 
	devel/vtags    : Makefile 
	devel/vtcl     : Makefile 
	devel/vte      : Makefile 
	devel/vte3     : Makefile 
	devel/xa       : Makefile 
	devel/xdg-user-dirs: Makefile 
	devel/xdg-utils: Makefile 
	devel/xmake    : Makefile 
	devel/yaml-cpp : Makefile 
	devel/yasm     : Makefile 
	devel/zeal     : Makefile 
	editors/TeXmacs: Makefile 
	editors/abiword: Makefile 
	editors/beav   : Makefile 
	editors/beaver : Makefile 
	editors/bvi    : Makefile 
	editors/calligra: Makefile 
	editors/cooledit: Makefile 
	editors/dhex   : Makefile 
	editors/dte    : Makefile 
	editors/ee     : Makefile 
	editors/elvis  : Makefile 
	editors/emacs  : Makefile 
	editors/featherpad: Makefile 
	editors/focuswriter: Makefile 
	editors/fte    : Makefile 
	editors/ged    : Makefile 
	editors/ghostwriter: Makefile 
	editors/gummi  : Makefile 
	editors/hexcurse: Makefile 
	editors/hexedit: Makefile 
	editors/ht     : Makefile 
	editors/jed    : Makefile 
	editors/joe    : Makefile 
	editors/jove   : Makefile 
	editors/kile   : Makefile 
	editors/ktikz  : Makefile 
	editors/ldapvi : Makefile 
	editors/le     : Makefile 
	editors/leafpad: Makefile 
	editors/libreoffice: Makefile 
	editors/micro  : Makefile 
	editors/moe    : Makefile 
	editors/ne     : Makefile 
	editors/nedit  : Makefile 
	editors/nvi    : Makefile 
	editors/py-neovim: Makefile 
	editors/py-qscintilla: Makefile 
	editors/qscintilla: Makefile 
	editors/se     : Makefile 
	editors/sigil  : Makefile 
	editors/subtitleeditor: Makefile 
	editors/tea    : Makefile 
	editors/teaqt  : Makefile 
	editors/ted    : Makefile 
	editors/texmaker: Makefile 
	editors/texworks: Makefile 
	editors/tiled  : Makefile 
	editors/tpad   : Makefile 
	editors/traditional-vi: Makefile 
	editors/tweak  : Makefile 
	editors/vile   : Makefile 
	editors/vim-spell: Makefile.inc 
	editors/vis    : Makefile 
	editors/wordgrinder: Makefile 
	editors/xemacs21: Makefile.inc 
	editors/xemacs21-sumo: Makefile 
	editors/xwpe   : Makefile 
	editors/zile   : Makefile 
	education/algotutor: Makefile 
	education/anki : Makefile 
	education/drgeo: Makefile 
	education/drgeo-doc: Makefile 
	education/dvorak7min: Makefile 
	education/epte : Makefile 
	education/gamgi: Makefile 
	education/gtypist: Makefile 
	education/verbiste: Makefile 
	emulators/BasiliskII: Makefile 
	emulators/atari800: Makefile 
	emulators/bochs: Makefile 
	emulators/citra: Makefile 
	emulators/coldfire: Makefile 
	emulators/desmume: Makefile 
	emulators/dolphin: Makefile 
	emulators/dynagen: Makefile 
	emulators/dynamips: Makefile 
	emulators/emulationstation: Makefile 
	emulators/fceux: Makefile 
	emulators/frodo: Makefile 
	emulators/fs-uae: Makefile 
	emulators/fs-uae-launcher: Makefile 
	emulators/fuse : Makefile 
	emulators/fuse-utils: Makefile 
	emulators/gambatte: Makefile 
	emulators/gns3 : Makefile 
	emulators/gnusim8085: Makefile 
	emulators/gr-lida: Makefile 
	emulators/gw-libretro: Makefile 
	emulators/gxemul: Makefile 
	emulators/hatari: Makefile 
	emulators/higan: Makefile 
	emulators/libretro-pcsx-rearmed: Makefile 
	emulators/mame : Makefile 
	emulators/mgba : Makefile 
	emulators/mupen64plus/audio-sdl: Makefile 
	emulators/mupen64plus/core: Makefile 
	emulators/mupen64plus/input-sdl: Makefile 
	emulators/mupen64plus/rsp-cxd4: Makefile 
	emulators/mupen64plus/rsp-hle: Makefile 
	emulators/mupen64plus/rsp-z64: Makefile 
	emulators/mupen64plus/ui-console: Makefile 
	emulators/mupen64plus/video-arachnoid: Makefile 
	emulators/mupen64plus/video-glide64: Makefile 
	emulators/mupen64plus/video-glide64mk2: Makefile 
	emulators/mupen64plus/video-rice: Makefile 
	emulators/mupen64plus/video-z64: Makefile 
	emulators/nestopia: Makefile 
	emulators/pcsxr: Makefile 
	emulators/ppsspp: Makefile 
	emulators/retroarch: Makefile 
	emulators/simh : Makefile 
	emulators/spim : Makefile 
	emulators/uae  : Makefile 
	emulators/ucon64: Makefile 
	emulators/vbam : Makefile 
	emulators/vice : Makefile 
	emulators/virtualjaguar: Makefile 
	emulators/x48  : Makefile 
	emulators/xcopilot: Makefile 
	emulators/xnp2 : Makefile 
	emulators/xroar: Makefile 
	emulators/yabause: Makefile 
	fonts/abyssinica: Makefile 
	fonts/alkalami : Makefile 
	fonts/andika   : Makefile 
	fonts/annapurna: Makefile 
	fonts/anonymous-pro: Makefile 
	fonts/apl-fonts: Makefile 
	fonts/arabeyes-ttf: Makefile 
	fonts/artwiz-aleczapka: Makefile 
	fonts/blockzone: Makefile 
	fonts/cantarell-fonts: Makefile 
	fonts/charis   : Makefile 
	fonts/chivo    : Makefile 
	fonts/clearsans: Makefile 
	fonts/comic-neue: Makefile 
	fonts/doulos   : Makefile 
	fonts/ecoliercourt-fonts: Makefile 
	fonts/fantasque-sans: Makefile 
	fonts/farsifonts-ttf: Makefile 
	fonts/fira-fonts: Makefile 
	fonts/font-awesome: Makefile 
	fonts/free3of9-ttf: Makefile 
	fonts/freefarsi-ttf: Makefile 
	fonts/freefont-ttf: Makefile 
	fonts/gentium  : Makefile 
	fonts/go-fonts : Makefile 
	fonts/gohufont : Makefile 
	fonts/hack-fonts: Makefile 
	fonts/hanazono : Makefile 
	fonts/hermit-font: Makefile 
	fonts/ibm-plex : Makefile 
	fonts/inconsolata-font: Makefile 
	fonts/inter    : Makefile 
	fonts/intlfonts: Makefile 
	fonts/ja-kanjistrokeorders-ttf: Makefile 
	fonts/ja-sazanami-ttf: Makefile 
	fonts/jmk-fonts: Makefile 
	fonts/junicode : Makefile 
	fonts/ko-baekmuk-fonts: Makefile 
	fonts/ko-baekmuk-ttf: Makefile 
	fonts/ko-hanterm-fonts: Makefile 
	fonts/league-fonts: Makefile 
	fonts/liberation-fonts: Makefile 
	fonts/linuxlibertine-fonts-otf: Makefile 
	fonts/linuxlibertine-fonts-ttf: Makefile 
	fonts/lohit-fonts: Makefile 
	fonts/mada     : Makefile 
	fonts/migmix   : Makefile 
	fonts/migu     : Makefile 
	fonts/mixfont-mplus-ipa: Makefile 
	fonts/mplus-fonts: Makefile 
	fonts/overpass : Makefile 
	fonts/powerline-fonts: Makefile 
	fonts/profont  : Makefile 
	fonts/roboto-fonts: Makefile 
	fonts/ru-ptsans: Makefile 
	fonts/scheherazade: Makefile 
	fonts/spranq-ecofont-ttf: Makefile 
	fonts/sunscreen: Makefile 
	fonts/symbola-ttf: Makefile 
	fonts/tagmukay : Makefile 
	fonts/taiwan-cns11643-fonts: Makefile 
	fonts/tamsyn-font: Makefile 
	fonts/taviraj  : Makefile 
	fonts/terminus-font: Makefile 
	fonts/ubuntu-fonts: Makefile 
	fonts/un-fonts : Makefile.inc 
	fonts/vlgothic : Makefile 
	fonts/work-sans: Makefile 
	fonts/zh-wqy-bitmapfont: Makefile 
	fonts/zh-wqy-zenhei-ttf: Makefile 
	games/1oom     : Makefile 
	games/2048-cli : Makefile 
	games/abuse    : Makefile 
	games/ace      : Makefile 
	games/alephone/alephone: Makefile 
	games/alephone/weland: Makefile 
	games/allegro  : Makefile 
	games/amoebax  : Makefile 
	games/amph     : Makefile 
	games/an       : Makefile 
	games/angrydd  : Makefile 
	games/armagetronad: Makefile 
	games/arx-libertatis: Makefile 
	games/astromenace: Makefile 
	games/atomix   : Makefile 
	games/barony   : Makefile 
	games/barrage  : Makefile 
	games/bass     : Makefile 
	games/bastet   : Makefile 
	games/batrachians: Makefile 
	games/belooted : Makefile 
	games/beret    : Makefile 
	games/blobby   : Makefile 
	games/blobwars : Makefile 
	games/blockrage: Makefile 
	games/bluemoon : Makefile 
	games/bomberclone: Makefile 
	games/boswars  : Makefile 
	games/braincurses: Makefile 
	games/brumbrumrally: Makefile 
	games/capitan-sevilla: Makefile 
	games/cataclysm-dda: Makefile 
	games/cdogs-sdl: Makefile 
	games/cgames   : Makefile 
	games/cgoban   : Makefile 
	games/chessx   : Makefile 
	games/childsplay: Makefile 
	games/chocolate-doom: Makefile 
	games/choria   : Makefile 
	games/chroma   : Makefile 
	games/chroma-enigma: Makefile 
	games/chromium-bsu: Makefile 
	games/circuit  : Makefile 
	games/clines   : Makefile 
	games/clonekeen: Makefile 
	games/cmatrix  : Makefile 
	games/corsixth : Makefile 
	games/cowsay   : Makefile 
	games/cpat     : Makefile 
	games/crack-attack: Makefile 
	games/crimson  : Makefile 
	games/csmash   : Makefile 
	games/dd2      : Makefile 
	games/defendguin: Makefile 
	games/dhewm3   : Makefile 
	games/dmagnetic: Makefile 
	games/doomdata/shareware: Makefile 
	games/dopewars : Makefile 
	games/dunelegacy: Makefile 
	games/dustrac  : Makefile 
	games/easyrpg  : Makefile 
	games/egoboo   : Makefile 
	games/einstein : Makefile 
	games/eliot    : Makefile 
	games/endless-sky: Makefile 
	games/extremetuxracer: Makefile 
	games/ezquake  : Makefile 
	games/f1spirit : Makefile 
	games/fifechan : Makefile 
	games/fifengine: Makefile 
	games/fillets-ng: Makefile 
	games/flare    : Makefile 
	games/flightgear: Makefile.inc 
	games/fnaify   : Makefile 
	games/foobillard: Makefile 
	games/forcedattack: Makefile 
	games/fotaq    : Makefile 
	games/freeblocks: Makefile 
	games/freeciv  : Makefile 
	games/freecol  : Makefile 
	games/freedink : Makefile.inc 
	games/freedink/data: Makefile 
	games/freedroid: Makefile 
	games/freedroidrpg: Makefile 
	games/freeorion: Makefile 
	games/freeserf : Makefile 
	games/fretsonfire: Makefile 
	games/frotz    : Makefile 
	games/frozen-bubble: Makefile 
	games/galois   : Makefile 
	games/gamine   : Makefile 
	games/garden   : Makefile 
	games/gbrainy  : Makefile 
	games/gcompris : Makefile 
	games/gemdropx : Makefile 
	games/gemrb    : Makefile 
	games/glsfcave : Makefile 
	games/gnome-mastermind: Makefile 
	games/gnubg    : Makefile 
	games/gnuchess : Makefile 
	games/gnugo    : Makefile 
	games/gnukem   : Makefile 
	games/gnurobbo : Makefile 
	games/gnushogi : Makefile 
	games/godot    : Makefile 
	games/golly    : Makefile 
	games/gottcode : Makefile.inc 
	games/grhino   : Makefile 
	games/gtetrinet: Makefile 
	games/gti      : Makefile 
	games/gzdoom   : Makefile 
	games/hackdata : Makefile 
	games/hedgewars: Makefile 
	games/hex-a-hop: Makefile 
	games/hypatia  : Makefile 
	games/hyperrogue: Makefile 
	games/instead  : Makefile 
	games/instead-launcher: Makefile 
	games/ioquake3 : Makefile 
	games/irrlamb  : Makefile 
	games/jag      : Makefile 
	games/jbrickshooter: Makefile 
	games/julius   : Makefile 
	games/jumpnbump: Makefile 
	games/kobodeluxe: Makefile 
	games/koboredux: Makefile 
	games/komi     : Makefile 
	games/late     : Makefile 
	games/lbreakout2: Makefile 
	games/liberalcrimesquad: Makefile 
	games/liblcf   : Makefile 
	games/life     : Makefile 
	games/lincity  : Makefile 
	games/lincity-ng: Makefile 
	games/lostpixels: Makefile 
	games/love     : Makefile 
	games/lugaru   : Makefile 
	games/maelstrom: Makefile 
	games/manaplus : Makefile 
	games/mars     : Makefile 
	games/meandmyshadow: Makefile 
	games/megaglest: Makefile.inc 
	games/micropolis: Makefile 
	games/minecraft: Makefile 
	games/minetest : Makefile 
	games/mirrormagic: Makefile 
	games/mnemosyne: Makefile 
	games/moon-buggy: Makefile 
	games/moonlander: Makefile 
	games/mvdsv    : Makefile 
	games/mysticmine: Makefile 
	games/naev     : Makefile.inc 
	games/nethack/3.4: Makefile 
	games/nethack/3.6: Makefile 
	games/netris   : Makefile 
	games/neverball: Makefile 
	games/numptyphysics: Makefile 
	games/oilwar   : Makefile 
	games/oolite   : Makefile 
	games/openarena: Makefile 
	games/openclonk: Makefile 
	games/openfodder: Makefile 
	games/openjk   : Makefile 
	games/openmw   : Makefile 
	games/openomf  : Makefile 
	games/openra   : Makefile 
	games/openrct2 : Makefile 
	games/openttd  : Makefile 
	games/openttd-data: Makefile.inc 
	games/opentyrian: Makefile 
	games/openxcom : Makefile 
	games/pacman-arena: Makefile 
	games/pathological: Makefile 
	games/pentobi  : Makefile 
	games/pingus   : Makefile 
	games/pioneer  : Makefile 
	games/pioneers : Makefile 
	games/pokerth  : Makefile 
	games/polymorphable: Makefile 
	games/postal   : Makefile 
	games/prboom   : Makefile 
	games/prboom-plus: Makefile 
	games/pushover : Makefile 
	games/puzzles  : Makefile 
	games/pyganim  : Makefile 
	games/pysol    : Makefile 
	games/qgo      : Makefile 
	games/qqwing   : Makefile 
	games/qstat    : Makefile 
	games/quadrupleback: Makefile 
	games/redeclipse: Makefile 
	games/renpy    : Makefile 
	games/residualvm: Makefile 
	games/returntotheroots: Makefile 
	games/ri-li    : Makefile 
	games/roadfighter: Makefile 
	games/rocksndiamonds: Makefile 
	games/scid     : Makefile 
	games/scorched3d: Makefile 
	games/scummvm  : Makefile 
	games/scummvm-tools: Makefile 
	games/sdl-jstest: Makefile 
	games/singularity: Makefile 
	games/ski      : Makefile 
	games/sl       : Makefile 
	games/slash    : Makefile 
	games/slash-em : Makefile 
	games/snipe2d  : Makefile 
	games/solarus/solarus: Makefile 
	games/spacehulk: Makefile 
	games/spaceinvaders: Makefile 
	games/spacetrader: Makefile 
	games/spacezero: Makefile 
	games/spatial  : Makefile 
	games/speeddreams: Makefile 
	games/speyes   : Makefile 
	games/spider   : Makefile 
	games/starfighter: Makefile 
	games/steamworks-nosteam: Makefile 
	games/stockfish: Makefile 
	games/sudognu  : Makefile 
	games/sudoku   : Makefile 
	games/sumwars  : Makefile 
	games/supertux : Makefile 
	games/supertuxkart: Makefile 
	games/taisei   : Makefile 
	games/teeworlds: Makefile 
	games/tetrinetx: Makefile 
	games/tome4    : Makefile 
	games/tong     : Makefile 
	games/tornado  : Makefile 
	games/trader   : Makefile 
	games/tutris   : Makefile 
	games/tuxkart  : Makefile 
	games/tuxpaint : Makefile 
	games/tuxpaint-config: Makefile 
	games/tuxpaint-stamps: Makefile 
	games/typespeed: Makefile 
	games/uhexen2  : Makefile 
	games/unknown-horizons: Makefile 
	games/urbanterror: Makefile 
	games/vacuum   : Makefile 
	games/valyriatear: Makefile 
	games/vegastrike: Makefile.inc 
	games/vitetris : Makefile 
	games/vms-empire: Makefile 
	games/vodovod  : Makefile 
	games/warmux   : Makefile 
	games/warzone2100: Makefile 
	games/wesnoth  : Makefile 
	games/wizznic  : Makefile 
	games/wmtictactoe: Makefile 
	games/wordwarvi: Makefile 
	games/wtf      : Makefile 
	games/xasteroids: Makefile 
	games/xbill    : Makefile 
	games/xbl      : Makefile 
	games/xblast   : Makefile 
	games/xboard   : Makefile 
	games/xboing   : Makefile 
	games/xbubble  : Makefile 
	games/xcowsay  : Makefile 
	games/xcubes   : Makefile 
	games/xdino    : Makefile 
	games/xevil    : Makefile 
	games/xgalaga-sdl: Makefile 
	games/xgolgo   : Makefile 
	games/xjewel   : Makefile 
	games/xjig     : Makefile 
	games/xkobo    : Makefile 
	games/xlennart : Makefile 
	games/xlife    : Makefile 
	games/xmine    : Makefile 
	games/xmj      : Makefile 
	games/xmoto    : Makefile 
	games/xneko    : Makefile 
	games/xonix    : Makefile 
	games/xonotic  : Makefile 
	games/xpat2    : Makefile 
	games/xroach   : Makefile 
	games/xscavenger: Makefile 
	games/xscrabble: Makefile 
	games/xskat    : Makefile 
	games/xsoldier : Makefile 
	games/xteddy   : Makefile 
	games/xwelltris: Makefile 
	games/xye      : Makefile 
	games/zaz      : Makefile 
	games/zoom     : Makefile 
	games/ztrack   : Makefile 
	geo/foxtrotgps : Makefile 
	geo/garmindev  : Makefile 
	geo/gdal       : Makefile 
	geo/geoclue    : Makefile 
	geo/geoclue2   : Makefile 
	geo/geocode-glib: Makefile 
	geo/geos       : Makefile 
	geo/gimgtools  : Makefile 
	geo/globe      : Makefile 
	geo/gpsbabel   : Makefile 
	geo/gpstk      : Makefile 
	geo/gpx-viewer : Makefile 
	geo/josm       : Makefile 
	geo/libchamplain: Makefile 
	geo/libosmium  : Makefile 
	geo/libpostal  : Makefile 
	geo/mapcache   : Makefile 
	geo/mapproxy   : Makefile 
	geo/mapserver  : Makefile 
	geo/mdal       : Makefile 
	geo/merkaartor : Makefile 
	geo/openbsd-developers: Makefile 
	geo/osm-gps-map: Makefile 
	geo/osm2pgrouting: Makefile 
	geo/osm2pgsql  : Makefile 
	geo/osrm-backend: Makefile 
	geo/p5-GPS-PRN : Makefile 
	geo/p5-Geo-Coder-US: Makefile 
	geo/p5-Geo-Constants: Makefile 
	geo/p5-Geo-Coordinates-OSGB: Makefile 
	geo/p5-Geo-Coordinates-UTM: Makefile 
	geo/p5-Geo-Coordinates-UTM-XS: Makefile 
	geo/p5-Geo-Ellipsoids: Makefile 
	geo/p5-Geo-Fips55: Makefile 
	geo/p5-Geo-Forward: Makefile 
	geo/p5-Geo-Functions: Makefile 
	geo/p5-Geo-METAR: Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 14:47:59

Modified files:
	geo/p5-Geo-Parse-OSM: Makefile 
	geo/p5-Geo-StreetAddress-US: Makefile 
	geo/p5-Geo-TigerLine: Makefile 
	geo/p5-Geography-Countries: Makefile 
	geo/pdal       : Makefile 
	geo/pgpointcloud: Makefile 
	geo/pgrouting  : Makefile 
	geo/postgis    : Makefile 
	geo/py-cligj   : Makefile 
	geo/py-fiona   : Makefile 
	geo/py-laspy   : Makefile 
	geo/py-owslib  : Makefile 
	geo/py-planet  : Makefile 
	geo/py-proj    : Makefile 
	geo/py-rasterio: Makefile 
	geo/py-rio-cogeo: Makefile 
	geo/py-shapely : Makefile 
	geo/qgis       : Makefile 
	geo/qlandkartegt: Makefile 
	geo/ruby-findmyiphone: Makefile 
	geo/spatialindex: Makefile 
	geo/tilecache  : Makefile 
	geo/traccar    : Makefile 
	geo/viking     : Makefile 
	graphics/DevIL : Makefile 
	graphics/aalib : Makefile 
	graphics/agg   : Makefile 
	graphics/allegropng: Makefile 
	graphics/animorph: Makefile 
	graphics/ansilove: Makefile 
	graphics/aqsis : Makefile 
	graphics/argyll: Makefile 
	graphics/asymptote: Makefile 
	graphics/barcode: Makefile 
	graphics/birdfont: Makefile 
	graphics/blender: Makefile 
	graphics/bonzomatic: Makefile 
	graphics/cadubi: Makefile 
	graphics/cairo : Makefile 
	graphics/cairomm: Makefile 
	graphics/cal3d : Makefile 
	graphics/cfdg  : Makefile 
	graphics/colord: Makefile 
	graphics/colorexplorer: Makefile 
	graphics/comix : Makefile 
	graphics/cstitch: Makefile 
	graphics/ctl   : Makefile 
	graphics/dcmtk : Makefile 
	graphics/dcraw : Makefile 
	graphics/delaboratory: Makefile 
	graphics/dibuja: Makefile 
	graphics/digikam: Makefile 
	graphics/digikam-kde4: Makefile 
	graphics/displaz: Makefile 
	graphics/djview4: Makefile 
	graphics/djvulibre: Makefile 
	graphics/dmtx-utils: Makefile 
	graphics/dpic  : Makefile 
	graphics/drawpile: Makefile 
	graphics/dvdrip: Makefile 
	graphics/enblend-enfuse: Makefile 
	graphics/evince: Makefile 
	graphics/exiftran: Makefile 
	graphics/exiv2 : Makefile 
	graphics/farbfeld: Makefile 
	graphics/feh   : Makefile 
	graphics/ffmpegthumbnailer: Makefile 
	graphics/flameshot: Makefile 
	graphics/fotowall: Makefile 
	graphics/freeglut: Makefile 
	graphics/freeimage: Makefile 
	graphics/fswebcam: Makefile 
	graphics/ftgl  : Makefile 
	graphics/fyre  : Makefile 
	graphics/gd    : Makefile 
	graphics/gdcm  : Makefile 
	graphics/gdk-pixbuf2: Makefile 
	graphics/geeqie: Makefile 
	graphics/gegl  : Makefile 
	graphics/gegl03: Makefile 
	graphics/gegl04: Makefile 
	graphics/geomview: Makefile 
	graphics/gfract: Makefile 
	graphics/gif2png: Makefile 
	graphics/giflib: Makefile 
	graphics/gifsicle: Makefile 
	graphics/giftrans: Makefile 
	graphics/gimp/deskew: Makefile 
	graphics/gimp/liquid-rescale: Makefile 
	graphics/gimp/stable: Makefile 
	graphics/gle   : Makefile 
	graphics/glew  : Makefile 
	graphics/glfw  : Makefile 
	graphics/glm   : Makefile 
	graphics/glpng : Makefile 
	graphics/gmt   : Makefile 
	graphics/gnofract4d: Makefile 
	graphics/gocr  : Makefile 
	graphics/goocanvas2: Makefile 
	graphics/gpicview: Makefile 
	graphics/gprof2dot: Makefile 
	graphics/gracula: Makefile 
	graphics/grafx2: Makefile 
	graphics/graphene: Makefile 
	graphics/graphite2: Makefile 
	graphics/gthumb: Makefile 
	graphics/gtkam : Makefile 
	graphics/gtkimageview: Makefile 
	graphics/hs-colour: Makefile 
	graphics/hs-graphviz: Makefile 
	graphics/hugin : Makefile 
	graphics/icoutils: Makefile 
	graphics/ilmbase: Makefile 
	graphics/img2pdf: Makefile 
	graphics/imlib2: Makefile 
	graphics/imv   : Makefile 
	graphics/inkscape: Makefile 
	graphics/ipe   : Makefile 
	graphics/jasper: Makefile 
	graphics/jbig2dec: Makefile 
	graphics/jbigkit: Makefile 
	graphics/jhead : Makefile 
	graphics/jpeg  : Makefile 
	graphics/jpegdump: Makefile 
	graphics/jpegoptim: Makefile 
	graphics/jpegpixi: Makefile 
	graphics/k3dsurf: Makefile 
	graphics/kdiagram: Makefile 
	graphics/l2p   : Makefile 
	graphics/lcms  : Makefile 
	graphics/lcms2 : Makefile 
	graphics/lensfun: Makefile 
	graphics/leptonica: Makefile 
	graphics/libansilove: Makefile 
	graphics/libart: Makefile 
	graphics/libdmtx: Makefile 
	graphics/libdvbpsi: Makefile 
	graphics/libexif-gtk: Makefile 
	graphics/libgexiv2: Makefile 
	graphics/libgxps: Makefile 
	graphics/libiptcdata: Makefile 
	graphics/liblqr: Makefile 
	graphics/libmng: Makefile 
	graphics/libmpeg2: Makefile 
	graphics/libpgf: Makefile 
	graphics/libqrencode: Makefile 
	graphics/libraw: Makefile 
	graphics/libsixel: Makefile 
	graphics/libwebp: Makefile 
	graphics/libwmf: Makefile 
	graphics/libxmi: Makefile 
	graphics/lsys  : Makefile 
	graphics/luagd : Makefile 
	graphics/luvcview: Makefile 
	graphics/maim  : Makefile 
	graphics/makehuman: Makefile 
	graphics/mandelbulber: Makefile 
	graphics/mapivi: Makefile 
	graphics/mapnik: Makefile 
	graphics/mhgui : Makefile 
	graphics/mirage: Makefile 
	graphics/mojoshader: Makefile 
	graphics/mpeg-lib: Makefile 
	graphics/mscgen: Makefile 
	graphics/mtpaint: Makefile 
	graphics/netpbm: Makefile 
	graphics/nomacs: Makefile 
	graphics/ocrad : Makefile 
	graphics/opencolorio: Makefile 
	graphics/opencsg: Makefile 
	graphics/openexr: Makefile 
	graphics/openexr-viewers: Makefile 
	graphics/openimageio: Makefile 
	graphics/openscenegraph: Makefile 
	graphics/optipng: Makefile 
	graphics/orthanc: Makefile.inc 
	graphics/p5-Barcode-DataMatrix-PNG: Makefile 
	graphics/p5-Cairo: Makefile 
	graphics/p5-Captcha-reCAPTCHA: Makefile 
	graphics/p5-Chart: Makefile 
	graphics/p5-Chart-Clicker: Makefile 
	graphics/p5-Color-Calc: Makefile 
	graphics/p5-Color-Library: Makefile 
	graphics/p5-Color-Scheme: Makefile 
	graphics/p5-GD : Makefile 
	graphics/p5-GD-Barcode: Makefile 
	graphics/p5-GD-Graph: Makefile 
	graphics/p5-GD-Graph3d: Makefile 
	graphics/p5-GD-SVG: Makefile 
	graphics/p5-GD-SecurityImage: Makefile 
	graphics/p5-GD-TextUtil: Makefile 
	graphics/p5-Geometry-Primitive: Makefile 
	graphics/p5-Graphics-Color: Makefile 
	graphics/p5-Graphics-ColorNames: Makefile 
	graphics/p5-Graphics-ColorNames-WWW: Makefile 
	graphics/p5-Graphics-Primitive: Makefile 
	graphics/p5-Graphics-Primitive-Driver-Cairo: Makefile 
	graphics/p5-Image-BioChrome: Makefile 
	graphics/p5-Image-Imlib2: Makefile 
	graphics/p5-Image-Info: Makefile 
	graphics/p5-Image-MetaData-JPEG: Makefile 
	graphics/p5-Imager: Makefile 
	graphics/p5-Imager-QRCode: Makefile 
	graphics/p5-Layout-Manager: Makefile 
	graphics/p5-SVG: Makefile 
	graphics/p5-SVG-Graph: Makefile 
	graphics/p5-Sane: Makefile 
	graphics/pdf2djvu: Makefile 
	graphics/pdfmod: Makefile 
	graphics/pdfsandwich: Makefile 
	graphics/pecl-imagick: Makefile 
	graphics/pho   : Makefile 
	graphics/pinta : Makefile 
	graphics/png   : Makefile 
	graphics/png2ico: Makefile 
	graphics/pngcrush: Makefile 
	graphics/potrace: Makefile 
	graphics/pqiv  : Makefile 
	graphics/prison: Makefile 
	graphics/pstoedit: Makefile 
	graphics/py-cairo: Makefile 
	graphics/py-cycler: Makefile 
	graphics/py-dot: Makefile 
	graphics/py-gd : Makefile 
	graphics/py-imagesize: Makefile 
	graphics/py-opengl: Makefile 
	graphics/py-pygal: Makefile 
	graphics/py-pyx: Makefile 
	graphics/py-qrcode: Makefile 
	graphics/qiv   : Makefile 
	graphics/quesoglc: Makefile 
	graphics/quirc : Makefile 
	graphics/rawstudio: Makefile 
	graphics/rawtherapee: Makefile 
	graphics/ruby-color: Makefile 
	graphics/ruby-gruff: Makefile 
	graphics/s10sh : Makefile 
	graphics/sane-backends: Makefile 
	graphics/scour : Makefile 
	graphics/scratch: Makefile 
	graphics/scrot : Makefile 
	graphics/shared-color-targets: Makefile 
	graphics/shotwell: Makefile 
	graphics/simple-scan: Makefile 
	graphics/sketch: Makefile 
	graphics/slop  : Makefile 
	graphics/sxiv  : Makefile 
	graphics/tesseract: Makefile.inc 
	graphics/tgif  : Makefile 
	graphics/tiff  : Makefile 
	graphics/tiff2png: Makefile 
	graphics/tkimg : Makefile 
	graphics/tkpng : Makefile 
	graphics/ttfautohint: Makefile 
	graphics/vcdimager: Makefile 
	graphics/vid   : Makefile 
	graphics/videod: Makefile 
	graphics/viewnior: Makefile 
	graphics/waffle: Makefile 
	graphics/wmicons: Makefile 
	graphics/xaos  : Makefile 
	graphics/xbmbrowser: Makefile 
	graphics/xdot  : Makefile 
	graphics/xfig  : Makefile 
	graphics/xmedcon: Makefile 
	graphics/xoris : Makefile 
	graphics/xpaint: Makefile 
	graphics/xsane : Makefile 
	graphics/xzgv  : Makefile 
	graphics/zbar  : Makefile 
	graphics/zxing : Makefile 
	inputmethods/anthy: Makefile 
	inputmethods/cellwriter: Makefile 
	inputmethods/fcitx: Makefile 
	inputmethods/fcitx-anthy: Makefile 
	inputmethods/fcitx-chewing: Makefile 
	inputmethods/fcitx-pinyin: Makefile 
	inputmethods/fcitx-qt5: Makefile 
	inputmethods/fcitx-tables: Makefile 
	inputmethods/ibus: Makefile 
	inputmethods/ibus-anthy: Makefile 
	inputmethods/ibus-skk: Makefile 
	inputmethods/libskk: Makefile 
	inputmethods/libtomoe-gtk: Makefile 
	inputmethods/scim: Makefile 
	inputmethods/scim-anthy: Makefile 
	inputmethods/scim-chewing: Makefile 
	inputmethods/scim-fcitx: Makefile 
	inputmethods/scim-hangul: Makefile 
	inputmethods/scim-pinyin: Makefile 
	inputmethods/scim-qtimm: Makefile 
	inputmethods/scim-tables: Makefile 
	inputmethods/tomoe: Makefile 
	inputmethods/uim: Makefile 
	inputmethods/uim-chewing: Makefile 
	inputmethods/uim-tomoe-gtk: Makefile 
	japanese/Wnn   : Makefile 
	japanese/gwaei : Makefile 
	japanese/kakasi: Makefile 
	japanese/kanatest: Makefile 
	japanese/kanjips: Makefile 
	japanese/kasumi: Makefile 
	japanese/kbanner: Makefile 
	japanese/kterm : Makefile 
	japanese/less  : Makefile 
	japanese/mecab : Makefile 
	japanese/nkf   : Makefile 
	japanese/p5-Text-Kakasi: Makefile 
	japanese/skk-jisyo: Makefile 
	java/javaPathHelper: Makefile 
	java/jna       : Makefile 
	java/tanukiwrapper: Makefile 
	korean/hanterm-xf: Makefile 
	korean/libhangul: Makefile 
	lang/STk       : Makefile 
	lang/a60       : Makefile 
	lang/abcl      : Makefile 
	lang/algol68g  : Makefile 
	lang/antlr3    : Makefile 
	lang/apl       : Makefile 
	lang/arena     : Makefile 
	lang/bacon     : Makefile 
	lang/brainfuck : Makefile 
	lang/brandy    : Makefile 
	lang/chicken   : Makefile.inc 
	lang/cim       : Makefile 
	lang/clisp     : Makefile 
	lang/clojure   : Makefile 
	lang/cparser   : Makefile 
	lang/crystal   : Makefile 
	lang/cython    : Makefile 
	lang/datalog   : Makefile 
	lang/duktape   : Makefile 
	lang/eagle     : Makefile 
	lang/ecl       : Makefile 
	lang/elixir    : Makefile 
	lang/erlang    : Makefile.inc 
	lang/expect    : Makefile 
	lang/flang     : Makefile.inc 
	lang/fpc       : Makefile 
	lang/freebasic : Makefile 
	lang/freehdl   : Makefile 
	lang/fsharp    : Makefile 
	lang/g77       : Makefile 
	lang/gambit    : Makefile 
	lang/gawk      : Makefile 
	lang/gerbil    : Makefile 
	lang/gforth    : Makefile 
	lang/ghc       : Makefile 
	lang/gnucobol  : Makefile 
	lang/go        : Makefile 
	lang/gpc       : Makefile 
	lang/gprolog   : Makefile 
	lang/gravity   : Makefile 
	lang/guile     : Makefile 
	lang/icon/interp: Makefile 
	lang/icon/lib  : Makefile 
	lang/intel2gas : Makefile 
	lang/iverilog  : Makefile 
	lang/jimtcl    : Makefile 
	lang/jruby     : Makefile 
	lang/kona      : Makefile 
	lang/librep    : Makefile 
	lang/libv8     : Makefile 
	lang/lua       : Makefile.inc 
	lang/luajit    : Makefile 
	lang/moarvm    : Makefile 
	lang/mono      : Makefile 
	lang/mruby     : Makefile 
	lang/myhdl     : Makefile 
	lang/myrddin   : Makefile 
	lang/nbfc      : Makefile 
	lang/newlisp   : Makefile 
	lang/nim       : Makefile 
	lang/node      : Makefile 
	lang/nqp       : Makefile 
	lang/obc       : Makefile 
	lang/ocaml     : Makefile 
	lang/ocaml-camlp4: Makefile 
	lang/ocaml-camlp5: Makefile 
	lang/otcl      : Makefile 
	lang/p5-Language-Ook: Makefile 
	lang/parrot    : Makefile 
	lang/pcbasic   : Makefile 
	lang/pcc       : Makefile 
	lang/pfe       : Makefile 
	lang/processing: Makefile 
	lang/pypy      : Makefile 
	lang/python    : Makefile.inc 
	lang/racket-minimal: Makefile 
	lang/rakudo    : Makefile 
	lang/regina    : Makefile 
	lang/sbcl      : Makefile 
	lang/scheme-report: Makefile 
	lang/scheme48  : Makefile 
	lang/scm       : Makefile 
	lang/secularize: Makefile 
	lang/seed7     : Makefile 
	lang/snobol4   : Makefile 
	lang/spin      : Makefile 
	lang/squeak    : Makefile.inc 
	lang/swi-prolog: Makefile 
	lang/tcl/8.5   : Makefile 
	lang/tcl/8.6   : Makefile 
	lang/tcltutor  : Makefile 
	lang/tinyscheme: Makefile 
	lang/ucblogo   : Makefile 
	lang/verilator : Makefile 
	lang/wabt      : Makefile 
	mail/abook     : Makefile 
	mail/adcomplain: Makefile 
	mail/akpop3d   : Makefile 
	mail/alpine    : Makefile 
	mail/amavisd-new: Makefile 
	mail/archivemail: Makefile 
	mail/archiveopteryx: Makefile 
	mail/asmail    : Makefile 
	mail/avenger   : Makefile 
	mail/bmf       : Makefile 
	mail/bogofilter: Makefile 
	mail/bulk_mailer: Makefile 
	mail/clamnailer: Makefile 
	mail/clamsmtp  : Makefile 
	mail/claws-mail: Makefile 
	mail/courier-authlib: Makefile 
	mail/courier-imap: Makefile 
	mail/courier-unicode: Makefile 
	mail/cue       : Makefile 
	mail/cyrus-imapd: Makefile 
	mail/dkimproxy : Makefile 
	mail/dovecot   : Makefile 
	mail/dovecot-pigeonhole: Makefile 
	mail/dspam     : Makefile 
	mail/elm       : Makefile 
	mail/enigmail  : Makefile 
	mail/evolution-ews: Makefile 
	mail/evolution-rss: Makefile 
	mail/exim      : Makefile 
	mail/exmh2     : Makefile 
	mail/extsmail  : Makefile 
	mail/fdm       : Makefile 
	mail/femail    : Makefile 
	mail/fetchmail : Makefile 
	mail/geary     : Makefile 
	mail/getmail   : Makefile 
	mail/gmime     : Makefile 
	mail/gmime30   : Makefile 
	mail/grepmail  : Makefile 
	mail/greyscanner: Makefile 
	mail/hashcash  : Makefile 
	mail/hypermail : Makefile 
	mail/imapfilter: Makefile 
	mail/imapproxy : Makefile 
	mail/imapsync  : Makefile 
	mail/isync     : Makefile 
	mail/ldapvacation: Makefile 
	mail/libetpan  : Makefile 
	mail/libspf2   : Makefile 
	mail/libsrs2   : Makefile 
	mail/lumail    : Makefile 
	mail/maildrop  : Makefile 
	mail/mailest   : Makefile 
	mail/mailman   : Makefile 
	mail/mailpile  : Makefile 
	mail/mailscanner: Makefile 
	mail/mairix    : Makefile 
	mail/mblaze    : Makefile 
	mail/metamail  : Makefile 
	mail/mew       : Makefile 
	mail/milter-checkrcpt: Makefile 
	mail/milter-greylist: Makefile 
	mail/milter-regex: Makefile 
	mail/milter-spamd: Makefile 
	mail/mimedefang: Makefile 
	mail/mimetic   : Makefile 
	mail/mini_sendmail: Makefile 
	mail/mlmmj     : Makefile 
	mail/movemail  : Makefile 
	mail/mozilla-thunderbird: Makefile 
	mail/msmtp     : Makefile 
	mail/mu        : Makefile 
	mail/nmh       : Makefile 
	mail/nmzmail   : Makefile 
	mail/offlineimap: Makefile 
	mail/opendkim  : Makefile 
	mail/opendmarc : Makefile 
	mail/opensmtpd-extras: Makefile 
	mail/osbf-lua  : Makefile 
	mail/p5-Catalyst-Plugin-Email: Makefile 
	mail/p5-Email-Abstract: Makefile 
	mail/p5-Email-Address-List: Makefile 
	mail/p5-Email-Date: Makefile 
	mail/p5-Email-Date-Format: Makefile 
	mail/p5-Email-Filter: Makefile 
	mail/p5-Email-Folder: Makefile 
	mail/p5-Email-FolderType: Makefile 
	mail/p5-Email-LocalDelivery: Makefile 
	mail/p5-Email-MIME: Makefile 
	mail/p5-Email-MIME-Attachment-Stripper: Makefile 
	mail/p5-Email-MIME-ContentType: Makefile 
	mail/p5-Email-MIME-Encodings: Makefile 
	mail/p5-Email-MessageID: Makefile 
	mail/p5-Email-Received: Makefile 
	mail/p5-Email-Reply: Makefile 
	mail/p5-Email-Send: Makefile 
	mail/p5-Email-Sender: Makefile 
	mail/p5-Email-Simple: Makefile 
	mail/p5-Email-Valid: Makefile 
	mail/p5-Email-Valid-Loose: Makefile 
	mail/p5-FuzzyOcr: Makefile 
	mail/p5-GMail-IMAPD: Makefile 
	mail/p5-Log-Procmail: Makefile 
	mail/p5-MIME-Base32: Makefile 
	mail/p5-MIME-Charset: Makefile 
	mail/p5-MIME-EncWords: Makefile 
	mail/p5-MIME-Lite: Makefile 
	mail/p5-MIME-Lite-HTML: Makefile 
	mail/p5-MIME-Types: Makefile 
	mail/p5-MIME-tools: Makefile 
	mail/p5-Mail-Alias: Makefile 
	mail/p5-Mail-Audit: Makefile 
	mail/p5-Mail-Box: Makefile 
	mail/p5-Mail-DKIM: Makefile 
	mail/p5-Mail-DKIM-Iterator: Makefile 
	mail/p5-Mail-DMARC-Iterator: Makefile 
	mail/p5-Mail-GnuPG: Makefile 
	mail/p5-Mail-IMAPClient: Makefile 
	mail/p5-Mail-IMAPTalk: Makefile 
	mail/p5-Mail-Mbox-MessageParser: Makefile 
	mail/p5-Mail-Milter-Authentication: Makefile 
	mail/p5-Mail-POP3Client: Makefile 
	mail/p5-Mail-RFC822-Address: Makefile 
	mail/p5-Mail-SPF: Makefile 
	mail/p5-Mail-SPF-Iterator: Makefile 
	mail/p5-Mail-SPF-Query: Makefile 
	mail/p5-Mail-SPF-Test: Makefile 
	mail/p5-Mail-Sender: Makefile 
	mail/p5-Mail-SpamAssassin: Makefile 
	mail/p5-Mail-Tools: Makefile 
	mail/p5-Mail-Webmail-Gmail: Makefile 
	mail/p5-SMTP-Server: Makefile 
	mail/pear-Mail : Makefile 
	mail/pear-Mail-mimeDecode: Makefile 
	mail/pear-Mime-Type: Makefile 
	mail/perdition : Makefile 
	mail/pflogsumm : Makefile 
	mail/pine-pgp-filters: Makefile 
	mail/pop3d     : Makefile 
	mail/popa3d    : Makefile 
	mail/popclient : Makefile 
	mail/postfix-policyd-spf-perl: Makefile 
	mail/postgrey  : Makefile 
	mail/procmail  : Makefile 
	mail/py-authres: Makefile 
	mail/py-milter : Makefile 
	mail/py-policyd-spf: Makefile 
	mail/py-spf    : Makefile 
	mail/pyzor     : Makefile 
	mail/razor-agents: Makefile 
	mail/rcube-dkimstatus: Makefile 
	mail/rcube-ldapAliasSync: Makefile 
	mail/rcube-markasjunk2: Makefile 
	mail/relaydb   : Makefile 
	mail/rss2email : Makefile 
	mail/ruby-mail : Makefile 
	mail/ruby-mime-types: Makefile 
	mail/ruby-mime-types-data: Makefile 
	mail/ruby-mini_mime: Makefile 
	mail/s-nail    : Makefile 
	mail/sendmail  : Makefile 
	mail/sieve-connect: Makefile 
	mail/signify   : Makefile 
	mail/sma       : Makefile 
	mail/smsmail   : Makefile 
	mail/smtp-vilter: Makefile 
	mail/smtpclient: Makefile 
	mail/spambayes : Makefile 
	mail/sqlgrey   : Makefile 
	mail/sylpheed  : Makefile 
	mail/sympa     : Makefile 
	mail/t-prot    : Makefile 
	mail/thunderbird-i18n: Makefile.inc 
	mail/tmda      : Makefile 
	mail/tnef      : Makefile 
	mail/trojita   : Makefile 
	mail/vrfy      : Makefile 
	mail/wmmultipop3: Makefile 
	mail/wmpop3    : Makefile 
	mail/xlbiff    : Makefile 
	mail/z-push    : Makefile 
	math/aamath    : Makefile 
	math/arpack    : Makefile 
	math/bcal      : Makefile 
	math/blas      : Makefile 
	math/calcoo    : Makefile 
	math/cblas     : Makefile 
	math/cfitsio   : Makefile 
	math/cgal      : Makefile 
	math/coq       : Makefile 
	math/dieharder : Makefile 
	math/eigen3    : Makefile 
	math/fann      : Makefile 
	math/fftw      : Makefile 
	math/fftw3     : Makefile 
	math/foma      : Makefile 
	math/freemat   : Makefile 
	math/galculator: Makefile 
	math/gbc       : Makefile 
	math/ginac     : Makefile 
	math/gnuplot   : Makefile 
	math/grace     : Makefile 
	math/graphviz  : Makefile 
	math/grpn      : Makefile 
	math/gunits    : Makefile 
	math/hc        : Makefile 
	math/hdf5      : Makefile 
	math/hexcalc   : Makefile 
	math/hoc       : Makefile 
	math/jacal     : Makefile 
	math/kst       : Makefile 
	math/lapack    : Makefile 
	math/libcerf   : Makefile 
	math/libtommath: Makefile 
	math/lrs       : Makefile 
	math/mathomatic: Makefile 
	math/matio     : Makefile 
	math/maxima    : Makefile 
	math/mcl       : Makefile 
	math/mcsim     : Makefile 
	math/minisat   : Makefile 
	math/moo       : Makefile 
	math/netcdf    : Makefile 
	math/nlopt     : Makefile 
	math/nonogram  : Makefile 
	math/nonolib   : Makefile 
	math/ntl       : Makefile 
	math/ocaml-num : Makefile 
	math/ocaml-zarith: Makefile 
	math/octave    : Makefile 
	math/openfst   : Makefile 
	math/p5-AI-FANN: Makefile 
	math/p5-AI-NeuralNet-BackProp: Makefile 
	math/p5-AI-NeuralNet-Kohonen: Makefile 
	math/p5-AI-NeuralNet-Kohonen-Visual: Makefile 
	math/p5-AI-NeuralNet-Mesh: Makefile 
	math/p5-AI-Perceptron: Makefile 
	math/p5-Algorithm-Combinatorics: Makefile 
	math/p5-Algorithm-NaiveBayes: Makefile 
	math/p5-Bit-Vector: Makefile 
	math/p5-Business-Hours: Makefile 
	math/p5-Data-PowerSet: Makefile 
	math/p5-GraphViz: Makefile 
	math/p5-Math-Base36: Makefile 
	math/p5-Math-Base85: Makefile 
	math/p5-Math-BaseCnv: Makefile 
	math/p5-Math-Bezier: Makefile 
	math/p5-Math-BigInt-GMP: Makefile 
	math/p5-Math-Calc-Units: Makefile 
	math/p5-Math-Derivative: Makefile 
	math/p5-Math-FFT: Makefile 
	math/p5-Math-Fibonacci: Makefile 
	math/p5-Math-Fibonacci-Phi: Makefile 
	math/p5-Math-GMP: Makefile 
	math/p5-Math-GMPf: Makefile 
	math/p5-Math-GMPz: Makefile 
	math/p5-Math-Int128: Makefile 
	math/p5-Math-Int64: Makefile 
	math/p5-Math-MatrixReal: Makefile 
	math/p5-Math-Random-ISAAC: Makefile 
	math/p5-Math-Round: Makefile 
	math/p5-Math-Spline: Makefile 
	math/p5-Math-Symbolic: Makefile 
	math/p5-Math-SymbolicX-ParserExtensionFactory: Makefile 
	math/p5-Math-VecStat: Makefile 
	math/p5-Number-WithError: Makefile 
	math/p5-Set-IntSpan: Makefile 
	math/p5-Statistics-CaseResampling: Makefile 
	math/p5-Statistics-Contingency: Makefile 
	math/p5-Statistics-Descriptive: Makefile 
	math/pari      : Makefile 
	math/pcalc     : Makefile 
	math/plplot    : Makefile 
	math/prover9   : Makefile.inc 
	math/pspp      : Makefile 
	math/py-Numeric: Makefile 
	math/py-affine : Makefile 
	math/py-bottleneck: Makefile 
	math/py-gnuplot: Makefile 
	math/py-graphviz: Makefile 
	math/py-mpmath : Makefile 
	math/py-numexpr: Makefile 
	math/py-pandas : Makefile 
	math/py-patsy  : Makefile 
	math/py-probstat: Makefile 
	math/py-pysmt  : Makefile 
	math/py-snuggs : Makefile 
	math/py-statistics: Makefile 
	math/qhull     : Makefile 
	math/qrupdate  : Makefile 
	math/sc        : Makefile 
	math/spread-sheet-widget: Makefile 
	math/suitesparse: Makefile 
	math/udunits   : Makefile 
	math/veusz     : Makefile 
	math/wcalc     : Makefile 
	math/wmcalc    : Makefile 
	math/wxMaxima  : Makefile 
	math/yorick    : Makefile 
	math/z3        : Makefile 
	meta           : Makefile.inc 
	misc/WordGenerator: Makefile 
	misc/bible-kjv : Makefile 
	misc/blink1    : Makefile 
	misc/brltty    : Makefile 
	misc/bsdiff    : Makefile 
	misc/buffer    : Makefile 
	misc/cbb       : Makefile 
	misc/ccze      : Makefile 
	misc/cdrdao    : Makefile 
	misc/chemical-mime-data: Makefile 
	misc/clex      : Makefile 
	misc/cmdpack   : Makefile 
	misc/deco      : Makefile 
	misc/delay     : Makefile 
	misc/dialog    : Makefile 
	misc/digitemp  : Makefile 
	misc/divecmd   : Makefile 
	misc/dtach     : Makefile 
	misc/dtcltiny  : Makefile 
	misc/dvtm      : Makefile 
	misc/ent       : Makefile 
	misc/fasd      : Makefile 
	misc/feathernotes: Makefile 
	misc/figlet    : Makefile 
	misc/findutils : Makefile 
	misc/ftdi-eeprom: Makefile 
	misc/garmin-utils: Makefile 
	misc/geekcode  : Makefile 
	misc/gnugetopt : Makefile 
	misc/gnuwatch  : Makefile 
	misc/gpsd      : Makefile 
	misc/gramps    : Makefile 
	misc/gtk3mm-documentation: Makefile 
	misc/gutenpy   : Makefile 
	misc/hfsplus   : Makefile 
	misc/ietf-cli  : Makefile 
	misc/insult    : Makefile 
	misc/libdivecomputer: Makefile 
	misc/lifelines : Makefile 
	misc/magicpoint: Makefile 
	misc/memcached : Makefile 
	misc/memchan   : Makefile 
	misc/migrationtools: Makefile 
	misc/most      : Makefile 
	misc/nyancat   : Makefile 
	misc/os-test   : Makefile 
	misc/p5-Acme-LOLCAT: Makefile 
	misc/p5-CreditCard: Makefile 
	misc/p5-File-LibMagic: Makefile 
	misc/p5-File-MMagic: Makefile 
	misc/p5-File-MMagic-XS: Makefile 
	misc/p5-File-Rotate-Backup: Makefile 
	misc/p5-Finance-IIF: Makefile 
	misc/p5-Finance-Quote: Makefile 
	misc/p5-Finance-QuoteHist: Makefile 
	misc/p5-I18N-Charset: Makefile 
	misc/p5-Lingua-Romana-Perligata: Makefile 
	misc/p5-Spreadsheet-ParseExcel: Makefile 
	misc/p5-Spreadsheet-WriteExcel: Makefile 
	misc/p5-Term-Animation: Makefile 
	misc/p5-Umph-Prompt: Makefile 
	misc/p5-User   : Makefile 
	misc/p5-User-Identity: Makefile 
	misc/pdmenu    : Makefile 
	misc/plan      : Makefile 
	misc/portroach : Makefile 
	misc/posixtestsuite: Makefile 
	misc/py-imdb   : Makefile 
	misc/py-memcached: Makefile 
	misc/pymissile : Makefile 
	misc/randtype  : Makefile 
	misc/redshift  : Makefile 
	misc/reprepro  : Makefile 
	misc/rlwrap    : Makefile 
	misc/rocrail   : Makefile 
	misc/rpm       : Makefile 
	misc/screen    : Makefile 
	misc/sent      : Makefile 
	misc/shared-desktop-ontologies: Makefile 
	misc/shared-mime-info: Makefile 
	misc/spdrs60   : Makefile 
	misc/srcpd     : Makefile 
	misc/subsurface: Makefile 
	misc/supercat  : Makefile 
	misc/tapclean  : Makefile 
	misc/teseq     : Makefile 
	misc/tkcron    : Makefile 
	misc/tkinfo    : Makefile 
	misc/tkman     : Makefile 
	misc/toilet    : Makefile 
	misc/tpp       : Makefile 
	misc/tpwireless: Makefile 
	misc/ttyrec    : Makefile 
	misc/uniutils  : Makefile 
	misc/viz       : Makefile 
	misc/vttest    : Makefile 
	misc/wmmand    : Makefile 
	misc/xcdroast  : Makefile 
	misc/xd        : Makefile 
	misc/xgas      : Makefile 
	misc/xkcd-viewer: Makefile 
	misc/xless     : Makefile 
	misc/xtar      : Makefile 
	misc/xtimer    : Makefile 
	misc/ytree     : Makefile 
	misc/zzuf      : Makefile 
	multimedia/assimp: Makefile 
	multimedia/audiopreview: Makefile 
	multimedia/avinfo: Makefile 
	multimedia/ccextractor: Makefile 
	multimedia/dav1d: Makefile 
	multimedia/devede: Makefile 
	multimedia/dvdauthor: Makefile 
	multimedia/dvdbackup: Makefile 
	multimedia/dvdstyler: Makefile 
	multimedia/get_flash_videos: Makefile 
	multimedia/gnome-twitch: Makefile 
	multimedia/hdhomerun: Makefile 
	multimedia/imagination: Makefile 
	multimedia/kguitar: Makefile 
	multimedia/libass: Makefile 
	multimedia/libbluray: Makefile 
	multimedia/libdv: Makefile 
	multimedia/libdvdnav: Makefile 
	multimedia/libmatroska: Makefile 
	multimedia/libmms: Makefile 
	multimedia/libquicktime: Makefile 
	multimedia/libtheora: Makefile 
	multimedia/libtheorafile: Makefile 
	multimedia/libtheoraplay: Makefile 
	multimedia/libv4l: Makefile 
	multimedia/libvpx: Makefile 
	multimedia/lives: Makefile 
	multimedia/lsdvd: Makefile 
	multimedia/mediainfo: Makefile 
	multimedia/ming: Makefile 
	multimedia/mjpegtools: Makefile 
	multimedia/mkvtoolnix: Makefile 
	multimedia/mlt : Makefile 
	multimedia/mpgtx: Makefile 
	multimedia/oggconvert: Makefile 
	multimedia/oggz: Makefile 
	multimedia/ogmrip: Makefile 
	multimedia/ogmtools: Makefile 
	multimedia/p5-Data-AMF: Makefile 
	multimedia/p5-Mac-iTunes-Library: Makefile 
	multimedia/phonon: Makefile 
	multimedia/phonon-qt5: Makefile 
	multimedia/py-caption: Makefile 
	multimedia/py-casttube: Makefile 
	multimedia/py-chromecast: Makefile 
	multimedia/py-pafy: Makefile 
	multimedia/qt-gstreamer: Makefile 
	multimedia/qtav: Makefile 
	multimedia/regionset: Makefile 
	multimedia/sfml: Makefile 
	multimedia/shrip: Makefile 
	multimedia/streamdvd: Makefile 
	multimedia/streamlink: Makefile 
	multimedia/subrip: Makefile 
	multimedia/subtitleripper: Makefile 
	multimedia/swfmill: Makefile 
	multimedia/swftools: Makefile 
	multimedia/synfig: Makefile 
	multimedia/synfigstudio: Makefile 
	multimedia/transcode: Makefile 
	multimedia/upplay: Makefile 
	multimedia/vitunes: Makefile 
	multimedia/xine-ui: Makefile 
	multimedia/xvidcore: Makefile 
	multimedia/yle-dl: Makefile 
	net/adns       : Makefile 
	net/adsuck     : Makefile 
	net/aggregate  : Makefile 
	net/aggregate6 : Makefile 
	net/amule      : Makefile 
	net/angst      : Makefile 
	net/ap-utils   : Makefile 
	net/apache-activemq: Makefile 
	net/argus      : Makefile 
	net/argus-clients: Makefile 
	net/arpd       : Makefile 
	net/arping     : Makefile 
	net/arpwatch   : Makefile 
	net/avahi      : Makefile 
	net/axel       : Makefile 
	net/balance    : Makefile 
	net/bindgraph  : Makefile 
	net/bing       : Makefile 
	net/bitcoin    : Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 14:49:09

Modified files:
	net/bitlbee    : Makefile 
	net/bnc        : Makefile 
	net/btpd       : Makefile 
	net/cadaver    : Makefile 
	net/castget    : Makefile 
	net/cftp       : Makefile 
	net/cgo        : Makefile 
	net/cgterm     : Makefile 
	net/cjc        : Makefile 
	net/clic       : Makefile 
	net/climm      : Makefile 
	net/clive      : Makefile 
	net/cnupm      : Makefile 
	net/coccinella : Makefile 
	net/cppzmq     : Makefile 
	net/crawl      : Makefile 
	net/curl       : Makefile 
	net/cvsync     : Makefile 
	net/czmq       : Makefile 
	net/daq        : Makefile 
	net/darkstat   : Makefile 
	net/dclib      : Makefile 
	net/ddclient   : Makefile 
	net/deluge     : Makefile 
	net/deluge-ltconfig: Makefile 
	net/dhcdrop    : Makefile 
	net/dhcpdump   : Makefile 
	net/dhcping    : Makefile 
	net/dico       : Makefile 
	net/dictd      : Makefile 
	net/dleyna     : Makefile.inc 
	net/dlint      : Makefile 
	net/dnscrypt-proxy: Makefile 
	net/dnsdist    : Makefile 
	net/dnsmasq    : Makefile 
	net/dnsperf    : Makefile 
	net/dnsreflector: Makefile 
	net/dnstop     : Makefile 
	net/dnstracer  : Makefile 
	net/doc        : Makefile 
	net/dsocks     : Makefile 
	net/dxpc       : Makefile 
	net/echoping   : Makefile 
	net/ejabberd   : Makefile 
	net/ekg        : Makefile 
	net/enet       : Makefile 
	net/epic4      : Makefile 
	net/etherape   : Makefile 
	net/exabgp     : Makefile 
	net/ezstream   : Makefile 
	net/fastnetmon : Makefile 
	net/filezilla  : Makefile 
	net/firewalk   : Makefile 
	net/flickcurl  : Makefile 
	net/flow-tools : Makefile 
	net/flowd      : Makefile 
	net/flvstreamer: Makefile 
	net/fpdns      : Makefile 
	net/freeradius : Makefile 
	net/freetalk   : Makefile 
	net/ftpcopy    : Makefile 
	net/ftpsesame  : Makefile 
	net/gdnsd      : Makefile 
	net/geomyidae  : Makefile 
	net/gloox      : Makefile 
	net/gmudix     : Makefile 
	net/gnugk      : Makefile 
	net/gopher     : Makefile 
	net/gophernicus: Makefile 
	net/gotthard   : Makefile 
	net/grake      : Makefile 
	net/gssdp      : Makefile 
	net/gtk-gnutella: Makefile 
	net/h323plus   : Makefile 
	net/haproxy    : Makefile 
	net/hexchat    : Makefile 
	net/honeyd     : Makefile 
	net/hping      : Makefile 
	net/hpodder    : Makefile 
	net/hs-HTTP    : Makefile 
	net/hs-hostname: Makefile 
	net/httptunnel : Makefile 
	net/icbd       : Makefile 
	net/icbirc     : Makefile 
	net/icecast    : Makefile 
	net/ices       : Makefile 
	net/ices2      : Makefile 
	net/icli       : Makefile 
	net/icmpinfo   : Makefile 
	net/ifstat     : Makefile 
	net/iftop      : Makefile 
	net/igmpproxy  : Makefile 
	net/ii         : Makefile 
	net/ike-scan   : Makefile 
	net/inadyn     : Makefile 
	net/ipaudit    : Makefile 
	net/ipcad      : Makefile 
	net/ipcalc     : Makefile 
	net/ipcheck    : Makefile 
	net/iperf      : Makefile 
	net/ipfm       : Makefile 
	net/ipfreely   : Makefile 
	net/iplog      : Makefile 
	net/ipsvd      : Makefile 
	net/ipv6-toolkit: Makefile 
	net/ipv6calc   : Makefile 
	net/irc        : Makefile 
	net/ircII      : Makefile 
	net/ircd-hybrid: Makefile 
	net/ircd-ratbox: Makefile 
	net/isc-dhcp   : Makefile 
	net/jabberd    : Makefile 
	net/jftpgw     : Makefile 
	net/jnettop    : Makefile 
	net/kea        : Makefile 
	net/kismet     : Makefile 
	net/kissd      : Makefile 
	net/konversation: Makefile 
	net/ktorrent   : Makefile 
	net/kurly      : Makefile 
	net/ladvd      : Makefile 
	net/ldns       : Makefile.inc 
	net/lftp       : Makefile 
	net/libcares   : Makefile 
	net/libdnet    : Makefile 
	net/libfilezilla: Makefile 
	net/libfstrm   : Makefile 
	net/libgadu    : Makefile 
	net/libircclient: Makefile 
	net/libktorrent: Makefile 
	net/libkvkontakte: Makefile 
	net/libmaxminddb: Makefile 
	net/libmesode  : Makefile 
	net/libmygpo-qt: Makefile 
	net/libnet     : Makefile.inc 
	net/liboauth   : Makefile 
	net/liboping   : Makefile 
	net/libpcapnav : Makefile 
	net/libproxy   : Makefile 
	net/librest    : Makefile 
	net/librsync   : Makefile 
	net/libshout   : Makefile 
	net/libsignal-protocol-c: Makefile 
	net/libsmi     : Makefile 
	net/libst      : Makefile 
	net/libstrophe : Makefile 
	net/libtorrent : Makefile 
	net/libtorrent-rasterbar: Makefile 
	net/libupnp    : Makefile 
	net/libupnpp   : Makefile 
	net/libvncserver: Makefile 
	net/livemedia  : Makefile 
	net/loudmouth  : Makefile 
	net/lua-mmdb   : Makefile 
	net/lua-psl    : Makefile 
	net/luasocket  : Makefile 
	net/maradns    : Makefile 
	net/maradns-deadwood: Makefile 
	net/mattermost-server: Makefile 
	net/mbrowse    : Makefile 
	net/mcabber    : Makefile 
	net/mcast-proxy: Makefile 
	net/meanwhile  : Makefile 
	net/megatools  : Makefile 
	net/microblog-purple: Makefile 
	net/minbif     : Makefile 
	net/mininet    : Makefile 
	net/minio      : Makefile.inc 
	net/miniupnp   : Makefile.inc 
	net/mktorrent  : Makefile 
	net/mldonkey   : Makefile 
	net/mlvpn      : Makefile 
	net/mosquitto  : Makefile 
	net/mrtg       : Makefile 
	net/msdl       : Makefile 
	net/mudix      : Makefile 
	net/munin      : Makefile 
	net/mutella    : Makefile 
	net/mygpoclient: Makefile 
	net/nagios/check_bioctl: Makefile 
	net/nagios/check_esxi_hardware: Makefile 
	net/nagios/check_hw_sensors: Makefile 
	net/nagios/check_mssql_health: Makefile 
	net/nagios/check_openbgpd: Makefile 
	net/nagios/check_rabbitmq: Makefile 
	net/nagios/cnagios: Makefile 
	net/nagios/nagios: Makefile 
	net/nagios/nrpe: Makefile 
	net/nagios/nsca: Makefile 
	net/nanomsg    : Makefile 
	net/natpmpd    : Makefile 
	net/nbtscan    : Makefile 
	net/nemesis    : Makefile 
	net/neon       : Makefile 
	net/nepim      : Makefile 
	net/netatalk   : Makefile 
	net/netatalk3  : Makefile 
	net/netbsd-iscsi-target: Makefile 
	net/netfwd     : Makefile 
	net/netinfo    : Makefile 
	net/netpipes   : Makefile 
	net/netrate    : Makefile 
	net/netsed     : Makefile 
	net/ngircd     : Makefile 
	net/ngrep      : Makefile 
	net/nload      : Makefile 
	net/nmap       : Makefile 
	net/no-ip      : Makefile 
	net/ns         : Makefile 
	net/nslint     : Makefile 
	net/nsping     : Makefile 
	net/ntp        : Makefile 
	net/nylon      : Makefile 
	net/nyx        : Makefile 
	net/obfs4proxy : Makefile 
	net/oggfwd     : Makefile 
	net/oidentd    : Makefile 
	net/olsrd      : Makefile 
	net/onioncat   : Makefile 
	net/onionshare : Makefile 
	net/openfire   : Makefile 
	net/openmdns   : Makefile 
	net/openvmps   : Makefile 
	net/openvpn_bsdauth: Makefile 
	net/ortp       : Makefile 
	net/osrtspproxy: Makefile 
	net/owamp      : Makefile 
	net/owncloudclient: Makefile 
	net/p5-AnyEvent-IRC: Makefile 
	net/p5-BSD-Socket-Splice: Makefile 
	net/p5-Bot-BasicBot: Makefile 
	net/p5-Chatbot-Eliza: Makefile 
	net/p5-DNS-ZoneParse: Makefile 
	net/p5-Danga-Socket: Makefile 
	net/p5-Event-RPC: Makefile 
	net/p5-Filesys-Virtual-DAAP: Makefile 
	net/p5-GRID-Machine: Makefile 
	net/p5-Geo-IP  : Makefile 
	net/p5-GeoIP2  : Makefile 
	net/p5-IO-Interface: Makefile 
	net/p5-IO-Socket-INET6: Makefile 
	net/p5-IO-Socket-Socks: Makefile 
	net/p5-IO-Socket-Timeout: Makefile 
	net/p5-IP-Country: Makefile 
	net/p5-IP-Country-DB_File: Makefile 
	net/p5-IRC-Utils: Makefile 
	net/p5-MaxMind-DB-Common: Makefile 
	net/p5-MaxMind-DB-Reader: Makefile 
	net/p5-MaxMind-DB-Reader-XS: Makefile 
	net/p5-MaxMind-DB-Writer: Makefile 
	net/p5-Net-Amazon: Makefile 
	net/p5-Net-BGP : Makefile 
	net/p5-Net-CIDR: Makefile 
	net/p5-Net-CIDR-Lite: Makefile 
	net/p5-Net-DAAP-Client: Makefile 
	net/p5-Net-DAAP-DMAP: Makefile 
	net/p5-Net-DAV-Server: Makefile 
	net/p5-Net-DBus: Makefile 
	net/p5-Net-DNS : Makefile 
	net/p5-Net-DNS-DynDNS: Makefile 
	net/p5-Net-DNS-Resolver-Mock: Makefile 
	net/p5-Net-DNS-Resolver-Programmable: Makefile 
	net/p5-Net-DNS-SEC: Makefile 
	net/p5-Net-Daemon: Makefile 
	net/p5-Net-Dict: Makefile 
	net/p5-Net-Domain-TLD: Makefile 
	net/p5-Net-FTP-AutoReconnect: Makefile 
	net/p5-Net-FTP-Recursive: Makefile 
	net/p5-Net-FTPSSL: Makefile 
	net/p5-Net-FTPServer: Makefile 
	net/p5-Net-Flow: Makefile 
	net/p5-Net-Frame: Makefile 
	net/p5-Net-Frame-Dump: Makefile 
	net/p5-Net-Frame-Layer-ICMPv6: Makefile 
	net/p5-Net-Frame-Layer-IPv6: Makefile 
	net/p5-Net-GPSD: Makefile 
	net/p5-Net-Google: Makefile 
	net/p5-Net-ICal: Makefile 
	net/p5-Net-IMP : Makefile 
	net/p5-Net-IMP-HTTP: Makefile 
	net/p5-Net-INET6Glue: Makefile 
	net/p5-Net-IP  : Makefile 
	net/p5-Net-IP-Minimal: Makefile 
	net/p5-Net-IP-XS: Makefile 
	net/p5-Net-IPTrie: Makefile 
	net/p5-Net-IPv4Addr: Makefile 
	net/p5-Net-IPv6Addr: Makefile 
	net/p5-Net-IRC : Makefile 
	net/p5-Net-Ident: Makefile 
	net/p5-Net-Inspect: Makefile 
	net/p5-Net-Jabber: Makefile 
	net/p5-Net-MySQL: Makefile 
	net/p5-Net-NTP : Makefile 
	net/p5-Net-Netmask: Makefile 
	net/p5-Net-OAuth: Makefile 
	net/p5-Net-OpenSSH: Makefile 
	net/p5-Net-PH  : Makefile 
	net/p5-Net-ParseWhois: Makefile 
	net/p5-Net-Patricia: Makefile 
	net/p5-Net-Pcap: Makefile 
	net/p5-Net-Pcap-Reassemble: Makefile 
	net/p5-Net-PcapWriter: Makefile 
	net/p5-Net-Ping-External: Makefile 
	net/p5-Net-Radius: Makefile 
	net/p5-Net-RawIP: Makefile 
	net/p5-Net-SCP : Makefile 
	net/p5-Net-SFTP: Makefile 
	net/p5-Net-SFTP-Foreign: Makefile 
	net/p5-Net-SMTP-SSL: Makefile 
	net/p5-Net-SMTP-TLS-ButMaintained: Makefile 
	net/p5-Net-SMTPS: Makefile 
	net/p5-Net-SMTP_auth: Makefile 
	net/p5-Net-SNMP: Makefile 
	net/p5-Net-SNPP: Makefile 
	net/p5-Net-SSH : Makefile 
	net/p5-Net-SSH-Expect: Makefile 
	net/p5-Net-SSH-Perl: Makefile 
	net/p5-Net-SSH2: Makefile 
	net/p5-Net-Server-SS-PreFork: Makefile 
	net/p5-Net-Snort-Parser: Makefile 
	net/p5-Net-Subnets: Makefile 
	net/p5-Net-TFTP: Makefile 
	net/p5-Net-Telnet: Makefile 
	net/p5-Net-Telnet-Cisco: Makefile 
	net/p5-Net-Traceroute: Makefile 
	net/p5-Net-Twitter: Makefile 
	net/p5-Net-Twitter-Lite: Makefile 
	net/p5-Net-UPnP: Makefile 
	net/p5-Net-Wake: Makefile 
	net/p5-Net-Whois: Makefile 
	net/p5-Net-Whois-RIPE: Makefile 
	net/p5-Net-Works: Makefile 
	net/p5-Net-XMPP: Makefile 
	net/p5-Net-XWhois: Makefile 
	net/p5-Net-Z3950-Zoom: Makefile 
	net/p5-Net-eBay: Makefile 
	net/p5-NetAddr-IP: Makefile 
	net/p5-NetAddr-MAC: Makefile 
	net/p5-NetPacket: Makefile 
	net/p5-Nmap-Parser: Makefile 
	net/p5-OSPF-LSDB: Makefile 
	net/p5-POE-Component-Client-DNS: Makefile 
	net/p5-POE-Component-Client-DNS-Recursive: Makefile 
	net/p5-POE-Component-Client-HTTP: Makefile 
	net/p5-POE-Component-Client-Keepalive: Makefile 
	net/p5-POE-Component-IRC: Makefile 
	net/p5-POE-Component-IRC-Plugin-RSS-Headlines: Makefile 
	net/p5-POE-Component-Jabber: Makefile 
	net/p5-POE-Component-Pcap: Makefile 
	net/p5-POE-Component-Resolver: Makefile 
	net/p5-POE-Component-Server-DNS: Makefile 
	net/p5-POE-Component-Server-FTP: Makefile 
	net/p5-POE-Filter-DNS-TCP: Makefile 
	net/p5-POE-Filter-IRCD: Makefile 
	net/p5-PlRPC   : Makefile 
	net/p5-RPC-XML : Makefile 
	net/p5-Regexp-Common-net-CIDR: Makefile 
	net/p5-SNMP-BridgeQuery: Makefile 
	net/p5-SNMP-Info: Makefile 
	net/p5-Server-Starter: Makefile 
	net/p5-Socket-GetAddrInfo: Makefile 
	net/p5-Socket6 : Makefile 
	net/p5-Sys-Hostname-Long: Makefile 
	net/p5-Test-TCP: Makefile 
	net/p5-Validate-Net: Makefile 
	net/p5-XML-RPC : Makefile 
	net/p5-flowd   : Makefile 
	net/packetq    : Makefile 
	net/packit     : Makefile 
	net/pavuk      : Makefile 
	net/pbgpp      : Makefile 
	net/pcapdiff   : Makefile 
	net/pcapmerge  : Makefile 
	net/pchar      : Makefile 
	net/pdnsd      : Makefile 
	net/pear-HTTP  : Makefile 
	net/pear-HTTP-Request: Makefile 
	net/pear-Net-DNS: Makefile 
	net/pear-Net-DNS2: Makefile 
	net/pear-Net-IDNA2: Makefile 
	net/pear-Net-IMAP: Makefile 
	net/pear-Net-IPv4: Makefile 
	net/pear-Net-IPv6: Makefile 
	net/pear-Net-LDAP: Makefile 
	net/pear-Net-LDAP2: Makefile 
	net/pear-Net-Socket: Makefile 
	net/pear-Net-URL: Makefile 
	net/pear-Net-URL-Mapper: Makefile 
	net/pear-Net-URL2: Makefile 
	net/pear-Services-Weather: Makefile 
	net/pear-Services-oEmbed: Makefile 
	net/pen        : Makefile 
	net/pfstat     : Makefile 
	net/pidgin     : Makefile 
	net/pidgin-icb : Makefile 
	net/pidgin-sipe: Makefile 
	net/pidgin-window-merge: Makefile 
	net/pktstat    : Makefile 
	net/plushs     : Makefile 
	net/pmacct     : Makefile 
	net/poco       : Makefile 
	net/poezio     : Makefile 
	net/poink      : Makefile 
	net/pop3gwd    : Makefile 
	net/poptop     : Makefile 
	net/powerdns   : Makefile 
	net/powerdns_recursor: Makefile 
	net/profanity  : Makefile 
	net/prosody    : Makefile 
	net/proxychains-ng: Makefile 
	net/psi        : Makefile 
	net/ptpd       : Makefile 
	net/pure-ftpd  : Makefile 
	net/purple-rocketchat: Makefile 
	net/putty      : Makefile 
	net/py-GeoIP   : Makefile 
	net/py-IOSXR   : Makefile 
	net/py-IP      : Makefile 
	net/py-adns    : Makefile 
	net/py-aiodns  : Makefile 
	net/py-boto    : Makefile 
	net/py-cares   : Makefile 
	net/py-curl    : Makefile 
	net/py-cymruwhois: Makefile 
	net/py-dns     : Makefile 
	net/py-dnslib  : Makefile 
	net/py-dpkt    : Makefile 
	net/py-eapi    : Makefile 
	net/py-flowd   : Makefile 
	net/py-flowtools: Makefile 
	net/py-ftpdlib : Makefile 
	net/py-geventhttpclient: Makefile 
	net/py-idna    : Makefile 
	net/py-ifaddr  : Makefile 
	net/py-impacket: Makefile 
	net/py-ipaddr  : Makefile 
	net/py-ipaddress: Makefile 
	net/py-irclib  : Makefile 
	net/py-junos-eznc: Makefile 
	net/py-libpcap : Makefile 
	net/py-medusa  : Makefile 
	net/py-msgpack : Makefile 
	net/py-netaddr : Makefile 
	net/py-netifaces: Makefile 
	net/py-netmiko : Makefile 
	net/py-nmap    : Makefile 
	net/py-nxos    : Makefile 
	net/py-paho-mqtt: Makefile 
	net/py-pcapy   : Makefile 
	net/py-pf      : Makefile 
	net/py-simplesoap: Makefile 
	net/py-siphon  : Makefile 
	net/py-slixmpp : Makefile 
	net/py-smbc    : Makefile 
	net/py-snmp    : Makefile 
	net/py-socketio-client: Makefile 
	net/py-socks   : Makefile 
	net/py-stem    : Makefile 
	net/py-tld     : Makefile 
	net/py-twitter : Makefile 
	net/py-websocket-client: Makefile 
	net/py-xmpp    : Makefile 
	net/py-xmpppy  : Makefile 
	net/py-zeroconf: Makefile 
	net/py-zmq     : Makefile 
	net/py-zsi     : Makefile 
	net/qbittorrent: Makefile.inc 
	net/qsyncthingtray: Makefile 
	net/qsynergy   : Makefile 
	net/quagga     : Makefile 
	net/queryperf  : Makefile 
	net/queso      : Makefile 
	net/quvi       : Makefile.inc 
	net/rabbitmq-c : Makefile 
	net/rbldnsd    : Makefile 
	net/rsnapshot  : Makefile 
	net/rsync      : Makefile 
	net/rtorrent   : Makefile 
	net/ruby-agcaldav: Makefile 
	net/ruby-eventmachine: Makefile 
	net/ruby-macaddr: Makefile 
	net/ruby-mfi   : Makefile 
	net/ruby-net-dns: Makefile 
	net/ruby-net-http-digest_auth: Makefile 
	net/ruby-net-scp: Makefile 
	net/ruby-net-sftp: Makefile 
	net/ruby-net-ssh: Makefile 
	net/ruby-net-ssh-gateway: Makefile 
	net/ruby-snmp  : Makefile 
	net/ruby-sshkit: Makefile 
	net/sacc       : Makefile 
	net/sbm        : Makefile 
	net/scapy      : Makefile 
	net/seafile    : Makefile.inc 
	net/seafile/libsearpc: Makefile 
	net/sendxmpp   : Makefile 
	net/serf       : Makefile 
	net/sic        : Makefile 
	net/silc-client: Makefile 
	net/silc-server: Makefile 
	net/sing       : Makefile 
	net/slurm      : Makefile 
	net/snmptt     : Makefile 
	net/snort      : Makefile 
	net/socat      : Makefile 
	net/softflowd  : Makefile 
	net/spectrum   : Makefile 
	net/spectrum-tools: Makefile 
	net/ssldump    : Makefile 
	net/sslh       : Makefile 
	net/supybot    : Makefile 
	net/synergy    : Makefile 
	net/tclcurl    : Makefile 
	net/tcludp     : Makefile 
	net/tcpdpriv   : Makefile 
	net/tcpflow    : Makefile 
	net/tcpreen    : Makefile 
	net/tcpreplay  : Makefile 
	net/tcpslice   : Makefile 
	net/tcpstat    : Makefile 
	net/tcptrace   : Makefile 
	net/tcptraceroute: Makefile 
	net/telegram-purple: Makefile 
	net/tinc       : Makefile 
	net/tintin++   : Makefile 
	net/tinyfugue  : Makefile 
	net/tircd      : Makefile 
	net/tircproxy  : Makefile 
	net/tkabber    : Makefile.inc 
	net/tn5250     : Makefile 
	net/toot       : Makefile 
	net/tor        : Makefile 
	net/torsocks   : Makefile 
	net/totd       : Makefile 
	net/toxcore    : Makefile 
	net/toxic      : Makefile 
	net/trafshow   : Makefile 
	net/transmission: Makefile 
	net/trickle    : Makefile 
	net/twirssi    : Makefile 
	net/ucspi-tcp  : Makefile 
	net/ucspi-tools: Makefile 
	net/ucspi-unix : Makefile 
	net/udns       : Makefile 
	net/udptunnel  : Makefile 
	net/uhttpmock  : Makefile 
	net/unison     : Makefile.inc 
	net/unworkable : Makefile 
	net/utox       : Makefile 
	net/uucp       : Makefile 
	net/uucpd      : Makefile 
	net/validns    : Makefile 
	net/vf1        : Makefile 
	net/vncsnapshot: Makefile 
	net/vnstat     : Makefile 
	net/vsftpd     : Makefile 
	net/walker     : Makefile 
	net/websocketd : Makefile 
	net/weex       : Makefile 
	net/wget       : Makefile 
	net/whatweb    : Makefile 
	net/wide-dhcpv6: Makefile 
	net/wifind     : Makefile 
	net/wireguard-go: Makefile 
	net/wireguard-tools: Makefile 
	net/wireless   : Makefile 
	net/wmnetload  : Makefile 
	net/wol        : Makefile 
	net/xl2tpd     : Makefile 
	net/xmlrpc-c   : Makefile 
	net/xmlrpc-epi : Makefile 
	net/xprobe     : Makefile 
	net/yafc       : Makefile 
	net/yaz        : Makefile 
	net/yersinia   : Makefile 
	net/ysmv7      : Makefile 
	net/ytalk      : Makefile 
	net/zabbix     : Makefile 
	net/zeromq     : Makefile 
	net/ziproxy    : Makefile 
	net/znc        : Makefile 
	net/zsync      : Makefile 
	news/aub       : Makefile 
	news/leafnode  : Makefile 
	news/multimail : Makefile 
	news/nzbget    : Makefile 
	news/p5-Gateway: Makefile 
	news/p5-News-Article: Makefile 
	news/p5-News-Newsrc: Makefile 
	news/pan       : Makefile 
	news/py-yenc   : Makefile 
	news/sabnzbd   : Makefile 
	news/ubh       : Makefile 
	plan9/9libs    : Makefile 
	plan9/devdrawserver: Makefile 
	plan9/drawterm : Makefile 
	plan9/plan9port: Makefile 
	plan9/rc       : Makefile 
	plan9/sam      : Makefile 
	plan9/tcs      : Makefile 
	plan9/u9fs     : Makefile 
	plan9/wily     : Makefile 
	print/apsfilter: Makefile 
	print/bg5ps    : Makefile 
	print/bibview  : Makefile 
	print/cups     : Makefile 
	print/cups-bjnp: Makefile 
	print/cups-pdf : Makefile 
	print/cups-pk-helper: Makefile 
	print/detex    : Makefile 
	print/dvi2tty  : Makefile 
	print/enscript : Makefile 
	print/fontforge: Makefile 
	print/foo2zjs  : Makefile 
	print/foomatic-db: Makefile 
	print/foomatic-db-engine: Makefile 
	print/freetype : Makefile 
	print/ghostscript/gnu: Makefile 
	print/ghostscript/gnu-fonts: Makefile 
	print/gl2ps    : Makefile 
	print/gtklp    : Makefile 
	print/gutenprint: Makefile 
	print/gv       : Makefile 
	print/hplip    : Makefile 
	print/ijs      : Makefile 
	print/l2a      : Makefile 
	print/latex-mk : Makefile 
	print/libXp    : Makefile 
	print/libharu  : Makefile 
	print/libspectre: Makefile 
	print/lilypond : Makefile 
	print/lout     : Makefile 
	print/lss      : Makefile 
	print/lyx      : Makefile 
	print/mftrace  : Makefile 
	print/mpage    : Makefile 
	print/muttprint: Makefile 
	print/openclipart: Makefile 
	print/p5-Poppler: Makefile 
	print/p5-PostScript-MailLabels: Makefile 
	print/pdfshuffler: Makefile 
	print/poppler  : Makefile 
	print/poppler-data: Makefile 
	print/printrun : Makefile 
	print/ps2eps   : Makefile 
	print/pscal    : Makefile 
	print/psdim    : Makefile 
	print/psutils  : Makefile 
	print/ptouch-driver: Makefile 
	print/py-cups  : Makefile 
	print/py-poppler: Makefile 
	print/py-relatorio: Makefile 
	print/py-reportlab: Makefile 
	print/qpdf     : Makefile 
	print/scribus  : Makefile 
	print/sile     : Makefile 
	print/splix    : Makefile 
	print/system-config-printer: Makefile 
	print/t1utils  : Makefile 
	print/texinfo  : Makefile 
	print/transfig : Makefile 
	print/unpaper  : Makefile 
	print/xournal  : Makefile 
	print/xprintproto: Makefile 
	productivity/akonadi: Makefile 
	productivity/aqbanking: Makefile 
	productivity/attica: Makefile 
	productivity/baikal: Makefile 
	productivity/bruce: Makefile 
	productivity/calcurse: Makefile 
	productivity/davical: Makefile 
	productivity/deskzilla: Makefile 
	productivity/devtodo: Makefile 
	productivity/entomologist: Makefile 
	productivity/fet: Makefile 
	productivity/gbirthday: Makefile 
	productivity/glabels: Makefile 
	productivity/gnucash: Makefile 
	productivity/grisbi: Makefile 
	productivity/gtg: Makefile 
	productivity/impressive: Makefile 
	productivity/khal: Makefile 
	productivity/kmymoney: Makefile 
	productivity/ledger: Makefile 
	productivity/libalkimia: Makefile 
	productivity/libkfbapi: Makefile 
	productivity/libkgapi: Makefile 
	productivity/librcps: Makefile 
	productivity/mcds: Makefile 
	productivity/osmo: Makefile 
	productivity/p5-Business-Tax-VAT-Validation: Makefile 
	productivity/py-carddav: Makefile 
	productivity/qhacc: Makefile 
	productivity/radicale: Makefile 
	productivity/radicale2: Makefile 
	productivity/rednotebook: Makefile 
	productivity/rubrica2: Makefile 
	productivity/siag: Makefile 
	productivity/sl: Makefile 
	productivity/slideml: Makefile 
	productivity/taskd: Makefile 
	productivity/taskwarrior: Makefile 
	productivity/tdl: Makefile 
	productivity/teapot: Makefile 
	productivity/timewarrior: Makefile 
	productivity/tudu: Makefile 
	productivity/vdirsyncer: Makefile 
	productivity/vit: Makefile 
	productivity/vym: Makefile 
	productivity/when: Makefile 
	productivity/workrave: Makefile 
	productivity/xinvest: Makefile 
	productivity/xquote: Makefile 
	productivity/yokadi: Makefile 
	productivity/zim: Makefile 
	security/aescrypt: Makefile 
	security/aide  : Makefile 
	security/apg   : Makefile 
	security/argon2: Makefile 
	security/arirang: Makefile 
	security/bfbtester: Makefile 
	security/boofuzz: Makefile 
	security/botan : Makefile 
	security/botan2: Makefile 
	security/bounix: Makefile 
	security/bsd-airtools: Makefile 
	security/ccrypt: Makefile 
	security/cgichk: Makefile 
	security/chntpw: Makefile 
	security/chrootuid: Makefile 
	security/clusterssh: Makefile 
	security/corkscrew: Makefile 
	security/cracklib: Makefile 
	security/ctunnel: Makefile 
	security/cvechecker: Makefile 
	security/cyrus-sasl2: Makefile 
	security/despoof: Makefile 
	security/dicepassc: Makefile 
	security/dirb  : Makefile 
	security/distorm3: Makefile 
	security/dropbear: Makefile 
	security/dsniff: Makefile 
	security/easy-rsa: Makefile 
	security/emldump: Makefile 
	security/encfs : Makefile 
	security/erl-bcrypt: Makefile 
	security/fcrackzip: Makefile 
	security/fierce: Makefile 
	security/flasm : Makefile 
	security/floss : Makefile 
	security/foremost: Makefile 
	security/fragroute: Makefile 
	security/fragrouter: Makefile 
	security/fwbuilder: Makefile 
	security/fwknop: Makefile 
	security/ghidra: Makefile 
	security/gnutls: Makefile 
	security/go-ed25519: Makefile 
	security/go-siphash: Makefile 
	security/gopass: Makefile 
	security/gpa   : Makefile 
	security/gpgme : Makefile 
	security/gringotts: Makefile 
	security/hashdeep: Makefile 
	security/hatchet: Makefile 
	security/hitch : Makefile 
	security/hlfl  : Makefile 
	security/hs-SHA: Makefile 
	security/hs-crypto-api: Makefile 
	security/hs-cryptohash: Makefile 
	security/hs-cryptohash-sha256: Makefile 
	security/hs-digest: Makefile 
	security/hs-ed25519: Makefile 
	security/hs-entropy: Makefile 
	security/hs-hackage-security: Makefile 
	security/hydra : Makefile 
	security/ikeman: Makefile 
	security/integrit: Makefile 
	security/ipguard: Makefile 
	security/isic  : Makefile 
	security/jailkit: Makefile 
	security/john  : Makefile 
	security/kc    : Makefile 
	security/keepassx: Makefile 
	security/keepassxc: Makefile 
	security/keybase: Makefile 
	security/keychain: Makefile 
	security/keyringer: Makefile 
	security/klaxon: Makefile 
	security/knockpy: Makefile 
	security/kpcli : Makefile 
	security/kqoauth: Makefile 
	security/lastpass-cli: Makefile 
	security/libassuan: Makefile 
	security/libb2 : Makefile 
	security/libbde: Makefile 
	security/libewf: Makefile 
	security/libfprint: Makefile 
	security/libgcrypt: Makefile 
	security/libgpg-error: Makefile 
	security/libgringotts: Makefile 
	security/libgsasl: Makefile 
	security/libident: Makefile 
	security/libmcrypt: Makefile 
	security/libotr: Makefile 
	security/libpwquality: Makefile 
	security/libscrypt: Makefile 
	security/libssh: Makefile 
	security/libtasn1: Makefile 
	security/luacrypto: Makefile 
	security/luasec: Makefile 
	security/lynis : Makefile 
	security/mcrypt: Makefile 
	security/mhash : Makefile 
	security/nbaudit: Makefile 
	security/netpgp: Makefile 
	security/nikto : Makefile 
	security/nss   : Makefile 
	security/oledump: Makefile 
	security/oletools: Makefile 
	security/opencdk: Makefile 
	security/opendnssec: Makefile 
	security/openpam: Makefile 
	security/opensc: Makefile 
	security/ophcrack: Makefile 
	security/opmsg : Makefile 
	security/origami: Makefile 
	security/ossec-hids: Makefile 
	security/otpcalc: Makefile 
	security/outguess: Makefile 
	security/p0f   : Makefile 
	security/p0f3  : Makefile 
	security/p11-kit: Makefile 
	security/p5-Auth-Yubikey_Decrypter: Makefile 
	security/p5-Authen-Htpasswd: Makefile 
	security/p5-Authen-NTLM: Makefile 
	security/p5-Authen-Radius: Makefile 
	security/p5-Authen-SASL: Makefile 
	security/p5-Catalyst-Authentication-Store-DBI: Makefile 
	security/p5-Catalyst-Authentication-Store-DBIx-Class: Makefile 
	security/p5-Catalyst-Plugin-Authentication: Makefile 
	security/p5-Catalyst-Plugin-Authentication-Store-DBIC: Makefile 
	security/p5-Catalyst-Plugin-Authentication-Store-Htpasswd: 
	                                                           Makefile 
	security/p5-Catalyst-Plugin-Authorization-ACL: Makefile 
	security/p5-Catalyst-Plugin-Authorization-Roles: Makefile 
	security/p5-Crypt-Blowfish_PP: Makefile 
	security/p5-Crypt-CAST5_PP: Makefile 
	security/p5-Crypt-CipherSaber: Makefile 
	security/p5-Crypt-Curve25519: Makefile 
	security/p5-Crypt-DES-EDE3: Makefile 
	security/p5-Crypt-DSA: Makefile 
	security/p5-Crypt-GpgME: Makefile 
	security/p5-Crypt-IDEA: Makefile 
	security/p5-Crypt-OpenSSL-Bignum: Makefile 
	security/p5-Crypt-OpenSSL-DSA: Makefile 
	security/p5-Crypt-OpenSSL-Random: Makefile 
	security/p5-Crypt-OpenSSL-X509: Makefile 
	security/p5-Crypt-RC5: Makefile 
	security/p5-Crypt-RIPEMD160: Makefile 
	security/p5-Crypt-Rijndael: Makefile 
	security/p5-Crypt-SSLeay: Makefile 
	security/p5-Crypt-SaltedHash: Makefile 
	security/p5-Crypt-SmbHash: Makefile 
	security/p5-Crypt-X509: Makefile 
	security/p5-CryptX: Makefile 
	security/p5-Digest-BubbleBabble: Makefile 
	security/p5-Digest-MD2: Makefile 
	security/p5-Digest-MD4: Makefile 
	security/p5-Digest-MD5-M4p: Makefile 
	security/p5-Digest-Nilsimsa: Makefile 
	security/p5-Digest-SHA1: Makefile 
	security/p5-Digest-Skein: Makefile 
	security/p5-File-Scan-ClamAV: Makefile 
	security/p5-GnuPG: Makefile 
	security/p5-IO-Socket-SSL: Makefile 
	security/p5-Module-Signature: Makefile 
	security/p5-Mojolicious-Plugin-Authentication: Makefile 
	security/p5-Mozilla-CA-Fake: Makefile 
	security/p5-Net-SSL-ExpireDate: Makefile 
	security/p5-Net-SSLGlue: Makefile 
	security/p5-Net_SSLeay: Makefile 
	security/p5-PGP-Sign: Makefile 
	security/p5-POE-Component-SSLify: Makefile 
	security/p5-Text-Password-Pronounceable: Makefile 
	security/p5-Tie-EncryptedHash: Makefile 
	security/pass-otp: Makefile 
	security/passwdqc: Makefile 
	security/password-store: Makefile 
	security/pcsc-cyberjack: Makefile 
	security/pcsc-lite: Makefile 
	security/pdf-parser: Makefile 
	security/pdfcrack: Makefile 
	security/pdfid : Makefile 
	security/pear-Auth: Makefile 
	security/pear-Auth-HTTP: Makefile 
	security/pear-Auth-SASL: Makefile 
	security/pgpdump: Makefile 
	security/pidgin-otr: Makefile 
	security/pixiewps: Makefile 
	security/plaso : Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 14:50:18

Modified files:
	security/polarssl: Makefile 
	security/portscanner: Makefile 
	security/pwgen : Makefile 
	security/pwntools: Makefile 
	security/pwsafe: Makefile 
	security/py-M2Crypto: Makefile 
	security/py-PyNaCl: Makefile 
	security/py-Rijndael: Makefile 
	security/py-aes: Makefile 
	security/py-artifacts: Makefile 
	security/py-asn1crypto: Makefile 
	security/py-axolotl: Makefile 
	security/py-axolotl-curve25519: Makefile 
	security/py-crack: Makefile 
	security/py-cryptkit: Makefile 
	security/py-cryptodome: Makefile 
	security/py-dfdatetime: Makefile 
	security/py-dfvfs: Makefile 
	security/py-dfwinreg: Makefile 
	security/py-elfesteem: Makefile 
	security/py-gnupg: Makefile 
	security/py-keyring: Makefile 
	security/py-libnacl: Makefile 
	security/py-miasm: Makefile 
	security/py-openssl: Makefile 
	security/py-paramiko: Makefile 
	security/py-pbkdf2: Makefile 
	security/py-pefile: Makefile 
	security/py-pgpdump: Makefile 
	security/py-potr: Makefile 
	security/py-requests-aws4auth: Makefile 
	security/py-ropper: Makefile 
	security/py-rsa: Makefile 
	security/py-scp: Makefile 
	security/py-secretstorage: Makefile 
	security/py-service_identity: Makefile 
	security/py-viv_utils: Makefile 
	security/py-vivisect: Makefile 
	security/py-yaswfp: Makefile 
	security/qca   : Makefile 
	security/qca-qt5: Makefile 
	security/qoauth: Makefile 
	security/qtkeychain: Makefile 
	security/rarcrack: Makefile 
	security/reaver: Makefile 
	security/recon-ng: Makefile 
	security/regripper: Makefile 
	security/reop  : Makefile 
	security/rhash : Makefile 
	security/routersploit: Makefile 
	security/ruby-openid: Makefile 
	security/ruby-pledge: Makefile 
	security/samdump2: Makefile 
	security/scanlogd: Makefile 
	security/scanssh: Makefile 
	security/scrypt: Makefile 
	security/shash : Makefile 
	security/siphon: Makefile 
	security/smbsniff: Makefile 
	security/smtpscan: Makefile 
	security/smurflog: Makefile 
	security/softhsm: Makefile 
	security/softhsm2: Makefile 
	security/spiped: Makefile 
	security/sqlmap: Makefile 
	security/ssdeep: Makefile 
	security/ssh-askpass-fullscreen: Makefile 
	security/ssh-ldap-helper: Makefile 
	security/sshguard: Makefile 
	security/sshlockout: Makefile 
	security/sslScanner: Makefile 
	security/ssss  : Makefile 
	security/stegdetect: Makefile 
	security/steghide: Makefile 
	security/strobe: Makefile 
	security/stunnel: Makefile 
	security/sudo  : Makefile 
	security/suricata: Makefile 
	security/swatch: Makefile 
	security/tclgpg: Makefile 
	security/tcltls: Makefile 
	security/tempwatch: Makefile 
	security/theharvester: Makefile 
	security/towitoko: Makefile 
	security/vault : Makefile 
	security/vpnc  : Makefile 
	security/wapiti: Makefile 
	security/wesng : Makefile 
	security/wpa_supplicant: Makefile 
	security/wycheproof-testvectors: Makefile 
	security/xmlsec: Makefile 
	security/yara  : Makefile.inc 
	security/zaproxy: Makefile 
	security/zkt   : Makefile 
	shells/bash    : Makefile 
	shells/elvish  : Makefile 
	shells/es      : Makefile 
	shells/etsh    : Makefile 
	shells/fish    : Makefile 
	shells/nsh     : Makefile 
	shells/perlsh  : Makefile 
	shells/py-qtconsole: Makefile 
	shells/sash    : Makefile 
	shells/tcsh    : Makefile 
	shells/yash    : Makefile 
	shells/zoidberg: Makefile 
	shells/zsh     : Makefile 
	sysutils/accountsservice: Makefile 
	sysutils/amazon-ecs-cli: Makefile 
	sysutils/anacron: Makefile 
	sysutils/ansible: Makefile 
	sysutils/ansible-lint: Makefile 
	sysutils/apachetop: Makefile 
	sysutils/apcd  : Makefile 
	sysutils/apcupsd: Makefile 
	sysutils/arm-trusted-firmware: Makefile 
	sysutils/augeas: Makefile 
	sysutils/autossh: Makefile 
	sysutils/awless: Makefile 
	sysutils/aws-shell: Makefile 
	sysutils/backuppc: Makefile 
	sysutils/bchunk: Makefile 
	sysutils/bdfresize: Makefile 
	sysutils/bfs   : Makefile 
	sysutils/binwalk: Makefile 
	sysutils/bitrot: Makefile 
	sysutils/boar  : Makefile 
	sysutils/borgbackup: Makefile 
	sysutils/borgmatic: Makefile 
	sysutils/bubblemon-dockapp: Makefile 
	sysutils/burp  : Makefile.inc 
	sysutils/cdrtools: Makefile 
	sysutils/cfengine: Makefile 
	sysutils/checkbashisms: Makefile 
	sysutils/checkrestart: Makefile 
	sysutils/cl-launch: Makefile 
	sysutils/cloud-agent: Makefile 
	sysutils/clusterit: Makefile 
	sysutils/collectd: Makefile 
	sysutils/colorls: Makefile 
	sysutils/colortail: Makefile 
	sysutils/colortree: Makefile 
	sysutils/consolekit: Makefile 
	sysutils/consul: Makefile 
	sysutils/consul-template: Makefile 
	sysutils/coreutils: Makefile 
	sysutils/cpdup : Makefile 
	sysutils/cpuid : Makefile 
	sysutils/curlftpfs: Makefile 
	sysutils/d-feet: Makefile 
	sysutils/dateutils: Makefile 
	sysutils/dcfldd: Makefile 
	sysutils/ddrescue: Makefile 
	sysutils/deja-dup: Makefile 
	sysutils/detox : Makefile 
	sysutils/dfc   : Makefile 
	sysutils/diffoscope: Makefile 
	sysutils/dinit : Makefile 
	sysutils/direvent: Makefile 
	sysutils/diskrescue: Makefile 
	sysutils/dmassage: Makefile 
	sysutils/dmidecode: Makefile 
	sysutils/dosfstools: Makefile 
	sysutils/downtimed: Makefile 
	sysutils/dsh   : Makefile 
	sysutils/dtb   : Makefile 
	sysutils/dtpstree: Makefile 
	sysutils/duplicity: Makefile 
	sysutils/dvd+rw-tools: Makefile 
	sysutils/dwdiff: Makefile 
	sysutils/e2fsprogs: Makefile 
	sysutils/eventlog: Makefile 
	sysutils/exa   : Makefile 
	sysutils/exfat-fuse: Makefile 
	sysutils/fabric: Makefile 
	sysutils/facette: Makefile 
	sysutils/faubackup: Makefile 
	sysutils/fdupes: Makefile 
	sysutils/findlib: Makefile 
	sysutils/fleetctl: Makefile 
	sysutils/flock : Makefile 
	sysutils/fprintd: Makefile 
	sysutils/free  : Makefile 
	sysutils/freedt: Makefile 
	sysutils/fwa   : Makefile 
	sysutils/fzf   : Makefile 
	sysutils/gamin : Makefile 
	sysutils/gdmap : Makefile 
	sysutils/ggrep : Makefile 
	sysutils/gitolite: Makefile 
	sysutils/glastree: Makefile 
	sysutils/glide : Makefile 
	sysutils/go-cs : Makefile 
	sysutils/google-compute-engine: Makefile 
	sysutils/gource: Makefile 
	sysutils/govmomi: Makefile 
	sysutils/gpioflicker: Makefile 
	sysutils/grafana: Makefile 
	sysutils/grive2: Makefile 
	sysutils/grub  : Makefile 
	sysutils/hotplug-diskmount: Makefile 
	sysutils/htop  : Makefile 
	sysutils/incron: Makefile 
	sysutils/inotify-tools: Makefile 
	sysutils/iogen : Makefile 
	sysutils/ioping: Makefile 
	sysutils/iucode-tool: Makefile 
	sysutils/iwatch: Makefile 
	sysutils/krename: Makefile 
	sysutils/ktsuss: Makefile 
	sysutils/libburn: Makefile 
	sysutils/libesedb: Makefile 
	sysutils/libevt: Makefile 
	sysutils/libevtx: Makefile 
	sysutils/libfsntfs: Makefile 
	sysutils/libfvde: Makefile 
	sysutils/libfwnt: Makefile 
	sysutils/libfwsi: Makefile 
	sysutils/libisoburn: Makefile 
	sysutils/libisofs: Makefile 
	sysutils/liblnk: Makefile 
	sysutils/libmsiecf: Makefile 
	sysutils/libolecf: Makefile 
	sysutils/libqcow: Makefile 
	sysutils/libregf: Makefile 
	sysutils/librelp: Makefile 
	sysutils/libscca: Makefile 
	sysutils/libsigscan: Makefile 
	sysutils/libsmdev: Makefile 
	sysutils/libsmraw: Makefile 
	sysutils/libstatgrab: Makefile 
	sysutils/libvhdi: Makefile 
	sysutils/libvirt-python: Makefile 
	sysutils/libvmdk: Makefile 
	sysutils/libvshadow: Makefile 
	sysutils/libvslvm: Makefile 
	sysutils/lockfile: Makefile 
	sysutils/logfmon: Makefile 
	sysutils/login_duo: Makefile 
	sysutils/login_duress: Makefile 
	sysutils/login_fingerprint: Makefile 
	sysutils/login_krb5: Makefile 
	sysutils/login_ldap: Makefile 
	sysutils/logpp : Makefile 
	sysutils/logstalgia: Makefile 
	sysutils/logstash: Makefile 
	sysutils/logtail: Makefile 
	sysutils/lookat: Makefile 
	sysutils/lscpu : Makefile 
	sysutils/lsyncd: Makefile 
	sysutils/mac-robber: Makefile 
	sysutils/mcollective: Makefile 
	sysutils/memtester: Makefile 
	sysutils/mencal: Makefile 
	sysutils/menulibre: Makefile 
	sysutils/modlogan: Makefile 
	sysutils/monit : Makefile 
	sysutils/monitord: Makefile 
	sysutils/mtools: Makefile 
	sysutils/multitail: Makefile 
	sysutils/multitime: Makefile 
	sysutils/ncal  : Makefile 
	sysutils/ncdu  : Makefile 
	sysutils/ndesk-dbus: Makefile 
	sysutils/ndesk-dbus-glib: Makefile 
	sysutils/neofetch: Makefile 
	sysutils/nnn   : Makefile 
	sysutils/node_exporter: Makefile 
	sysutils/noice : Makefile 
	sysutils/nomad : Makefile 
	sysutils/ntfs-3g: Makefile 
	sysutils/opam  : Makefile 
	sysutils/openpoppassd: Makefile 
	sysutils/p5-Capture-Tiny: Makefile 
	sysutils/p5-File-Monitor: Makefile 
	sysutils/p5-File-NFSLock: Makefile 
	sysutils/p5-File-Rename: Makefile 
	sysutils/p5-File-Which: Makefile 
	sysutils/p5-Filesys-Notify-Simple: Makefile 
	sysutils/p5-Filesys-Virtual: Makefile 
	sysutils/p5-Filesys-Virtual-Plain: Makefile 
	sysutils/p5-Parse-DMIDecode: Makefile 
	sysutils/p5-Proc-ProcessTable: Makefile 
	sysutils/p5-Proc-Queue: Makefile 
	sysutils/p5-Proc-Wait3: Makefile 
	sysutils/p5-Puppet-Tidy: Makefile 
	sysutils/p5-Quota: Makefile 
	sysutils/p5-Set-Crontab: Makefile 
	sysutils/p5-Sys-Syscall: Makefile 
	sysutils/p5-Sys-Virt: Makefile 
	sysutils/p5-UPS-Nut: Makefile 
	sysutils/p5-Unix-PID: Makefile 
	sysutils/p5-Unix-Statgrab: Makefile 
	sysutils/p5-Unix-Syslog: Makefile 
	sysutils/packer: Makefile 
	sysutils/parallel: Makefile 
	sysutils/pciutils: Makefile 
	sysutils/pftop : Makefile 
	sysutils/pick  : Makefile 
	sysutils/pkg_mgr: Makefile 
	sysutils/polkit: Makefile 
	sysutils/prometheus: Makefile 
	sysutils/pscpug: Makefile 
	sysutils/psftools: Makefile 
	sysutils/pstree: Makefile 
	sysutils/pv    : Makefile 
	sysutils/py-analyzemft: Makefile 
	sysutils/py-augeas: Makefile 
	sysutils/py-cef: Makefile 
	sysutils/py-croniter: Makefile 
	sysutils/py-daemon: Makefile 
	sysutils/py-daemonize: Makefile 
	sysutils/py-elasticsearch-curator: Makefile 
	sysutils/py-ghmi: Makefile 
	sysutils/py-lockfile: Makefile 
	sysutils/py-metlog: Makefile 
	sysutils/py-parallel-ssh: Makefile 
	sysutils/py-prometheus_client: Makefile 
	sysutils/py-psutil: Makefile 
	sysutils/py-pynetbox: Makefile 
	sysutils/py-scandir: Makefile 
	sysutils/py-statgrab: Makefile 
	sysutils/py-tsk: Makefile 
	sysutils/radmind: Makefile 
	sysutils/ranval: Makefile 
	sysutils/rcm   : Makefile 
	sysutils/reed-alert: Makefile 
	sysutils/remotebox: Makefile 
	sysutils/resmon: Makefile 
	sysutils/restic: Makefile 
	sysutils/restic-rest-server: Makefile 
	sysutils/riemann-c-client: Makefile 
	sysutils/rofi  : Makefile 
	sysutils/rpl   : Makefile 
	sysutils/rsyslog: Makefile 
	sysutils/rtty  : Makefile 
	sysutils/ruby-augeas: Makefile 
	sysutils/ruby-capistrano: Makefile 
	sysutils/ruby-libvirt: Makefile 
	sysutils/ruby-posix-spawn: Makefile 
	sysutils/ruby-puppet: Makefile.inc 
	sysutils/ruby-puppet-lint: Makefile 
	sysutils/ruby-puppet-syntax: Makefile 
	sysutils/ruby-shadow: Makefile 
	sysutils/ruby-tzinfo: Makefile 
	sysutils/ruby-vlad: Makefile 
	sysutils/rundeck: Makefile 
	sysutils/runit : Makefile 
	sysutils/rw    : Makefile 
	sysutils/salt  : Makefile 
	sysutils/salt-testing: Makefile 
	sysutils/screenfetch: Makefile 
	sysutils/sec   : Makefile 
	sysutils/serf  : Makefile 
	sysutils/setquota: Makefile 
	sysutils/shelldap: Makefile 
	sysutils/shmux : Makefile 
	sysutils/shunt : Makefile 
	sysutils/simple-mtpfs: Makefile 
	sysutils/skill : Makefile 
	sysutils/slant : Makefile 
	sysutils/smartmontools: Makefile 
	sysutils/smbldap-tools: Makefile 
	sysutils/socket: Makefile 
	sysutils/socklog: Makefile 
	sysutils/sshfs-fuse: Makefile 
	sysutils/sshpass: Makefile 
	sysutils/sslmate: Makefile 
	sysutils/stan  : Makefile 
	sysutils/stow  : Makefile 
	sysutils/stress: Makefile 
	sysutils/sunxi-tools: Makefile 
	sysutils/superscript: Makefile 
	sysutils/supervisor: Makefile 
	sysutils/supuner: Makefile 
	sysutils/symon : Makefile 
	sysutils/sysclean: Makefile 
	sysutils/sysgen: Makefile 
	sysutils/syslog-ng: Makefile 
	sysutils/sysmon: Makefile 
	sysutils/tabled: Makefile 
	sysutils/tabs  : Makefile 
	sysutils/tarsnap-gui: Makefile 
	sysutils/tarsnapper: Makefile 
	sysutils/telegraf: Makefile 
	sysutils/tenshi: Makefile 
	sysutils/tentakel: Makefile 
	sysutils/testdisk: Makefile 
	sysutils/tkdvd : Makefile 
	sysutils/tmate : Makefile 
	sysutils/tmux-mem-cpu-load: Makefile 
	sysutils/tmuxinator: Makefile 
	sysutils/toad  : Makefile 
	sysutils/tpb   : Makefile 
	sysutils/tphdisk: Makefile 
	sysutils/tray-app: Makefile 
	sysutils/tree  : Makefile 
	sysutils/truncate: Makefile 
	sysutils/ttyload: Makefile 
	sysutils/ttyplot: Makefile 
	sysutils/u-boot: Makefile 
	sysutils/udfclient: Makefile 
	sysutils/uefitool: Makefile 
	sysutils/upobsd: Makefile 
	sysutils/upower: Makefile 
	sysutils/usbutil: Makefile 
	sysutils/usbutils: Makefile 
	sysutils/usmb  : Makefile 
	sysutils/virt-manager: Makefile 
	sysutils/virt-what: Makefile 
	sysutils/vmdktool: Makefile 
	sysutils/vmwh  : Makefile 
	sysutils/waagent: Makefile 
	sysutils/whowatch: Makefile 
	sysutils/wmapm : Makefile 
	sysutils/wmcube: Makefile 
	sysutils/wmmon : Makefile 
	sysutils/wmwlmon: Makefile 
	sysutils/xbatt : Makefile 
	sysutils/xbattbar: Makefile 
	sysutils/xbattmon: Makefile 
	sysutils/xjobs : Makefile 
	sysutils/xstatbar: Makefile 
	sysutils/xuvmstat: Makefile 
	sysutils/yabitrot: Makefile 
	sysutils/yank  : Makefile 
	sysutils/zap   : Makefile 
	telephony/asterisk-openbsd-moh: Makefile 
	telephony/baresip: Makefile.inc 
	telephony/coturn: Makefile 
	telephony/fobbit: Makefile 
	telephony/gsutil: Makefile 
	telephony/iaxclient: Makefile 
	telephony/iaxmodem: Makefile 
	telephony/kamailio: Makefile 
	telephony/libosip2: Makefile 
	telephony/libzrtp: Makefile 
	telephony/p5-Asterisk-AMI: Makefile 
	telephony/p5-Net-SIP: Makefile 
	telephony/p5-asterisk: Makefile 
	telephony/pjsua: Makefile 
	telephony/py-phonenumbers: Makefile 
	telephony/siproxd: Makefile 
	telephony/sofia-sip: Makefile 
	telephony/spandsp: Makefile 
	telephony/stuntman: Makefile 
	textproc/TclXML: Makefile 
	textproc/apertium: Makefile 
	textproc/apertium-lex-tools: Makefile 
	textproc/apertium-separable: Makefile 
	textproc/apertium-streamparser: Makefile 
	textproc/arabica: Makefile 
	textproc/asciidoc: Makefile 
	textproc/asciinema: Makefile 
	textproc/aspell/core: Makefile 
	textproc/aspell/dicts/eo: Makefile 
	textproc/aspell/dicts/ru: Makefile 
	textproc/bibtex2html: Makefile 
	textproc/boust : Makefile 
	textproc/c2html: Makefile 
	textproc/calibre: Makefile 
	textproc/catdoc: Makefile 
	textproc/catfish: Makefile 
	textproc/cdiff : Makefile 
	textproc/clo++ : Makefile 
	textproc/cloc  : Makefile 
	textproc/clucene: Makefile 
	textproc/cmark : Makefile 
	textproc/dblatex: Makefile 
	textproc/diction: Makefile 
	textproc/discount: Makefile 
	textproc/docbook: Makefile 
	textproc/docbook-dsssl: Makefile 
	textproc/docbook2mdoc: Makefile 
	textproc/doclifter: Makefile 
	textproc/docx2txt: Makefile 
	textproc/ebook-tools: Makefile 
	textproc/elasticsearch: Makefile 
	textproc/enchant: Makefile 
	textproc/enchant2: Makefile 
	textproc/exempi: Makefile 
	textproc/extract_url: Makefile 
	textproc/fcbanner: Makefile 
	textproc/filepp: Makefile 
	textproc/fragistics: Makefile 
	textproc/fzy   : Makefile 
	textproc/gdiff : Makefile 
	textproc/go-xlsx: Makefile 
	textproc/gpresent: Makefile 
	textproc/groff : Makefile 
	textproc/gsed  : Makefile 
	textproc/gspell: Makefile 
	textproc/gtk-doc: Makefile 
	textproc/gtkspell: Makefile 
	textproc/gtkspell3: Makefile 
	textproc/gtranslator: Makefile 
	textproc/halibut: Makefile 
	textproc/heirloom-doctools: Makefile 
	textproc/hevea : Makefile 
	textproc/hfst  : Makefile 
	textproc/hgrep : Makefile 
	textproc/highlight: Makefile 
	textproc/hs-HaXml: Makefile 
	textproc/hs-attoparsec: Makefile 
	textproc/hs-bytestring-show: Makefile 
	textproc/hs-json: Makefile 
	textproc/hs-libxml-sax: Makefile 
	textproc/hs-polyparse: Makefile 
	textproc/hs-stringsearch: Makefile 
	textproc/hs-wl-pprint-text: Makefile 
	textproc/hs-xml: Makefile 
	textproc/hs-xml-types: Makefile 
	textproc/html-xml-utils: Makefile 
	textproc/hunspell: Makefile 
	textproc/hyperestraier: Makefile 
	textproc/hyphen: Makefile 
	textproc/hyphen-i18n: Makefile.inc 
	textproc/idiff : Makefile 
	textproc/igor  : Makefile 
	textproc/iksemel: Makefile 
	textproc/info2html: Makefile 
	textproc/intltool: Makefile 
	textproc/isearch: Makefile 
	textproc/iso12083: Makefile 
	textproc/iso8879: Makefile 
	textproc/itstool: Makefile 
	textproc/jo    : Makefile 
	textproc/jq    : Makefile 
	textproc/latex2html: Makefile 
	textproc/latexmk: Makefile 
	textproc/libebml: Makefile 
	textproc/libical: Makefile 
	textproc/liblrdf: Makefile 
	textproc/libnxml: Makefile 
	textproc/libtextcat: Makefile 
	textproc/libtranslate: Makefile 
	textproc/libxml: Makefile 
	textproc/libxml++: Makefile 
	textproc/libxml++3: Makefile 
	textproc/libxmlbird: Makefile 
	textproc/libxslt: Makefile 
	textproc/link-grammar: Makefile 
	textproc/loccount: Makefile 
	textproc/lq-sp : Makefile 
	textproc/lttoolbox: Makefile 
	textproc/lua-cosmo: Makefile 
	textproc/lua-lunamark: Makefile 
	textproc/lua-lustache: Makefile 
	textproc/lua-markdown: Makefile 
	textproc/lua-yaml: Makefile 
	textproc/luaexpat: Makefile 
	textproc/luasoldout: Makefile 
	textproc/makefaq: Makefile 
	textproc/mdp   : Makefile 
	textproc/meld  : Makefile 
	textproc/mgdiff: Makefile 
	textproc/miller: Makefile 
	textproc/misspell: Makefile 
	textproc/mozilla-dicts: Makefile.inc 
	textproc/multimarkdown: Makefile 
	textproc/mxml  : Makefile 
	textproc/namazu: Makefile 
	textproc/naturaldocs: Makefile 
	textproc/odt2txt: Makefile 
	textproc/openjade: Makefile 
	textproc/opensp: Makefile 
	textproc/ots   : Makefile 
	textproc/p5-Blatte: Makefile 
	textproc/p5-CGI-FastTemplate: Makefile 
	textproc/p5-Catalyst-Plugin-Markdown: Makefile 
	textproc/p5-Catalyst-Plugin-Textile: Makefile 
	textproc/p5-Catalyst-Plugin-Unicode: Makefile 
	textproc/p5-Catalyst-View-TT: Makefile 
	textproc/p5-Catalyst-View-TT-ForceUTF8: Makefile 
	textproc/p5-Catalyst-View-TT-FunctionGenerator: Makefile 
	textproc/p5-Catalyst-View-XSLT: Makefile 
	textproc/p5-Data-Password: Makefile 
	textproc/p5-Email-Find: Makefile 
	textproc/p5-Encode-Detect: Makefile 
	textproc/p5-Encode-Locale: Makefile 
	textproc/p5-File-KeePass: Makefile 
	textproc/p5-Font-AFM: Makefile 
	textproc/p5-Font-TTF: Makefile 
	textproc/p5-HTML-Summary: Makefile 
	textproc/p5-LaTeX-Driver: Makefile 
	textproc/p5-LaTeX-Encode: Makefile 
	textproc/p5-LaTeX-Pod: Makefile 
	textproc/p5-LaTeX-TOM: Makefile 
	textproc/p5-LaTeXML: Makefile 
	textproc/p5-Libxml: Makefile 
	textproc/p5-Lingua-EN-Fathom: Makefile 
	textproc/p5-Lingua-EN-FindNumber: Makefile 
	textproc/p5-Lingua-EN-Inflect: Makefile 
	textproc/p5-Lingua-EN-Inflect-Number: Makefile 
	textproc/p5-Lingua-EN-Inflect-Phrase: Makefile 
	textproc/p5-Lingua-EN-Number-IsOrdinal: Makefile 
	textproc/p5-Lingua-EN-Syllable: Makefile 
	textproc/p5-Lingua-EN-Tagger: Makefile 
	textproc/p5-Lingua-EN-Words2Nums: Makefile 
	textproc/p5-Lingua-PT-Stemmer: Makefile 
	textproc/p5-Lingua-Stem: Makefile 
	textproc/p5-Lingua-Stem-Fr: Makefile 
	textproc/p5-Lingua-Stem-It: Makefile 
	textproc/p5-Lingua-Stem-Ru: Makefile 
	textproc/p5-Lingua-Stem-Snowball-Da: Makefile 
	textproc/p5-Lingua-Stem-Snowball-No: Makefile 
	textproc/p5-Lingua-Stem-Snowball-Se: Makefile 
	textproc/p5-List-SomeUtils: Makefile 
	textproc/p5-List-SomeUtils-XS: Makefile 
	textproc/p5-List-UtilsBy: Makefile 
	textproc/p5-Mojolicious-Plugin-TtRenderer: Makefile 
	textproc/p5-Number-Format: Makefile 
	textproc/p5-Object-MultiType: Makefile 
	textproc/p5-PDF-API2-Simple: Makefile 
	textproc/p5-PDF-Reuse: Makefile 
	textproc/p5-POE-Filter-XML: Makefile 
	textproc/p5-PPI: Makefile 
	textproc/p5-PPI-HTML: Makefile 
	textproc/p5-PPIx-Regexp: Makefile 
	textproc/p5-PPIx-Utilities: Makefile 
	textproc/p5-PatchReader: Makefile 
	textproc/p5-PerlIO-utf8_strict: Makefile 
	textproc/p5-Pod-Cpandoc: Makefile 
	textproc/p5-Pod-LaTeX: Makefile 
	textproc/p5-Pod-Markdown: Makefile 
	textproc/p5-Pod-POM: Makefile 
	textproc/p5-Pod-Spell: Makefile 
	textproc/p5-Pod-Tests: Makefile 
	textproc/p5-RSS-Parser-Lite: Makefile 
	textproc/p5-Regexp-Assemble: Makefile 
	textproc/p5-Regexp-Common: Makefile 
	textproc/p5-Regexp-DefaultFlags: Makefile 
	textproc/p5-SWISH-API: Makefile 
	textproc/p5-Search-QueryParser: Makefile 
	textproc/p5-Sort-Versions: Makefile 
	textproc/p5-Sourcecode-Spellchecker: Makefile 
	textproc/p5-String-CamelCase: Makefile 
	textproc/p5-String-Koremutake: Makefile 
	textproc/p5-String-RewritePrefix: Makefile 
	textproc/p5-String-ShellQuote: Makefile 
	textproc/p5-String-ToIdentifier-EN: Makefile 
	textproc/p5-Template: Makefile 
	textproc/p5-Template-Plugin-Class: Makefile 
	textproc/p5-Template-Plugin-GD: Makefile 
	textproc/p5-Template-Plugin-Markdown: Makefile 
	textproc/p5-Template-Plugin-Number-Format: Makefile 
	textproc/p5-Template-Provider-Encoding: Makefile 
	textproc/p5-Template-Timer: Makefile 
	textproc/p5-Template-Tiny: Makefile 
	textproc/p5-Text-ASCIIMathML: Makefile 
	textproc/p5-Text-Affixes: Makefile 
	textproc/p5-Text-Aligner: Makefile 
	textproc/p5-Text-Aspell: Makefile 
	textproc/p5-Text-Autoformat: Makefile 
	textproc/p5-Text-CSV: Makefile 
	textproc/p5-Text-CSV-Hashify: Makefile 
	textproc/p5-Text-CSV_XS: Makefile 
	textproc/p5-Text-CharWidth: Makefile 
	textproc/p5-Text-Diff: Makefile 
	textproc/p5-Text-Diff-HTML: Makefile 
	textproc/p5-Text-DoubleMetaphone: Makefile 
	textproc/p5-Text-Flow: Makefile 
	textproc/p5-Text-Format: Makefile 
	textproc/p5-Text-Glob: Makefile 
	textproc/p5-Text-Markdown: Makefile 
	textproc/p5-Text-MultiMarkdown: Makefile 
	textproc/p5-Text-PDF: Makefile 
	textproc/p5-Text-RecordParser: Makefile 
	textproc/p5-Text-Reflow: Makefile 
	textproc/p5-Text-Reform: Makefile 
	textproc/p5-Text-SimpleTable: Makefile 
	textproc/p5-Text-Table: Makefile 
	textproc/p5-Text-TabularDisplay: Makefile 
	textproc/p5-Text-Tags: Makefile 
	textproc/p5-Text-Template: Makefile 
	textproc/p5-Text-Textile: Makefile 
	textproc/p5-Text-Thread: Makefile 
	textproc/p5-Text-Tmpl: Makefile 
	textproc/p5-Text-Unidecode: Makefile 
	textproc/p5-Text-WikiFormat: Makefile 
	textproc/p5-Text-WordDiff: Makefile 
	textproc/p5-Text-vCard: Makefile 
	textproc/p5-WML-Card: Makefile 
	textproc/p5-XML-AutoWriter: Makefile 
	textproc/p5-XML-Checker: Makefile 
	textproc/p5-XML-DOM: Makefile 
	textproc/p5-XML-Dumper: Makefile 
	textproc/p5-XML-Elemental: Makefile 
	textproc/p5-XML-Filter-BufferText: Makefile 
	textproc/p5-XML-Filter-ExceptionLocator: Makefile 
	textproc/p5-XML-Generator: Makefile 
	textproc/p5-XML-LibXML: Makefile 
	textproc/p5-XML-LibXSLT: Makefile 
	textproc/p5-XML-Literal: Makefile 
	textproc/p5-XML-NamespaceSupport: Makefile 
	textproc/p5-XML-Parser: Makefile 
	textproc/p5-XML-Parser-Lite: Makefile 
	textproc/p5-XML-RAI: Makefile 
	textproc/p5-XML-RSS: Makefile 
	textproc/p5-XML-RSS-LibXML: Makefile 
	textproc/p5-XML-RSS-Parser: Makefile 
	textproc/p5-XML-RSS-Timing: Makefile 
	textproc/p5-XML-RSS-TimingBot: Makefile 
	textproc/p5-XML-RSSLite: Makefile 
	textproc/p5-XML-RegExp: Makefile 
	textproc/p5-XML-SAX: Makefile 
	textproc/p5-XML-SAX-Base: Makefile 
	textproc/p5-XML-SAX-Expat: Makefile 
	textproc/p5-XML-SAX-Expat-Incremental: Makefile 
	textproc/p5-XML-SAX-ExpatXS: Makefile 
	textproc/p5-XML-SAX-Writer: Makefile 
	textproc/p5-XML-SemanticDiff: Makefile 
	textproc/p5-XML-Simple: Makefile 
	textproc/p5-XML-Smart: Makefile 
	textproc/p5-XML-Stream: Makefile 
	textproc/p5-XML-Tidy: Makefile 
	textproc/p5-XML-TreePP: Makefile 
	textproc/p5-XML-Twig: Makefile 
	textproc/p5-XML-Validator-Schema: Makefile 
	textproc/p5-XML-Writer: Makefile 
	textproc/p5-XML-XPath: Makefile 
	textproc/p5-XML-XPathEngine: Makefile 
	textproc/p5-XML-XSLT: Makefile 
	textproc/p5-XML-XSPF: Makefile 
	textproc/p5-sdf: Makefile 
	textproc/p5-tkispell: Makefile 
	textproc/par   : Makefile 
	textproc/pdf4tcl: Makefile 
	textproc/pdfgrep: Makefile 
	textproc/pdfpc : Makefile 
	textproc/pear-File: Makefile 
	textproc/pear-File-Find: Makefile 
	textproc/pear-XML-Parser: Makefile 
	textproc/pear-XML-RSS: Makefile 
	textproc/pear-XML-Serializer: Makefile 
	textproc/pear-XML-Tree: Makefile 
	textproc/pinfo : Makefile 
	textproc/pod2mdoc: Makefile 
	textproc/pplatex: Makefile 
	textproc/pup   : Makefile 
	textproc/py-Chart: Makefile 
	textproc/py-HappyDoc: Makefile 
	textproc/py-ICU: Makefile 
	textproc/py-MarkupSafe: Makefile 
	textproc/py-PEG2: Makefile 
	textproc/py-alabaster: Makefile 
	textproc/py-black: Makefile 
	textproc/py-chardet: Makefile 
	textproc/py-colored: Makefile 
	textproc/py-commonmark: Makefile 
	textproc/py-cssselect: Makefile 
	textproc/py-cssutils: Makefile 
	textproc/py-defusedxml: Makefile 
	textproc/py-demjson: Makefile 
	textproc/py-dicttoxml: Makefile 
	textproc/py-docutils: Makefile 
	textproc/py-elementtidy: Makefile 
	textproc/py-emoji: Makefile 
	textproc/py-enchant: Makefile 
	textproc/py-epydoc: Makefile 
	textproc/py-feedparser: Makefile 
	textproc/py-humanize: Makefile 
	textproc/py-iso8601: Makefile 
	textproc/py-jaxml: Makefile 
	textproc/py-jellyfish: Makefile 
	textproc/py-lxml: Makefile 
	textproc/py-m2r: Makefile 
	textproc/py-markdown: Makefile 
	textproc/py-mistune: Makefile 
	textproc/py-nltk: Makefile 
	textproc/py-numpydoc: Makefile 
	textproc/py-ofxparse: Makefile 
	textproc/py-pandocfilters: Makefile 
	textproc/py-pdf: Makefile 
	textproc/py-pdfminer: Makefile 
	textproc/py-podcastparser: Makefile 
	textproc/py-polib: Makefile 
	textproc/py-precis_i18n: Makefile 
	textproc/py-prettytable: Makefile 
	textproc/py-pyRFC3339: Makefile 
	textproc/py-pygfm: Makefile 
	textproc/py-pygments: Makefile 
	textproc/py-pykwalify: Makefile 
	textproc/py-rdflib: Makefile 
	textproc/py-rtf: Makefile 
	textproc/py-ruamel.yaml: Makefile 
	textproc/py-semver: Makefile 
	textproc/py-snowballstemmer: Makefile 
	textproc/py-spdx: Makefile 
	textproc/py-spdx-lookup: Makefile 
	textproc/py-sphinx: Makefile 
	textproc/py-sphinx-intl: Makefile 
	textproc/py-sphinx_guzzle_theme: Makefile 
	textproc/py-sphinx_rtd_theme: Makefile 
	textproc/py-stemmer: Makefile 
	textproc/py-termcolor: Makefile 
	textproc/py-textfsm: Makefile 
	textproc/py-toml: Makefile 
	textproc/py-unicodecsv: Makefile 
	textproc/py-vatnumber: Makefile 
	textproc/py-vobject: Makefile 
	textproc/py-webencodings: Makefile 
	textproc/py-xlrd: Makefile 
	textproc/py-xml: Makefile 
	textproc/py-xmldiff: Makefile 
	textproc/py-xmltodict: Makefile 
	textproc/raptor: Makefile 
	textproc/rarian: Makefile 
	textproc/rasqal: Makefile 
	textproc/redland: Makefile 
	textproc/redland-bindings: Makefile 
	textproc/ripgrep: Makefile 
	textproc/rman  : Makefile 
	textproc/rubber: Makefile 
	textproc/ruby-builder: Makefile 
	textproc/ruby-erubis: Makefile 
	textproc/ruby-fast-stemmer: Makefile 
	textproc/ruby-fast_xs: Makefile 
	textproc/ruby-haml: Makefile 
	textproc/ruby-hpricot: Makefile 
	textproc/ruby-hyperestraier: Makefile 
	textproc/ruby-icalendar: Makefile 
	textproc/ruby-kramdown: Makefile 
	textproc/ruby-mustache: Makefile 
	textproc/ruby-nokogiri: Makefile 
	textproc/ruby-pygments.rb: Makefile 
	textproc/ruby-redcarpet: Makefile 
	textproc/ruby-rexical: Makefile 
	textproc/ruby-ronn: Makefile 
	textproc/ruby-syntax: Makefile 
	textproc/ruby-text: Makefile 
	textproc/ruby-yard: Makefile 
	textproc/rxp   : Makefile 
	textproc/sablotron: Makefile 
	textproc/sim   : Makefile 
	textproc/sp    : Makefile 
	textproc/sphinx: Makefile 
	textproc/stringtemplate: Makefile 
	textproc/svndumptool: Makefile 
	textproc/swish-e: Makefile 
	textproc/tcpdf : Makefile 
	textproc/tdom  : Makefile 
	textproc/texi2html: Makefile 
	textproc/texi2mdoc: Makefile 
	textproc/the_silver_searcher: Makefile 
	textproc/tinyxml: Makefile 
	textproc/tinyxml2: Makefile 
	textproc/tre   : Makefile 
	textproc/txt2man: Makefile 
	textproc/txt2tags: Makefile 
	textproc/uchardet: Makefile 
	textproc/uncrustify: Makefile 
	textproc/unicode-ucd: Makefile 
	textproc/unrtf : Makefile 
	textproc/urlview: Makefile 
	textproc/validate: Makefile 
	textproc/vgrind: Makefile 
	textproc/vislcg3: Makefile 
	textproc/wdg-sgml-lib: Makefile 
	textproc/wdiff : Makefile 
	textproc/wkhtmltopdf: Makefile 
	textproc/xalan-j: Makefile 
	textproc/xerces-c: Makefile 
	textproc/xlsx2csv: Makefile 
	textproc/xml2rfc: Makefile 
	textproc/xmlcatmgr: Makefile 
	textproc/xmlstarlet: Makefile 
	textproc/xmlto : Makefile 
	textproc/xpdf  : Makefile 
	textproc/yould : Makefile 
	textproc/zathura/core: Makefile 
	textproc/zoem  : Makefile 
	www/ajaxterm   : Makefile 
	www/analog     : Makefile 
	www/ap2-mod_dnssd: Makefile 
	www/ap2-mod_jk : Makefile 
	www/ap2-mod_perl: Makefile 
	www/ap2-mod_wsgi: Makefile 
	www/apache-httpd: Makefile 
	www/apertium-apy: Makefile 
	www/aria2      : Makefile 
	www/asql       : Makefile 
	www/awl        : Makefile 
	www/awstats    : Makefile 
	www/blogsum    : Makefile 
	www/bluefish   : Makefile 
	www/calamaris  : Makefile 
	www/canto      : Makefile 
	www/cclive     : Makefile 
	www/cgicc      : Makefile 
	www/cgiparse   : Makefile 
	www/cgit       : Makefile 
	www/dansguardian: Makefile 
	www/darkhttpd  : Makefile 
	www/dillo      : Makefile 
	www/dokuwiki   : Makefile 
	www/edbrowse   : Makefile 
	www/erl-mochiweb: Makefile 
	www/fcgi-cgi   : Makefile 
	www/ffproxy    : Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 14:51:31

Modified files:
	www/firefox-esr: Makefile 
	www/firefox-esr-i18n: Makefile.inc 
	www/firefox-i18n: Makefile.inc 
	www/gcap       : Makefile 
	www/geckodriver: Makefile 
	www/gitea      : Makefile 
	www/goaccess   : Makefile 
	www/gumbo      : Makefile 
	www/h2o        : Makefile 
	www/haserl     : Makefile 
	www/havp       : Makefile 
	www/hiawatha   : Makefile 
	www/honk       : Makefile 
	www/hs-html    : Makefile 
	www/http_load  : Makefile 
	www/http_ping  : Makefile 
	www/httrack    : Makefile 
	www/hugo       : Makefile 
	www/icedtea-web: Makefile 
	www/igal       : Makefile 
	www/igal2      : Makefile 
	www/japana     : Makefile 
	www/jesred     : Makefile 
	www/jupyter-notebook: Makefile 
	www/kcaldav    : Makefile 
	www/kcgi       : Makefile 
	www/kibana     : Makefile 
	www/kore       : Makefile 
	www/larbin     : Makefile 
	www/libcroco   : Makefile 
	www/libmicrohttpd: Makefile 
	www/libwebsockets: Makefile 
	www/liferea    : Makefile 
	www/lightsquid : Makefile 
	www/lighttpd   : Makefile 
	www/linkchecker: Makefile 
	www/links      : Makefile 
	www/links+     : Makefile 
	www/llgal      : Makefile 
	www/logswan    : Makefile 
	www/luakit     : Makefile 
	www/lynx       : Makefile 
	www/mhonarc    : Makefile 
	www/midori     : Makefile 
	www/minitube   : Makefile 
	www/moinmoin   : Makefile 
	www/mono-xsp   : Makefile 
	www/mozilla-firefox: Makefile 
	www/mozplugger : Makefile 
	www/netsurf    : Makefile.inc 
	www/newsboat   : Makefile 
	www/nextcloud  : Makefile 
	www/nginx      : Makefile 
	www/nostromo   : Makefile 
	www/openradtool: Makefile 
	www/otter-browser: Makefile 
	www/p5-Alien-Tidyp: Makefile 
	www/p5-Any-URI-Escape: Makefile 
	www/p5-Apache-DBI: Makefile 
	www/p5-Apache-Gallery: Makefile 
	www/p5-Apache-LogFormat-Compiler: Makefile 
	www/p5-Apache-MP3: Makefile 
	www/p5-Apache-Session: Makefile 
	www/p5-Apache-Session-Generate-UUID: Makefile 
	www/p5-Apache-Session-Memcached: Makefile 
	www/p5-Blatte-HTML: Makefile 
	www/p5-CGI     : Makefile 
	www/p5-CGI-Ajax: Makefile 
	www/p5-CGI-Application: Makefile 
	www/p5-CGI-Application-Generator: Makefile 
	www/p5-CGI-Application-Plugin-ConfigAuto: Makefile 
	www/p5-CGI-Application-Plugin-ValidateRM: Makefile 
	www/p5-CGI-Compile: Makefile 
	www/p5-CGI-Cookie-Splitter: Makefile 
	www/p5-CGI-Deurl: Makefile 
	www/p5-CGI-Emulate-PSGI: Makefile 
	www/p5-CGI-Fast: Makefile 
	www/p5-CGI-FormBuilder: Makefile 
	www/p5-CGI-Lite: Makefile 
	www/p5-CGI-PSGI: Makefile 
	www/p5-CGI-SSI : Makefile 
	www/p5-CGI-Session: Makefile 
	www/p5-CGI-Session-Driver-memcached: Makefile 
	www/p5-CGI-Simple: Makefile 
	www/p5-CGI-Untaint: Makefile 
	www/p5-CGI-XMLApplication: Makefile 
	www/p5-CSS-Minifier: Makefile 
	www/p5-CSS-Minifier-XS: Makefile 
	www/p5-Catalyst-Action-RenderView: Makefile 
	www/p5-Catalyst-Component-ACCEPT_CONTEXT: Makefile 
	www/p5-Catalyst-Component-InstancePerContext: Makefile 
	www/p5-Catalyst-Controller-FormBuilder: Makefile 
	www/p5-Catalyst-Controller-HTML-FormFu: Makefile 
	www/p5-Catalyst-Devel: Makefile 
	www/p5-Catalyst-Engine-Apache: Makefile 
	www/p5-Catalyst-Helper-Controller-Scaffold: Makefile 
	www/p5-Catalyst-Log-Log4perl: Makefile 
	www/p5-Catalyst-Plugin-Cache: Makefile 
	www/p5-Catalyst-Plugin-Cache-FileCache: Makefile 
	www/p5-Catalyst-Plugin-Cache-Memcached: Makefile 
	www/p5-Catalyst-Plugin-Cache-Store-FastMmap: Makefile 
	www/p5-Catalyst-Plugin-ConfigLoader: Makefile 
	www/p5-Catalyst-Plugin-ConfigLoader-Environment: Makefile 
	www/p5-Catalyst-Plugin-DefaultEnd: Makefile 
	www/p5-Catalyst-Plugin-FormValidator: Makefile 
	www/p5-Catalyst-Plugin-HTML-Widget: Makefile 
	www/p5-Catalyst-Plugin-I18N: Makefile 
	www/p5-Catalyst-Plugin-LogWarnings: Makefile 
	www/p5-Catalyst-Plugin-PageCache: Makefile 
	www/p5-Catalyst-Plugin-Pluggable: Makefile 
	www/p5-Catalyst-Plugin-Prototype: Makefile 
	www/p5-Catalyst-Plugin-Session: Makefile 
	www/p5-Catalyst-Plugin-Session-FastMmap: Makefile 
	www/p5-Catalyst-Plugin-Session-PerUser: Makefile 
	www/p5-Catalyst-Plugin-Session-State-Cookie: Makefile 
	www/p5-Catalyst-Plugin-Session-State-URI: Makefile 
	www/p5-Catalyst-Plugin-Session-Store-FastMmap: Makefile 
	www/p5-Catalyst-Plugin-Session-Store-File: Makefile 
	www/p5-Catalyst-Plugin-Singleton: Makefile 
	www/p5-Catalyst-Plugin-Static-Simple: Makefile 
	www/p5-Catalyst-Plugin-SubRequest: Makefile 
	www/p5-Catalyst-Plugin-XMLRPC: Makefile 
	www/p5-Catalyst-Runtime: Makefile 
	www/p5-Catalyst-View-Mason: Makefile 
	www/p5-CatalystX-Component-Traits: Makefile 
	www/p5-Cookie-Baker: Makefile 
	www/p5-Dancer  : Makefile 
	www/p5-Dancer-Plugin-Database-Core: Makefile 
	www/p5-Dancer-Plugin-Thumbnail: Makefile 
	www/p5-Dancer2 : Makefile 
	www/p5-Dancer2-Plugin-Ajax: Makefile 
	www/p5-Dancer2-Plugin-Auth-Tiny: Makefile 
	www/p5-Dancer2-Plugin-DBIC: Makefile 
	www/p5-Dancer2-Plugin-Database: Makefile 
	www/p5-Data-Page-Pageset: Makefile 
	www/p5-Data-URIEncode: Makefile 
	www/p5-Drupal-Admin: Makefile 
	www/p5-FCGI-ProcManager: Makefile 
	www/p5-Feed-Find: Makefile 
	www/p5-Gravatar-URL: Makefile 
	www/p5-HTML-Base: Makefile 
	www/p5-HTML-CGIChecker: Makefile 
	www/p5-HTML-Calendar-Month-Simple: Makefile 
	www/p5-HTML-Clean: Makefile 
	www/p5-HTML-Copy: Makefile 
	www/p5-HTML-Display: Makefile 
	www/p5-HTML-FillInForm: Makefile 
	www/p5-HTML-Form: Makefile 
	www/p5-HTML-FormFu: Makefile 
	www/p5-HTML-FormatText-WithLinks: Makefile 
	www/p5-HTML-FormatText-WithLinks-AndTables: Makefile 
	www/p5-HTML-FromText: Makefile 
	www/p5-HTML-Lint: Makefile 
	www/p5-HTML-Mason: Makefile 
	www/p5-HTML-Mason-PSGIHandler: Makefile 
	www/p5-HTML-Parser: Makefile 
	www/p5-HTML-PrettyPrinter: Makefile 
	www/p5-HTML-Prototype: Makefile 
	www/p5-HTML-Quoted: Makefile 
	www/p5-HTML-ResolveLink: Makefile 
	www/p5-HTML-SBC: Makefile 
	www/p5-HTML-Scrubber: Makefile 
	www/p5-HTML-SimpleParse: Makefile 
	www/p5-HTML-StripScripts: Makefile 
	www/p5-HTML-StripScripts-Parser: Makefile 
	www/p5-HTML-TableExtract: Makefile 
	www/p5-HTML-TagCloud: Makefile 
	www/p5-HTML-Tagset: Makefile 
	www/p5-HTML-Template: Makefile 
	www/p5-HTML-Template-Expr: Makefile 
	www/p5-HTML-Template-JIT: Makefile 
	www/p5-HTML-Tidy: Makefile 
	www/p5-HTML-Tiny: Makefile 
	www/p5-HTML-TokeParser-Simple: Makefile 
	www/p5-HTML-Tree: Makefile 
	www/p5-HTML-TreeBuilder-XPath: Makefile 
	www/p5-HTML-Widget: Makefile 
	www/p5-HTTP-Body: Makefile 
	www/p5-HTTP-BrowserDetect: Makefile 
	www/p5-HTTP-CookieJar: Makefile 
	www/p5-HTTP-Cookies: Makefile 
	www/p5-HTTP-DAV: Makefile 
	www/p5-HTTP-Daemon: Makefile 
	www/p5-HTTP-Date: Makefile 
	www/p5-HTTP-GetImages: Makefile 
	www/p5-HTTP-Headers-Fast: Makefile 
	www/p5-HTTP-Lite: Makefile 
	www/p5-HTTP-Message: Makefile 
	www/p5-HTTP-Negotiate: Makefile 
	www/p5-HTTP-Parser-XS: Makefile 
	www/p5-HTTP-Proxy: Makefile 
	www/p5-HTTP-Recorder: Makefile 
	www/p5-HTTP-Request-AsCGI: Makefile 
	www/p5-HTTP-Request-Params: Makefile 
	www/p5-HTTP-Response-Encoding: Makefile 
	www/p5-HTTP-Server-Simple: Makefile 
	www/p5-HTTP-Server-Simple-Mason: Makefile 
	www/p5-HTTP-Server-Simple-PSGI: Makefile 
	www/p5-HTTP-Server-Simple-Recorder: Makefile 
	www/p5-HTTPD-Log-Filter: Makefile 
	www/p5-Hijk    : Makefile 
	www/p5-IO-HTML : Makefile 
	www/p5-JavaScript-Minifier: Makefile 
	www/p5-JavaScript-Minifier-XS: Makefile 
	www/p5-LWP-Authen-Wsse: Makefile 
	www/p5-LWP-MediaTypes: Makefile 
	www/p5-LWP-Protocol-https: Makefile 
	www/p5-LWP-Protocol-socks: Makefile 
	www/p5-LWP-UserAgent-Determined: Makefile 
	www/p5-MasonX-Interp-WithCallbacks: Makefile 
	www/p5-Maypole : Makefile 
	www/p5-Maypole-Authentication-UserSessionCookie: Makefile 
	www/p5-Mojo    : Makefile 
	www/p5-MojoX-Session: Makefile 
	www/p5-Mojolicious-Plugin-AccessLog: Makefile 
	www/p5-Mojolicious-Plugin-Thumbnail: Makefile 
	www/p5-Object-eBay: Makefile 
	www/p5-PHP-Session: Makefile 
	www/p5-PSGI    : Makefile 
	www/p5-Plack   : Makefile 
	www/p5-Plack-Middleware-FixMissingBodyInRedirect: Makefile 
	www/p5-Plack-Middleware-RemoveRedundantBody: Makefile 
	www/p5-Plack-Middleware-ReverseProxy: Makefile 
	www/p5-Plack-Test-ExternalServer: Makefile 
	www/p5-Plagger : Makefile 
	www/p5-PodToHTML: Makefile 
	www/p5-Rose-HTML-Objects: Makefile 
	www/p5-Rose-HTMLx-Form-Field-Autocomplete: Makefile 
	www/p5-Rose-URI: Makefile 
	www/p5-SCGI    : Makefile 
	www/p5-SOAP-Lite: Makefile 
	www/p5-SOAP-WSDL: Makefile 
	www/p5-Starlet : Makefile 
	www/p5-Starman : Makefile 
	www/p5-Test-HTTP-LocalServer: Makefile 
	www/p5-Test-HTTP-Server-Simple: Makefile 
	www/p5-Twiggy  : Makefile 
	www/p5-URI     : Makefile 
	www/p5-URI-Fetch: Makefile 
	www/p5-URI-Find: Makefile 
	www/p5-WWW-Bugzilla: Makefile 
	www/p5-WWW-Curl: Makefile 
	www/p5-WWW-Ebay: Makefile 
	www/p5-WWW-IndexParser: Makefile 
	www/p5-WWW-Mechanize: Makefile 
	www/p5-WWW-Mechanize-FormFiller: Makefile 
	www/p5-WWW-Mechanize-GZip: Makefile 
	www/p5-WWW-Mechanize-Shell: Makefile 
	www/p5-WWW-Mechanize-TreeBuilder: Makefile 
	www/p5-WWW-Robot: Makefile 
	www/p5-WWW-RobotRules: Makefile 
	www/p5-WWW-Search: Makefile 
	www/p5-WWW-Shorten: Makefile 
	www/p5-WWW-Shorten-Bitly: Makefile 
	www/p5-WWW-Shorten-Googl: Makefile 
	www/p5-WWW-Wikipedia: Makefile 
	www/p5-Weather-Com: Makefile 
	www/p5-WebService-Audioscrobbler: Makefile 
	www/p5-WebService-MusicBrainz: Makefile 
	www/p5-XML-Atom: Makefile 
	www/p5-XML-Atom-SimpleFeed: Makefile 
	www/p5-XML-Feed: Makefile 
	www/p5-libwww  : Makefile 
	www/p5-pQuery  : Makefile 
	www/pear       : Makefile 
	www/pear-HTML-Page2: Makefile 
	www/pear-HTML-Select: Makefile 
	www/pear-HTML-Template-IT: Makefile 
	www/pear-HTTP-WebDAV-Server: Makefile 
	www/pear-SOAP  : Makefile 
	www/pecl-chroot: Makefile 
	www/pecl-geoip : Makefile 
	www/pecl-memcached: Makefile 
	www/pecl-pecl_http: Makefile 
	www/pecl-pledge: Makefile 
	www/pecl-proctitle: Makefile 
	www/pecl-propro: Makefile 
	www/pecl-raphf : Makefile 
	www/pecl-ssh2  : Makefile 
	www/perlbal    : Makefile 
	www/php-predis : Makefile 
	www/phpldapadmin: Makefile 
	www/phpmyadmin : Makefile 
	www/phppgadmin : Makefile 
	www/phpvirtualbox: Makefile 
	www/pnp4nagios : Makefile 
	www/polipo     : Makefile 
	www/pound      : Makefile 
	www/privoxy    : Makefile 
	www/puppetboard: Makefile 
	www/py-CherryPy: Makefile 
	www/py-aiohttp : Makefile 
	www/py-autobahn: Makefile 
	www/py-beaker  : Makefile 
	www/py-beautifulsoup: Makefile 
	www/py-beautifulsoup4: Makefile 
	www/py-betamax : Makefile 
	www/py-bleach  : Makefile 
	www/py-bokeh   : Makefile 
	www/py-bottle  : Makefile 
	www/py-cheroot : Makefile 
	www/py-cherrypy2: Makefile 
	www/py-clientform: Makefile 
	www/py-feedgenerator: Makefile 
	www/py-flask   : Makefile 
	www/py-flask-login: Makefile 
	www/py-flask-principal: Makefile 
	www/py-flask-wtf: Makefile 
	www/py-flup    : Makefile 
	www/py-formencode: Makefile 
	www/py-frozen-flask: Makefile 
	www/py-genshi  : Makefile 
	www/py-gunicorn: Makefile 
	www/py-htmltmpl: Makefile 
	www/py-http_ece: Makefile 
	www/py-httpbin : Makefile 
	www/py-httplib2: Makefile 
	www/py-hyperlink: Makefile 
	www/py-itsdangerous: Makefile 
	www/py-jinja2  : Makefile 
	www/py-jonpy   : Makefile 
	www/py-mako    : Makefile 
	www/py-mastodon.py: Makefile 
	www/py-mechanize: Makefile 
	www/py-meld3   : Makefile 
	www/py-multidict: Makefile 
	www/py-ndg-httpsclient: Makefile 
	www/py-paste   : Makefile 
	www/py-paste-deploy: Makefile 
	www/py-paste-script: Makefile 
	www/py-pylons  : Makefile 
	www/py-quixote : Makefile 
	www/py-recaptcha-client: Makefile 
	www/py-repoze-lru: Makefile 
	www/py-repoze-profile: Makefile 
	www/py-repoze-who: Makefile 
	www/py-requests: Makefile 
	www/py-requests-futures: Makefile 
	www/py-requests-mock: Makefile 
	www/py-requests-oauthlib: Makefile 
	www/py-requests-toolbelt: Makefile 
	www/py-routes  : Makefile 
	www/py-selenium: Makefile 
	www/py-sockjs-tornado: Makefile 
	www/py-tempita : Makefile 
	www/py-terminado: Makefile 
	www/py-tornado : Makefile 
	www/py-uritemplate: Makefile 
	www/py-urlgrabber: Makefile 
	www/py-waitress: Makefile 
	www/py-webdav  : Makefile 
	www/py-weberror: Makefile 
	www/py-webhelpers: Makefile 
	www/py-webob   : Makefile 
	www/py-webpy   : Makefile 
	www/py-webtest : Makefile 
	www/py-werkzeug: Makefile 
	www/py-wsgiproxy: Makefile 
	www/py-wtforms : Makefile 
	www/py-wtools  : Makefile 
	www/py-yarl    : Makefile 
	www/qutebrowser: Makefile 
	www/racktables : Makefile 
	www/ratproxy   : Makefile 
	www/rawdog     : Makefile 
	www/retawq     : Makefile 
	www/ruby-capybara: Makefile 
	www/ruby-capybara-webkit: Makefile 
	www/ruby-ethon : Makefile 
	www/ruby-fcgi  : Makefile 
	www/ruby-mechanize: Makefile 
	www/ruby-mustermann: Makefile 
	www/ruby-ntlm  : Makefile 
	www/ruby-puma  : Makefile 
	www/ruby-rack  : Makefile 
	www/ruby-rack-protection: Makefile 
	www/ruby-rack-test: Makefile 
	www/ruby-raindrops: Makefile 
	www/ruby-sanitize: Makefile 
	www/ruby-sinatra: Makefile 
	www/ruby-thin  : Makefile 
	www/ruby-typhoeus: Makefile 
	www/ruby-websocket-driver: Makefile 
	www/ruby-websocket-extensions: Makefile 
	www/ruby-xpath : Makefile 
	www/sabredav   : Makefile 
	www/sarg       : Makefile 
	www/sass       : Makefile 
	www/sblg       : Makefile 
	www/seamonkey  : Makefile 
	www/seamonkey-i18n: Makefile.inc 
	www/selfoss    : Makefile 
	www/slowhttptest: Makefile 
	www/snownews   : Makefile 
	www/sogo       : Makefile 
	www/spawn-fcgi : Makefile 
	www/sqtop      : Makefile 
	www/squidguard : Makefile 
	www/stagit     : Makefile 
	www/sthttpd    : Makefile 
	www/surf       : Makefile 
	www/surfraw    : Makefile 
	www/swiggle    : Makefile 
	www/syweb      : Makefile 
	www/tidy       : Makefile 
	www/tidyp      : Makefile 
	www/tinyproxy  : Makefile 
	www/tomcat     : Makefile.inc 
	www/tootstream : Makefile 
	www/tor-browser/browser: Makefile 
	www/ttyd       : Makefile 
	www/twill      : Makefile 
	www/uget       : Makefile 
	www/uriparser  : Makefile 
	www/varnish    : Makefile 
	www/vimb       : Makefile 
	www/vnu        : Makefile 
	www/vteplugin  : Makefile 
	www/w3m        : Makefile 
	www/w3mir      : Makefile 
	www/wApua      : Makefile 
	www/wbox       : Makefile 
	www/webalizer  : Makefile 
	www/webkitgtk4 : Makefile 
	www/weboob     : Makefile 
	www/wslay      : Makefile 
	www/www6to4    : Makefile 
	www/wwwcount   : Makefile 
	www/wwwoffle   : Makefile 
	www/xapian-omega: Makefile 
	x11/Xaw3d      : Makefile 
	x11/XawMu      : Makefile 
	x11/Xdialog    : Makefile 
	x11/abclock    : Makefile 
	x11/aewm       : Makefile 
	x11/arandr     : Makefile 
	x11/asapm      : Makefile 
	x11/asclock    : Makefile 
	x11/asfiles    : Makefile 
	x11/astime     : Makefile 
	x11/awesome    : Makefile 
	x11/bbdate     : Makefile 
	x11/bbkeys     : Makefile 
	x11/bbpager    : Makefile 
	x11/bclock     : Makefile 
	x11/belt       : Makefile 
	x11/bgs        : Makefile 
	x11/blackbox   : Makefile 
	x11/blast      : Makefile 
	x11/bricons    : Makefile 
	x11/bspwm      : Makefile 
	x11/bwidget    : Makefile 
	x11/byzi       : Makefile 
	x11/cegui      : Makefile 
	x11/chbg       : Makefile 
	x11/coma       : Makefile 
	x11/compiz     : Makefile.inc 
	x11/compiz/core: Makefile 
	x11/compton    : Makefile 
	x11/cool-retro-term: Makefile 
	x11/ctwm       : Makefile 
	x11/dbus-glib  : Makefile 
	x11/dbus-intf  : Makefile 
	x11/dbus-python: Makefile 
	x11/dbus-tcl   : Makefile 
	x11/dbusmenu-qt: Makefile 
	x11/dmenu      : Makefile 
	x11/driconf    : Makefile 
	x11/driftnet   : Makefile 
	x11/dstat      : Makefile 
	x11/dunst      : Makefile 
	x11/dwm        : Makefile 
	x11/dzen2      : Makefile 
	x11/e16keyedit : Makefile 
	x11/e17/e      : Makefile 
	x11/e17/e_dbus : Makefile 
	x11/e17/ecore  : Makefile 
	x11/e17/edje   : Makefile 
	x11/e17/eet    : Makefile 
	x11/e17/efreet : Makefile 
	x11/e17/eina   : Makefile 
	x11/e17/eio    : Makefile 
	x11/e17/elementary: Makefile 
	x11/e17/embryo : Makefile 
	x11/e17/emotion: Makefile 
	x11/e17/ethumb : Makefile 
	x11/e17/evas   : Makefile 
	x11/echinus    : Makefile 
	x11/emelfm2    : Makefile 
	x11/enlightenment: Makefile 
	x11/evilwm     : Makefile 
	x11/faba-icon-theme: Makefile 
	x11/faenza-icon-theme: Makefile 
	x11/fbpanel    : Makefile 
	x11/fleditor   : Makefile 
	x11/fltk       : Makefile 
	x11/fluxbox    : Makefile 
	x11/fluxter    : Makefile 
	x11/flvw       : Makefile 
	x11/flwm       : Makefile 
	x11/freerdp    : Makefile 
	x11/fvwm2      : Makefile 
	x11/gammapage  : Makefile 
	x11/gbdfed     : Makefile 
	x11/gcolor2    : Makefile 
	x11/gentoo     : Makefile 
	x11/gigolo     : Makefile 
	x11/gmrun      : Makefile 
	x11/gmtk       : Makefile 
	x11/gnome-colors-icon-theme: Makefile 
	x11/gnome-mplayer: Makefile 
	x11/gob2       : Makefile 
	x11/goggles    : Makefile 
	x11/golem      : Makefile 
	x11/grantlee   : Makefile 
	x11/grantlee-qt5: Makefile 
	x11/greybird   : Makefile 
	x11/gtk+2      : Makefile 
	x11/gtk+4      : Makefile 
	x11/gtk-chtheme: Makefile 
	x11/gtk-engines2: Makefile 
	x11/gtk-vnc    : Makefile 
	x11/gtk2-aurora-engine: Makefile 
	x11/gtk2-equinox-engine: Makefile 
	x11/gtk2-murrine-engine: Makefile 
	x11/gtk2-nodoka-engine: Makefile 
	x11/gtk2-oxygen-engine: Makefile 
	x11/gtk2-rezlooks-engine: Makefile 
	x11/gtk2-theme-switch: Makefile 
	x11/gtk2mm     : Makefile 
	x11/gtk3-oxygen-engine: Makefile 
	x11/gtk3-unico-engine: Makefile 
	x11/gtk3mm     : Makefile 
	x11/gtkdatabox : Makefile 
	x11/gtkglarea  : Makefile 
	x11/gtkglext   : Makefile 
	x11/gtkhotkey  : Makefile 
	x11/gtksourceview: Makefile 
	x11/gtksourceview3: Makefile 
	x11/gtksourceview4: Makefile 
	x11/gtksourceviewmm3: Makefile 
	x11/gxmessage  : Makefile 
	x11/herbstluftwm: Makefile 
	x11/hicolor-icon-theme: Makefile 
	x11/hs-X11     : Makefile 
	x11/hs-X11-xft : Makefile 
	x11/hs-dbus    : Makefile 
	x11/hs-xmonad-contrib: Makefile 
	x11/human-icon-theme: Makefile 
	x11/i3         : Makefile 
	x11/i3-gaps    : Makefile 
	x11/i3-mousedrag: Makefile 
	x11/i3lock     : Makefile 
	x11/icon-naming-utils: Makefile 
	x11/icontool   : Makefile 
	x11/idesk      : Makefile 
	x11/industrial-icon-theme: Makefile 
	x11/ion        : Makefile 
	x11/irrlicht   : Makefile 
	x11/isomaster  : Makefile 
	x11/itk        : Makefile 
	x11/iwidgets   : Makefile 
	x11/jgmenu     : Makefile 
	x11/jwm        : Makefile 
	x11/kde-shared-data: Makefile 
	x11/kde4       : Makefile.inc 
	x11/keybinder  : Makefile 
	x11/keybinder3 : Makefile 
	x11/keynav     : Makefile 
	x11/klavaro    : Makefile 
	x11/krusader   : Makefile 
	x11/lablgtk2   : Makefile 
	x11/lemonbar   : Makefile 
	x11/libdbus-c++: Makefile 
	x11/libdbusmenu: Makefile 
	x11/libdnd     : Makefile 
	x11/libfm      : Makefile.inc 
	x11/libgdiplus : Makefile 
	x11/libhandy   : Makefile 
	x11/libkscreen : Makefile 
	x11/libqaccessibilityclient: Makefile 
	x11/libxdg-basedir: Makefile 
	x11/lsw        : Makefile 
	x11/lumina     : Makefile 
	x11/lupe       : Makefile 
	x11/lxappearance: Makefile 
	x11/lxqt       : Makefile.inc 
	x11/lxrandr    : Makefile 
	x11/mate/atril : Makefile 
	x11/mate/caja  : Makefile 
	x11/mate/caja-extensions: Makefile 
	x11/mate/calc  : Makefile 
	x11/mate/control-center: Makefile 
	x11/mate/desktop: Makefile 
	x11/mate/engrampa: Makefile 
	x11/mate/eom   : Makefile 
	x11/mate/icon-theme: Makefile 
	x11/mate/libmatekbd: Makefile 
	x11/mate/libmatemixer: Makefile 
	x11/mate/libmateweather: Makefile 
	x11/mate/marco : Makefile 
	x11/mate/media : Makefile 
	x11/mate/menus : Makefile 
	x11/mate/notification-daemon: Makefile 
	x11/mate/panel : Makefile 
	x11/mate/pluma : Makefile 
	x11/mate/polkit: Makefile 
	x11/mate/power-manager: Makefile 
	x11/mate/screensaver: Makefile 
	x11/mate/session-manager: Makefile 
	x11/mate/settings-daemon: Makefile 
	x11/mate/system-monitor: Makefile 
	x11/mate/terminal: Makefile 
	x11/mate/themes: Makefile 
	x11/mate/utils : Makefile 
	x11/menu-cache : Makefile 
	x11/menumaker  : Makefile 
	x11/mlterm     : Makefile 
	x11/moka-icon-theme: Makefile 
	x11/mono-gtk2  : Makefile 
	x11/motif      : Makefile 
	x11/mouseclock : Makefile 
	x11/mowitz     : Makefile 
	x11/mterm      : Makefile 
	x11/nagstamon  : Makefile 
	x11/neXtaw     : Makefile 
	x11/netwmpager : Makefile 
	x11/nitrogen   : Makefile 
	x11/numlockx   : Makefile 
	x11/obconf     : Makefile 
	x11/obmenu     : Makefile 
	x11/ogle       : Makefile 
	x11/ogre       : Makefile 
	x11/openbox    : Makefile 
	x11/oroborus   : Makefile 
	x11/osd_clock  : Makefile 
	x11/p5-AnyEvent-I3: Makefile 
	x11/p5-Clipboard: Makefile 
	x11/p5-Gtk2    : Makefile 
	x11/p5-Gtk2-Ex-FormFactory: Makefile 
	x11/p5-Gtk2-Ex-PodViewer: Makefile 
	x11/p5-Gtk2-Ex-Simple-List: Makefile 
	x11/p5-Gtk2-GladeXML: Makefile 
	x11/p5-Gtk2-ImageView: Makefile 
	x11/p5-Tk      : Makefile 
	x11/p5-Tk-ProgressBar-Mac: Makefile 
	x11/p5-Tk-Splash: Makefile 
	x11/p5-Tk-Stderr: Makefile 
	x11/p5-Tkx     : Makefile 
	x11/p5-Wx      : Makefile 
	x11/p5-X-Osd   : Makefile 
	x11/p5-X11-Protocol: Makefile 
	x11/p5-X11-Protocol-Other: Makefile 
	x11/paper-gtk-theme: Makefile 
	x11/paper-icon-theme: Makefile 
	x11/parcellite : Makefile 
	x11/partiwm    : Makefile 
	x11/pcmanfm    : Makefile 
	x11/peksystray : Makefile 
	x11/pekwm      : Makefile 
	x11/pidgin-guifications: Makefile 
	x11/pidgin-libnotify: Makefile 
	x11/piewm      : Makefile 
	x11/podbrowser : Makefile 
	x11/polkit-qt  : Makefile 
	x11/pwm        : Makefile 
	x11/py-gtk2    : Makefile 
	x11/py-kiwi    : Makefile 
	x11/py-osd     : Makefile 
	x11/py-pyglet  : Makefile 
	x11/py-qt4     : Makefile 
	x11/py-qt5     : Makefile 
	x11/py-qtawesome: Makefile 
	x11/py-qtpy    : Makefile 
	x11/py-virtualdisplay: Makefile 
	x11/py-wxPython: Makefile 
	x11/py-xcbgen  : Makefile 
	x11/qdirstat   : Makefile 
	x11/qrfcview   : Makefile 
	x11/qt3        : Makefile 
	x11/qt4        : Makefile 
	x11/qt5ct      : Makefile 
	x11/qt5styleplugins: Makefile 
	x11/qwt        : Makefile 
	x11/ratmen     : Makefile 
	x11/rdesktop   : Makefile 
	x11/remmina    : Makefile 
	x11/rendercheck: Makefile 
	x11/rep-gtk    : Makefile 
	x11/rox-filer  : Makefile 
	x11/roxterm    : Makefile 
	x11/ruby-dbus  : Makefile 
	x11/ruby-tk    : Makefile 
	x11/rxvt-unicode: Makefile 
	x11/sakura     : Makefile 
	x11/sawfish    : Makefile 
	x11/sclock     : Makefile 
	x11/sct        : Makefile 
	x11/sisctrl    : Makefile 
	x11/skippy     : Makefile 
	x11/slim       : Makefile 
	x11/slim-themes: Makefile 
	x11/slock      : Makefile 
	x11/smplayer   : Makefile 
	x11/smtube     : Makefile 
	x11/spectrwm   : Makefile 
	x11/spice-gtk  : Makefile 
	x11/sselp      : Makefile 
	x11/st         : Makefile 
	x11/stalonetray: Makefile 
	x11/stumpwm    : Makefile 
	x11/swarp      : Makefile 
	x11/sxhkd      : Makefile 
	x11/tabbed     : Makefile 
	x11/tangerine-icon-theme: Makefile 
	x11/tango-icon-theme: Makefile 
	x11/tango-icon-theme-extras: Makefile 
	x11/tellico    : Makefile 
	x11/terminator : Makefile 
	x11/textsuggest: Makefile 
	x11/thewidgetfactory: Makefile 
	x11/tilda      : Makefile 
	x11/tk/8.5     : Makefile 
	x11/tk/8.6     : Makefile 
	x11/tkcon      : Makefile 
	x11/tkdnd      : Makefile 
	x11/tkhtml     : Makefile 
	x11/tktable    : Makefile 
	x11/tktray     : Makefile 
	x11/tktreectrl : Makefile 
	x11/transset-df: Makefile 
	x11/trayer     : Makefile 
	x11/treewm     : Makefile 
	x11/tvtwm      : Makefile 
	x11/type1inst  : Makefile 
	x11/unclutter  : Makefile 
	x11/uwm        : Makefile 
	x11/vdesk      : Makefile 
	x11/viewfax    : Makefile 
	x11/virt-viewer: Makefile 
	x11/waimea     : Makefile 
	x11/wampager   : Makefile 
	x11/wbar       : Makefile 
	x11/wind       : Makefile 
	x11/windowlab  : Makefile 
	x11/windowmaker: Makefile 
	x11/windowmaker-extra: Makefile 
	x11/winwrangler: Makefile 
	x11/wm2        : Makefile 
	x11/wmbutton   : Makefile 
	x11/wmcalclock : Makefile 
	x11/wmclock    : Makefile 
	x11/wmclockmon : Makefile 
	x11/wmctrl     : Makefile 
	x11/wmdate     : Makefile 
	x11/wmfishtime : Makefile 
	x11/wmi        : Makefile 
	x11/wmii       : Makefile 
	x11/wminfo     : Makefile 
	x11/wmitime    : Makefile 
	x11/wmmenu     : Makefile 
	x11/wmname     : Makefile 
	x11/wmtz       : Makefile 
	x11/wmutils    : Makefile.inc 
	x11/wmweather  : Makefile 
	x11/worker     : Makefile 
	x11/wxSVG      : Makefile 
	x11/wxWidgets  : Makefile 
	x11/wxglade    : Makefile 
	x11/x11vnc     : Makefile 
	x11/x2goclient : Makefile 
	x11/x2vnc      : Makefile 
	x11/x2x        : Makefile 
	x11/xantfarm   : Makefile 
	x11/xarchive   : Makefile 
	x11/xarchiver  : Makefile 
	x11/xautolock  : Makefile 
	x11/xbae       : Makefile 
	x11/xbindkeys  : Makefile 
	x11/xcalib     : Makefile 
	x11/xcape      : Makefile 
	x11/xcb        : Makefile 
	x11/xco        : Makefile 
	x11/xcoloredit : Makefile 
	x11/xcolors    : Makefile 
	x11/xcursor-dmz: Makefile 
	x11/xcursor-neutral: Makefile 
	x11/xcursor-themes: Makefile 
	x11/xcursorgen : Makefile 
	x11/xdaliclock : Makefile 
	x11/xdesktopwaves: Makefile 
	x11/xdg-user-dirs-gtk: Makefile 
	x11/xdotool    : Makefile 
	x11/xdrawchem  : Makefile 
	x11/xdtm       : Makefile 
	x11/xdu        : Makefile 
	x11/xfce4/exo  : Makefile 
	x11/xfce4/garcon: Makefile 
	x11/xfce4/gtk-xfce-engine: Makefile 
	x11/xfce4/libxfce4ui: Makefile 
	x11/xfce4/libxfce4util: Makefile 
	x11/xfce4/mousepad: Makefile 
	x11/xfce4/orage: Makefile 
	x11/xfce4/parole: Makefile 
	x11/xfce4/ristretto: Makefile 
	x11/xfce4/terminal: Makefile 
	x11/xfce4/thunar: Makefile 
	x11/xfce4/thunar-archive: Makefile 
	x11/xfce4/thunar-media-tags: Makefile 
	x11/xfce4/thunar-vcs: Makefile 
	x11/xfce4/tumbler: Makefile 
	x11/xfce4/xfce4-appfinder: Makefile 
	x11/xfce4/xfce4-battery: Makefile 
	x11/xfce4/xfce4-clipman: Makefile 
	x11/xfce4/xfce4-cpugraph: Makefile 
	x11/xfce4/xfce4-datetime: Makefile 
	x11/xfce4/xfce4-dev-tools: Makefile 
	x11/xfce4/xfce4-dict: Makefile 
	x11/xfce4/xfce4-diskperf: Makefile 
	x11/xfce4/xfce4-fsguard: Makefile 
	x11/xfce4/xfce4-genmon: Makefile 
	x11/xfce4/xfce4-icon-theme: Makefile 
	x11/xfce4/xfce4-mailwatch: Makefile 
	x11/xfce4/xfce4-mixer: Makefile 
	x11/xfce4/xfce4-mount: Makefile 
	x11/xfce4/xfce4-mpc: Makefile 
	x11/xfce4/xfce4-netload: Makefile 
	x11/xfce4/xfce4-notes: Makefile 
	x11/xfce4/xfce4-notifyd: Makefile 
	x11/xfce4/xfce4-panel: Makefile 
	x11/xfce4/xfce4-places: Makefile 
	x11/xfce4/xfce4-power-manager: Makefile 
	x11/xfce4/xfce4-pulseaudio: Makefile 
	x11/xfce4/xfce4-screensaver: Makefile 
	x11/xfce4/xfce4-screenshooter: Makefile 
	x11/xfce4/xfce4-session: Makefile 
	x11/xfce4/xfce4-settings: Makefile 
	x11/xfce4/xfce4-smartbookmark: Makefile 
	x11/xfce4/xfce4-statusnotifier: Makefile 
	x11/xfce4/xfce4-systemload: Makefile 
	x11/xfce4/xfce4-taskmanager: Makefile 
	x11/xfce4/xfce4-time-out: Makefile 
	x11/xfce4/xfce4-verve: Makefile 
	x11/xfce4/xfce4-wavelan: Makefile 
	x11/xfce4/xfce4-weather: Makefile 
	x11/xfce4/xfce4-whiskermenu: Makefile 
	x11/xfce4/xfce4-xkb: Makefile 
	x11/xfce4/xfconf: Makefile 
	x11/xfce4/xfdashboard: Makefile 
	x11/xfce4/xfdesktop: Makefile 
	x11/xfce4/xfmpc: Makefile 
	x11/xfce4/xfwm4: Makefile 
	x11/xfce4/xfwm4-themes: Makefile 
	x11/xfed       : Makefile 
	x11/xforms     : Makefile 
	x11/xglobe     : Makefile 
	x11/xkbcommon  : Makefile 
	x11/xkbset     : Makefile 
	x11/xli        : Makefile 
	x11/xloadimage : Makefile 
	x11/xmobar     : Makefile 
	x11/xmonad     : Makefile 
	x11/xosd       : Makefile 
	x11/xpad       : Makefile 
	x11/xplanet    : Makefile 
	x11/xplot      : Makefile 
	x11/xpostit    : Makefile 
	x11/xpostitPlus: Makefile 
	x11/xprompt    : Makefile 
	x11/xrestop    : Makefile 
	x11/xrootconsole: Makefile 
	x11/xruskb     : Makefile 
	x11/xscope     : Makefile 
	x11/xscreensaver: Makefile 
	x11/xscribble  : Makefile 
	x11/xsel       : Makefile 
	x11/xsettingsd : Makefile 
	x11/xtacy      : Makefile 
	x11/xtestpicture: Makefile 
	x11/xtoolwait  : Makefile 
	x11/xtraceroute: Makefile 
	x11/xtu        : Makefile 
	x11/xvkbd      : Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:02:30

Modified files:
	archivers/libmspack: Makefile 
	astro/gcal     : Makefile 
	astro/xworld   : Makefile 
	audio/audacity : Makefile 
	audio/flite    : Makefile 
	audio/libcanberra: Makefile 
	audio/libcdaudio: Makefile 
	audio/libmodplug: Makefile 
	audio/moc      : Makefile 
	audio/mp3cddb  : Makefile 
	audio/tempest  : Makefile 
	audio/xhippo   : Makefile 
	books/grokking-the-gimp: Makefile 
	chinese/cless  : Makefile 
	chinese/libtabe: Makefile 
	converters/html2wml: Makefile 
	converters/luastruct: Makefile 
	converters/p5-JSON-Any: Makefile 
	databases/ruby-redis-namespace: Makefile 
	databases/ruby-resque: Makefile 
	databases/ruby-sequel: Makefile 
	devel/arduboy2 : Makefile 
	devel/arduino-makefile: Makefile 
	devel/arduino  : Makefile 
	devel/arm-elf  : Makefile.inc 
	devel/arm-none-eabi: Makefile.inc 
	devel/atlas    : Makefile 
	devel/autogen  : Makefile 
	devel/avr/binutils: Makefile 
	devel/avr/gdb  : Makefile 
	devel/avr/libc : Makefile 
	devel/fox      : Makefile 
	devel/git-cvs  : Makefile 
	devel/goopy    : Makefile 
	devel/guilib   : Makefile 
	devel/libHX    : Makefile 
	devel/libJudy  : Makefile 
	devel/libf2c   : Makefile 
	devel/libhid   : Makefile 
	devel/libmemcached: Makefile 
	devel/libsoup  : Makefile 
	devel/libusb-compat: Makefile 
	devel/libuv    : Makefile 
	devel/libvirt-glib: Makefile 
	devel/lua-cjson: Makefile 
	devel/lua-cmsgpack: Makefile 
	devel/p5-Algorithm-Annotate: Makefile 
	devel/p5-Algorithm-Diff: Makefile 
	devel/p5-Algorithm-MarkovChain: Makefile 
	devel/p5-Algorithm-Munkres: Makefile 
	devel/p5-Algorithm-Permute: Makefile 
	devel/p5-App-Info: Makefile 
	devel/p5-AppConfig-Std: Makefile 
	devel/p5-B-Graph: Makefile 
	devel/p5-B-Hooks-OP-Check: Makefile 
	devel/p5-C-Scan: Makefile 
	devel/p5-Carp-Assert: Makefile 
	devel/p5-Class-Default: Makefile 
	devel/p5-Class-Loader: Makefile 
	devel/p5-Class-MethodMaker: Makefile 
	devel/p5-Class-Singleton: Makefile 
	devel/p5-Config-Grammar: Makefile 
	devel/p5-Config-Tiny: Makefile 
	devel/p5-Context-Preserve: Makefile 
	devel/p5-Data-Flow: Makefile 
	devel/p5-Data-FormValidator: Makefile 
	devel/p5-Data-HexDump: Makefile 
	devel/p5-Data-OptList: Makefile 
	devel/p5-DateTime-Format-MySQL: Makefile 
	devel/p5-DateTime-Format-W3CDTF: Makefile 
	devel/p5-DateTime-Locale: Makefile 
	devel/p5-Devel-Declare: Makefile 
	devel/p5-Devel-FastProf: Makefile 
	devel/p5-Devel-Leak: Makefile 
	devel/p5-Devel-Size: Makefile 
	devel/p5-Devel-Trace: Makefile 
	devel/p5-File-Finder: Makefile 
	devel/p5-File-Next: Makefile 
	devel/p5-FormValidator-Simple: Makefile 
	devel/p5-Getopt-Simple: Makefile 
	devel/p5-IO-CaptureOutput: Makefile 
	devel/p5-Locale-Maketext-Fuzzy: Makefile 
	devel/p5-Locale-Maketext-Lexicon: Makefile 
	devel/p5-Log-Dispatch-Binlog: Makefile 
	devel/p5-Log-Dispatch-Config-TestLog: Makefile 
	devel/p5-Log-Dispatch-Config: Makefile 
	devel/p5-Log-Log4perl: Makefile 
	devel/p5-MooseX-Declare: Makefile 
	devel/p5-MooseX-LazyRequire: Makefile 
	devel/p5-MooseX-LogDispatch: Makefile 
	devel/p5-MooseX-Meta-TypeConstraint-ForceCoercion: Makefile 
	devel/p5-MooseX-Traits: Makefile 
	devel/p5-MooseX-Types-Structured: Makefile 
	devel/p5-Object-Signature: Makefile 
	devel/p5-POE-API-Peek: Makefile 
	devel/p5-POE-Component-Supervisor: Makefile 
	devel/p5-Parallel-Forker: Makefile 
	devel/p5-Parse-Method-Signatures: Makefile 
	devel/p5-SUPER : Makefile 
	devel/p5-Set-Scalar: Makefile 
	devel/p5-Sort-Key: Makefile 
	devel/p5-TAP-Harness-Archive: Makefile 
	devel/p5-TAP-Harness-Multiple: Makefile 
	devel/p5-Term-ReadPassword: Makefile 
	devel/p5-Term-Screen: Makefile 
	devel/p5-Term-ScreenColor: Makefile 
	devel/p5-Test-File-Contents: Makefile 
	devel/p5-Test-Spelling: Makefile 
	devel/p5-Test-TempDir: Makefile 
	devel/p5-Test-Without-Module: Makefile 
	devel/p5-Time-Clock: Makefile 
	devel/p5-Time-Period: Makefile 
	devel/p5-UUID-Tiny: Makefile 
	devel/p5-accessors: Makefile 
	devel/poedit   : Makefile 
	devel/py-altgraph: Makefile 
	devel/ragel    : Makefile 
	devel/ruby-highline: Makefile 
	devel/ruby-optimist: Makefile 
	devel/ruby-polyglot: Makefile 
	devel/sdl-image: Makefile 
	devel/sdl-mixer: Makefile 
	devel/sdl-net  : Makefile 
	devel/sdl-ttf  : Makefile 
	devel/sdl      : Makefile 
	devel/sdl2-ttf : Makefile 
	devel/sdlmm    : Makefile 
	devel/silc-toolkit: Makefile 
	devel/smpeg    : Makefile 
	devel/smpeg2   : Makefile 
	devel/stm32loader: Makefile 
	devel/tclcl    : Makefile 
	devel/xtensa-elf: Makefile.inc 
	editors/hnb    : Makefile 
	emulators/dosbox: Makefile 
	fonts/dina-fonts: Makefile 
	fonts/sgi-fonts: Makefile 
	fonts/spleen   : Makefile 
	fonts/zh-arphicttf: Makefile 
	fonts/zh-kcfonts: Makefile 
	games/afternoonstalker: Makefile 
	games/asciiquarium: Makefile 
	games/burgerspace: Makefile 
	games/bzflag   : Makefile 
	games/corewars : Makefile 
	games/cosmosmash: Makefile 
	games/crossfire-client: Makefile 
	games/eboard-extras: Makefile 
	games/eboard   : Makefile 
	games/enigma   : Makefile 
	games/falconseye: Makefile 
	games/fire     : Makefile 
	games/gtkballs : Makefile 
	games/heroes   : Makefile 
	games/icebreaker: Makefile 
	games/lwjgl    : Makefile 
	games/newvox   : Makefile 
	games/omega    : Makefile 
	games/quakespasm: Makefile 
	games/rftg     : Makefile 
	games/sdlpop   : Makefile 
	games/sdlroids : Makefile 
	games/sdlzombies: Makefile 
	games/taxipilot: Makefile 
	games/toppler  : Makefile 
	games/vectoroids: Makefile 
	games/wanderer : Makefile 
	games/xbreaky  : Makefile 
	games/xmahjongg: Makefile 
	games/xpilot   : Makefile 
	games/yquake2  : Makefile 
	geo/gmapcatcher: Makefile 
	geo/p5-Geo-Inverse: Makefile 
	graphics/dia   : Makefile 
	graphics/dumpmpeg: Makefile 
	graphics/enjoympeg: Makefile 
	graphics/grap  : Makefile 
	graphics/indexpage: Makefile 
	graphics/iview : Makefile 
	graphics/libcaca: Makefile 
	graphics/libmypaint: Makefile 
	graphics/libvidcap: Makefile 
	graphics/mypaint-brushes: Makefile 
	graphics/p5-Image-EXIF: Makefile 
	graphics/p5-Image-Size: Makefile 
	graphics/py-Pillow: Makefile 
	graphics/py-sane: Makefile 
	graphics/ruby-rmagick: Makefile 
	japanese/kanjipad: Makefile 
	java/jlint     : Makefile 
	lang/chibi-scheme: Makefile 
	lang/gcc       : Makefile.inc 
	lang/icon/book : Makefile 
	lang/icon/devel-book: Makefile 
	lang/kawa      : Makefile 
	lang/scala     : Makefile 
	mail/cmail     : Makefile 
	mail/mboxgrep  : Makefile 
	mail/poppy     : Makefile 
	mail/postfwd   : Makefile 
	mail/solid-pop3d: Makefile 
	mail/spampd    : Makefile 
	math/abs       : Makefile 
	math/armadillo : Makefile 
	math/eigen     : Makefile 
	math/libqalculate: Makefile 
	math/mlpack    : Makefile 
	math/p5-Chart-Math-Axis: Makefile 
	misc/gone      : Makefile 
	misc/impress   : Makefile 
	misc/p5-Finance-Bank-DE-DTA-Create: Makefile 
	misc/pfm       : Makefile 
	misc/remind    : Makefile 
	multimedia/frei0r-plugins: Makefile 
	net/arpcatch   : Makefile 
	net/charm      : Makefile 
	net/ettercap   : Makefile 
	net/fmirror    : Makefile 
	net/go-ipfs    : Makefile 
	net/libnids    : Makefile 
	net/nam        : Makefile 
	net/p5-Business-PayPal-API: Makefile 
	net/p5-Business-PayPal: Makefile 
	net/p5-IO-Socket-Multicast: Makefile 
	net/p5-Net-Whois-Raw: Makefile 
	net/p5-Nmap-Scanner: Makefile 
	net/p5-SNMP_Session: Makefile 
	net/ruby-stomp : Makefile 
	net/sslsniffer : Makefile 
	net/tkirc      : Makefile 
	net/valknut    : Makefile 
	net/vicq       : Makefile 
	news/yencode   : Makefile 
	print/apvlv    : Makefile 
	productivity/projectlibre: Makefile 
	security/aircrack-ng: Makefile 
	security/ccid  : Makefile 
	security/dante : Makefile 
	security/go-crypto: Makefile 
	security/p5-Crypt-Blowfish: Makefile 
	security/p5-Crypt-CBC: Makefile 
	security/p5-Crypt-DES: Makefile 
	security/p5-Crypt-OpenSSL-EC: Makefile 
	security/p5-Crypt-OpenSSL-ECDSA: Makefile 
	security/p5-Crypt-OpenSSL-PKCS10: Makefile 
	security/p5-Crypt-OpenSSL-RSA: Makefile 
	security/p5-Crypt-PasswdMD5: Makefile 
	security/p5-Crypt-RC4: Makefile 
	security/p5-Crypt-Serpent: Makefile 
	security/p5-Crypt-TripleDES: Makefile 
	security/p5-Crypt-Twofish: Makefile 
	security/p5-Digest-HMAC: Makefile 
	security/p5-GnuPG-Interface: Makefile 
	security/p5-MD5: Makefile 
	security/ppgen : Makefile 
	security/ruby-bcrypt: Makefile 
	security/ruby-gpgme: Makefile 
	security/ruby-hmac: Makefile 
	security/slurpie: Makefile 
	security/snort2pf: Makefile 
	security/volatility: Makefile 
	security/zebedee: Makefile 
	sysutils/conky : Makefile 
	sysutils/dcled : Makefile 
	sysutils/dep   : Makefile 
	sysutils/entr  : Makefile 
	sysutils/fsstress: Makefile 
	sysutils/gkrellm/gkrellm: Makefile 
	sysutils/libvirt: Makefile 
	sysutils/p5-Filesys-Df: Makefile 
	sysutils/p5-Filesys-DiskSpace: Makefile 
	sysutils/p5-Rex: Makefile 
	sysutils/radiusreport: Makefile 
	sysutils/rclone: Makefile 
	sysutils/ruby-directory_watcher: Makefile 
	sysutils/uptimed: Makefile 
	sysutils/xps   : Makefile 
	textproc/antiword: Makefile 
	textproc/bibelot: Makefile 
	textproc/docbook-to-man: Makefile 
	textproc/docbook-xsl: Makefile 
	textproc/libwpd: Makefile 
	textproc/p5-Lingua-EN-Sentence: Makefile 
	textproc/p5-Lingua-Treebank: Makefile 
	textproc/p5-String-Approx: Makefile 
	textproc/p5-String-Random: Makefile 
	textproc/p5-String-Similarity: Makefile 
	textproc/p5-Syntax-Highlight-HTML: Makefile 
	textproc/p5-Syntax-Highlight-Mason: Makefile 
	textproc/p5-Syntax-Highlight-Perl: Makefile 
	textproc/p5-Text-German: Makefile 
	textproc/p5-Text-LevenshteinXS: Makefile 
	textproc/p5-Text-Quoted: Makefile 
	textproc/p5-Text-Wrapper: Makefile 
	textproc/p5-XML-DOM-XPath: Makefile 
	textproc/p5-ack: Makefile 
	textproc/palm-bookmarks: Makefile 
	textproc/ruby-liquid: Makefile 
	textproc/ruby-maruku: Makefile 
	textproc/ruby-rdiscount: Makefile 
	textproc/ruby-redcloth: Makefile 
	textproc/ruby-treetop: Makefile 
	textproc/source-highlight: Makefile 
	textproc/xmlwf : Makefile 
	textproc/xxdiff: Makefile 
	www/cronolog   : Makefile 
	www/fcgi       : Makefile 
	www/mimetex    : Makefile 
	www/p5-Apache-DB: Makefile 
	www/p5-CSS-Squish: Makefile 
	www/p5-CSS-Tiny: Makefile 
	www/p5-Config-ApacheFormat: Makefile 
	www/p5-HTML-Format: Makefile 
	www/p5-HTML-Highlight: Makefile 
	www/p5-HTML-PopupTreeSelect: Makefile 
	www/p5-HTML-RewriteAttributes: Makefile 
	www/p5-HTML-Stream: Makefile 
	www/p5-HTML-TagFilter: Makefile 
	www/p5-HTTP-Async: Makefile 
	www/p5-PHP-Serialization: Makefile 
	www/p5-libapreq2: Makefile 
	www/php-markdown: Makefile 
	www/rt         : Makefile 
	www/ruby-addressable: Makefile 
	www/ruby-faraday: Makefile 
	www/ruby-faraday_middleware-multi_json: Makefile 
	www/ruby-faraday_middleware: Makefile 
	www/ruby-multipart-post: Makefile 
	www/ruby-passenger: Makefile 
	www/ruby-rainbows: Makefile 
	www/ruby-unicorn: Makefile 
	www/ruby-vegas : Makefile 
	www/sope       : Makefile 
	www/trac-ldapplugin: Makefile 
	www/visitors   : Makefile 
	www/wp-cli     : Makefile 
	x11/2bwm       : Makefile 
	x11/afterstep  : Makefile 
	x11/fsv        : Makefile 
	x11/ogle_gui   : Makefile 
	x11/root-tail  : Makefile 
	x11/wmtime     : Makefile 
	x11/xclip      : Makefile 
	x11/xkeycaps   : Makefile 
	x11/xtermset   : Makefile 
	x11/xwit       : Makefile 
	x11/xwrits     : Makefile 
	x11/yad        : Makefile 
	x11/yakuake    : Makefile 
	x11/yaru       : Makefile 
	x11/yeahconsole: Makefile 
	x11/yeahlaunch : Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:05:06

Modified files:
	archivers/luazlib: Makefile 
	lang/unicon    : Makefile 
	print/brlaser  : Makefile 
	www/composer   : Makefile 
	www/drush      : Makefile 
	x11/tint2      : Makefile 
	x11/xbanish    : Makefile 
	x11/xdimmer    : Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:07:47

Modified files:
	audio/py-discogs-client: Makefile 
	audio/py-musicbrainzngs: Makefile 
	devel/automoc  : Makefile 
	devel/jd-gui   : Makefile 
	devel/p5-Devel-Gladiator: Makefile 
	devel/p5-Devel-Leak-Object: Makefile 
	devel/p5-Module-Starter-Plugin-CGIApp: Makefile 
	devel/py-docopt: Makefile 
	devel/ruby-activesupport: Makefile 
	devel/ruby-colorator: Makefile 
	devel/ruby-colored: Makefile 
	devel/ruby-commander: Makefile 
	devel/ruby-log4r: Makefile 
	devel/ruby-mocha: Makefile 
	devel/ruby-rake-compiler: Makefile 
	devel/ruby-ruby-progressbar: Makefile 
	devel/ruby-safe_yaml: Makefile 
	devel/ruby-semantic_puppet: Makefile 
	devel/sdl2-mixer: Makefile 
	editors/kile-kde4: Makefile 
	games/0ad      : Makefile.inc 
	games/ufoai    : Makefile.inc 
	graphics/amide : Makefile 
	graphics/qimageblitz: Makefile 
	graphics/sk1   : Makefile 
	mail/ruby-mime : Makefile 
	misc/logjam    : Makefile 
	multimedia/phonon-backend: Makefile.inc 
	net/blaeu      : Makefile 
	net/cagibi     : Makefile 
	net/mon        : Makefile.inc 
	net/py-oauth2  : Makefile 
	net/si         : Makefile 
	security/p5-Crypt-Eksblowfish: Makefile 
	security/p5-Digest-Perl-MD5: Makefile 
	security/password-gorilla: Makefile 
	security/py-oauthlib: Makefile 
	sysutils/p5-Schedule-At: Makefile 
	sysutils/torture: Makefile 
	www/cntlm      : Makefile 
	www/kwebkitpart: Makefile 
	www/p5-CSS-DOM : Makefile 
	www/p5-HTML-Table: Makefile 
	www/p5-W3C-LinkChecker: Makefile 
	www/py-jwt     : Makefile 
	x11/ede        : Makefile.inc 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:15:36

Modified files:
	astro/libnova  : Makefile 
	astro/sunclock : Makefile 
	audio/metronome: Makefile 
	books/tex-by-topic: Makefile 
	converters/p5-Convert-Base32: Makefile 
	databases/pgbouncer: Makefile 
	databases/pgpool: Makefile 
	devel/coccigrep: Makefile 
	devel/coccinelle: Makefile 
	devel/cryptopp : Makefile 
	devel/p5-Class-ISA: Makefile 
	devel/p5-Test-CheckManifest: Makefile 
	devel/pysvn    : Makefile 
	devel/ruby-extlib: Makefile 
	devel/ruby-ole : Makefile 
	devel/avr32/binutils: Makefile 
	devel/avr32/gcc: Makefile 
	devel/avr32/gcc-bootstrap: Makefile 
	devel/avr32/headers: Makefile 
	devel/avr32/newlib: Makefile 
	devel/imake    : Makefile 
	devel/imake-cf : Makefile 
	devel/p5-File-Listing: Makefile 
	games/starlanes: Makefile 
	graphics/pycha : Makefile 
	graphics/vigra : Makefile 
	japanese/kinput2: Makefile 
	japanese/onew  : Makefile 
	lang/eltclsh   : Makefile 
	math/eigen2    : Makefile 
	misc/lfm       : Makefile 
	multimedia/p5-AMF-Connection: Makefile 
	multimedia/p5-Storable-AMF: Makefile 
	net/bro        : Makefile 
	net/oinkmaster : Makefile 
	net/openvpn-auth-ldap: Makefile 
	net/p5-Net-DHCP: Makefile 
	net/sipcalc    : Makefile 
	net/tcl-snmptools: Makefile 
	net/p5-Net-HTTP: Makefile 
	security/clamav-unofficial-sigs: Makefile 
	security/gnupg2: Makefile 
	security/libksba: Makefile 
	security/libperseus: Makefile 
	security/logsentry: Makefile 
	security/onesixtyone: Makefile 
	security/pinentry: Makefile 
	security/py-ecdsa: Makefile 
	sysutils/ranger: Makefile 
	sysutils/rdiff-backup: Makefile 
	sysutils/netshot: Makefile 
	textproc/docbook2x: Makefile 
	textproc/ispell: Makefile 
	www/p5-WWW-Tumblr: Makefile 
	x11/p5-Tk-TableMatrix: Makefile 

Log message:
replace simple PERMIT_PACKAGE_CDROM=Yes with PERMIT_PACKAGE=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:22:24

Modified files:
	textproc/ispell: Makefile 

Log message:
fix an irregular PERMIT_*


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:25:58

Modified files:
	astro/sunclock : Makefile 
	japanese/onew  : Makefile 
	japanese/kinput2: Makefile 

Log message:
fix irregular PERMIT_*


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:34:51

Modified files:
	sysutils/firmware: Makefile.inc 
	sysutils/firmware/athn: Makefile 
	sysutils/firmware/rsu: Makefile 
	sysutils/firmware/ulpt: Makefile 
	sysutils/firmware/vmm: Makefile 

Log message:
move firmware ports from PERMIT.*_(CDROM|FTP) to PERMIT_(DISTFILES|PACKAGE)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:36:21

Modified files:
	geo/qgis       : Makefile 
Added files:
	geo/qgis/patches: patch-src_core_CMakeLists_txt 

Log message:
restrict inlining on one c++ source file on clang arches, it was taking many hours.
down to ~1 minute with restriction. hint from kurt@ ok espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:42:15

Modified files:
	audio/audacious: Makefile 
	games/glutton  : Makefile 
	games/stone-soup: Makefile 

Log message:
a couple of straggling simple PERMIT_PACKAGE=Yes (different whitespace etc)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/12 15:44:01

Modified files:
	databases/mariadb: Makefile 
	databases/mariadb/pkg: README-server 

Log message:
adjust MariaDB pkg-readme to mention mysql_upgrade and use a simpler suggestion
for overriding socket path that matches the new default my.cnf better. ok Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/12 16:55:20

Modified files:
	sysutils/firmware: Makefile.inc 

Log message:
unbreak: move check from PERMIT_PACKAGE_* to PERMIT_PACKAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/07/13 00:48:16

Modified files:
	lang/python/3.7: Makefile distinfo 
	lang/python/3.7/pkg: PLIST-main PLIST-tests 

Log message:
update python 3 to 3.7.4.
tested in a bulk build on amd64 by naddy@ (thanks).


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/07/13 00:51:59

Modified files:
	sys/kern       : sys_pipe.c 

Log message:
pipe_write() do opportunistic buffer resizing, when the buffer is empty.
but there is a possible sleeping point between the check (cnt == 0) and
the resize (pipespace() call), resulting resizing on possibly not empty
buffer.

fix it by rechecking the buffer usage once the exclusive lock is hold.

it should be revisited later as part of larger work on pipe(2).

ok visa@ anton@


CVSROOT:	/cvs
Module name:	src
Changes by:	chrisz@cvs.openbsd.org	2019/07/13 00:53:00

Modified files:
	usr.sbin/relayd: relay_http.c relay.c 

Log message:
Don't "forward to <table>" when a "forward to destination" address is set.
This matches the documented behaviour.
On matching "forward to <table>" filter rules the "forward to destination"
address is unset, so that in that case the "forward to <table>" rule is still
used.

OK benno@, regression tests still passing.


CVSROOT:	/cvs
Module name:	src
Changes by:	chrisz@cvs.openbsd.org	2019/07/13 00:54:45

Modified files:
	usr.sbin/relayd: parse.y 

Log message:
fix error description on invalid forward ip.

OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:10:37

Modified files:
	audio/pulseaudio: Makefile 

Log message:
Skip version 12.99.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:14:35

Modified files:
	devel/meson    : Makefile distinfo meson.port.mk 

Log message:
Update to meson-0.51.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:19:33

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:19:54

Modified files:
	sysutils/amazon-ecs-cli: Makefile distinfo 

Log message:
Update to ecs-cli-1.15.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:24:50

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.672.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:30:33

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-fastly: Makefile distinfo 
	sysutils/terraform/provider-heroku: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:37:59

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.188.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:38:13

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.188.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 02:38:31

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.198.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 03:24:32

Modified files:
	devel/harfbuzz : Makefile distinfo 
	devel/harfbuzz/pkg: PLIST-main 

Log message:
Update to harfbuzz-2.5.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 03:54:45

Modified files:
	x11/gnome/totem: Makefile distinfo 
	x11/gnome/totem/pkg: PLIST 
Removed files:
	x11/gnome/totem/patches: patch-src_meson_build 

Log message:
Update to totem-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/13 04:59:27

Modified files:
	devel/autoconf : Makefile.inc 
	devel/automake : Makefile.inc 
	devel/libgit2  : Makefile.inc 
	devel/libmpack : Makefile.inc 
	devel/msp430   : Makefile.inc 
	devel/open-ath9k-htc-firmware: Makefile.inc 
	devel/qp       : Makefile.inc 
	devel/radare2  : Makefile.inc 
	devel/ruby-rspec: Makefile.inc 
	devel/ruby-rspec/3: Makefile.inc 
	fonts/adobe-fonts: Makefile.inc 
	fonts/noto     : Makefile.inc 
	games/colobot  : Makefile.inc 
	games/freedoom : Makefile.inc 
	geo/spatialite : Makefile.inc 
	graphics/clutter: Makefile.inc 
	mail/kopano    : Makefile.inc 
	math/lpsolve   : Makefile.inc 
	misc/m17n      : Makefile.inc 
	net/gupnp      : Makefile.inc 
	net/napalm     : Makefile.inc 
	net/telepathy  : Makefile.inc 
	print/texlive  : Makefile.inc 
	sysutils/beats : Makefile.inc 
	sysutils/gkrellm/plugins: Makefile.inc 
	sysutils/mcollective-plugins: Makefile.inc 
	textproc/apertium-dicts: Makefile.inc 
	textproc/aspell/dicts: Makefile.inc 
	textproc/zathura/plugins: Makefile.inc 
	www/drupal7    : Makefile.inc 
	www/tor-browser: Makefile.inc 
	x11/agar       : Makefile.inc 
	x11/gnustep    : Makefile.inc 
	x11/kde        : Makefile.inc 
	x11/nx         : Makefile.inc 

Log message:
update various simple PERMIT_* in Makefile.inc files


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/13 05:02:18

Modified files:
	x11/qt5        : Makefile.inc 
	x11/qt5/qtwebengine: Makefile 

Log message:
update PERMIT_PACKAGE* in qt5/Makefile.inc, drop PERMIT_PACKAGE_CDROM from qtwebengine


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/13 05:38:18

Modified files:
	x11/gnome/ghex : Makefile distinfo 
	x11/gnome/ghex/pkg: PLIST 
Added files:
	x11/gnome/ghex/patches: patch-src_meson_build 

Log message:
Update to ghex-3.18.4.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/13 06:03:31

Modified files:
	mail/postfix/snapshot: Makefile distinfo 

Log message:
update to Postfix 3.5-20190427, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/13 06:03:42

Modified files:
	mail/postfix/stable: Makefile distinfo 

Log message:
update to Postfix 3.4.6, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/13 06:05:00

Modified files:
	mail/postfix   : Makefile.inc 

Log message:
convert PERMIT_PACKAGE; lose PERMIT_PACKAGE_CDROM which was restrictive
but we aren't recording information for cdrom builds any more


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/13 07:30:11

Modified files:
	mail/dovecot   : Makefile distinfo 
	mail/dovecot/pkg: PLIST-server 
Added files:
	mail/dovecot/patches: patch-src_lib_ostream-file_c 

Log message:
update to Dovecot 2.3.7, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/13 07:30:24

Modified files:
	mail/dovecot-pigeonhole: Makefile distinfo 

Log message:
update to Dovecot-pigeonhole 0.5.7, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/13 11:06:04

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
time to whine about PERMIT_PACKAGE_*

okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/13 11:26:38

Modified files:
	lib/libcrypto/man: RSA_get0_key.3 RSA_meth_new.3 

Log message:
explain the acronym "CRT"; suggested by tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/13 14:32:36

Modified files:
	multimedia/gstreamer-0.10: Makefile.inc 
	multimedia/gstreamer-0.10/plugins-ffmpeg: Makefile 
	multimedia/gstreamer-0.10/plugins-ugly: Makefile 
	multimedia/gstreamer1: Makefile.inc 
	multimedia/gstreamer1/plugins-ugly: Makefile 

Log message:
Switch to PERMIT_PACKAGE.  CDROM restrictions are no longer applicable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/07/13 14:36:30

Modified files:
	net/libunbound : Makefile 

Log message:
enable pthreads for net/libunbound; ok sthen@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	drahn@cvs.openbsd.org	2019/07/13 15:16:17

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
pmap_page_protect() should not unmap pages after making them readonly.
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	drahn@cvs.openbsd.org	2019/07/13 15:31:59

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Adjust the pmap_set_l* functions to a more reasonable API,
the lX_pa parameter was never called with a known physical address,
the called function always needed to look up that data. When this was
originally written, it was expected to be used in another path where the
virtual and physical were both known, but that other path was rewritten
at some point (likely that old path was early kernel table init, before
pmap_extract is available).

Instead of making the function perform a table walk pass the pmapvpX pointer
to the table that the new entry will be inserted. This table is already
known and in a local register, so no point in performing that lookup again.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	drahn@cvs.openbsd.org	2019/07/13 15:47:06

Modified files:
	sys/arch/arm64/arm64: pmap.c 

Log message:
Panic for missing vp1 entry, do not panic for missing vp2 entry twice.
Fix print on subsequent line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/13 16:12:09

Modified files:
	devel/go-sys   : Makefile 
	devel/lua-penlight: Makefile 
	devel/lualdoc  : Makefile 
	net/go-net     : Makefile 
	net/p5-Net-LibIDN: Makefile 
	textproc/go-text: Makefile 
	x11/girara     : Makefile 

Log message:
a couple of straggling simple PERMIT_PACKAGE=Yes (different whitespace etc)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/13 17:05:21

Modified files:
	archivers/p7zip: Makefile 

Log message:
Switch remaining multi-package port to PERMIT_PACKAGE.
CDROM restrictions are no longer applicable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/13 18:39:40

Modified files:
	archivers/lha  : Makefile 
	astro/xearth   : Makefile 
	astro/xphoon   : Makefile 
	audio/faad     : Makefile 
	audio/fdk-aac  : Makefile 
	audio/generaluser-gs-soundfont: Makefile 
	audio/lame     : Makefile 
	audio/opencore-amr: Makefile 
	audio/shorten  : Makefile 
	benchmarks/netperf: Makefile 
	benchmarks/xengine: Makefile 
	books/clisp-hyperspec: Makefile 
	books/progit   : Makefile 
	chinese/hc     : Makefile 
	chinese/lunar  : Makefile 
	comms/lrzsz    : Makefile 
	converters/btoa: Makefile 
	converters/libdvdcss: Makefile 
	converters/trans: Makefile 
	devel/javahelp : Makefile 
	editors/axe    : Makefile 
	editors/scintilla: Makefile 
	editors/scite  : Makefile 
	editors/uemacs : Makefile 
	emulators/dgen-sdl: Makefile 
	emulators/libretro-genesis-plus-gx: Makefile 
	emulators/snes9x: Makefile 
	emulators/xhomer: Makefile 
	fonts/amigafonts: Makefile 
	fonts/ja-funetfonts: Makefile 
	fonts/ru-pscyr : Makefile 
	games/alephone/scenarios/evil: Makefile 
	games/alephone/scenarios/marathon: Makefile 
	games/alephone/scenarios/marathon2: Makefile 
	games/alephone/scenarios/marathoninfinity: Makefile 
	games/alephone/scenarios/red: Makefile 
	games/angband  : Makefile 
	games/dangerdeep: Makefile 
	games/duke3ddata: Makefile 
	games/dungeon  : Makefile 
	games/dungeon-crawl: Makefile 
	games/dxx-rebirth: Makefile 
	games/ja2-stracciatella: Makefile 
	games/moria    : Makefile 
	games/opensonic: Makefile 
	games/solarus/roth: Makefile 
	games/solarus/zsdx: Makefile 
	games/solarus/zsxd: Makefile 
	games/tbftss   : Makefile 
	games/uqm      : Makefile 
	games/urbanterror-data: Makefile 
	games/witchblast: Makefile 
	games/xbattle  : Makefile 
	games/xinvaders: Makefile 
	games/xminehunter: Makefile 
	games/xminesweep: Makefile 
	games/xmris    : Makefile 
	games/zangband : Makefile 
	graphics/autopano-sift-c: Makefile 
	graphics/jpeg2ps: Makefile 
	graphics/mpeg_encode: Makefile 
	graphics/piglit: Makefile 
	graphics/povray: Makefile 
	graphics/xanim : Makefile 
	graphics/xv    : Makefile 
	japanese/canna : Makefile 
	lang/compcert  : Makefile 
	lang/jikes     : Makefile 
	mail/altermime : Makefile 
	mail/cucipop   : Makefile 
	math/geogebra  : Makefile 
	misc/astrolog  : Makefile 
	misc/mmv       : Makefile 
	multimedia/libaacs: Makefile 
	multimedia/libbdplus: Makefile 
	multimedia/libmp4v2: Makefile 
	multimedia/mpv : Makefile 
	multimedia/x264: Makefile 
	multimedia/xine-lib: Makefile 
	net/libbgpdump : Makefile 
	net/rtmpdump   : Makefile 
	net/tcpshow    : Makefile 
	news/nn        : Makefile 
	news/tin       : Makefile 
	news/trn       : Makefile 
	print/a2ps     : Makefile 
	print/afm      : Makefile 
	print/bg5pdf   : Makefile 
	print/foiltex  : Makefile 
	print/pdflib   : Makefile 
	productivity/thinkingrock: Makefile 
	security/amap  : Makefile 
	security/john-jumbo: Makefile 
	security/libnipper: Makefile 
	security/lxnb  : Makefile 
	security/nfsshell: Makefile 
	security/nipper: Makefile 
	security/pgp5  : Makefile 
	security/portsentry: Makefile 
	security/radiusniff: Makefile 
	security/rdp   : Makefile 
	shells/ksh93   : Makefile 
	sysutils/crashme: Makefile 
	sysutils/ec2-api-tools: Makefile 
	sysutils/idled : Makefile 
	sysutils/rancid: Makefile 
	sysutils/riemann: Makefile 
	sysutils/safecat: Makefile 
	sysutils/sleuthkit: Makefile 
	telephony/bcg729: Makefile 
	textproc/clit  : Makefile 
	textproc/glimpse: Makefile 
	textproc/lgrind: Makefile 
	www/chromium   : Makefile 
	www/iridium    : Makefile 
	www/mollify    : Makefile 
	x11/eterm      : Makefile 
	x11/vlc        : Makefile 
	x11/xzoom      : Makefile 

Log message:
Switch to PERMIT_PACKAGE.  CDROM restrictions are no longer applicable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/13 18:51:55

Modified files:
	audio/audiality2: Makefile 

Log message:
switch unusual case to PERMIT_(DISTFILES|PACKAGE)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/13 20:16:53

Modified files:
	archivers/freeze: Makefile 
	archivers/macutil: Makefile 
	archivers/nulib: Makefile 
	archivers/unarj: Makefile 
	astro/sattrack : Makefile 
	astro/xephem   : Makefile 
	audio/squeezecenter: Makefile 
	benchmarks/iozone: Makefile 
	books/JLS      : Makefile 
	books/JVMS     : Makefile 
	cad/qcad       : Makefile 
	comms/zmtx-zmrx: Makefile 
	converters/ish : Makefile 
	converters/mimepp: Makefile 
	emulators/advancemame: Makefile 
	emulators/openmsx: Makefile 
	fonts/farsi-bfonts-ttf: Makefile 
	fonts/freefonts: Makefile 
	fonts/msctfonts: Makefile 
	fonts/msttcorefonts: Makefile 
	fonts/pkfonts  : Makefile 
	fonts/zh-taipeifonts: Makefile 
	games/doomdata/doom1: Makefile 
	games/doomdata/doom2: Makefile 
	games/eduke32  : Makefile 
	games/fs2open  : Makefile 
	games/sauerbraten: Makefile 
	games/xbomber  : Makefile 
	lang/go-bootstrap: Makefile 
	mail/majordomo : Makefile 
	misc/vmware-vncpasswd: Makefile 
	net/ctrace     : Makefile 
	net/mfi        : Makefile 
	net/nssl       : Makefile 
	net/p5-Net-ICQ2000: Makefile 
	net/thcrut     : Makefile 
	plan9/9menu    : Makefile 
	security/ADMsnmp: Makefile 
	security/cryptcat: Makefile 
	security/p5-GPG: Makefile 
	security/sentinel: Makefile 
	sysutils/tarsnap: Makefile 
	telephony/asterisk-g729: Makefile 
	textproc/html  : Makefile 
	textproc/p5-Lingua-EN-Summarize: Makefile 
	textproc/spiff : Makefile 
	x11/amiwm      : Makefile 
	x11/mxconns    : Makefile 
	x11/wmx        : Makefile 

Log message:
Switch to PERMIT_(DISTFILES|PACKAGE).
CDROM restrictions are no longer applicable.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/07/13 21:23:13

Modified files:
	libexec/ld.so  : Makefile resolve.c util.h 
	libexec/ld.so/aarch64: syscall.h 
	libexec/ld.so/alpha: syscall.h 
	libexec/ld.so/amd64: syscall.h 
	libexec/ld.so/arm: syscall.h 
	libexec/ld.so/hppa: syscall.h 
	libexec/ld.so/i386: syscall.h 
	libexec/ld.so/m88k: syscall.h 
	libexec/ld.so/mips64: syscall.h 
	libexec/ld.so/powerpc: syscall.h 
	libexec/ld.so/sh: syscall.h 
	libexec/ld.so/sparc64: syscall.h 
Removed files:
	libexec/ld.so  : dl_realpath.c 

Log message:
ld.so's $ORIGIN handling when argv[0] is a relative path was broken by
the change in __getcwd(2)'s return value.  Fix it by switching to the
__realpath(2) syscall, eliminating the ld.so copy of realpath().

problem caught by regress and noted by bluhm@
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/07/13 21:26:02

Modified files:
	sys/kern       : kern_unveil.c 

Log message:
Don't lock the struct unveil being created in the child when cloning the
parent's during fork()

witness reports from ajacoutot@ and Hrvoje Popovski (hrvoje (at) srce.hr)
ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/07/13 21:30:46

Modified files:
	usr.bin/openssl: apps.c apps.h asn1pars.c certhash.c ciphers.c 
	                 crl.c crl2p7.c dh.c dhparam.c dsa.c dsaparam.c 
	                 ec.c ecparam.c enc.c errstr.c gendh.c gendsa.c 
	                 genpkey.c genrsa.c nseq.c passwd.c pkcs7.c 
	                 pkcs8.c pkey.c pkeyparam.c pkeyutl.c prime.c 
	                 rand.c rsa.c rsautl.c s_time.c sess_id.c 
	                 spkac.c version.c 

Log message:
Mark the initialized struct options arrays as both static and const.
This moves them from .data to .data.rel.ro

ok deraadt@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/07/13 21:36:37

Modified files:
	lib/libc/arch/powerpc: SYS.h 

Log message:
Unlike gas, clang's assembler complains about duplicate symbol assignments.
Tweak the PSEUDO() macro to avoid that.

problem noted and tested by kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/13 22:41:36

Modified files:
	geo/foxtrotgps : Makefile distinfo 
	geo/foxtrotgps/pkg: PLIST 

Log message:
update to foxtrotgps-1.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/07/13 23:08:26

Modified files:
	sys/arch/amd64/include: reg.h 

Log message:
Delete obsolete bits in a comment: mcontext is gone and struct reg is no
longer required to be layout compatible with struct trapframe

noted by Benjamin Baier (programmer (at) netzbasis.de)


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/07/14 00:32:35

Modified files:
	sbin/unwind/libunbound: config.h 
	sbin/unwind/libunbound/iterator: iter_utils.c iter_utils.h 
	                                 iterator.c 
	sbin/unwind/libunbound/services: authzone.c authzone.h 
	                                 listen_dnsport.c mesh.c 
	                                 outside_network.c 
	                                 outside_network.h 
	sbin/unwind/libunbound/services/cache: dns.c 
	sbin/unwind/libunbound/util: alloc.c fptr_wlist.c iana_ports.inc 
	                             net_help.c netevent.c ub_event.c 
	sbin/unwind/libunbound/util/data: msgreply.h 
	sbin/unwind/libunbound/util/storage: lookup3.c 

Log message:
Update to libunbound 1.9.2
Heavy lifting by sthen when updating unbound(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/07/14 00:37:02

Modified files:
	sys/net        : if_enc.c 

Log message:
newlen was a dead store, but what we could use is oldlen to
simplify the code.
Pointed out by daniel@ with the help of their friend gcc9
OK kn


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/14 01:27:18

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddCreateDelete.pm AddDelete.pm 
	                          Error.pm PackageRepository.pm 
	                          PkgCreate.pm State.pm Temp.pm 

Log message:
a bunch of changes, all related to error-handling:
- have Handle->register also create a proper END block, so that
individual packages don't have to, and explain the issue
- kill old Unlink/Copy code that migrated to State years ago
- commonalize try{} catch {} for pkg_add/delete and pkg_create, so that
debug works the same way in both.
- switch printing command name to the catch handler, so that exceptions
are simpler to handle

and a few comments for the hairy parts...


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/07/14 02:08:47

Modified files:
	www/chromium   : Makefile 
	www/chromium/pkg: PLIST 

Log message:
install vulkan libraries as well


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/14 02:11:54

Modified files:
	graphics/libwebp: Makefile distinfo 
	graphics/libwebp/pkg: PLIST 

Log message:
Update to libwebp-1.0.3.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/14 03:30:50

Modified files:
	databases/ports-readmes-dancer: Makefile distinfo 
	databases/ports-readmes-dancer/pkg: PLIST 
Removed files:
	databases/ports-readmes-dancer/patches: patch-lib_SqlPorts_pm 
	                                        patch-views_port_tt 

Log message:
move to github, no change
3 -> 3.1 is an admissible upgrade


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/14 03:47:38

Modified files:
	databases/ports-readmes-dancer: Makefile distinfo 

Log message:
bye bye old PERMIT_*


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/07/14 04:21:11

Modified files:
	sys/sys        : pipe.h 
	sys/kern       : sys_pipe.c 

Log message:
rename PIPE_WANT to PIPE_WANTD.

PIPE_WANT flag is used for signaling the pipe is about to be run-down.
Pending readers/writers will wakeup the closing thread which is waiting.

We already have PIPE_WANTR, PIPE_WANTW and PIPE_LWANT flags, so
PIPE_WANT isn't really descriptive.

No functional changes intented.

ok visa@ anton@ mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/14 05:27:19

Modified files:
	databases/sqlports: Makefile 
	databases/sqlports/files: Info.pm TreeWalker.pm 
	databases/sqlports/files/scripts: print-ports-index 

Log message:
bye bye old PERMIT_*


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/14 05:29:39

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
bye bye old PERMIT_*
thanks to sthen@ for the sweep


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/14 05:32:05

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
prepare to shorten it in pkg_create as well


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/14 06:41:33

Modified files:
	share/man/man5 : bsd.port.mk.5 

Log message:
one old PERMIT_* escaped! they're gone now


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/14 06:44:45

Modified files:
	math/geogebra  : Makefile 

Log message:
zap a stray PERMIT_DISTFILE_FTP (should have been PERMIT_DISTFILES, but
now surplus to requirements)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/14 08:40:55

Modified files:
	usr.sbin/ldomctl: mdesc.c mdesc.h 

Log message:
Add interface to set/update a data property.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/14 10:28:17

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/14 10:58:25

Modified files:
	devel/glib2/patches: patch-meson_build 

Log message:
Tweak comment a bit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/14 11:18:35

Modified files:
	sysutils/direvent: Makefile distinfo 
	sysutils/direvent/pkg: PLIST 

Log message:
Update to direvent-5.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/14 11:26:48

Modified files:
	devel/glib2/patches: patch-meson_build 

Log message:
Add link to PR.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/14 12:14:27

Modified files:
	usr.bin/mandoc : main.c mandoc.h mandoc_msg.c 

Log message:
If messages are shown and output is printed without a pager, display
a heads-up on stderr at the end because otherwise, users may easily
miss the messages: because messages typically occur while parsing,
they typically preceed the output.  This is most useful with flag
combinations like "-c -W all" but may also help in some unusual
error scenarios.
Inconvenient ordering of output originally pointed out by espie@
for the example situation that /tmp/ is not writeable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/14 14:00:38

Modified files:
	archivers      : Makefile 
Removed files:
	archivers/nulib: Makefile distinfo 
	archivers/nulib/patches: patch-nuetc_c patch-nulib_1 
	archivers/nulib/pkg: DESCR PLIST 

Log message:
FreeBSD removed this port in June with the reasoning that the distfile was
only available in the directory of one of their committers who's been
inactive since 2001. It's not licensed such that it can be packaged.

Time to delete it.

OK rsadowski@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/14 14:02:02

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
FreeBSD removed this port in June with the reasoning that the distfile was
only available in the directory of one of their committers who's been
inactive since 2001. It's not licensed such that it can be packaged.

OK rsadowski@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/14 14:34:12

Modified files:
	gnu/usr.bin/perl: Makefile.bsd-wrapper1 

Log message:
Install OpenBSD::Unveil.3p manpage

Reminded by brynet@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/14 15:11:29

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/14 15:41:19

Modified files:
	devel/samurai  : Makefile distinfo 

Log message:
Update to samurai-0.7
Changelog: https://github.com/michaelforney/samurai/releases/tag/0.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/14 15:42:27

Modified files:
	math/ebc       : Makefile distinfo 

Log message:
Update to ebc-2.1.0
Changelog: https://github.com/gavinhoward/bc/releases/tag/2.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/14 15:43:56

Modified files:
	sysutils/bfs   : Makefile distinfo 
	sysutils/bfs/patches: patch-Makefile 

Log message:
Update to bfs-1.5
Changelog: https://github.com/tavianator/bfs/releases/tag/1.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/14 15:45:42

Modified files:
	comms/lrzsz    : Makefile 

Log message:
Move HOMEPAGE and MASTER_SITES to https.  Also add a comment above the
PERMIT_PACKAGE line noting it is GPLv2 licensed while here. REVISION
bumped. Also put a line between PERMIT_PACKAGE and WANTLIB.

Tweak and ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/14 15:46:26

Modified files:
	sysutils/diffoscope: Makefile distinfo 

Log message:
Update to diffoscope-118


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/14 15:49:24

Modified files:
	www/libmicrohttpd: Makefile distinfo 

Log message:
Update to libmicrohttpd-0.9.65
Consumers happy


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/14 15:53:23

Modified files:
	graphics/feh   : Makefile distinfo 
	graphics/feh/patches: patch-man_feh_pre patch-src_options_c 

Log message:
Update to feh-3.2
Changelog: https://feh.finalrewind.org/archive/3.2/


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/14 17:01:58

Log message:
    audio/py-discid is a Python binding for audio/libdiscid. Needed to be able
    to update audio/picard.
    
    Python binding of MusicBrainz Libdiscid. Libdiscid's main purpose
    is the calculation of an identifier of audio discs (disc ID) to use
    for the MusicBrainz database.
    
    That identifier is calculated from the TOC of the disc, similar to
    the freeDB CDDB identifier. Libdiscid can calculate MusicBrainz
    disc IDs and freeDB disc IDs. Additionally the MCN of the disc and
    ISRCs from the tracks can be extracted.
    
    This module is a close binding that offloads all relevant data
    storage and calculation to Libdiscid. On the other hand it gives a
    pythonic API and uses objects and exceptions.
    
    Version 1.2.0
    
    Input from sthen@
    
    OK edd@ sthen@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190714
    
    N ports/audio/py-discid/Makefile
    N ports/audio/py-discid/distinfo
    N ports/audio/py-discid/pkg/DESCR
    N ports/audio/py-discid/pkg/PLIST
    N ports/audio/py-discid/patches/patch-setup_py
    N ports/audio/py-discid/patches/patch-discid_libdiscid_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/14 17:05:05

Modified files:
	audio          : Makefile 

Log message:
Hook py-discid into the build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/14 17:18:10

Modified files:
	audio/mscore   : Makefile distinfo 
	audio/mscore/patches: patch-CMakeLists_txt 
Removed files:
	audio/mscore/patches: patch-share_sound_CMakeLists_txt 

Log message:
Update to musescore-3.2.3
Changelog: https://musescore.org/en/3.2.3


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/14 17:32:27

Modified files:
	usr.bin/ssh    : sshbuf-getput-basic.c sshbuf.h 

Log message:
add some functions to perform random-access read/write operations
inside buffers with bounds checking. Intended to replace manual
pointer arithmetic wherever possible.

feedback and ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/14 17:33:19

Modified files:
	regress/usr.bin/ssh/unittests/sshbuf: test_sshbuf_getput_basic.c 

Log message:
unit tests for sshbuf_peek/poke bounds-checked random access
functions. ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/14 18:35:10

Modified files:
	sys/arch/amd64/amd64: bios.c 
	sys/arch/i386/i386: bios.c 

Log message:
store smbios date string in globally visible var for drm
ok mlarkin@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/14 18:52:52

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/dev/pci/drm/include/linux: dmi.h kconfig.h mod_devicetable.h 

Log message:
Add dmi functions used by drm_panel_orientation_quirks.c and enable
CONFIG_DMI path.

ok mlarkin@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/14 18:57:44

Modified files:
	sys/dev/pci/drm/i915: i915_drv.c 

Log message:
Replace local method of determining rasops rotation with
drm_get_panel_orientation_quirk().

ok mlarkin@ kettenis@
tested by kettenis@ on Asus T100HA


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/14 19:05:01

Modified files:
	sys/dev/pci/drm: drm_linux.c 

Log message:
put smbios date access under NBIOS > 0 instead of CONFIG_DMI


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/14 21:35:23

Modified files:
	sys/dev/pci/drm/include/linux: pci.h 

Log message:
add PCI_BUS_NUM()


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/14 21:37:32

Modified files:
	sys/dev/pci/drm/amd/powerplay/hwmgr: smu_helper.c 

Log message:
unstub phm_irq_process()


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/14 22:05:18

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/14 22:11:03

Modified files:
	sys/kern       : exec_script.c kern_descrip.c kern_exec.c 
	                 sys_pipe.c 

Log message:
Do not relock fdp in fdrelease(). This prevents unnecessary locking
in the common case.

OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/14 22:20:38

Modified files:
	share/man/man9 : file.9 

Log message:
Document locking with fdrelease().


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/07/15 01:34:17

Modified files:
	security/sqlmap: Makefile distinfo 
	security/sqlmap/pkg: PLIST 

Log message:
Update for SQLMap to 1.3.7

OK lteo@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/07/15 02:35:48

Modified files:
	sys/arch/amd64/amd64: pmap.c 

Log message:
Fix a direct map bug that affected machines with > 1023GB physical
memory (or, more precisely, those machines that had physical memory
regions extending past physical address 1023GB).

ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/15 02:47:45

Modified files:
	net/libbind    : Makefile 
Added files:
	net/libbind/patches: patch-include_netdb_h 

Log message:
libbind's version of netdb.h has ai_addr and ai_canonname the wrong way
round compared to the one in base; swap them, fixing a failure with net/bro
in cluster mode tracked down by Matt Dunwoodie. ok aja@

(libbind is the BIND resolver used in very few specialist cases where the
resolver in base isn't compatible enough - previously used for mtr but now
it's only used by bro. I am still quietly hoping that bro will switch to
another resolver library sometime and we can remove this hack of a port
again :-)


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/07/15 03:05:46

Modified files:
	sys/kern       : sys_pipe.c 

Log message:
revisit pipe initialization and buffer management

- in dopipe(), get an already zeroed struct (PR_ZERO) instead of manually initialize each member (in pipe_create)
- rename pipespace() and pipe_free_kmem() to pipe_buffer_realloc() and pipe_buffer_free(): it is more evident that the functions works on the same thing
- in pipe_buffer_free(), return early and move the if-body as function body

No functional change intented.

ok anton@ visa@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/15 04:18:20

Modified files:
	etc            : unbound.conf 

Log message:
Add tls-cert-bundle and example of using a DNS-over-TLS forwarder.
Note that, at this time, Unbound does not re-use TLS connections
(https://www.nlnetlabs.nl/bugs-script/show_bug.cgi?id=4089) so the
TCP and TLS handshakes will cause a disproportiate increase in
latency compared to UDP.  ok sthen@ florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	job@cvs.openbsd.org	2019/07/15 05:05:09

Modified files:
	net/bgpq3      : Makefile 
	net/bgpq3/pkg  : DESCR 

Log message:
Update description

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/15 05:05:10

Modified files:
	usr.sbin/ldomctl: ldomctl.c 

Log message:
Fix usage

List all available commands grouped by their synopsis to complete the
shown usage while still keeping it compact and precise.

Input from deraadt schwarze
OK kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/15 05:07:00

Modified files:
	sbin/dhclient  : dhclient.8 dhclient.c 

Log message:
Nuke '-l' command line option (alternate location for
dhclient.leases.<if>).

ok kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/07/15 06:23:29

Modified files:
	security/lynis : Makefile distinfo 
	security/lynis/pkg: PLIST 

Log message:
Update to Lynis to 2.7.5

OK solene@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/15 06:28:06

Modified files:
	sys/kern       : uipc_proto.c uipc_usrreq.c 
	sys/sys        : unpcb.h 

Log message:
Convert struct unpcb malloc(9) to pool_get(9).
OK mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/15 06:40:42

Modified files:
	sys/netinet    : in_pcb.c in_pcb.h in_proto.c 

Log message:
Initialize struct inpcb pool not on demand, but during initialization.
Removes a global variable and avoids MP problems.
OK mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/15 07:11:38

Modified files:
	usr.bin/ssh    : sshbuf-misc.c sshbuf.h 

Log message:
two more bounds-checking sshbuf counterparts to common string
operations: sshbuf_cmp() (bcmp-like) and sshbuf_find() (memmem like)

feedback and ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/15 07:12:02

Modified files:
	regress/usr.bin/ssh/unittests/sshbuf: test_sshbuf_misc.c 

Log message:
unit tests for sshbuf_cmp() and sshbuf_find(); ok markus


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/15 07:16:29

Modified files:
	usr.bin/ssh    : authfile.c ssh-keygen.1 ssh-keygen.c sshkey.c 
	                 sshkey.h 

Log message:
support PKCS8 as an optional format for storage of private keys,
enabled via "ssh-keygen -m PKCS8" on operations that save private
keys to disk.

The OpenSSH native key format remains the default, but PKCS8 is a
superior format to PEM if interoperability with non-OpenSSH software
is required, as it may use a less terrible KDF (IIRC PEM uses a single
round of MD5 as a KDF).

adapted from patch by Jakub Jelen via bz3013; ok markus


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/07/15 07:21:51

Modified files:
	x11/smtube     : Makefile distinfo 

Log message:
Update for SMTube to 19.6.0.

OK bket@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/07/15 07:23:05

Modified files:
	x11/smplayer   : Makefile distinfo 

Log message:
Update for SMPlayer to 19.5.0

OK bket@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/15 07:35:35

Modified files:
	infrastructure/lib/OpenBSD/PortGen/Port: PyPI.pm 

Log message:
Change the PyPI module of portgen(1) to create DESCR from the longer
description field from the JSON about the module rather than the
summary (which is used for COMMENT in the Makefile).  This provides
a better starting point to create the DESCR from.

OK afresh1@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/15 08:15:18

Modified files:
	www/sblg       : Makefile distinfo 

Log message:
Update to sblg 0.4.28

Documentation updates only: clarify "multi-standalone" mode
as combined, remove references to amalgamation, clarify where tag
symbols may be used, add more meaningful examples, etc. No code change.

From Bryan Vyhmeister, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/07/15 08:56:45

Modified files:
	sys/kern       : vfs_lookup.c vfs_syscalls.c 

Log message:
Make realpath posixly correct by changing the kernel implementation
to not succeed on final path components that do not exist.
The original implmentation succeeded in these cases.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/07/15 09:05:21

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
revert unintended change that snuck in last commit


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/15 10:05:04

Modified files:
	regress/sys/kern/realpath: realpath3.c realpathtest.c 

Log message:
Our kernel __realpath(2) implementation does not allow non-existing
files anymore.  This is conforming to POSIX.  Adjust the regression
test to the new behavior.
OK beck@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/15 11:57:48

Modified files:
	bin/ed         : ed.1 

Log message:
Explain in which circumstances trailing slashes can be omitted after
the g and G commands, and polish the wording a bit explaining empty
command lists.
Closing a gap in the manual reported by <mazocomp at disroot dot org>.
OK jmc@ martijn@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/15 12:25:08

Modified files:
	usr.bin/tmux   : layout-custom.c layout-set.c layout.c tmux.h 

Log message:
Make layout_fix_offsets take a window like layout_fix_panes.


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/07/15 12:26:39

Modified files:
	usr.sbin/ospfd : database.c hello.c lsack.c lsreq.c lsupdate.c 
	                 packet.c 

Log message:
Improve logging when sending a packet fails.

OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/15 12:43:32

Modified files:
	usr.bin/tmux   : layout.c 

Log message:
Simplify code to work out if an extra line is needed in the cell.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/15 13:20:18

Modified files:
	share/man/man7 : mdoc.7 roff.7 

Log message:
explain escaping of end-of-sentence characters;
missing info reported by Ian <ropers at gmail dot com> on misc@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/15 14:44:48

Modified files:
	sys/kern       : kern_resource.c sched_bsd.c 
	sys/sys        : sched.h 

Log message:
Stop calling resched_proc() after changing the nice(3) value of a process.

Changing the scheduling priority of a process happens rarely, so it isn't
strictly necessary to update the current priority of every threads
instantly.

Moreover resched_proc() isn't well suited to perform this action: it doesn't
consider the state of each thread nor move them to another runqueue.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/15 15:01:54

Modified files:
	usr.bin/ctags  : ctags.1 

Log message:
explicitly reference the textproc/vgrind port;
kn@ originally noticed that this is desirable;
feedback and OK jmc@, OK kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/15 15:40:28

Modified files:
	usr.bin/mandoc : main.c 

Log message:
don't print the final heads-up about message
when a search did not yield any manual pages to display;
issue found with regress/usr.bin/mandoc/db/


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/15 15:45:43

Modified files:
	sysutils/facter: Makefile distinfo 
	sysutils/facter/patches: patch-lib_CMakeLists_txt 
Removed files:
	sysutils/facter/patches: patch-CMakeLists_txt 
	                         patch-lib_src_facts_posix_uptime_resolver_cc 

Log message:
simple update to 3.14.1, eventually got the utpmx patches merged upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/15 15:50:18

Modified files:
	multimedia/qtav: Makefile 
Added files:
	multimedia/qtav/patches: 
	                         patch-src_codec_video_SurfaceInteropCUDA_cpp 

Log message:
qtav: unbreak with ports-gcc
Fix various occurrences where ports-gcc doesn't want to
consider NULL as false.

OK rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/15 15:54:17

Modified files:
	audio/qsynth   : Makefile distinfo 
	audio/qsynth/patches: patch-src_qsynthOptions_cpp 

Log message:
simple update to 0.5.7


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/15 19:40:49

Modified files:
	sys/sys        : rwlock.h 
	sys/kern       : kern_rwlock.c 

Log message:
Make rrw_init/rrw_init_flags take a const name argument matching
rw_init/rw_init_flags and rwlock(9).

ok visa@ anton@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/15 19:42:27

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Shuffle code a bit to make take_charge() return the
leases file descriptor.

No intentional functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/15 20:09:29

Modified files:
	regress/usr.bin/ssh: Makefile 

Log message:
Update names of host key files in CLEANFILES to match recent changes to
the tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/15 21:21:54

Modified files:
	regress/usr.bin/ssh: Makefile 

Log message:
Remove ssh1 files from CLEANFILES since ssh1 no longer supported.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/15 21:49:32

Modified files:
	databases/ports-readmes: Makefile 
	databases/ports-readmes/files: make-readmes port.tt2 

Log message:
forgot that one (pointed out by naddy)


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2019/07/16 01:03:25

Modified files:
	math/lapack    : Tag: OPENBSD_6_5 Makefile distinfo 
	math/lapack/pkg: Tag: OPENBSD_6_5 PLIST 

Log message:
Fix lapack build.

The manpages distfile changed and thus affected the packaging breaking
other ports in the process.

OK espie@, robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/16 01:46:50

Modified files:
	databases/evolution-data-server: Makefile distinfo 

Log message:
Update to evolution-data-server-3.32.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/16 01:47:07

Modified files:
	mail/evolution : Makefile distinfo 

Log message:
Update to evolution-3.32.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/16 03:34:29

Modified files:
	regress/usr.sbin/pkg_add: temp3.ref 

Log message:
so the output changed slightly, again


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/07/16 03:56:55

Modified files:
	devel/git      : Makefile 
	devel/git/pkg  : gitdaemon.rc 

Log message:
Fix gitdaemon rc.d(8) script's mechanism for setting the daemon's UID.

UID switching was controlled via git-dameon's --user option in $daemon_flags.
This is problematic in case $gitdaemon_flags is unwittingly set to some value
which omits the --user option: git-daemon would then run as root.

The fix implemented here sets $daemon_user to _gitdaemon by default,
and leaves $daemon_flags empty by default. This ensures that git-daemon
runs as user _gitdaemon regardless of the value of $gitdaemon_flags.

Anyone using git-daemon should check their system. If gitdaemon is
currently running as root, set gitdaemon_user=_gitdaemon in rc.conf.local
and restart the service.

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/16 04:30:56

Modified files:
	usr.bin/tmux   : grid-view.c grid.c 

Log message:
Fix grid clear code to correctly clear with the default background
colour rather than ending up with the used count higher than the total
size, GitHub issue 1829.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/16 06:14:30

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Fix typo and -keyform argument in openssl(1) manual

- s/outputed/outputted/
- s/trused/trusted/
- add der as argument and describe pem is the default


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/07/16 06:16:58

Modified files:
	sys/kern       : sys_pipe.c 

Log message:
move the whole `struct pipe' allocation and initialization inside pipe_create()
rename pipclose() to pipe_destroy(), and return early instead of having the whole code in if-body.

ok claudio@ anton@ visa@ mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/16 06:36:50

Modified files:
	usr.bin/openssl: gendsa.c 

Log message:
Move option handlers up to option definition struct in gendsa.c

As we did in other openssl sub command, move up option handlers above option
definition struct. No functional changes and just move up and remove prototype.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/16 06:50:30

Modified files:
	usr.bin/openssl: genrsa.c 

Log message:
Fix long line by wrapping with 80 chars


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/16 07:14:50

Modified files:
	geo/mapserver  : Makefile distinfo 
	geo/mapserver/pkg: PLIST-perl PLIST-php PLIST-python 

Log message:
Update to mapserver 7.4.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/16 07:18:39

Modified files:
	usr.bin/ssh    : auth2-pubkey.c ssh-keygen.c sshbuf-misc.c 
	                 sshbuf.h sshkey.c 
	usr.bin/ssh/ssh-keygen: Makefile 
Removed files:
	usr.bin/ssh    : uuencode.c uuencode.h 

Log message:
remove mostly vestigal uuencode.[ch]; moving the only unique
functionality there (wrapping of base64-encoded data) to sshbuf
functions; feedback and ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/16 08:11:52

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Fix check for wrapping when redrawing entire lines, GitHub issue 1836.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/07/16 08:15:40

Modified files:
	usr.sbin/ntpd  : constraint.c ntp.c ntpd.h parse.y 

Log message:
1) Re-resolve and re-get constraints once the clock is synced. Constraints
are relative to monotime; so they shift when time is being adjusted.
2) Fix a race between SIGCHLD delivery and reading the result imsg.
3) Some cleanup: use a number to distinguish pools internally


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/16 09:59:17

Modified files:
	net/seafile    : Makefile.inc 
	net/seafile/client: Makefile distinfo 
	net/seafile/seafile: distinfo 

Log message:
update to seafile-7.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/16 10:14:57

Modified files:
	mail/dovecot   : Makefile distinfo 
	mail/dovecot/pkg: PLIST-server 
	mail/dovecot-pigeonhole: Makefile distinfo 

Log message:
Revert the Dovecot update for now, there are some problems with replication
e.g. https://www.mail-archive.com/dovecot@dovecot.org/msg78030.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/07/16 10:59:25

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 75.0.3770.142


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/16 11:39:02

Modified files:
	sys/conf       : param.c 
	sys/kern       : kern_sysctl.c uipc_mbuf.c 
	sys/sys        : mbuf.h 
	usr.bin/netstat: mbuf.c 

Log message:
Prevent integer overflow in kernel and userland when checking mbuf
limits.  Convert kernel variables and calculations for mbuf memory
into long to allow larger values on 64 bit machines.  Put a range
check into the kernel sysctl.  For the interface itself int is still
sufficient.  In netstat -m cast all multiplications to unsigned
long to hold the product of two unsigned int.
input and OK visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/16 11:48:56

Modified files:
	regress/sys/kern/realpath: realpath3.c 

Log message:
Call stat(2) only once in realpath(3) userland reference implementation.


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/07/16 12:02:07

Modified files:
	sysutils/opam  : Makefile distinfo 
Removed files:
	sysutils/opam/files: aspcud 
	sysutils/opam/patches: patch-m4_ocaml_m4 
	                       patch-shell_bootstrap-ocaml_sh 

Log message:
Straightforward upgrade to 2.0.5

OK avsm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/16 12:39:34

Modified files:
	databases/sqlite3: Makefile distinfo 

Log message:
Upgrade to sqlite 3.29.0.

See https://sqlite.org/releaselog/3_29_0.html


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/16 13:00:25

Modified files:
	sys/dev/pci    : dwiic_pci.c 

Log message:
dwiic_init is called from dwiic_activate, don't do it twice


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/16 13:05:56

Modified files:
	lang/vala      : Makefile distinfo 

Log message:
update to vala-0.44.6


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/16 13:12:32

Modified files:
	sys/dev/acpi   : dwiic_acpi.c 
	sys/dev/ic     : dwiic.c 
	sys/dev/pci    : dwiic_pci.c 

Log message:
don't bother reading default timing parameters if they're just going
to be overridden from ACPI


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/07/16 14:38:03

Modified files:
	math/py-pandas : Makefile distinfo 
	math/py-pandas/patches: patch-pandas_io_formats_terminal_py 
	                        patch-setup_cfg 
	math/py-pandas/pkg: PLIST 

Log message:
Update to py-pandas-0.24.2.

0.24.x is a major release from 0.23.4, which includes a number of API
changes, new features, enhancements, and performance improvements along
with a large number of bug fixes.

Lists of changes can be found at:
- https://pandas.pydata.org/pandas-docs/version/0.24/whatsnew/v0.24.0.html
- https://pandas.pydata.org/pandas-docs/version/0.24/whatsnew/v0.24.1.html
- https://pandas.pydata.org/pandas-docs/version/0.24/whatsnew/v0.24.2.html

OK daniel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/16 14:42:26

Removed files:
	mail/dovecot/patches: patch-src_lib_ostream-file_c 

Log message:
oops, forgot to remove this patch when backing out


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/16 15:07:08

Modified files:
	regress/usr.sbin/vmd/config: Makefile 

Log message:
New realpath(3) requires existing files.  Create fake disk images
that are used in vmd(8) config parser.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/16 15:29:41

Modified files:
	archivers/gtar : Makefile 
	converters/libiconv: Makefile 
	devel/arm-none-eabi/gdb: Makefile 
	devel/bison    : Makefile 
	devel/gdb      : Makefile 
	devel/gettext  : Makefile 
	devel/gpatch   : Makefile 
	devel/m4       : Makefile 
	lang/guile2    : Makefile 
	math/octave    : Makefile 
	math/pspp      : Makefile 
	misc/findutils : Makefile 
	print/gv       : Makefile 
	security/oath-toolkit: Makefile 
	sysutils/augeas: Makefile 
	sysutils/coreutils: Makefile 
	sysutils/libvirt: Makefile 
	textproc/gsed  : Makefile 
	textproc/wdiff : Makefile 

Log message:
Some ports using gnulib previously detected a broken realpath and switched to an
internal replacement function. Following the changes to make realpath(3) use the
__realpath() syscall these no longer detect broken realpath i.e. produce different
code. Bump REVISION to ensure that users get the new version.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/16 15:30:54

Modified files:
	sys/kern       : sysv_msg.c 

Log message:
According to POSIX msgsnd(2) has to fail with EINVAL if passing a
message with mtype < 1.
from Moritz Buhl; OK kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/16 15:41:37

Modified files:
	sys/kern       : uipc_mbuf.c uipc_mbuf2.c uipc_syscalls.c 
	                 uipc_usrreq.c 

Log message:
Fix uipc white spaces.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/16 16:16:49

Modified files:
	regress/usr.bin/ssh/unittests/sshbuf: test_sshbuf_misc.c 

Log message:
adapt to sshbuf_dtob64() change


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/07/16 20:13:43

Modified files:
	sys/dev/pci    : if_xge.c 

Log message:
Remove an unused header (dev/mii/miivar.h)

ok stsp@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/16 21:20:38

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/07/16 22:24:20

Modified files:
	usr.bin/grep   : grep.1 util.c 

Log message:
when combining -o and -b, print the byte offset of the pattern, not line.
originally from chrisz


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/07/16 23:27:33

Modified files:
	net/powerdns_recursor: Makefile distinfo 
	net/powerdns_recursor/patches: patch-Makefile_in 
Removed files:
	net/powerdns_recursor/patches: patch-logger_cc patch-logger_hh 
	                               patch-mtasker_context_hh 
	                               patch-mystack_allocator_hh 
	                               patch-pdns_recursor_cc 
	                               patch-rec_channel_cc 

Log message:
Update to PowerDNS Recursor 4.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	pd@cvs.openbsd.org	2019/07/16 23:51:07

Modified files:
	sys/arch/amd64/amd64: vmm.c 
	sys/arch/amd64/include: vmmvar.h 
	usr.sbin/vmd   : vm.c vmd.h 

Log message:
vmm/vmd:  Fix migration with pvclock

Implement VMM_IOC_READVMPARAMS and VMM_IOC_WRITEVMPARAMS ioctls to read and
write pvclock state.

reads ok mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/07/17 00:15:40

Modified files:
	www/nextcloud  : Makefile distinfo 
	www/nextcloud/pkg: PLIST README 

Log message:
Update for Nextcloud to 16.0.3

https://nextcloud.com/changelog/


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/07/17 00:16:05

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_5 Makefile distinfo 
	www/nextcloud/pkg: Tag: OPENBSD_6_5 PLIST README 

Log message:
Update for Nextcloud to 16.0.3

https://nextcloud.com/changelog/


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/17 00:58:36

Modified files:
	sysutils/terraform/provider-local: Makefile distinfo 

Log message:
Update to terraform-provider-local-1.3.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/17 01:54:18

Modified files:
	sys/dev/pci/drm/i915: i915_drv.c 

Log message:
don't free dev_priv (softc) in i915_driver_load() error path


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/17 02:07:15

Log message:
    Import audio/libopenmpt.
    
    libopenmpt is a cross-platform C++ and C library to decode tracked music
    files (modules) into a raw PCM audio stream.
    
    openmpt123 is a cross-platform command-line or terminal based module file
    player.
    
    libopenmpt is based on the player code of the OpenMPT project (Open ModPlug
    Tracker). In order to avoid code base fragmentation, libopenmpt is developed
    in the same source code repository as OpenMPT.
    
    OK rapha@
    
    Status:
    
    Vendor Tag:	fcambus
    Release Tags:	fcambus_20190717
    
    N ports/audio/libopenmpt/Makefile
    N ports/audio/libopenmpt/distinfo
    N ports/audio/libopenmpt/pkg/DESCR
    N ports/audio/libopenmpt/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/17 02:08:13

Modified files:
	audio          : Makefile 

Log message:
Add libopenmpt.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/07/17 02:24:03

Log message:
    Import minisign-0.8.
    
    Minisign is a dead simple tool to sign files and verify signatures.
    
    It is portable, lightweight, and uses the highly secure Ed25519 public-key
    signature system.
    
    Signatures written by minisign can be verified using OpenBSD's signify tool:
    public key files and signature files are compatible. However, minisign uses
    a slightly different format to store secret keys.
    
    Minisign signatures include trusted comments in addition to untrusted
    comments. Trusted comments are signed, thus verified, before being
    displayed. This adds two lines to the signature files, that signify
    silently ignores.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20190717
    
    N ports/security/minisign/Makefile
    N ports/security/minisign/distinfo
    N ports/security/minisign/pkg/DESCR
    N ports/security/minisign/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/07/17 02:24:42

Modified files:
	security       : Makefile 

Log message:
+minisign


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/17 04:13:26

Modified files:
	usr.sbin/bgpd  : mrt.c parse.y rde.c rde.h rde_decide.c 
	                 rde_rib.c rde_update.c 

Log message:
Change the Adj-RIB-Out to a per peer set of RB trees. The way RIB data
structures are linked does not scale for the Adj-RIB-Out and so inserts
and updates into the Adj-RIB-Out did not scale because of some linear
list traversals in hot paths.

A synthetic test with 4000 peers announcing one prefix each showed that
the initial convergence time dropped from around 1 hout to around 6min.

Note: because the Adj-RIB-Out is now per peer the order in which prefixes
are dumped in 'bgpctl show rib out' changed.

Tested and OK job@, benno@, phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/17 04:21:42

Modified files:
	net/icinga/core2: Makefile 

Log message:
disable unity build if DEBUG is set


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/17 04:27:50

Modified files:
	regress/usr.sbin/bgpd/config: bgpd.conf.1.ok bgpd.conf.10.ok 
	                              bgpd.conf.11.ok bgpd.conf.12.ok 
	                              bgpd.conf.2.ok bgpd.conf.3.ok 
	                              bgpd.conf.4.ok bgpd.conf.5.ok 
	                              bgpd.conf.6.ok bgpd.conf.7.ok 
	                              bgpd.conf.8.ok bgpd.conf.9.ok 
	                              bgpd.conf.example.ok 

Log message:
The Adj-RIB-Out is gone (or actually implemented differently). Adjust
the expected output files.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/17 06:06:53

Modified files:
	regress/usr.bin/openssl: appstest.sh 

Log message:
Update appstest.sh

- Add -modulus for dsa sub command
- Remove -nextprotoneg


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/17 07:03:33

Modified files:
	www/youtube-dl : Makefile distinfo 
	www/youtube-dl/pkg: PLIST 

Log message:
youtube-dl: update to 2019.07.16 to unbreak youtube live
Changelog:
https://github.com/ytdl-org/youtube-dl/releases


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/17 08:20:39

src/distrib/octeon/boot

Update of /cvs/src/distrib/octeon/boot
In directory cvs.openbsd.org:/tmp/cvs-serv59772/distrib/octeon/boot

Log Message:
Directory /cvs/src/distrib/octeon/boot added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/17 08:20:39

src/sys/arch/octeon/compile/BOOT

Update of /cvs/src/sys/arch/octeon/compile/BOOT
In directory cvs.openbsd.org:/tmp/cvs-serv59772/sys/arch/octeon/compile/BOOT

Log Message:
Directory /cvs/src/sys/arch/octeon/compile/BOOT added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/17 08:20:39

src/sys/arch/octeon/stand/rdboot

Update of /cvs/src/sys/arch/octeon/stand/rdboot
In directory cvs.openbsd.org:/tmp/cvs-serv59772/sys/arch/octeon/stand/rdboot

Log Message:
Directory /cvs/src/sys/arch/octeon/stand/rdboot added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/17 08:36:32

Modified files:
	etc/etc.octeon : MAKEDEV.md 
	sys/arch/octeon/conf: files.octeon 
	sys/arch/octeon/include: conf.h octeonvar.h 
	sys/arch/octeon/octeon: conf.c locore.S machdep.c 
Added files:
	distrib/octeon/boot: Makefile list 
	sys/arch/octeon/compile/BOOT: Makefile 
	sys/arch/octeon/conf: BOOT 
	sys/arch/octeon/dev: octboot.c 
	sys/arch/octeon/include: octboot.h 
	sys/arch/octeon/stand/rdboot: Makefile cmd.c cmd.h disk.c disk.h 
	                              rdboot.c vars.c 

Log message:
Add a bootloader for octeon.

The firmware on OCTEON machines usually does not provide an interface
for accessing devices, which has made it tricky to implement an OpenBSD
bootloader. To solve this device access problem, this new loader has
been built on top of a small kernel. The kernel provides all the
necessary devices drivers, while most of the usual bootloader logic
is in a userspace program in a ramdisk.

The loader program is accompanied by a special device, octboot(4).
The main purpose of this device is to implement a mechanism for
loading and launching kernels. The mechanism has been inspired by Linux'
kexec(2) system call.

The bootloader will be enabled later when it is ready for general use.

Discussed with deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/07/17 08:39:44

Modified files:
	security/arirang: Makefile 
	security/dante : Makefile 
	security/fcrackzip: Makefile 
	security/mhash : Makefile 
	security/scanssh: Makefile 
	security/shash : Makefile 
	security/smurflog: Makefile 
	security/zkt   : Makefile 
	sysutils/dcled : Makefile 
	sysutils/dtpstree: Makefile 
	sysutils/glide : Makefile 
	sysutils/google-compute-engine: Makefile 
	sysutils/gpioflicker: Makefile 
	sysutils/nnn   : Makefile 
	sysutils/openpoppassd: Makefile 
	sysutils/p5-Unix-Syslog: Makefile 
	sysutils/pftop : Makefile 
	sysutils/skill : Makefile 
	sysutils/sshfs-fuse: Makefile 
	sysutils/tarsnapper: Makefile 
	sysutils/tkdvd : Makefile 
	sysutils/wmmon : Makefile 
	sysutils/xjobs : Makefile 
	telephony/iaxmodem: Makefile 
	telephony/kamailio: Makefile 
	telephony/stuntman: Makefile 
	textproc/hgrep : Makefile 
	textproc/p5-Text-Flow: Makefile 
	textproc/p5-Text-Tmpl: Makefile 
	textproc/py-epydoc: Makefile 
	textproc/py-feedparser: Makefile 
	textproc/xml2rfc: Makefile 
	www/ajaxterm   : Makefile 
	www/ffproxy    : Makefile 
	www/hugo       : Makefile 
	www/w3mir      : Makefile 
	x11/bbpager    : Makefile 
	x11/gtk-chtheme: Makefile 
	x11/mterm      : Makefile 
	x11/p5-Gtk2-Ex-PodViewer: Makefile 
	x11/p5-Gtk2-Ex-Simple-List: Makefile 
	x11/pidgin-guifications: Makefile 
	x11/qrfcview   : Makefile 
	x11/xcursor-neutral: Makefile 

Log message:
Remove unresponsive maintainers

If somebody is removed who actually wants maintainer and either
didn't receive the mail, or didn't bother to reply to it, they are
free to send a diff to reinstate.

ok sthen@, jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/17 08:41:42

Modified files:
	etc/etc.octeon : MAKEDEV 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/07/17 08:46:34

Modified files:
	graphics/geomview: Makefile 
	graphics/grap  : Makefile 
	graphics/p5-Chart-Clicker: Makefile 
	graphics/p5-Color-Library: Makefile 
	graphics/p5-Color-Scheme: Makefile 
	graphics/p5-Geometry-Primitive: Makefile 
	graphics/p5-Graphics-Color: Makefile 
	graphics/p5-Graphics-Primitive: Makefile 
	graphics/p5-Graphics-Primitive-Driver-Cairo: Makefile 
	graphics/p5-Layout-Manager: Makefile 
	korean/hanterm-xf: Makefile 
	mail/dspam     : Makefile 
	mail/exmh2     : Makefile 
	mail/imapproxy : Makefile 
	mail/libspf2   : Makefile 
	mail/milter-greylist: Makefile 
	mail/postgrey  : Makefile 
	math/eigen3    : Makefile 
	math/wcalc     : Makefile 
	misc/brltty    : Makefile 
	misc/lfm       : Makefile 
	multimedia/qt-gstreamer: Makefile 
	net/cftp       : Makefile 
	net/doc        : Makefile 
	net/dsocks     : Makefile 
	net/echoping   : Makefile 
	net/flowd      : Makefile 
	net/httptunnel : Makefile 
	net/ifstat     : Makefile 
	net/ldns/drill : Makefile 
	net/ldns/libldns: Makefile 
	net/ldns/utils : Makefile 
	net/nylon      : Makefile 
	net/ortp       : Makefile 
	net/p5-Net-CIDR: Makefile 
	net/p5-Net-CIDR-Lite: Makefile 
	net/p5-Net-SNPP: Makefile 
	net/p5-POE-Component-IRC-Plugin-RSS-Headlines: Makefile 
	net/ssldump    : Makefile 
	net/udptunnel  : Makefile 
	net/wol        : Makefile 
	productivity/kmymoney: Makefile 

Log message:
Remove unresponsive maintainers

If somebody is removed who actually wants maintainer and either
didn't receive the mail, or didn't bother to reply to it, they are
free to send a diff to reinstate.

ok sthen@, jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/17 08:47:42

Modified files:
	sys/arch/octeon/octeon: machdep.c 

Log message:
Adjust search of symbol table pointers to match with the bootloader.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/07/17 08:49:22

Modified files:
	astro/dgpsip   : Makefile 
	astro/gcal     : Makefile 
	astro/phoon    : Makefile 
	audio/clementine: Makefile 
	audio/liblastfm: Makefile 
	audio/mac      : Makefile 
	audio/normalize: Makefile 
	audio/picard   : Makefile 
	audio/tagtool  : Makefile 
	audio/wmtune   : Makefile 
	audio/xmms2    : Makefile 
	audio/xmms2-scrobbler: Makefile 
	benchmarks/sysbench: Makefile 
	books/AsteriskGuide: Makefile 
	comms/p5-Device-Modem: Makefile 
	comms/p5-Device-SerialPort: Makefile 
	comms/p5-SendPage: Makefile 
	converters/p5-Convert-TNEF: Makefile 
	converters/p5-Convert-UUlib: Makefile 
	converters/p5-JSON: Makefile 
	converters/ppmtoTbmp: Makefile 
	databases/mysql2pgsql: Makefile 
	devel/adb      : Makefile 
	devel/dissy    : Makefile 
	devel/gsl      : Makefile 
	devel/hs-scientific: Makefile 
	devel/libhid   : Makefile 
	devel/lpc21isp : Makefile 
	devel/nasm     : Makefile 
	devel/p5-Check-ISA: Makefile 
	devel/p5-File-DirCompare: Makefile 
	devel/p5-Forest: Makefile 
	devel/p5-Modern-Perl: Makefile 
	devel/p5-Module-Starter: Makefile 
	devel/p5-Module-Starter-Plugin-CGIApp: Makefile 
	devel/p5-MooseX-Storage: Makefile 
	devel/p5-Pod-ToDemo: Makefile 
	devel/p5-SDL   : Makefile 
	devel/p5-Test-Deep-JSON: Makefile 
	devel/p5-Test-Deep-Type: Makefile 
	devel/p5-Time-modules: Makefile 
	devel/plib     : Makefile 
	devel/poedit   : Makefile 
	devel/rapidsvn : Makefile 
	devel/tkdiff   : Makefile 
	editors/hexcurse: Makefile 
	editors/vile   : Makefile 
	emulators/x48  : Makefile 
	fonts/artwiz-aleczapka: Makefile 
	fonts/jmk-fonts: Makefile 
	fonts/ko-baekmuk-fonts: Makefile 
	fonts/ko-baekmuk-ttf: Makefile 
	fonts/ru-ptsans: Makefile 
	games/frozen-bubble: Makefile 
	games/sl       : Makefile 
	games/tuxkart  : Makefile 

Log message:
Remove unresponsive maintainers

If somebody is removed who actually wants maintainer and either
didn't receive the mail, or didn't bother to reply to it, they are
free to send a diff to reinstate.

ok sthen@, jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/17 08:51:06

Modified files:
	sys/arch/octeon/conf: BOOT 

Log message:
Disable for now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/17 09:30:11

Log message:
    Import devel/p5-Test-HasVersion 0.014
    
    Test::HasVersion lets you check a Perl module has a version number in a
    Test::Simple fashion.
    
    From Wen Heping, thanks!
    
    OK afresh1@
    
    Status:
    
    Vendor Tag:	cwen
    Release Tags:	cwen_20190717
    
    N ports/devel/p5-Test-HasVersion/Makefile
    N ports/devel/p5-Test-HasVersion/distinfo
    N ports/devel/p5-Test-HasVersion/pkg/DESCR
    N ports/devel/p5-Test-HasVersion/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/17 09:31:18

Modified files:
	devel          : Makefile 

Log message:
+p5-Test-HasVersion


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/17 10:36:05

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-254.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/17 10:46:18

Modified files:
	sys/net        : if_bridge.c if_ethersubr.c if_gre.c if_bpe.c 
	sys/netinet    : if_ether.c if_ether.h 

Log message:
Introduce ETHER_IS_BROADCAST/ANYADDR/EQ() and use them where appropriate.

ok dlg@, sthen@, millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/17 11:46:51

Modified files:
	usr.bin/tmux   : server-client.c 

Log message:
Clear overlay on normal key press.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/17 11:49:23

Modified files:
	usr.bin/tmux   : cmd-if-shell.c 

Log message:
Use the right client for if -b.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/17 12:18:37

Modified files:
	usr.bin/mg     : bell.c def.h extend.c 

Log message:
Add two dobeep functions to make calls to the system bell require
fewer lines. While working in extend.c change relevant calls to
dobeep.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/17 12:43:47

Modified files:
	usr.bin/mg     : extend.c 

Log message:
Add BUFSIZE define.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/17 12:52:47

Modified files:
	sys/net        : pfkeyv2.c 

Log message:
Convert struct pkpcb malloc(9) to pool_get(9).  PCB for pfkey is
only used in process context, so pass PR_WAITOK to pool_init(9).
The possible sleep in pool_put(9) should not hurt as pfkeyv2_detach()
is only called by soclose(9).  As both pr_attach() and pr_detach()
are always called with kernel lock, PR_RWLOCK is not needed.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/07/17 13:00:55

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddCreateDelete.pm AddDelete.pm 
	                          Error.pm PackageRepository.pm 
	                          PkgCreate.pm State.pm Temp.pm 

Log message:
backout previous commits for now; some of this is shared with dpb and
results in problems. hints from pvk@ about what introduced the breakage
we were seeing, who confirms that this backout fixes things; comitting
early to unbreak package builds.

====
a bunch of changes, all related to error-handling:
- have Handle->register also create a proper END block, so that
individual packages don't have to, and explain the issue
- kill old Unlink/Copy code that migrated to State years ago
- commonalize try{} catch {} for pkg_add/delete and pkg_create, so that
debug works the same way in both.
- switch printing command name to the catch handler, so that exceptions
are simpler to handle

and a few comments for the hairy parts...

Members:
OpenBSD/AddCreateDelete.pm:1.44->1.45
OpenBSD/AddDelete.pm:1.87->1.88
OpenBSD/Error.pm:1.33->1.34
OpenBSD/PackageRepository.pm:1.164->1.165
OpenBSD/PkgCreate.pm:1.160->1.161
OpenBSD/State.pm:1.58->1.59
OpenBSD/Temp.pm:1.34->1.35
====


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/17 13:57:32

Modified files:
	sys/net        : rtsock.c 

Log message:
Convert struct rtpcb malloc(9) to pool_get(9).  PCB for routing
socket is only used in process context, so pass PR_WAITOK to
pool_init(9).  The possible sleep in pool_put(9) should not hurt
as route_detach() is only called by soclose(9).  As both pr_attach()
and pr_detach() are always called with kernel lock, PR_RWLOCK is
not needed.
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/07/17 14:15:53

Modified files:
	devel/llvm     : Makefile 
Added files:
	devel/llvm/patches: patch-cmake_modules_HandleLLVMOptions_cmake 

Log message:
Fix invalid regex

Reported by bcallah@, upstream fix pointed out by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/17 15:16:33

Modified files:
	games/dmagnetic: Makefile distinfo 

Log message:
update to dMagnetic-0.16, from dettus at dettus.net


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/17 15:33:33

Modified files:
	lang/flang     : Makefile.inc 
	lang/flang/driver: Makefile distinfo 
	lang/flang/driver/patches: patch-lib_CodeGen_CGDebugInfo_cpp 
	                           patch-lib_Driver_ToolChains_CommonArgs_cpp 
	                           patch-tools_libclang_CMakeLists_txt 
	lang/flang/flang: Makefile distinfo 
	lang/flang/libpgmath: Makefile distinfo 
Added files:
	lang/flang/driver/patches: 
	                           patch-include_clang_AST_FormatString_h 
	                           patch-include_clang_Basic_CodeGenOptions_def 
	                           patch-include_clang_Driver_CC1Options_td 
	                           patch-lib_AST_FormatString_cpp 
	                           patch-lib_Basic_Targets_Mips_h 
	                           patch-lib_Basic_Targets_X86_cpp 
	                           patch-lib_Basic_Targets_X86_h 
	                           patch-lib_CodeGen_CGCall_cpp 
	                           patch-lib_Driver_ToolChains_Arch_X86_cpp 
	                           patch-lib_Frontend_CompilerInvocation_cpp 
Removed files:
	lang/flang/driver/patches: 
	                           patch-include_clang_Basic_DiagnosticSemaKinds_td 
	                           patch-include_clang_Basic_MacroBuilder_h 
	                           patch-include_clang_Driver_Options_td 
	                           patch-include_clang_Frontend_CompilerInvocation_h 
	                           patch-include_clang_Sema_Sema_h 
	                           patch-lib_AST_ASTContext_cpp 
	                           patch-lib_Analysis_CallGraph_cpp 
	                           patch-lib_Driver_ToolChains_Arch_AArch64_cpp 
	                           patch-lib_Driver_ToolChains_Arch_AArch64_h 
	                           patch-lib_Driver_ToolChains_Arch_Sparc_cpp 
	                           patch-lib_Driver_ToolChains_Clang_cpp 
	                           patch-lib_Driver_ToolChains_Gnu_cpp 
	                           patch-lib_Driver_ToolChains_OpenBSD_cpp 
	                           patch-lib_Driver_ToolChains_OpenBSD_h 
	                           patch-lib_Sema_SemaChecking_cpp 
	                           patch-lib_Sema_SemaDeclAttr_cpp 

Log message:
Welcome flang-8.0.0
This syncs the flang patches with the devel/llvm patches, as well as
updates flang to its latest upstream code.
My test suite passes on amd64. Any arm64 changes, if needed, will be
committed in the coming days.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/17 15:45:37

Modified files:
	net/wireshark  : Makefile distinfo 
	net/wireshark/pkg: PLIST-text 

Log message:
update to wireshark-3.0.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/17 15:45:47

Modified files:
	net/wireshark  : Tag: OPENBSD_6_5 Makefile distinfo 
	net/wireshark/pkg: Tag: OPENBSD_6_5 PLIST-text 

Log message:
update to wireshark-3.0.3


CVSROOT:	/cvs
Module name:	src
Changes by:	lteo@cvs.openbsd.org	2019/07/17 20:03:46

Modified files:
	sys/net        : pf.c 

Log message:
This commit fixes two bugs involving PF once rules:

1. If a packet happens to match an expired once rule before the rule is removed
by the purge thread, the rule will be added to the pf_rule_gcl list again,
eventually causing a kernel crash when the purge thread tries to remove the
expired rule multiple times; and

2. A packet that matches an expired once rule will still cause a state to be
created, so a once rule is not truly a one shot rule while it is in that
expired-but-not-purged time window.

To fix both bugs, add a check in pf_test_rule() to prevent expired once rules
from being added to pf_rule_gcl.  The check is added "early" in pf_test_rule()
to prevent any new connections from creating state if they match the expired
once rule.

This commit also includes a tweak by sashan@ to ensure that only one PF task
will mark a once rule as expired.  Here is sashan@'s commentary:

"As soon as there will be more PF tasks running in parallel, we would be
able to hit similar crash you are fixing now. The rules are covered by
read lock, so with more PF tasks there might be two packets racing
to expire at once rule at the same time. Using atomic_cas() is sufficient
measure to serialize competing packets."

tested by abieber@ who reported the kernel crash on bugs@
ok sashan@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/17 20:43:55

Modified files:
	distrib/sets/lists/comp: md.octeon 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/17 20:50:43

Modified files:
	sys/net        : if_aggr.c 

Log message:
replace ether_{cmp,is_eq,is_zero} with the new ones in netinet/if_ether.h

ehter_cmp goes away, ether_is_eq becomes ETHER_IS_EQ, ether_is_zero
becomes ETHER_IS_ANYADDR.

ether_is_slow is kept locally, but renamed to ETHER_IS_SLOWADDR to
better match what comes from if_ether.h.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/17 23:57:48

Modified files:
	usr.bin/mg     : Makefile def.h extend.c 
Added files:
	usr.bin/mg     : interpreter.c 

Log message:
Add some more basic interpreter functionality to mg. Needs a lot more
work, including a proper parser.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/18 00:14:16

Modified files:
	sys/net        : if_aggr.c 

Log message:
bulk up the debug output around selection logic

lacp didnt come up again after i replaced some optics with dacs, and it
has to be because of a problem around the selection logic. this will let
me narrow it down.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/18 00:21:54

Modified files:
	x11/xfce4/ristretto: Makefile distinfo 
	x11/xfce4/ristretto/pkg: PLIST 

Log message:
Update to ristretto 0.8.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 00:35:43

Modified files:
	databases/sqlports: Makefile 

Log message:
Add a belt-and-braces check for the number of lines output in the produced
ports-INDEX, error out if it's too small.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/18 00:47:58

Modified files:
	multimedia/libvpx: Makefile distinfo 

Log message:
Update to libvpx-1.8.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 00:54:57

Modified files:
	www/squid      : Tag: OPENBSD_6_5 Makefile distinfo 
Removed files:
	www/squid/patches: Tag: OPENBSD_6_5 
	                   patch-src_comm_TcpAcceptor_cc 
	                   patch-src_enums_h patch-src_store_cc 
	                   patch-src_store_swapout_cc 

Log message:
MFC update to squid-4.8

SQUID-2019:1 Denial of Service issue in cachemgr.cgi (CVE-2019-12854)
http://www.squid-cache.org/Advisories/SQUID-2019_1.txt

SQUID-2019:2 Denial of Service in HTTP Basic Authentication (CVE-2019-12529)
http://www.squid-cache.org/Advisories/SQUID-2019_2.txt

SQUID-2019:3 Denial of Service in HTTP Digest Authentication (CVE-2019-12525)
http://www.squid-cache.org/Advisories/SQUID-2019_3.txt

SQUID-2019:5 Heap Overflow issue in HTTP Basic Authentication (CVE-2019-12527)
http://www.squid-cache.org/Advisories/SQUID-2019_5.txt

SQUID-2019:6 Multiple Cross-Site Scripting issues in cachemgr.cgi (CVE-2019-13345)
http://www.squid-cache.org/Advisories/SQUID-2019_6.txt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/18 01:20:55

Modified files:
	x11/gnome/gvfs : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
SECURITY update to gvfs-1.38.
CVE-2019-12795, CVE-2019-12795, CVE-2019-12449, CVE-2019-12447,
CVE-2019-12447, CVE-2019-12448


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 01:24:58

Modified files:
	net/isc-bind   : Makefile distinfo 
	net/isc-bind/pkg: DESCR 

Log message:
update to isc-bind 9.11.9, switch the geoip support to newly added geoip2/libmaxminddb
CVE-2019-6471


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/18 01:25:55

Modified files:
	x11/gnome/gvfs : Makefile distinfo 

Log message:
SECURITY update to gvfs-1.40.2.
CVE-2019-12795, CVE-2019-12795, CVE-2019-12449, CVE-2019-12447,
CVE-2019-12447, CVE-2019-12448


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 01:27:06

Modified files:
	net/isc-bind   : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
update to isc-bind-9.11.9, staying with old geoip for -stable
CVE-2019-6471


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/18 01:36:30

Modified files:
	x11/mate/menus : Makefile 
	x11/mate/menus/patches: patch-layout_mate-applications_menu 
	x11/gnome/menus: Makefile 
Removed files:
	x11/mate/menus/patches: patch-configure_ac 
	                        patch-libmenu_Makefile_am 
	                        patch-libmenu_canonicalize_c 
	                        patch-libmenu_canonicalize_h 
	                        patch-libmenu_entry-directories_c 
	                        patch-libmenu_matemenu-tree_c 
	                        patch-libmenu_menu-layout_c 
	x11/gnome/menus/patches: patch-libmenu_Makefile_am 
	                         patch-libmenu_canonicalize_c 
	                         patch-libmenu_canonicalize_h 
	                         patch-libmenu_entry-directories_c 
	                         patch-libmenu_gmenu-tree_c 
	                         patch-libmenu_menu-layout_c 

Log message:
Remove realpath hacks now that ours is POSIX.

ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/18 01:47:09

ports/productivity/tryton/5.2/account/patches

Update of /cvs/ports/productivity/tryton/5.2/account/patches
In directory cvs.openbsd.org:/tmp/cvs-serv74883/patches

Log Message:
Directory /cvs/ports/productivity/tryton/5.2/account/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/18 01:47:25

ports/productivity/tryton/5.2/trytond/patches

Update of /cvs/ports/productivity/tryton/5.2/trytond/patches
In directory cvs.openbsd.org:/tmp/cvs-serv82234/patches

Log Message:
Directory /cvs/ports/productivity/tryton/5.2/trytond/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/18 01:49:58

Modified files:
	productivity/tryton/5.2/account: Makefile 
	productivity/tryton/5.2/account_payment_clearing: Makefile 
	                                                  distinfo 
	productivity/tryton/5.2/production_work: Makefile distinfo 
	productivity/tryton/5.2/production_work/pkg: PLIST 
	productivity/tryton/5.2/trytond: Makefile distinfo 
Added files:
	productivity/tryton/5.2/account/patches: patch-move_xml 
	productivity/tryton/5.2/trytond/patches: patch-trytond_ir_ir_xml 
	                                         patch-trytond_ir_lang_xml 
	                                         patch-trytond_ir_model_py 

Log message:
5.2: maintenance update

and backport some patches to help 5.0->5.2 migration
- issue8375
- issue8469
- issue8478


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/18 01:51:14

Modified files:
	productivity/tryton/5.0/account_payment_clearing: Makefile 
	                                                  distinfo 
	productivity/tryton/5.0/account_payment_clearing/pkg: PLIST 
	productivity/tryton/5.0/trytond: Makefile distinfo 

Log message:
5.0: maintenance update


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/18 01:51:47

Modified files:
	sys/net        : if_aggr.c 

Log message:
run the selection logic from the rxm current state if the port is unselected

previously it would only run the selection logic if the peer
information changed, but it is possible to be in the current state
with stale partner info. that can happen if the port becomes
disabled/disconnected, which unwinds the mux machine, but doesnt
clear the partner info. when the link is enabled again we re-enter
the current state, but because the partner info is the same we
didn't run the selection logic, which in turn didn't let the mux
machine move forward again.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/18 02:08:50

Log message:
    B612 is an highly legible open source font family designed and tested
    to be used on aircraft cockpit screens.
    
    Tweaks and ok sthen@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190718
    
    N ports/fonts/b612-font/Makefile
    N ports/fonts/b612-font/distinfo
    N ports/fonts/b612-font/pkg/DESCR
    N ports/fonts/b612-font/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/18 02:09:25

Modified files:
	sys/net        : if_aggr.c 

Log message:
make the UCT in the rxm generate debug output

without this it looks like debug output loses info because of how
the uct was shortcutted.

no functional change, just prettier printfs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/18 02:09:34

Modified files:
	fonts          : Makefile 

Log message:
Hook b612-font up to build


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 04:42:49

Modified files:
	misc/libdivecomputer: Makefile 
Removed files:
	misc/libdivecomputer/patches: patch-src_Makefile_in 
	                              patch-src_hw_ostc3_c 

Log message:
stop removing aes.c and aes.h in libdivecomputer, they are from
https://github.com/kokke/tiny-AES-c and the license is ok,
from kristaps (maintainer)

tweaks from me: REVISION=0 not =1, and split CONFIGURE_ARGS into separate
lines as is normal in the ports tree


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/18 04:50:24

Modified files:
	usr.bin/mg     : interpreter.c log.c log.h 

Log message:
Add logging to interpreter.c


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/18 04:55:11

Modified files:
	usr.bin/mg     : def.h 

Log message:
Make indentation consistent. This has been bugging me for a while now.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 05:28:49

Modified files:
	misc/subsurface: Makefile distinfo 
	misc/subsurface/patches: patch-CMakeLists_txt 
	                         patch-desktop-widgets_mainwindow_cpp 
	                         patch-desktop-widgets_mainwindow_h 
	                         patch-desktop-widgets_mainwindow_ui 
	                         patch-scripts_get-version 
	misc/subsurface/pkg: PLIST 
Removed files:
	misc/subsurface/patches: patch-libdivecomputer_src_Makefile_am 
	                         patch-libdivecomputer_src_hw_ostc3_c 

Log message:
update to subsurface-4.8.5
stop removing aes.c and aes.h in libdivecomputer-subsurface, they are from
https://github.com/kokke/tiny-AES-c and the license is ok,

from kristaps (maintainer)

tweak from me: remove REVISION


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/18 06:57:12

Modified files:
	lib/libc/sys   : msgsnd.2 

Log message:
State that mtype < 1 causes EINVAL as required by POSIX
and as implemented by OpenBSD since sysv_msg.c rev. 1.35.
Diff from Moritz Buhl <mbuhl at moritzbuhl dot de> requested by bluhm@.

While here, add STANDARDS, improve HISTORY,
and use the customary .Fa for struct fields rather than .Va.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/07/18 07:12:55

Modified files:
	net            : Makefile 

Log message:
hook up tacacs+


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/18 07:26:00

Modified files:
	usr.bin/ssh    : sshbuf-misc.c 

Log message:
fix off-by-one in sshbuf_dtob64() base64 wrapping that could cause
extra newlines to be appended at the end of the base64 text (ugly,
but harmless). Found and fixed by Sebastian Kinne


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/18 07:32:40

Modified files:
	lib/libc/sys   : msgctl.2 msgget.2 msgrcv.2 

Log message:
add STANDARDS, improve HISTORY, and basic macro cleanup:
use .Vt for struct names and and .Fa for struct fields


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/18 07:45:03

Modified files:
	lib/libc/sys   : msgrcv.2 msgsnd.2 

Log message:
obvious bugfix: if the queue is removed while message transmission is
blocked, POSIX requires EIDRM rather than EINVAL, and that's what our
implementation does and what the ERRORS section already says, too


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/18 08:38:47

Modified files:
	regress/usr.bin/mandoc/tbl/data: Makefile 
Added files:
	regress/usr.bin/mandoc/tbl/data: block_empty.in 
	                                 block_empty.out_ascii 

Log message:
new test for an empty text block; from rea@ via bapt@ (FreeBSD)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/18 09:32:50

Modified files:
	usr.bin/grep   : grep.1 grep.c 

Log message:
Delete documentation of --max-count, which is merely an alias of
the documented -m.  As a rule, we only document long options when
users can't avoid them because they lack a short version.

As suggested by tedu@, as an exception, leave --context documented
because -C is awkward in so far as it takes an optional option
argument, which is fragile and error-prone and hence generally
discouraged, including by POSIX.

Two years ago, kettenis@, deraadt@, and tedu@ all agreed that this
is what should be done, and jmc@ was happy to accept the direction,
but somehow everybody forgot to commit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/18 09:47:46

Modified files:
	misc/vttest    : Makefile distinfo 

Log message:
maintenance update to 20190710


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/18 09:51:13

Modified files:
	x11/gnome/builder: Makefile distinfo 
Removed files:
	x11/gnome/builder/patches: patch-src_plugins_clang_meson_build 

Log message:
Update to gnome-builder-3.32.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/18 09:52:11

Modified files:
	usr.bin/mg     : extend.c 

Log message:
The 'list' diff I committed this morning, was missing a couple of
calls to a clean-up variable function.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 10:01:05

Modified files:
	net/icinga/core2: Makefile 
	net/icinga/core2/pkg: PLIST-main 

Log message:
adjust permissions on @sample'd files, fix pkg_delete -c


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/18 10:42:49

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 68.0.1.

See https://www.mozilla.org/en-US/firefox/68.0.1/releasenotes/


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/18 12:06:18

Modified files:
	sys/kern       : vfs_lookup.c 

Log message:
Fix unveiling nonexistent files on read-only filesystems

Account for VOP_LOOKUP(9) returning EROFS, otherwise unveil(2) would
pass the error along and fail.

Initial report and diff from semarie
OK bluhm millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/18 12:07:52

Modified files:
	databases/puppetdb5: Makefile distinfo 

Log message:
simple update 5.2.8 -> 5.2.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/18 13:35:50

Modified files:
	net/curl       : Makefile distinfo 

Log message:
Maintenance update to 7.65.2.  The security fix does not affect us.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/18 14:20:59

Modified files:
	sysutils/ruby-puppet-syntax: Makefile distinfo 

Log message:
simple update 2.4.3 -> 2.5.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 14:27:26

Modified files:
	devel/boost    : Makefile 
Added files:
	devel/boost/patches: 
	                     patch-boost_coroutine_standard_stack_allocator_hpp 

Log message:
MAP_STACK is also needed for basic_standard_stack_allocator, found while
testing Icinga 2 development code.  Looks good to otto@, ok Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 14:31:13

Modified files:
	databases/p5-DBIx-Simple: Makefile distinfo 

Log message:
update to p5-DBIx-Simple 1.37, from wen heping


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/07/18 14:45:10

Modified files:
	sys/net        : pf.c 

Log message:
follow up to 'once rule' expiration

ok lteo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/18 14:46:55

Modified files:
	www/p5-CGI-Lite: Makefile distinfo 

Log message:
update to p5-CGI-Lite 3.02, from wen heping, looks ok to maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/18 14:47:51

Modified files:
	security/ruby-cms_scanner: Makefile distinfo 

Log message:
simple update 0.5.2 -> 0.5.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/18 14:48:26

Modified files:
	security/wpscan: Makefile distinfo 
	security/wpscan/pkg: PLIST 

Log message:
simple update 3.5.4 -> 3.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/18 17:08:13

Modified files:
	lang/kona      : Makefile distinfo 

Log message:
Update to kona-3.2.0.20190605


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/18 17:19:16

Modified files:
	lang/gravity   : Makefile distinfo 

Log message:
Update to gravity-0.7.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/18 17:33:11

Modified files:
	games/openjk   : Makefile distinfo 

Log message:
Update to openjk-0.0.0.20190622


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/18 17:47:33

Modified files:
	sys/uvm        : uvm.h uvm_amap.c uvm_aobj.c uvm_device.c 
	                 uvm_fault.c uvm_km.c uvm_vnode.c 

Log message:
R.I.P. UVM_WAIT().  Use tsleep_nsec(9) directly.

UVM_WAIT() doesn't provide much of a useful abstraction.  All callers
tsleep forever and no callers set PCATCH, so only 2 of 4 parameters are
actually used.  Might as well just use tsleep_nsec(9) directly and make
the uvm code a bit less specialized.

Suggested by mpi@.

ok mpi@ visa@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/18 17:53:24

Modified files:
	games/wtf      : Makefile distinfo 
	games/wtf/patches: patch-wtf 

Log message:
Update to wtf-20190705


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/18 18:11:38

Modified files:
	sys/kern       : kern_timeout.c 

Log message:
ddb(4): clean up callout command

- display timeouts in the thread work queue, if any
- identify timeouts in the thread/softint work queue as such
- if not in work queue, print <bucket>/<level>; easier to right-align
- print arg pointer by hand to ensure consistent length for all pointers
on both 32 and 64-bit platforms
- generally make sure columns are correctly aligned and spaced

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/18 18:17:16

Modified files:
	sys/arch/armv7/exynos: exuart.c 
	sys/arch/sparc64/dev: sab.c 
	sys/dev/fdt    : imxuart.c mvuart.c 
	sys/dev/ic     : cy.c com.c pluart.c z8530tty.c 
	sys/dev/sbus   : magma.c spif.c 
	sys/dev/usb    : ucom.c 
	sys/kern       : tty.c tty_pty.c 
	sys/net        : ppp_tty.c 
	sys/sys        : tty.h 

Log message:
ttysleep(): drop unused timeout parameter

All callers sleep indefinitely.

With help from visa@.

ok visa@, ratchov@, kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/18 18:24:32

Modified files:
	share/man/man9 : buffercache.9 
	sys/kern       : vfs_bio.c 
	sys/msdosfs    : msdosfs_fat.c msdosfs_vnops.c 
	sys/nfs        : nfs_bio.c 
	sys/sys        : buf.h 
	sys/ufs/ext2fs : ext2fs_balloc.c ext2fs_bmap.c ext2fs_inode.c 
	                 ext2fs_vfsops.c 
	sys/ufs/ffs    : ffs_alloc.c ffs_balloc.c ffs_inode.c 
	                 ffs_softdep.c ffs_vfsops.c 
	sys/ufs/ufs    : ufs_bmap.c 

Log message:
getblk(9): tsleep(9) -> tsleep_nsec(9); ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/18 18:54:59

Modified files:
	share/man/man9 : vwaitforio.9 
	sys/kern       : spec_vnops.c vfs_subr.c 
	sys/nfs        : nfs_vnops.c 
	sys/sys        : vnode.h 
	sys/ufs/ffs    : ffs_vnops.c 

Log message:
vwaitforio(9): tsleep(9) -> tsleep_nsec(9); ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/07/18 20:17:21

Modified files:
	security/burpsuite: Makefile distinfo 

Log message:
Update to Burp Suite 2.1.01.

http://releases.portswigger.net/2019/06/professional-community-edition-21.html
http://releases.portswigger.net/2019/07/professional-community-edition-2101.html

Change MODJAVA_VER to 1.8+ since this new version works fine with both jdk 1.8
and 11.

Also fix a long line to make portcheck(1) happy; from abieber@, thanks!

ok abieber@


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/07/18 20:22:31

Modified files:
	java/gradle    : Makefile distinfo 
	java/gradle/pkg: PLIST 

Log message:
Update to Gradle 5.5.1

https://docs.gradle.org/5.5.1/release-notes.html

ok abieber@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/18 21:38:01

Modified files:
	usr.bin/ssh    : ssh-keygen.c ssh-keygen.1 

Log message:
Accept the verbose flag when searching for host keys in known hosts
(i.e. "ssh-keygen -vF host") to print the matching host's random-
art signature too. bz#3003 "amusing, pretty" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/18 21:45:44

Modified files:
	regress/usr.bin/ssh: scp.sh scp-ssh-wrapper.sh 

Log message:
add regression tests for scp for out-of-destination path file creation
by Harry Sintonen via Jakub Jelen in bz3007


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/18 22:15:48

Modified files:
	sys/net        : if_aggr.c 

Log message:
export all the partner info to userland, not just what ifconfig prints.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/18 22:35:01

Modified files:
	sys/net        : if_aggr.c 

Log message:
default (ie, reset) the partner info when a ports link goes down.

this doesnt seem to be mentioned in the spec, but is a sensible
thing to do if you think about it. all the switches i've tried also
do this, so there's some consensus about it being sensible.

this is done in the link state handler rather than being added to
one of the state machines. the idea is to keep the state machines
as close to what's in the spec as possible.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/18 22:51:31

Modified files:
	lib/libpcap    : nametoaddr.c 

Log message:
add "slow" to the list of ethernet protocol names.

this allows "tcpdump ether proto slow", which makes looking at lacp
frames a bit easier.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/18 23:21:25

Modified files:
	sys/net        : if_aggr.c 

Log message:
try to notify the partner when the port is going away or down.

by notify i mean we send an lacp packet with our collecting and
distributing flags cleared, which should tell the remote system
that it should no longer handle packets on their port as part of
their aggregation. this is implemented by "unselecting" a port.

if an active port is going away, ie, being removed from an aggr via
"ifconfig aggr0 -trunkport port0", all that happens is software
state on our side changes and we stop considering the interface as
part of the aggr interface. the partner system is otherwise oblivious
and can continue to send us packets until its expiry timeout fires
because it doesn't know any better.

we already intercept a ports ioctl handling, so if someone goes
"ifconfig portX down" while it is attached to an aggr, we can catch
that before the underlying driver actually tears the rings down, and
we still have a chance to try and send a packet to the peer. this
is useful because our drivers generally do not drop the physical
link, so again, the partner system is oblivious to the change on
our side until its expiry timer fires.

expiry timeouts can be up to 90 seconds away, which is a lot of
traffic to blackhole. sending the notification to the parnter means
they withdraw this link at the same time the local system is pulling
the port out of the aggregation. hopefully. it is possible the
packet is lost, but this is a good start.

the only caveat to this is is my implementation ignores the transmit
state machine from the lacp spec, and may cause more than 3 lacp
packets per second to be transmitted to the partner system. oh
well.

i should look at the marker protocol too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/18 23:30:20

Modified files:
	security/exploitdb: Makefile distinfo 
	security/exploitdb/pkg: PLIST 

Log message:
update to 2019-07-16


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/18 23:39:15

Modified files:
	databases/py-puppetdb: Makefile distinfo 
	databases/py-puppetdb/pkg: PLIST 

Log message:
Update to 1.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/18 23:39:59

Modified files:
	www/puppetboard: Makefile distinfo 
	www/puppetboard/pkg: PLIST 

Log message:
Update to 1.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/07/19 00:09:21

Modified files:
	sysutils/ruby-puppet/5: Makefile distinfo 
	sysutils/ruby-puppet/5/patches: 
	                                patch-lib_puppet_provider_package_gem_rb 
	                                patch-lib_puppet_provider_package_pip3_rb 
	                                patch-lib_puppet_provider_package_pip_rb 
	                                patch-lib_puppet_type_package_rb 
	sysutils/ruby-puppet/5/pkg: PLIST 

Log message:
Update to 5.5.14 -> 5.5.16


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/19 01:18:03

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
More man page fixes from lacygoill at lacygoill dot me, GitHub issue
1805.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/19 01:20:51

Modified files:
	usr.bin/tmux   : mode-tree.c 

Log message:
Add a few vi(1) key aliases, from D Ben Knoble.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/19 01:40:41

Modified files:
	usr.sbin/bgpd  : bgpd.c bgpd.h 

Log message:
When allocating socketpair() increase their send and receive buffers to
4 times the read size. This helps to increase the efficency of poll()
since now most of the time the read and write call can operate on full
buffers.
OK benno@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/19 03:03:04

Modified files:
	sys/kern       : subr_pool.c uipc_mbuf.c 
	sys/sys        : pool.h 

Log message:
After the kernel has reached the sysclt kern.maxclusters limit,
operations get stuck while holding the net lock.  Increasing the
limit did not help as there was no wakeup of the waiting pools.  So
introduce pool_wakeup() and run through the mbuf pool request list
when the limit changes.
OK dlg@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/19 03:30:24

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/19 03:45:36

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.190.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/19 03:45:50

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.190.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/19 03:46:15

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.200.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/19 04:08:13

Modified files:
	devel/glib2/patches: patch-meson_build 

Log message:
Merged upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/19 04:48:52

Modified files:
	graphics/zxing : Makefile distinfo 
	graphics/zxing/patches: patch-CMakeLists_txt 

Log message:
update to a newer snapshot of glassechidna's version of zxing-cpp


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/19 05:31:45

Modified files:
	x11/gnome/user-docs: Makefile distinfo 

Log message:
Update to gnome-user-docs-3.32.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/19 05:31:58

Modified files:
	x11/gnome/getting-started-docs: Makefile distinfo 
	x11/gnome/getting-started-docs/pkg: PLIST 

Log message:
Update to gnome-getting-started-docs-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/19 05:33:24

Modified files:
	multimedia/gstreamer1/core: Makefile 
Added files:
	multimedia/gstreamer1/core/patches: patch-meson_build 

Log message:
disable picking up libexecinfo, discussed with aja@
"we should really just remove that stupid useless port"


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/19 06:09:59

Modified files:
	devel/py-pluggy: Makefile distinfo 
	devel/py-pluggy/pkg: PLIST 

Log message:
Update devel/py-pluggy 0.9.0 -> 0.11.0

Update py-pluggy from 0.9.0 to 0.11.0. The most recent version is
actually 0.12.0, but they added a dependency on a new module that
backports from Python 3.8 that has other dependencies.

ok shachin@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/19 06:20:35

Log message:
    MinimalModbus is an easy-to-use Python module for talking to
    instruments (slaves) from a computer (master) using the Modbus
    protocol, and is intended to be running on the master. Example code
    includes drivers for Eurotherm and Omega process controllers. This
    software supports the Modbus RTU and Modbus ASCII serial communication
    versions of the protocol.
    
    Version 0.7
    
    From Martin Reindl
    
    Tweaks from myself and sthen@
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190719
    
    N ports/net/py-minimalmodbus/Makefile
    N ports/net/py-minimalmodbus/distinfo
    N ports/net/py-minimalmodbus/pkg/DESCR
    N ports/net/py-minimalmodbus/pkg/PLIST
    N ports/net/py-minimalmodbus/patches/patch-setup_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/19 06:22:21

Modified files:
	net            : Makefile 

Log message:
Hook py-minimalmodbus up to build.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/19 06:31:55

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 

Log message:
Update to terraform-provider-alicloud-1.43.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/19 06:32:29

Modified files:
	multimedia/get_iplayer: Makefile distinfo 
	multimedia/get_iplayer/patches: patch-get_iplayer 

Log message:
update to get_iplayer-3.21


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/19 06:32:44

Modified files:
	www/trac       : Makefile distinfo 
	www/trac/pkg   : PLIST 

Log message:
update to trac-1.2.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/19 07:42:33

Log message:
    Import games/devilutionx, an open source engine recreation for the Diablo 1
    game.
    
    Joint effort by me, thfr@, and brynet@
    ok solene@
    
    DevilutionX is an open source recreation of the game engine used in
    Diablo I, an action role-playing game by Blizzard Entertainment.
    
    While this package and the game engine are open source, one still needs
    to provide the original game assets from Diablo I, which is not open
    source. You will need to purchase the original game to use this package.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190719
    
    N ports/games/devilutionx/Makefile
    N ports/games/devilutionx/distinfo
    N ports/games/devilutionx/patches/patch-CMakeLists_txt
    N ports/games/devilutionx/patches/patch-defs_h
    N ports/games/devilutionx/patches/patch-SourceS_miniwin_h
    N ports/games/devilutionx/patches/patch-Source_engine_cpp
    N ports/games/devilutionx/patches/patch-Source_fault_cpp
    N ports/games/devilutionx/patches/patch-Source_init_cpp
    N ports/games/devilutionx/patches/patch-Source_render_cpp
    N ports/games/devilutionx/pkg/DESCR
    N ports/games/devilutionx/pkg/PLIST
    N ports/games/devilutionx/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/19 07:42:53

Modified files:
	games          : Makefile 

Log message:
+devilutionx


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/07/19 07:49:24

Modified files:
	devel/fossil   : Makefile distinfo 

Log message:
Update fossil to 2.9. Release notes here: http://fossil-scm.org/home/doc/trunk/www/changes.wiki#v2_9


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/07/19 07:53:27

Modified files:
	www/openradtool: Makefile distinfo 

Log message:
Update openradtool to 0.7.8. Release notes here:
https://kristaps.bsd.lv/openradtool/archive.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/19 08:42:38

Modified files:
	net/curl       : Makefile distinfo 

Log message:
update to 7.65.3: make the progress meter appear again


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/19 08:49:44

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Keep dhclient.leases.<if> O_EXLOCK file descriptor open for the
lifefime of the dhclient instance. Use O_NONBLOCK so RTM_* messages
are seen while trying to open the O_EXLOCK file descriptor.

Prevents a possible race during startup, ensuring only one dhclient
instance can be configuring an interface. Improves responsiveness to
interface changes during startup.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/19 08:50:43

Modified files:
	sys/arch/amd64/isa: clock.c 

Log message:
i8254_delay(): simplify tick computation

Back in the mid-90s these optimizations probably made sense, but
these days the compiler will produce even better code if we just
explicitly use 64-bit math and do the obvious thing.

joerg@netbsd.org even popped in on tech@ to agree.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/07/19 09:13:17

Modified files:
	sbin/mount     : mount.c 

Log message:
Adapt to POSIX realpath(3); if it returns NULL, use the mount path as-is.
Fixes an inability to mount via diskuid.
Also use mntpath, not *argv, on error for more accurate messages.
OK martijn@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	solene@cvs.openbsd.org	2019/07/19 09:40:11

Modified files:
	usr.bin/systat : engine.c 

Log message:
Make systat flushing output after a page display in rawmode (flags -b or -B)

ok millert@ kurt@
code suggested by otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/19 10:00:08

Modified files:
	usr.bin/mg     : interpreter.c 

Log message:
Previously I left the ')' on the end of a list to indicate the end.
Just to get things working. Best get rid of that nonsense sooner
rather than later.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/19 12:20:09

Modified files:
	productivity/tudu: Makefile distinfo 
Removed files:
	productivity/tudu/patches: patch-src_parser_cc 
	                           patch-src_parser_h 

Log message:
Update tudu to 0.10.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/19 12:32:19

Modified files:
	usr.bin/lock   : lock.c lock.1 

Log message:
lock(1): remove default timeout

It makes little sense from a security standpoint to unlock the terminal
and expose the user's session after fifteen minutes by default.

Default behavior is now to reserve the terminal forever.  Add instructions
to the manpage to help the user employ the -t timeout option more safely.

Manpage greatly improved by jmc@; bug(s) caught by millert@; with input
from claudio@.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/19 12:58:03

Modified files:
	lib/libc/time  : strptime.3 

Log message:
Update POSIX reference to the 2008 version and correct the list of
conversion specifications that are extensions; issues reported by
Andras Farkas <deepbluemistake at gmail dot com> on misc@.

While here, note that alternative conversion modifiers have no effect
and that flags and field width specifications are not supported.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/19 13:02:26

Modified files:
	net/p5-SNMP-Info: Makefile distinfo 

Log message:
p5-SNMP-Info: update to 3.68
From Wen Heping, with additional tweaks from me.

Changelog:
https://metacpan.org/source/OLIVER/SNMP-Info-3.68/Changes

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/19 13:48:14

Log message:
    Import p5-Math-Utils 1.13
    
    Math::Utils provides useful mathematical functions not in Perl.
    
    From Wen Heping, who is taking MAINTAINER (thanks!) and additional
    tweaks from me.
    
    OK sthen@
    
    Status:
    
    Vendor Tag:	cwen
    Release Tags:	cwen_20190719
    
    N ports/math/p5-Math-Utils/Makefile
    N ports/math/p5-Math-Utils/distinfo
    N ports/math/p5-Math-Utils/pkg/DESCR
    N ports/math/p5-Math-Utils/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/19 13:49:03

Modified files:
	math           : Makefile 

Log message:
+p5-Math-Utils


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/19 13:55:16

Modified files:
	math/p5-Math-Derivative: Makefile distinfo 

Log message:
p5-Math-Derivative: update to 1.01
From Wen Heping, Thanks!

Changelog:
https://metacpan.org/source/JGAMBLE/Math-Derivative-1.01/Changes

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/19 14:25:21

Modified files:
	usr.bin/mandoc : main.c tag.c 

Log message:
If no tags were generated at all, unlink(2) the empty tags file as
soon the condition can be detected and do not pass it to less(1).
This may happen for man(7) pages, for preformatted pages, and for
very simple pages like true(1).  The main benefit is that :t inside
less(1) yields the clearer diagnostic message "No tags file" rather
than the mildly confusing "No such tag in tags file": the latter
might encourage further, futile attempts to jump to other tags.

Improvement suggested by Leah Neukirchen <leah at vuxu dot org>
from The Void.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/19 14:40:44

Modified files:
	usr.sbin/config: config.8 main.c 

Log message:
In the synopsis, put options that take no arguments before those that do.
This also makes it easier to find the crucial difference between the
two synopses, which is the "-e".
Suggested by kn@; OK jmc@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	okan@cvs.openbsd.org	2019/07/19 14:44:35

Modified files:
	sysutils/sec   : Makefile distinfo 

Log message:
update to 2.8.2

ok bcallah


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/19 14:50:22

Modified files:
	sbin/dhclient  : clparse.c dhclient.c dhcpd.h 

Log message:
Nuke a bunch of 'name' parameters that haven't been used since
dhclient(8) stopped writing interface names in the leases file.


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/07/19 15:00:55

Modified files:
	.              : support.html 
	build          : support.dat 

Log message:
rename: PQscript Consulting -> Data Store Kenya, Kihaguru Njenga Gathura


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/19 15:45:37

Modified files:
	usr.bin/mandoc : main.c term_ascii.c 

Log message:
#define a handful of constant strings to reduce the diff to -portable;
now, the diff is about -30 +150 lines (about 0.4%)


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/19 18:49:54

Modified files:
	sbin/ping      : ping.c 

Log message:
ping(8): don't round inter-packet delay up to HZ

ping(8) doesn't know the value of HZ and shouldn't round the user's
packet wait up to whatever it thinks HZ is.  If the period is too small
the interrupt will simply fire less often than instructed.  The kernel
will do the right thing regardless.

Given the rarity of this usage we don't really need to print a warning,
either.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/19 22:53:12

Modified files:
	sys/net        : if_aggr.c 

Log message:
just use LINK_STATE_IS_UP to see if a port has link.

excluding HALF_DUPLEX just seems mean.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/19 22:54:22

Modified files:
	sys/net        : if_aggr.c 

Log message:
generate the actor info per port to send to userland.

useful for debugging.


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/20 00:00:16

Modified files:
	usr.bin/mg     : interpreter.c 

Log message:
Move a bit of code to where it is called only if needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/07/20 01:54:25

Modified files:
	archivers/zstd : Makefile distinfo 
	archivers/zstd/patches: patch-lib_Makefile 

Log message:
Update to zstd-1.4.1.

Maintenance release, which includes a few bug fixes, including a fix for
a rare data corruption bug, which could only be triggered in a niche use
case.

List of changes can be found at
https://github.com/facebook/zstd/releases/tag/v1.4.1


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/20 03:14:40

Modified files:
	regress/usr.bin/ssh: forwarding.sh 

Log message:
Move sleep time into a variable so that we can increase it for platforms
or configurations that are much slower then usual.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/20 03:37:31

Modified files:
	regress/usr.bin/ssh: forwarding.sh 

Log message:
Allow SLEEPTIME to be overridden.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/20 03:50:58

Modified files:
	regress/usr.bin/ssh: forwarding.sh 

Log message:
Remove the sleeps and thus races from the forwarding test.  They were
originally required to work with Protocol 1, but now we can use ssh -N
and the control socket without the sleeps. While there, suppress output
fro the control exit commands.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/20 04:49:18

Modified files:
	x11/gnome/bijiben: Makefile distinfo 

Log message:
update to bijiben-3.32.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/20 04:59:08

Modified files:
	infrastructure/lib/DPB: Host.pm 
	infrastructure/lib/DPB/Core: Distant.pm 

Log message:
have host define the socket name, so that it's always built from the master
dpb pid.

ssh paranoia: also sets the real/effective group before the user


CVSROOT:	/cvs
Module name:	www
Changes by:	jasper@cvs.openbsd.org	2019/07/20 05:00:29

Modified files:
	faq            : current.html 

Log message:
- we don't generally refer to ports directories in current.html
- use <code> for for maildirmake arguments
- slightly tweak wording for gzdoom entry and mention the version it's been updated to in order make it easier to differentiate between versions that are comp
atible and incomptabile with old saved games


CVSROOT:	/cvs
Module name:	src
Changes by:	lum@cvs.openbsd.org	2019/07/20 05:06:33

Modified files:
	usr.bin/mg     : interpreter.c 

Log message:
Missed a free.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/20 05:55:25

Modified files:
	net/putty      : Makefile distinfo 
	net/putty/patches: patch-putty_h patch-unix_uxcons_c 
	                   patch-unix_uxnoise_c patch-unix_uxpgnt_c 
Removed files:
	net/putty/patches: patch-Recipe 

Log message:
update to PuTTY 0.72, "fixes a small number of further security issues
found by the 2019 EU-funded HackerOne bug bounty, and a variety of other
bugs introduced in 0.71"


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/20 07:21:10

Modified files:
	usr.bin/less   : less.1 

Log message:
Correct misleading description of -S;
problem reported by Ralf dot Schuelke at gmail dot com on bugs@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/20 07:43:54

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.7.2


CVSROOT:	/cvs
Module name:	www
Changes by:	schwarze@cvs.openbsd.org	2019/07/20 07:49:01

Modified files:
	build          : support.dat 
	.              : support.html 

Log message:
update email address as requested by Kihaguru Gathura


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/20 08:42:25

Modified files:
	multimedia/mediainfo: Makefile distinfo 

Log message:
maintenance update to 19.07


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/20 09:28:54

Modified files:
	bin/ed         : ed.1 

Log message:
1. Correct the description of the g command to match POSIX and our
implementation; it was oversimplified and arguably incorrect.
2. Explicitely compare the behaviour of empty command lists for g,
empty command lists for G, and empty commands because these subtle
differences are quite confusing.
3. Say more precisely what the v and V commands do, avoiding the
fuzzy wording "similar".
All these issues were first pointed out by martijn@.
Feedback and OK martijn@; "diff reads ok" jmc@ on an earlier version.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/20 09:39:55

Modified files:
	sbin/dhclient  : clparse.c 

Log message:
Sort TOK_USELEASE case into proper alphabetic location in
switch statement. Nuke TOK_LEASE handling (neutered since
2017) in config file.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/20 09:46:48

Modified files:
	devel/gettext  : Makefile 

Log message:
the autopoint tool requires xz


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/20 10:31:07

Modified files:
	mail/abook     : Makefile 

Log message:
remove xz dependency for autopoint again; this is a generic gettext-tools
dependency that has been added there


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/20 11:14:15

Modified files:
	sbin/dhclient  : clparse.c 

Log message:
Use same 'switch (token) ...' idiom in parse_lease_decl() and
parse_conf_decl(). Smaller, less confusing.

No intentional functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/20 11:44:50

Modified files:
	devel/protobuf-c: Makefile distinfo 
Removed files:
	devel/protobuf-c/patches: patch-protoc-c_c_field_cc 
	                          patch-protoc-c_c_field_h 
	                          patch-protoc-c_c_file_cc 
	                          patch-protoc-c_c_file_h 
	                          patch-protoc-c_c_generator_cc 
	                          patch-protoc-c_c_helpers_cc 
	                          patch-protoc-c_c_message_cc 
	                          patch-protoc-c_c_message_h 

Log message:
update to protobuf-c 1.3.2, from maintainer Jonathon Sisson


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/20 15:45:04

Modified files:
	devel/protobuf-c: Makefile 
Removed files:
	devel/protobuf-c/patches: patch-Makefile_am 

Log message:
No need to patch Makefile.am to remove doxygen; it is unused unless "make html"
is run. This means autoconf+automake are no longer needed. ok kmos@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/20 15:52:47

Modified files:
	textproc/py-xmltodict: Makefile distinfo 

Log message:
Update textproc/py-xmltodict 0.11.0 -> 0.12.0

Has numerous small fixes, most don't affect us. One of them is to
"add support for Python 3.7" but the old version worked fine for us.

OK jung@ (maintainer) sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/20 15:58:33

Modified files:
	www/py-yarl    : Makefile distinfo 
	www/py-yarl/pkg: PLIST 

Log message:
Update www/py-yarl 1.0.0 -> 1.3.0

Updated to most recent version. All regression tests pass on amd64.
It's sole consumer www/py-aiohttp doesn't have working regression
tests but its two consumers pass all regression tests with this
new version.

OK jung@ (maintainer) sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/20 17:01:51

Modified files:
	sys/net        : if_bridge.c 

Log message:
When multiple ports share the same MAC, pick the physical one for delivery.

Fix an issue reported by Eygene Ryabinkin where packet where dropped by
pf(4) because a vlan(4) interface was picked instead of its underlying
em(4).

While here do some refactoring to avoid code duplication.

Based on a submission from Eygene Ryabinkin <rea at codelabs dot ru>.

ok bluhm@, kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/20 17:03:55

Modified files:
	sys/arch/powerpc/powerpc: trap.c 
	sys/arch/m88k/m88k: db_interface.c 

Log message:
Increment `db_active' before entering db_trap() like other archs do.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/07/20 17:06:51

Modified files:
	sys/arch/macppc/dev: zs.c 
	sys/arch/sparc64/sparc64: ipifuncs.c 
	sys/ddb        : db_trap.c db_var.h 
	sys/dev/pci/drm/include/linux: kernel.h kgdb.h 
	sys/kern       : subr_prf.c subr_witness.c 

Log message:
Get rid of `ddb_is_active' instead use `db_active'.

From Christian Ludwig <christian_ludwig at genua dot de>

ok visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/20 17:12:47

Modified files:
	databases/sqlports: Makefile 
	databases/sqlports/files: Var.pm 

Log message:
fix sqlports, bump to make sure


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/07/20 18:10:04

Modified files:
	mail/mu        : Makefile distinfo 

Log message:
Update mu to 1.2.0 and add Stefan as maintainer. Diff from Stefan Hagen
<sh+ports at codevoid dot de> with comments and ok from sthen@.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/07/20 21:54:16

Modified files:
	libexec/ld.so  : dlfcn.c loader.c resolve.c resolve.h 

Log message:
In 2004, we upgraded to binutils 2.14 with did -zcombreloc by default.
In 2013, I implemented the single-entry LRU cache that gets the maximal
symbol reuse from combreloc.  Since then, the ld.so generic relocation
symcache has been a waste of CPU and memory with 0% hit-rate, so kill it.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/20 22:12:10

Modified files:
	math/gbc       : Makefile 

Log message:
Mark gbc BROKEN-sparc64. This has never built on sparc64. It fails with a
Bus error during build. Changing -O levels did nothing. Changing to egcc
did nothing. If you need an alternative bc/dc on sparc64, there's ebc.

Thanks to kmos@ for testing with me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/20 22:37:46

Modified files:
	editors/dhex   : Makefile distinfo 

Log message:
Bugfix update to dhex-0.69
ok kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/21 00:22:28

Modified files:
	sys/dev/pci    : if_ixl.c 

Log message:
apply backpressure when ifiq says the stack is getting busy


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/21 01:06:41

Modified files:
	sys/dev/pci/drm: drm_panel_orientation_quirks.c 

Log message:
add a panel orientation quirk for Kogan Atlas 2-in-1 D300

reported and tested by Peter Kane


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/07/21 02:30:34

Modified files:
	sys/kern       : vfs_vnops.c 

Log message:
Grab the vnode lock in vn_seek(). Consensus has emerged around using the
existing vnode lock to protect writes to the f_offset field of struct
file. As opposed of introducing a new lock which turned out to be harder
than anticipated.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/21 03:30:14

Modified files:
	sysutils/testdisk: Makefile distinfo 
	sysutils/testdisk/pkg: PLIST 

Log message:
Update to testdisk 7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/21 03:30:43

Modified files:
	x11/xfce4/tumbler: Makefile distinfo 
	x11/xfce4/tumbler/pkg: PLIST 

Log message:
Update to tumbler 0.2.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/21 03:30:56

Modified files:
	x11/xfce4/garcon: Makefile distinfo 
	x11/xfce4/garcon/pkg: PLIST 

Log message:
Update to garcon 0.6.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/21 03:31:30

Modified files:
	x11/xfce4/xfmpc: Makefile distinfo 
	x11/xfce4/xfmpc/pkg: PLIST 

Log message:
Update to xfmpc 0.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/21 03:32:37

Modified files:
	x11/xfce4/xfce4-power-manager: Makefile distinfo 
	x11/xfce4/xfce4-power-manager/pkg: PLIST 

Log message:
Update to xfce4-power-manager 1.6.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/21 03:33:14

Modified files:
	x11/xfce4/xfce4-screensaver: Makefile distinfo 
	x11/xfce4/xfce4-screensaver/pkg: PLIST 

Log message:
Update to xfce4-screensaver 0.1.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/21 03:38:46

Modified files:
	x11/xfce4/terminal: Makefile distinfo 
	x11/xfce4/terminal/pkg: PLIST 

Log message:
Update to xfce4-terminal 0.8.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/21 03:40:10

Modified files:
	x11/xfce4/xfce4-cpugraph: Makefile distinfo 
	x11/xfce4/xfce4-cpugraph/pkg: PLIST 

Log message:
Update to xfce4-cpugraph 1.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/21 04:26:40

Modified files:
	x11/i3lock     : Makefile distinfo 
	x11/i3lock/patches: patch-Makefile_in 

Log message:
update to i3lock-2.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/21 05:10:23

Modified files:
	databases/sqlports/files: Var.pm 

Log message:
cleaner way to deal with paths, no functional change


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/21 08:05:30

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddCreateDelete.pm AddDelete.pm 
	                          PkgCreate.pm State.pm 

Log message:
start re-adding the non-broken changes:
- commonalize try{} catch {} for pkg_add/delete and pkg_create, so that
debug works the same way in both.
- switch printing command name to the catch handler, so that exceptions
are simpler to handle


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/21 08:18:55

Modified files:
	usr.sbin/pkg_add/OpenBSD: Error.pm 

Log message:
gc old functions, that part is clean as well...
so it's obviously the END code then...


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/07/21 08:39:32

Modified files:
	usr.bin/lock   : lock.c 

Log message:
Amend comment: entering the root password won't unlock the terminal

Mention -p (user password) while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/21 09:31:39

Modified files:
	usr.sbin/pkg_add/OpenBSD: Error.pm 

Log message:
tweak register a bit... END {} code is obviously the problem


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/21 09:47:02

Modified files:
	sbin/dhclient  : clparse.c dhcpd.h parse.c 

Log message:
Replace malloc()/memcpy() with strdup() in parse_string(). Nuke 'len' parameter
to parse_string() in favour of taking strlen() of resulting string in the few
cases that it is of interest.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/21 09:59:51

Modified files:
	sbin/dhclient  : parse.c 

Log message:
Restructure parse_semi() so it resembles the other parse_*
functions.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/21 11:12:07

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/07/21 16:44:44

Modified files:
	usr.bin/lock   : lock.c 

Log message:
While -n is now the default, it's been useful since 1996.  Keep it for compat.

Agreement from schwarze@ (who proposed a thorough but longer diff) and millert@
ok tb@ kn@ cheloha@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/21 21:20:55

Modified files:
	usr.bin/mandoc : man_term.c tag.c 

Log message:
Slowly start implementing tagging support for man(7) pages, even
though it is obvious that this can never become as good as for
mdoc(7) pages.  As a first step, tag alphabetic arguments of .IP
macros, which are often used for lists of options and keywords.

Try "man -O tag=g as" to get the point.

Thanks to Leah Neukirchen for recently reminding me that exploring
how much can be done in this respect may be worthwhile: it is likely
to slightly improve usability while adding only small amounts of
relatively straightforward code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/22 00:55:41

Modified files:
	multimedia/libass: Makefile distinfo 

Log message:
Update to libass-0.14.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/22 00:56:33

Modified files:
	multimedia/x264: Makefile distinfo 
	multimedia/x264/patches: patch-configure 
Removed files:
	multimedia/x264/patches: patch-common_x86_cabac-a_asm 
	                         patch-common_x86_cpu-a_asm 
	                         patch-common_x86_mc-a_asm 
	                         patch-common_x86_pixel-a_asm 
	                         patch-common_x86_predict-a_asm 
	                         patch-common_x86_quant-a_asm 
	                         patch-common_x86_sad-a_asm 
	                         patch-common_x86_trellis-64_asm 

Log message:
Update to x264-20190720.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/22 00:59:41

Modified files:
	usr.sbin/pkg_add/OpenBSD: Error.pm PackageRepository.pm Temp.pm 

Log message:
separate the atend behavior, because dpb wants a pure signal intercept
but not an END code.

This fixes the stupid bug I had. Was looking in the wrong location,
not surprisingly


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/22 01:32:16

Modified files:
	usr.sbin/bgpd  : rde.h 

Log message:
GC three prototypes whose function have gone long ago.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/22 01:34:16

Modified files:
	usr.sbin/bgpd  : rde_decide.c 

Log message:
No need to check first if something is not NULL to assign NULL to it.
Just do it all the time.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/22 02:06:52

Modified files:
	usr.sbin/apmd  : apmd.c 

Log message:
Zap useless globals

Initialize stack variables directly instead of using global state in
between.

OK tedu deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/07/22 03:19:52

Modified files:
	usr.sbin/switchd: switchd.c 

Log message:
switchd(8)'s main proc needs to open the following paths, and which can be
unveiled:

/ -> read, it will open config files from anywhere in the system
/dev -> read/write, in order to open /dev/tap* and /dev/switch*

hint and OK akoshibe@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/07/22 05:21:08

Modified files:
	textproc/py-pygments: Makefile distinfo 
	textproc/py-pygments/pkg: PLIST 

Log message:
Update py-pygments 2.1.3 -> 2.4.2
Changelog: http://pygments.org/docs/changelog/
ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/22 05:51:30

Modified files:
	sys/arch/armv7/stand/efiboot: conf.c exec.c 

Log message:
Disable caches and MMU before jumping to the kernel entry point.  Needed
because UEFI on 32-bit ARM is supposed to leave them enabled and U-boot
was changed (starting with release 2019.04) to follow the spec here.  However
the OpenBSD/armv7 kernel expects to be booted with caches and MMU turned off.

Note that there are still issues on boards that enable the non-architected
L2 cache.  UEFI demands that such caches are not turned on, but U-Boot
does turn them on and this makes our kernel fail to boot.

With help from jsg@

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/22 06:39:02

Modified files:
	usr.bin/vi/common: recover.c 

Log message:
In secure mode (-S), skip sending mail when executing the :pre[serve]
command or when dying from SIGTERM.  This way, creating the recovery
file works again without re-adding "proc exec" to the pledge(2).
As reported by Jesper Wallin <jesper at ifconfig dot se>, this got
broken by common/main.c rev. 1.29 (Nov 19, 2015).
The general direction of the fix was suggested by brynet@.
OK brynet@ and no opposition when shown on tech@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/22 06:51:59

Modified files:
	net/py-idna    : Makefile distinfo 
	net/py-idna/pkg: PLIST 

Log message:
Update net/py-idna 2.5 -> 2.8

Bring py-idna current.

Updates the code to Unicode 11.0.0 and provides other fixes. All tests pass
for both python2 and python3 on amd64.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/22 06:55:10

Modified files:
	textproc/py-MarkupSafe: Makefile distinfo 

Log message:
Update MarkupSafe to version 1.1.1

"Fix segfault when __html__ method raises an exception when using the C
speedups. The exception is now propagated correctly. (#109)"

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/22 06:57:46

ports/devel/py-fasteners/patches

Update of /cvs/ports/devel/py-fasteners/patches
In directory cvs.openbsd.org:/tmp/cvs-serv35798/patches

Log Message:
Directory /cvs/ports/devel/py-fasteners/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/22 07:00:01

Modified files:
	devel/py-fasteners: Makefile distinfo 
Added files:
	devel/py-fasteners/patches: patch-fasteners__utils_py 
	                            patch-fasteners__utils_py.orig 
	                            patch-setup_py patch-setup_py.orig 

Log message:
Update devel/py-fasteners to 0.15

Added a missing TEST_DEPENDS on devel/py-pbr

Patched to use built-in time.monotonic rather than py-monotonic for
the python3 flavor. A pull request has been made with upstream to
integrate this change.

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/22 07:08:18

Modified files:
	www/py-mako    : Makefile distinfo 

Log message:
Update www/py-mako to 1.0.14

Switched test runner from py-nose to py-test. Updated dependencies
to reflect new version.

Tweak and ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/22 08:37:06

Modified files:
	sys/dev/acpi   : dwiic_acpi.c 
	sys/dev/i2c    : i2cvar.h ihidev.c ihidev.h 

Log message:
Even when polling is requested, install ihidev's interrupt handler

If an interrupt is received, turn off polling and rely on
interrupts.  This may happen after S3 resume.

Also properly shut down polling during suspend and start it up again
on resume only after dwiic is back in action.


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2019/07/22 09:34:07

Modified files:
	lib/libc/sys   : getsockopt.2 
	sys/sys        : socket.h 
	sys/kern       : uipc_socket.c 

Log message:
implement SO_DOMAIN and SO_PROTOCOL so that the domain and the protocol
can also be retrieved with getsockopt(3)
it looks like these will also be in the next issue of posix:
http://austingroupbugs.net/view.php?id=840#c2263

ok claudio@, sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/22 09:59:49

Modified files:
	sbin/dhclient  : clparse.c 

Log message:
Eliminate pointless "... else {}" branch to improve readability.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/07/22 10:10:27

Modified files:
	mail/kopano    : Makefile.inc 
	mail/kopano/core: Makefile distinfo 
	mail/kopano/core/patches: patch-Makefile_in 
	                          patch-common_ECChannel_cpp 
	                          patch-configure_ac 
	                          patch-installer_linux_server_cfg 
	                          patch-provider_libserver_ECAttachmentStorage_cpp 
	                          patch-provider_server_ECServer_cpp 
	                          patch-provider_server_ECSoapServerConnection_cpp 
	                          patch-spooler_DAgent_cpp 
	mail/kopano/core/pkg: PLIST-main 

Log message:
update to 8.7.82.59


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/22 10:13:08

Modified files:
	sysutils/libsmdev: Makefile 

Log message:
Missing BDEP on devel/gettext,-tools.
/bin/sh: /usr/local/bin/xgettext: not found


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/07/22 10:39:29

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Grab the vnode lock earlier in sys_getdents() since it could end up
sleeping, allowing the file offset to change. This is part of the
ongoing effort to protect the file offset using the vnode lock.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/07/22 10:43:10

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Correct minor style nit in sys_getdents() for consistency, missing parens around
return expression.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/22 11:20:06

Modified files:
	sbin/dhclient  : clparse.c dhcpd.h parse.c 

Log message:
Cleanup/simplify parse_number():

1) Restructure to explicitly set a long long result and take the
desired low/high constraints for strtonum().

2) No need to use a temporary variable when setting long long
(a.k.a. time_t) fields.

3) Fewer magic numbers when processing integer valued option
data. Less memcpy()'ing where a cast or two is sufficient to make
integer assignment work.

No intentional functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/22 17:01:48

Modified files:
	usr.sbin/smtpd : to.c 

Log message:
Use mnemonic IPPORT_HILASTAUTO

More readable, no binary change.

OK kmos


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/07/22 17:15:39

Modified files:
	devel/jdk/1.8  : Makefile distinfo 
Removed files:
	devel/jdk/1.8/patches: patch-hotspot_src_os_bsd_vm_os_bsd_cpp 
	                       patch-jdk_src_share_native_java_lang_System_c 
	                       patch-jdk_src_share_native_java_lang_java_props_h 
	                       patch-jdk_src_solaris_native_java_lang_childproc_c 
	                       patch-jdk_src_solaris_native_java_lang_java_props_md_c 

Log message:
Update to u222:
* Contains many upstream bug fixes and security fixes which can be mined
from u212-u222 release notes here:

https://adoptopenjdk.net/release_notes.html

* Removed patches merged upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/22 18:31:31

Modified files:
	usr.sbin/switchd: switchd.c 

Log message:
delete a stray blank from the usage() message; reported by Jesper Wallin


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/07/22 20:04:32

ports/security/ghidra/files

Update of /cvs/ports/security/ghidra/files
In directory cvs.openbsd.org:/tmp/cvs-serv45298/files

Log Message:
Directory /cvs/ports/security/ghidra/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/07/22 20:09:20

Modified files:
	security/ghidra: Makefile distinfo 
	security/ghidra/pkg: PLIST 
Added files:
	security/ghidra/files: repos.gradle 
	security/ghidra/patches: patch-GPL_CabExtract_build_gradle 
	                         patch-GPL_DemanglerGnu_Module_manifest 
	                         patch-GPL_DemanglerGnu_build_gradle 
	                         patch-GPL_nativeBuildProperties_gradle 
	                         patch-Ghidra_Features_Decompiler_build_gradle 
	                         patch-Ghidra_Features_Decompiler_src_decompile_cpp_Makefile 
	                         patch-Ghidra_Features_Decompiler_src_decompile_cpp_types_h 
	                         patch-Ghidra_Features_FunctionID_build_gradle 
	                         patch-Ghidra_Framework_Generic_src_main_java_ghidra_framework_Platform_java 
	                         patch-Ghidra_Framework_Help_src_main_java_help_GHelpBuilder_java 
	                         patch-Ghidra_Framework_SoftwareModeling_Module_manifest 
	                         patch-Ghidra_Framework_SoftwareModeling_build_gradle 
	                         patch-Ghidra_Framework_Utility_src_main_java_ghidra_framework_OperatingSystem_java 
	                         patch-Ghidra_RuntimeScripts_Linux_support_launch_sh 
	                         patch-build_gradle 
	                         patch-gradleScripts_distribution_gradle 
	                         patch-gradleScripts_ip_gradle 
Removed files:
	security/ghidra/patches: patch-support_launch_sh 

Log message:
Build and pack native components so that Ghidra can decompile programs on
OpenBSD.  This is based on a pull request from Jeremy O'Brien at
https://github.com/NationalSecurityAgency/ghidra/pull/490 and the Ghidra
build guide at
https://github.com/NationalSecurityAgency/ghidra/blob/master/DevGuide.md .

In addition, I have made these changes to make Ghidra work better as an OpenBSD
port:

1. I removed the explicit check for Gradle 5.0 because I was able to build
Ghidra with latest versions of Gradle.  At the time of commit, our
java/gradle port is 5.5.1 which is the latest version of Gradle.

2. By default, the Ghidra build process tries to fetch dependent files on demand
while building.  This will cause the build to fail if the port is built using
the _pbuild user.  To fix this, I made the port fetch all the dependent .jar
files prior to building.  I also used gradle's --offline flag which
explicitly tells gradle to "Execute the build without accessing network
resources".

3. To prevent the build process from touching $HOME, I made gradle use
${WRKDIR}/gradle as its home and also modified GHelpBuilder.java
(the program that builds help files during build) to log to ${WRKDIR}
instead of $HOME/.ghidra.

4. One of the Gradle scripts (ip.gradle) scans the Ghidra source tree so
I had to explicitly tell it to exclude *.orig and *.beforesubst.

help from bentley@ and Jeremy O'Brien
ok bentley@ rpointel@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/07/22 20:52:58

Modified files:
	security/ghidra: Makefile 

Log message:
Take maintainership; ok rpointel@

Add a comment that ST4-${ST4_VER}.jar is only needed during build for antlr;
it is not needed at runtime and therefore does not need to be packed.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/23 00:26:44

Modified files:
	usr.sbin/bgpd  : bgpd.c bgpd.h kroute.c parse.y rde.c 

Log message:
Clean up RIB related kroute code. Introduce a way to flush a FIB table
from the RDE. Make sure that all nexthops don't get removed in the FIB
when a FIB table is removed. This should only happen for the main FIB.
Remove F_RIB_HASNOFIB which is just confusing since there is already
F_RIB_NOFIB and F_RIB_NOFIBSYNC.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/23 01:39:43

Modified files:
	regress/usr.bin/ssh: agent.sh 

Log message:
Only add ssh-dss to allowed key types if it's supported by the binary.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/23 01:55:29

Modified files:
	regress/usr.bin/ssh: keygen-convert.sh 

Log message:
Only test conversion of key types supported by the binaries.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/23 02:05:44

Modified files:
	usr.sbin/smtpd : ca.c 

Log message:
errstr may be uninitialized in error code path


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/23 02:11:10

Modified files:
	usr.sbin/smtpd : smtpctl.c 

Log message:
include grp.h for setgroups()


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/23 02:19:29

Modified files:
	regress/usr.bin/ssh: keygen-moduli.sh 

Log message:
Skip DH group generation test if binaries don't support DH-GEX.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/23 03:58:42

Modified files:
	net/icbirc     : Makefile 
Added files:
	net/icbirc/patches: patch-irc_c 

Log message:
fix IRC protocol parsing in icbirc, from Matthew Martin, ok semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/23 04:18:32

Modified files:
	usr.bin/openssl: pkcs12.c 

Log message:
Moving variables into struct in openssl(1) pkcs12

First step to adapt openssl(1) pkcs12 command to new option handling.
There is no functional changes by this diff, and just moving variables into
pkcs12_config struct.
I still keep long lines more than 80 for this review to minimize diffs.

ok jsing@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/07/23 05:01:33

Modified files:
	regress/sys/kern/realpath: realpathtest.c 
	sys/kern       : vfs_syscalls.c 

Log message:
Fix realpath(3) errno code for an empty input path string.
It should return ENOENT in this case, but was returning EINVAL.
ok bluhm@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/07/23 05:55:43

Modified files:
	devel/jdk/11   : Makefile distinfo 
	devel/jdk/11/patches: 
	                      patch-src_hotspot_share_runtime_globals_hpp 
Added files:
	devel/jdk/11/patches: patch-make_autoconf_flags-cflags_m4 
	                      patch-make_hotspot_lib_JvmOverrideFiles_gmk 
	                      patch-src_hotspot_os_cpu_bsd_x86_os_bsd_x86_cpp 
	                      patch-src_java_base_share_classes_java_net_AbstractPlainDatagramSocketImpl_java 
	                      patch-src_java_desktop_share_classes_sun_print_PSPrinterJob_java 
Removed files:
	devel/jdk/11/patches: 
	                      patch-src_java_base_bsd_native_libjava_ProcessHandleImpl_bsd_c 
	                      patch-src_java_base_unix_native_libjava_ProcessHandleImpl_unix_c 
	                      patch-src_java_base_unix_native_libjava_ProcessHandleImpl_unix_h 
	                      patch-src_java_base_unix_native_libjava_childproc_c 

Log message:
Update to 11.0.4+11:
* Contains many upstream bug fixes and security fixes which can be mined
from the release notes here:

https://adoptopenjdk.net/release_notes.html

* Remove patches merged into bsd-port upstream
* Add corrections for issues that didn't make the bsd-port release


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/23 06:35:22

Modified files:
	lib/libc/hash  : sha2.c 

Log message:
Fix comment typo; from OpenSSH Portable


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/23 06:58:22

Modified files:
	devel/spidermonkey60: Makefile distinfo 

Log message:
Update to spidermonkey-60.8.0.

ok jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/23 07:07:32

Modified files:
	usr.sbin/bgpd  : rde.c 

Log message:
Make sure that pfd is not overflown, can not happen unless the mrt count
is off.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/23 07:32:48

Modified files:
	regress/usr.bin/ssh: sshcfgparse.sh 

Log message:
Only use DSA key type in tests if binaries support it.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/23 07:49:14

Modified files:
	regress/usr.bin/ssh: keytype.sh 

Log message:
Construct list of key types to test based on the types supported by the
binaries.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/23 08:09:47

Modified files:
	sbin/dhclient  : clparse.c 

Log message:
Compilers may not be as magical as I hope, so revert to using memcpy()
when treating various sized integers as arrays of bytes.

Doubts expressed by kettenis@ on behalf of strict alignment
architectures.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/23 08:19:17

Modified files:
	usr.sbin/bgpd  : rde_rib.c 

Log message:
Use the correct prefix size when writing out AID_VPN_IPv4 and AID_VPN_IPv6
prefixes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/23 08:22:00

Modified files:
	graphics/feh   : Makefile distinfo 
	graphics/feh/patches: patch-man_feh_pre 

Log message:
Bugfix update to feh-3.2.1
Changelog: https://feh.finalrewind.org/archive/3.2.1/


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/23 09:34:40

Modified files:
	sys/netinet    : Tag: OPENBSD_6_4 tcp_input.c 

Log message:
Received SACK options are managed by a linked list at the TCP socket.
There is a global tunable limit net.inet.tcp.sackholelimit, default
is 32768.  If an attacker manages to attach all these sack holes
to a few TCP connections, the lists may grow long.  Traversing them
might cause higher CPU consumption on the victim machine.  In
practice such a situation is hard to create as the TCP retransmit
and 2*msl timer flush the list periodically.  For additional
protection, enforce a per connection limit of 128 SACK holes in the
list.
reported by Reuven Plevinsky and Tal Vainshtein
discussed with claudio@ and procter@; OK deraadt@

OpenBSD 6.4 errata 019


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/23 09:35:32

Modified files:
	sys/netinet    : Tag: OPENBSD_6_5 tcp_input.c 

Log message:
Received SACK options are managed by a linked list at the TCP socket.
There is a global tunable limit net.inet.tcp.sackholelimit, default
is 32768.  If an attacker manages to attach all these sack holes
to a few TCP connections, the lists may grow long.  Traversing them
might cause higher CPU consumption on the victim machine.  In
practice such a situation is hard to create as the TCP retransmit
and 2*msl timer flush the list periodically.  For additional
protection, enforce a per connection limit of 128 SACK holes in the
list.
reported by Reuven Plevinsky and Tal Vainshtein
discussed with claudio@ and procter@; OK deraadt@

OpenBSD 6.5 errata 006


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/23 11:42:14

Modified files:
	usr.bin/mandoc : man_term.c 

Log message:
tagging support for .TP and .TQ; try e.g. man -O tag=commit cvs


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/07/23 12:56:23

Modified files:
	sys/net80211   : ieee80211_node.c 

Log message:
In 11n hostap mode, properly disable HT protection when needed
by actually overwriting the relevant bits in ni_htop1.
ok tedu@ phessler@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/07/23 13:07:31

Modified files:
	sys/kern       : vfs_vnops.c 

Log message:
Grab the vnode lock earlier in vn_read() since it could end up sleeping,
allowing the file offset to change. This is part of the ongoing effort
to protect the file offset using the vnode lock.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/23 13:22:24

Log message:
    import angr-8.19.4.5 and supporting libraries
    
    angr is a suite of Python 3 libraries that let you load a binary
    and do a lot of cool things to it:
    
    - Disassembly and intermediate-representation lifting
    - Program instrumentation
    - Symbolic execution
    - Control-flow analysis
    - Data-dependency analysis
    - Value-set analysis (VSA)
    - Decompilation
    
    join work with and ok kn@
    rough edges will be handled in-tree
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20192307
    
    N ports/devel/angr/Makefile.inc
    N ports/devel/angr/Makefile
    N ports/devel/angr/vex/Makefile
    N ports/devel/angr/vex/distinfo
    N ports/devel/angr/vex/pkg/DESCR
    N ports/devel/angr/vex/pkg/PLIST
    N ports/devel/angr/vex/patches/patch-Makefile-gcc
    N ports/devel/angr/py-pyvex/Makefile
    N ports/devel/angr/py-pyvex/distinfo
    N ports/devel/angr/py-pyvex/pkg/DESCR
    N ports/devel/angr/py-pyvex/pkg/PLIST
    N ports/devel/angr/py-pyvex/patches/patch-pyvex_c_Makefile
    N ports/devel/angr/py-pyvex/patches/patch-setup_py
    N ports/devel/angr/py-pyvex/patches/patch-make_ffi_py
    N ports/devel/angr/py-pyvex/patches/patch-pyvex_c_pyvex_c
    N ports/devel/angr/py-cle/Makefile
    N ports/devel/angr/py-cle/distinfo
    N ports/devel/angr/py-cle/pkg/DESCR
    N ports/devel/angr/py-cle/pkg/PLIST
    N ports/devel/angr/py-cle/patches/patch-cle_loader_py
    N ports/devel/angr/py-cle/patches/patch-setup_py
    N ports/devel/angr/py-ailment/Makefile
    N ports/devel/angr/py-ailment/distinfo
    N ports/devel/angr/py-ailment/pkg/DESCR
    N ports/devel/angr/py-ailment/pkg/PLIST
    N ports/devel/angr/py-claripy/Makefile
    N ports/devel/angr/py-claripy/distinfo
    N ports/devel/angr/py-claripy/pkg/DESCR
    N ports/devel/angr/py-claripy/pkg/PLIST
    N ports/devel/angr/py-archinfo/Makefile
    N ports/devel/angr/py-archinfo/distinfo
    N ports/devel/angr/py-archinfo/pkg/DESCR
    N ports/devel/angr/py-archinfo/pkg/PLIST
    N ports/devel/angr/py-angr/Makefile
    N ports/devel/angr/py-angr/distinfo
    N ports/devel/angr/py-angr/pkg/DESCR
    N ports/devel/angr/py-angr/pkg/PLIST
    N ports/devel/angr/py-angr/patches/patch-native_Makefile
    N ports/devel/angr/py-angr/patches/patch-native_log_c
    N ports/devel/angr/py-angr/patches/patch-angr_knowledge_plugins_functions_function_py
    N ports/devel/angr/py-angr/patches/patch-setup_py
    N ports/devel/angr/py-z3-solver/Makefile
    N ports/devel/angr/py-z3-solver/distinfo
    N ports/devel/angr/py-z3-solver/pkg/DESCR
    N ports/devel/angr/py-z3-solver/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/23 13:24:59

Log message:
    import angrop-8.19.4.5
    
    angrop is a tool to automatically generate ROP chains.
    
    It is built on top of angr's symbolic execution engine, and uses constraint
    solving for generating chains and understanding the effects of gadgets.
    
    angrop should support all the architectures supported by angr, although more
    testing needs to be done.
    
    Typically, it can generate rop chains (especially long chains) faster than
    humans.
    
    It includes functions to generate chains which are commonly used in exploitation
    and CTF's, such as setting registers, and calling functions.
    
    join work with and ok kn@
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20192307
    
    N ports/security/angrop/Makefile
    N ports/security/angrop/distinfo
    N ports/security/angrop/pkg/DESCR
    N ports/security/angrop/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/23 13:25:30

Modified files:
	devel          : Makefile 

Log message:
+angr


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/23 13:27:40

Modified files:
	security       : Makefile 

Log message:
+angrop


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/23 13:50:03

Modified files:
	devel/angr/py-z3-solver: Makefile 

Log message:
Set COMPILER

It uses -std=c++11, fix space nit while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/23 13:51:08

Modified files:
	devel/angr/py-angr/patches: patch-native_log_c 

Log message:
Comment the patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/23 13:56:15

ports/devel/angr/py-z3-solver/patches

Update of /cvs/ports/devel/angr/py-z3-solver/patches
In directory cvs.openbsd.org:/tmp/cvs-serv75157/patches

Log Message:
Directory /cvs/ports/devel/angr/py-z3-solver/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/23 13:56:50

Added files:
	devel/angr/py-z3-solver/patches: patch-core_scripts_mk_util_py 

Log message:
Remove hardcoded optimizations


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/23 15:17:47

Modified files:
	lang/gcc/8     : Makefile distinfo 
Added files:
	lang/gcc/8/patches: patch-gcc_ada_cstreams_c 

Log message:
Fix the Ada build now that realpath(3) conforms to POSIX and returns
an error if the last component of the path does not exist.

This is a bug in libgnat.  The System.File_IO.Open function calls
full_name -> __gnat_full_name -> realpath on files that have not
yet been created.  The Linux realpath was considered lacking, so a
different approach is used there.  We now remove OpenBSD from the
#ifdef of operating systems supporting realpath and follow the Linux
code path.

New Ada bootstraps are required.

ok sthen@ pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/23 17:06:57

Modified files:
	usr.bin/ssh    : sshd_config.5 

Log message:
Fix typo in CASignatureAlgorithms wherein what should be a comma is a dot.
Patch from hnj2 via github pr#141.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/23 19:48:53

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
print out lacp actor and parter info

this is useful for diagnosing mismatches between configurations on
sets of ports (and debugging aggr(4)).


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/07/23 20:15:57

Modified files:
	net/snort      : Makefile distinfo 
	net/snort/patches: 
	                   patch-src_dynamic-preprocessors_appid_Makefile_in 
	                   patch-src_preprocessors_Stream6_snort_stream_tcp_c 

Log message:
Update to Snort 2.9.14.

Also link libsf_appid_preproc.so against libc++abi so that luajit can access
libunwind symbols, and regen patches and WANTLIB.

tested by abieber@
ok abieber@, Markus Lude (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/23 22:04:44

Modified files:
	sys/arch/amd64/amd64: bios.c 
	sys/arch/i386/i386: bios.c 

Log message:
Avoid strlcpy() and printing of bios date if fixstring() returns NULL.
jan@ has a machine where the smbios date is ten space characters which
results in fixstring() returning NULL causing a NULL derefence.

Reported, tested by and ok jan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/24 00:51:40

Modified files:
	geo/viking     : Makefile distinfo 
	geo/viking/patches: patch-src_gpspoint_c 
	                    patch-src_vikmapniklayer_c 
	geo/viking/pkg : PLIST 

Log message:
Update to viking-1.7.
This update brings support of newer gpsd API.
OK landry@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/07/24 01:53:06

Modified files:
	sys/dev/ic     : ar5008.c 

Log message:
Make athn(4) provide full Tx time of each frame in a Tx series to hardware.
Linux ath9k does the same.

tested by myself, jmc@, and Tracey Emery


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/07/24 01:53:57

Modified files:
	sys/dev/ic     : ar5008.c ar5008reg.h 

Log message:
Set athn(4) Tx descriptor fields which specify Tx power used for retries.

tested by myself, jmc@, and Tracey Emery


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/24 02:49:43

Modified files:
	editors/qscintilla: Makefile distinfo 
	editors/qscintilla/patches: patch-Qt4Qt5_qscintilla_pro 
	editors/qscintilla/pkg: PLIST 
Added files:
	editors/qscintilla/patches: 
	                            patch-Qt4Qt5_Qsci_qsciscintillabase_h 

Log message:
Update to qscintilla 2.11.1, from Caspar Schutijser, thanks !


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/24 02:50:19

Modified files:
	editors/py-qscintilla: Makefile distinfo 
	editors/py-qscintilla/pkg: PLIST 

Log message:
Update to py-qscintilla 2.11.1, from Caspar Schutijser, thanks !

Enforces dependency on the matching qscintilla version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/24 02:51:05

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-src_server_CMakeLists_txt 
	geo/qgis/pkg   : PLIST 
Removed files:
	geo/qgis/patches: patch-src_core_qgsapplication_cpp 

Log message:
Update to QGIS 3.8.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/07/24 02:57:00

Modified files:
	usr.bin/ssh    : clientloop.c 

Log message:
When using a combination of a Yubikey+GnuPG+remote forwarding the gpg-agent
(and options ControlMaster+RemoteForward in ssh_config(5)) then the codepath
taken will call mux_client_request_session -> mm_send_fd -> sendmsg(2). Since
sendmsg(2) is not allowed in that codepath then pledge(2) kills the process.

The solution is to add "sendfd" to pledge(2), which is not too bad considering
a little bit later we reduce pledge(2) to only "stdio proc tty" in that
codepath.

Problem reported and diff provided by Timothy Brown <tbrown at freeshell.org>

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/24 02:58:24

Modified files:
	usr.sbin/bgpd  : mrt.c mrt.h 

Log message:
Cleanup and fix some obvious shortcomings in the mrt dump code. Also
implement the missing bits to dump MPLS VPN prefixes in the table-mp
case. Missing support noticed by benno@ because of King Bula warning.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/24 03:00:04

Modified files:
	usr.sbin/bgpd  : parse.y 

Log message:
Refactor the way RIBs are parsed a bit. No functional change but should
make it easier to extend the rib definitions later on.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/24 03:03:12

Modified files:
	usr.sbin/pkg_add/OpenBSD: Error.pm Temp.pm 

Log message:
explain some details


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/24 04:30:33

Modified files:
	sysutils/stow  : Makefile distinfo 
	sysutils/stow/pkg: PLIST 

Log message:
update to stow-2.3.0, from maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/24 05:32:01

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-8.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/24 05:54:54

Modified files:
	productivity/tryton: Makefile.inc 

Log message:
add downloads-cdn.tryton.org to MASTER_SITES for productivity/tryton

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/07/24 06:47:13

Modified files:
	audio/umurmur  : Makefile distinfo 
	audio/umurmur/patches: patch-CMakeLists_txt 
	                       patch-src_byteorder_h patch-src_client_c 
	                       patch-src_config_h_in 
	                       patch-src_messagehandler_c 
	                       patch-src_server_c 
	                       patch-umurmur_conf_example 
Added files:
	audio/umurmur/patches: patch-src_CMakeLists_txt 
Removed files:
	audio/umurmur/patches: patch-src_channel_c patch-src_messages_c 
	                       patch-src_ssli_openssl_c 

Log message:
Update to uMurmur 0.2.17

From maintainer Jonathon Sisson, tweaks by sthen@ and me


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/07/24 07:11:22

Modified files:
	devel/subversion: Makefile distinfo 

Log message:
Update devel/subversion to 1.12.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/24 07:49:24

Modified files:
	usr.bin/openssl: pkcs12.c 

Log message:
Convert openssl(1) pkcs12 to the newer style of option handling

Adapt openssl(1) pkcs12 command to new option handling.
Added pkcs12_options struct, and replaced for-if-strcmp handling with
options_parse().

ok and comments jsing@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/07/24 08:05:55

Modified files:
	.              : errata64.html errata65.html 

Log message:
release tcpsack errata.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/07/24 08:15:26

Modified files:
	.              : errata64.html 

Log message:
remove an extra > that snuck in


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/24 08:23:25

Modified files:
	usr.bin/openssl: gendsa.c genrsa.c 

Log message:
Capitalize cipher name and mode in help message as sync with pkcs12


CVSROOT:	/cvs
Module name:	src
Changes by:	bcallah@cvs.openbsd.org	2019/07/24 08:33:16

Modified files:
	bin/ksh        : io.c 

Log message:
Add #include <stdlib.h> for mkstemp.
Spotted by maya@netbsd

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/07/24 09:31:53

Modified files:
	etc/mail       : smtpd.conf 
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
Stop using reserved words in the smtpd.conf configuration examples
in the default smtpd.conf and smtpd.conf(5) manual page. This
eliminates ambiguity in our documentation examples that can cause
confusion.

Input and OK deraadt@ schwarze@ kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/24 11:29:23

Modified files:
	devel/mercurial: Makefile distinfo 
	devel/mercurial/pkg: PLIST-main 

Log message:
Update to mercurial 5.0.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/24 11:30:00

Modified files:
	devel/tortoisehg: Makefile distinfo 
	devel/tortoisehg/pkg: PLIST 

Log message:
Update to tortoisehg 5.0.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/24 11:53:33

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
Return fd of -1 if take_charge() detects 'quit' being set to
TERMINATE. Exit if take_charge() returns -1.

Set 'quit' to TERMINATE instead of directly calling 'exit(0)' in
rtm_dispatch().

Nuke erroneous "not reached" comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/24 11:56:44

Modified files:
	graphics/pdf2djvu: Makefile distinfo 
Removed files:
	graphics/pdf2djvu/patches: patch-pdf2djvu_cc patch-sys-uuid_cc 

Log message:
Update to pdf2djvu 0.9.13.


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/07/24 12:05:26

Modified files:
	usr.sbin/pkg_add/OpenBSD: Delete.pm Error.pm PkgAdd.pm State.pm 

Log message:
GC old catchall
add a better framework for signal handling (not used yet)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/24 12:16:29

ports/devel/pycdc/patches

Update of /cvs/ports/devel/pycdc/patches
In directory cvs.openbsd.org:/tmp/cvs-serv37157/patches

Log Message:
Directory /cvs/ports/devel/pycdc/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/24 12:21:07

Modified files:
	devel/pycdc    : Makefile 
Added files:
	devel/pycdc/patches: patch-CMakeLists_txt 

Log message:
pycdc: unbreak with ports-gcc by removing -Werror from build flags

OK bcallah@, "sound good to me" rpointel@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/24 12:26:26

Modified files:
	lang/bacon     : Makefile distinfo 

Log message:
Update to bacon 3.9.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/24 12:26:53

Modified files:
	lang/elixir    : Makefile distinfo 

Log message:
update to elixir-1.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/07/24 12:27:10

Modified files:
	graphics/birdfont: Makefile distinfo 

Log message:
update to birdfont-2.27.0


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/07/24 12:41:05

Modified files:
	libexec/spamd  : spamd.8 

Log message:
Ever since I introduced pledge(2) on spamd(8) the chroot'ed process, if running
in default, cannot get anywhere near the filesystem since its only promises are
"stdio inet". Furthermore, in blacklist mode this same codepath is not
chroot'ed but once again it gets the same pledge(2).

Therefore we can remove the BUGS section from spamd(8)'s manpage.

OK millert@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/07/24 13:20:56

Modified files:
	devel/kdevelop : Makefile distinfo 
	devel/kdevelop/pkg: PLIST 

Log message:
Bugfix update kdevelop to 5.3.3


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/24 13:40:04

Modified files:
	usr.sbin/apmd  : apmd.c 

Log message:
Fix format specifier in execl(3) error message

Typo from r1.84 introducing the logmsg() wrapper.

OK deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/24 13:50:10

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
Two problems:
- RFC 2034 Section 3 (item 4) requires that the status code is always followed
by one or more spaces. However, OpenSMTPD has a colon right after the status
code in many of the replies it sends.
- RFC 2034 Section 4 states: "When responses are continued across multiple lines
the same status code must appear at the beginning of the text in each line of
the response." However, OpenSMTPD only has the enhanced status code for the
last reply line it sends. Still, there is only one case in which it sends
such a multi-line reply: the HELP command.

diff from Stephan Bosch


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/24 13:53:12

Modified files:
	x11/gnome/grilo: Makefile distinfo 

Log message:
Update to grilo-0.3.9.

ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/24 13:53:34

Modified files:
	x11/gnome/grilo-plugins: Makefile distinfo 
	x11/gnome/grilo-plugins/pkg: PLIST 
Added files:
	x11/gnome/grilo-plugins/patches: patch-meson_build 

Log message:
Update to grilo-plugins-0.3.9.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/24 14:23:09

Modified files:
	usr.bin/lock   : lock.1 lock.c 

Log message:
Make sure that -n overrides -t even when -n precedes -t, like it
does in FreeBSD and in NetBSD, and fully document that behaviour.
Input, feedback, and OK jca@.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/07/24 14:25:27

Modified files:
	usr.sbin/bgpd  : bgpd.c parse.y printconf.c rde.c session.c 

Log message:
mrt.h only needs to be included by mrt.c
ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/24 14:44:21

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 to.c 

Log message:
Make SMTPS default to port 465 in relay-host

While the other protocols either require an explicit port (LTMP) or
correctly default to 25 for plaintext as well as STARTTLS, SMTP with forced
TLS never happens on 25, so default to the well defined standard instead.

Input and OK gilles


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/07/24 14:54:54

Modified files:
	usr.sbin/bgpd  : rde_rib.c 

Log message:
rib_dump_terminate() and rib_dump_abort() need to free any possibly
locked entry (rib or prefix) before removing the context else elements
may remain locked for the rest of the run time (which is equal to a
memory leak).
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/24 15:16:17

Modified files:
	usr.bin/tmux   : screen-redraw.c 

Log message:
Mark pane status line jobs with FORMAT_STATUS also so it redraws when
they finish, GitHub issue 1852.


CVSROOT:	/cvs
Module name:	www
Changes by:	job@cvs.openbsd.org	2019/07/24 15:16:40

Modified files:
	.              : artwork.html 
Added files:
	images         : puffer_city-s.gif puffer_city.jpg 

Log message:
Add new poster

"Puffer City", by Brandon Graham


CVSROOT:	/cvs
Module name:	src
Changes by:	afresh1@cvs.openbsd.org	2019/07/24 16:22:59

Modified files:
	gnu/usr.bin/perl/cpan/OpenBSD-Pledge/lib/OpenBSD: Pledge.pm 

Log message:
Remove extra =back from OpenBSD::Pledge POD

From Edgar Pettijohn <edgar () pettijohn-web ! com>


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/24 16:57:57

Modified files:
	bin/ps         : ps.1 

Log message:
Years ago the optionality of leading - was removed.  dash-less is a
fact on the ground in ps everywhere, even on linux, and it is not going
to go away, and denying the existance is pointless. The SYNOPSIS cannot
proscriptively document all the cases without a madness.  I also feel
there is very little need to explain the behaviour differences relative
to the sparse POSIX standard for ps, everyone's ps has oodles of
extensions.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/24 18:03:12

Modified files:
	bin/ps         : ps.1 

Log message:
tweak previous: a leading dash can only be given if an option letter follows;
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/24 18:07:34

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
make a half-hearted attempt to shrink trunkport info a bit

it's hard to balance being understandable without a legend or a big
manpage, and not using a lot of space.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/24 19:43:21

Modified files:
	share/man/man9 : vinvalbuf.9 
	sys/isofs/cd9660: cd9660_vfsops.c 
	sys/isofs/udf  : udf_vfsops.c 
	sys/kern       : vfs_subr.c vfs_syscalls.c spec_vnops.c 
	sys/msdosfs    : msdosfs_denode.c msdosfs_vfsops.c 
	sys/nfs        : nfs_bio.c 
	sys/ntfs       : ntfs_vfsops.c 
	sys/sys        : vnode.h 
	sys/ufs/ext2fs : ext2fs_inode.c ext2fs_vfsops.c 
	sys/ufs/ffs    : ffs_inode.c ffs_vfsops.c 
	sys/ufs/mfs    : mfs_vnops.c 

Log message:
vinvalbuf(9): tlseep -> tsleep_nsec(9); ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/24 19:46:15

Modified files:
	sys/dev/pci    : if_ipw.c if_iwi.c if_iwm.c if_iwn.c if_wpi.c 

Log message:
ipw, iwi, iwm, iwn, wpi(4): tsleep -> tsleep_nsec(9); ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/24 19:49:55

Modified files:
	sys/dev/pci/drm/include/linux: atomic.h 

Log message:
remove some unused macros


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/07/24 20:18:25

Modified files:
	www/honk       : Makefile distinfo 
	www/honk/pkg   : PLIST README 

Log message:
Update to honk 0.7.4, from Horia Racoviceanu

- add admin.txt
- add memes directory
- add emus directory
- change user _honk home directory mode, no longer group writable
- update README, add icon and favicon

ok abieber@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/24 20:42:44

Modified files:
	sys/dev/pci/drm/include/linux: atomic.h 

Log message:
Remove old DRM_READMEMORYBARRIER() DRM_WRITEMEMORYBARRIER() and
DRM_MEMORYBARRIER() definitions and directly define rmb() wmb() and mb().


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/07/24 22:32:16

Modified files:
	graphics/krita : Makefile distinfo 

Log message:
Bugfix update krita to 4.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/07/24 23:12:48

Log message:
    Import sphinx-notfound-page, sphinx extension to create custom 404 pages with absolute URLs hardcoded. Used for building latest ansible. ok jasper@
    
    Status:
    
    Vendor Tag:	pvk
    Release Tags:	pvk_20190725
    
    N ports/textproc/py-sphinx-notfound-page/Makefile
    N ports/textproc/py-sphinx-notfound-page/distinfo
    N ports/textproc/py-sphinx-notfound-page/pkg/DESCR
    N ports/textproc/py-sphinx-notfound-page/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/07/24 23:19:25

Modified files:
	textproc       : Makefile 

Log message:
+py-sphinx-notfound-page


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/24 23:48:16

Modified files:
	sys/dev/pci/drm: drm_drv.c 
	sys/dev/pci/drm/include/drm: drmP.h drm_drv.h 

Log message:
Remove old unused drm_debug_flag var and make drm_debug (used by
drm_print) a var instead of a define in a header.

Makes it easier to change without rebuilding everything and allows the
value to be changed at runtime via ddb.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/25 01:29:44

Modified files:
	usr.sbin/apmd  : apmd.c 

Log message:
Fix another %m occurence

Found by bluhm, thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/25 02:28:15

Modified files:
	regress/usr.bin/ssh: cert-hostkey.sh cert-userkey.sh 

Log message:
Make certificate tests work with the supported key algorithms.  Allows
tests to pass when built without OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/25 02:48:11

Modified files:
	regress/usr.bin/ssh: keys-command.sh 

Log message:
Switch keys-command test from rsa to ed25519 since it's supported for
both OpenSSL and non-OpenSSL builds.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/25 03:17:35

Modified files:
	regress/usr.bin/ssh: krl.sh 

Log message:
Only use supported key types during KRL test, preferring ed25519 since
it's supported by both OpenSSL and non-OpenSSL builds.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/25 03:37:32

Modified files:
	sys/kern       : kern_unveil.c 
	sys/sys        : acct.h 

Log message:
Use process accounting to find programs which try to access files
that are hidden by unveil(2).
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/07/25 04:04:19

Modified files:
	sysutils/ansible: Makefile distinfo 
	sysutils/ansible/pkg: PLIST-html PLIST-main 

Log message:
Update ansible 2.8.0 -> 2.8.2
Changelog: https://github.com/ansible/ansible/blob/stable-2.8/changelogs/CHANGELOG-v2.8.rst#v2-8-2
New BUILD_DEPENDS: textproc/py-sphinx-notfound-page
Cleanup -main package from html docs by moving them from -main to -html subpackage
ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/07/25 05:41:03

Modified files:
	usr.bin/openssl: enc.c 

Log message:
zero tmpkeyiv buffer after use when encrypting

from Steven Roberts


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/07/25 05:42:12

Modified files:
	usr.bin/openssl: enc.c 

Log message:
remove superfluous comment


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/07/25 06:07:26

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-net_base_network_change_notifier_cc 

Log message:
disable the network change notifier because it seems to be broken,
so this way the browser will report an online status all the time
and web applications checking the status will work again until the
actual issue with the notifier is fixed


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/25 07:13:53

Modified files:
	etc            : daily 
	usr.bin/lastcomm: lastcomm.1 lastcomm.c 
	lib/libc/sys   : unveil.2 

Log message:
Show unveil(2) violators in lastcomm(1) output and daily mail.
input Janne Johansson, schwarze@; OK deraadt@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/25 07:47:40

Modified files:
	lib/libc/sys   : unveil.2 

Log message:
basic macro cleanup


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/25 07:53:57

Modified files:
	usr.bin/gencat : gencat.c 

Log message:
According to our manual page and to POSIX, $set defaults to NL_SETD.
Bug reported by Marcel Logen <333200007110-0201 at ybtra dot de>.
While here, remove the misleading initialization of msgid
which is not a state variable.
OK millert@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/25 07:56:24

Modified files:
	sbin/ifconfig  : brconfig.h ifconfig.8 ifconfig.c 
	sys/net        : if.h 
	sys/netinet    : in.c 

Log message:
Add IFXF_AUTOCONF4 to if_xflags to match IFXF_AUTOCONF6. Let
ifconfig set/unset it.

ok deraadt@ kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/25 08:17:11

Modified files:
	regress/gnu/egcs/gcc-bounds: Makefile 
	regress/gnu/egcs/gcc-builtins: Makefile 

Log message:
Since switching from bfd to lld linker there are no warnings about
insecure libc functions anymore.  To avoid false positives, change
the regress result from FAILED to EXPECTED_FAIL if lld is used.
When lld will support this feature, the regress tests can be enabled
again.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/25 08:18:01

Modified files:
	lib/libc/sys   : pledge.2 

Log message:
Basic macro cleanup, mostly .Nm -> .Fn because .Nm is not a thing
in section 2 and 3; bluhm@ drew my attention to this.


CVSROOT:	/cvs
Module name:	src
Changes by:	brynet@cvs.openbsd.org	2019/07/25 08:53:21

Modified files:
	sbin/pflogd    : pflogd.c 
	libexec/spamlogd: Makefile spamlogd.c 

Log message:
Yet another workaround for crappy libpcap API design

Add an internal version of pcap_open_live that ensures bpf(4) devices
are opened read-only before locking. Neither pflogd(8) or spamlogd(8)
require write access to bpf(4). Inspired by similar solution in
OpenBSD tcpdump(8).

pflogd(8) was safe since being unveiled last year, but spamlogd(8)
was having /dev/bpf opened O_RDWR.

Issue discovered by bluhm@'s unveil(2) accounting commit.

ok deraadt@, mestre@ (thanks for testing spamlogd!)


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/07/25 09:13:52

Modified files:
	sys/kern       : kern_time.c 

Log message:
itimerdecr(): simplify logic with timer*(9) macros; ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/25 09:23:39

Modified files:
	sbin/ifconfig  : ifconfig.c 
	sys/net        : if.h 

Log message:
AF_INET comes before AF_INET6. Shorten line to <80 chars.

pointed out by claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/25 10:03:53

Modified files:
	converters/p5-Date-Tolkien-Shire: Makefile distinfo 
	converters/p5-Date-Tolkien-Shire/pkg: DESCR 

Log message:
Update to p5-Date-Tolkien-Shire-1.902
Changelog: https://metacpan.org/release/Date-Tolkien-Shire

While here, remove stray whitespace in pkg/DESCR as noted by portcheck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/25 10:10:53

Modified files:
	devel/tortoisehg: Makefile 

Log message:
Tortoise requires mercurial as build dependency in the last version.
Spotted by ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	brynet@cvs.openbsd.org	2019/07/25 11:32:33

Modified files:
	sbin/pflogd    : pflogd.c 
	libexec/spamlogd: spamlogd.c 

Log message:
Fix copy pasto, re-add missing goto in error path.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/25 11:50:18

Modified files:
	devel/tortoisehg/patches: patch-setup_py 

Log message:
regen patch


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/25 12:30:40

Modified files:
	sys/arch/sparc64/include: hypervisor.h 
	sys/arch/sparc64/sparc64: hvcall.S 

Log message:
Add SDIO hypervisor calls.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/25 13:05:22

Modified files:
	usr.bin/lastcomm: lastcomm.1 

Log message:
convert flag listing into a .Bl


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/25 14:04:17

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-8.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/25 14:10:28

Modified files:
	audio/picard   : Makefile distinfo 
	audio/picard/patches: patch-setup_py 
	audio/picard/pkg: DESCR PLIST 
Removed files:
	audio/picard/patches: patch-picard_musicdns_avcodec_c 

Log message:
Update audio/picard 0.16 -> 2.1.3

The project no longer bundles the plugins with the source. So I got
rid of all the Makefile logic for the plugins.

Port moved to using MODPY_PI. There is a patch for setup.py to use
the setuptools version of install which has support for
--single-version-externally-managed. I've sent this patch upstream
and it has already been committed so will be in the next release.
I discarded the old setup.py patch.

A chunk of tests fail because the PyPI tarball id missing any .aac
files from test/data. I got a patch committed upstream for their
MANIFEST.in file so that future releases will include those files.

Dependencies on ffmpeg, liboaf, and others were dropped as they
aren't needed for recent releases of picard.

Input from sthen@

ok edd@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/25 14:45:03

Modified files:
	www/p5-Mojo    : Makefile distinfo 

Log message:
p5-Mojo: update to 8.22
Changelog:
https://metacpan.org/release/SRI/Mojolicious-8.22

From Manolis Tzanidakis (maintainer), with a little tweak from me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/07/25 14:59:08

Modified files:
	mail/p5-Mail-Milter-Authentication: Makefile 

Log message:
fix missing dependency, from Wen Heping


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/25 15:08:59

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add Sun Static Direct I/O devices


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/25 15:09:27

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/25 15:11:24

Modified files:
	sys/arch/sparc64/dev: vpci.c 

Log message:
Add support for virtual root complexes used for Static Direct I/O.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/25 15:41:38

Modified files:
	mail/dovecot   : Makefile distinfo 
	mail/dovecot/pkg: PLIST-server 
	mail/dovecot-pigeonhole: Makefile distinfo 

Log message:
Update to Dovecot 2.3.7.1 / Pigeonhole 0.5.7.1, these have a couple of
small post-2.3.7 fixes including one which fixes sync if sieve is in use
and mail_attribute_dict is not set. From Brad.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/25 16:07:47

Modified files:
	databases/openldap: Makefile distinfo 
	databases/openldap/patches: patch-Makefile_in patch-aclocal_m4 
	                            patch-build_openldap_m4 
	                            patch-build_top_mk 
	                            patch-libraries_libldap_tls_o_c 
	                            patch-servers_slapd_Makefile_in 
	                            patch-servers_slapd_back-mdb_init_c 
	                            patch-servers_slapd_slapd_conf 
	databases/openldap/pkg: PLIST-main PLIST-server 

Log message:
update to OpenLDAP 2.4.48. while there, patch away -release in libtool args to
stop using SONAME of libldap-2.4.so.XXX (but maintain symlinks for now as other
ports are using these names).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/25 16:23:40

Modified files:
	telephony/asterisk: Makefile distinfo 
	telephony/asterisk/pkg: PLIST-main 

Log message:
update to Asterisk 16.5.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/25 16:45:53

Modified files:
	sys/arch/sparc64/dev: vpci.c 
	sys/arch/sparc64/include: hypervisor.h 
	sys/arch/sparc64/sparc64: autoconf.c 

Log message:
Enable sharing of root complex when appropriate.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/25 19:00:01

Removed files:
	audio/picard/pkg: MESSAGE 

Log message:
Forgot to cvs rm obsolete MESSAGE when I committed the update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/25 20:54:23

Modified files:
	audio/picard   : Makefile 

Log message:
danj pointed out I should have bumped the REVISION when I removed
MESSAGE hours after committing the update.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/07/25 22:22:21

Modified files:
	regress/usr.bin/ssh: limit-keytype.sh 

Log message:
Restrict limit-keytype to types supported by build.  This means we have
to skip a couple tests when only one key type is supported.


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/07/25 22:35:38

Modified files:
	sys/arch/amd64/include: i82489reg.h 
	sys/arch/i386/include: i82489reg.h 

Log message:
emove duplicate definitions of LAPIC_ID_MASK and LAPIC_ID_SHIFT.

"yes please" guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/07/25 23:49:39

Modified files:
	audio/umurmur  : Makefile 

Log message:
Use proper GH_ACCOUNT umurmur

The old fatbob313/umurmur redirects to umurmur/umurmur.
Observed by Jungle Boogie.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/25 23:52:49

Modified files:
	sysutils/xxhash/patches: patch-Makefile 

Log message:
Remove -Wvla flag; gcc-4.2.1 and earlier don't understand it.
ok bket@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/26 00:30:13

Modified files:
	usr.sbin/smtpd : lka.c lka_report.c report_smtp.c smtp_session.c 
	                 smtpd.h 

Log message:
even though RSET can be issued outside a tx, RFC states it's noop outside a
transaction so rename link-reset to tx-reset and only issue the smtp report
when a reset _actually_ has a side-effect.

note that rset is implicit on a message commit or rollback, so tx-reset get
issued even though there was no explicit RSET. the filters are MUCH simpler
to write when you don't need to track every event that can reset a tx :-)


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/07/26 00:41:59

Added files:
	mail/mu/patches: patch-lib_parser_utils_cc 

Log message:
Add patch forgotten during update
ok jca@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/07/26 01:08:34

Modified files:
	usr.sbin/smtpd : smtpd.c 

Log message:
add IMSG_REPORT_SMTP_TX_RESET to imsg_to_str


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/07/26 01:53:20

Modified files:
	www/chromium   : Makefile 

Log message:
remove whitespace after revision number


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/26 03:12:38

Modified files:
	regress/gnu/egcs/gcc-builtins: Makefile 

Log message:
The strncat test is passing, do not add it to expected failures.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/07/26 05:14:42

Modified files:
	archivers/zstd : Makefile distinfo 

Log message:
Update to zstd-1.4.2.

zstd-1.4.1 included a bug in decompressing v0.5 legacy frames, which is
fixed in 1.4.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/26 05:33:05

Modified files:
	sys/arch/sparc64/dev: vpci.c 

Log message:
Recognize PCI busses that don't support INTx and refuse to map legacy on
such busses.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/26 05:52:51

Modified files:
	usr.bin/openssl: pkcs12.c 

Log message:
Remove unnecessary NULL checks before free in openssl(1) pkcs12

ok bcook@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/07/26 06:04:03

Modified files:
	x11/spectrwm   : Makefile 
	x11/spectrwm/patches: patch-spectrwm_c 

Log message:
Sync pledge bits-and-pieces from upstream HEAD.

gonzalo@ (MAINTAINER) responded with "...go ahead...".


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/07/26 06:08:19

Modified files:
	lib/libc/gen   : ualarm.3 
	usr.bin/lastcomm: lastcomm.1 
	bin/csh        : csh.1 

Log message:
Replace cross-references to sigvec(3) with sigaction(2).
OK guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/26 06:35:59

Modified files:
	usr.bin/openssl: pkcs12.c 

Log message:
Code clean up openssl(1) pkcs12

- Add a space before 'export_end:'
- Remove space after '*'
- Wrap lines by 80 columns


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/26 07:07:14

Modified files:
	graphics/aspect-crop: Makefile distinfo 

Log message:
fix compile issue with gcc (as noticed by Charlene Wendling)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/07/26 07:41:19

Modified files:
	sysutils/bacula: Makefile 
Added files:
	sysutils/bacula/patches: patch-scripts_baculabackupreport_in 

Log message:
the baculabackupreport needs GNU awk, so modify the script and add the
run dependency on lang/gawk; ok sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/26 07:51:31

Modified files:
	audio/schismtracker: Makefile distinfo 
	audio/schismtracker/patches: patch-configure_ac 

Log message:
Update schismtracker to 20190722.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/26 07:53:51

Modified files:
	textproc/ruby-rouge: Makefile distinfo 
	textproc/ruby-rouge/pkg: PLIST 

Log message:
Update ruby-rouge to 3.7.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/26 08:11:49

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
bleh, stupid binutils


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/26 08:11:59

Modified files:
	converters/bdf2psf: Makefile distinfo 

Log message:
Update bdf2psf to 1.192.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/26 08:36:26

Modified files:
	sbin/dhclient  : kroute.c 

Log message:
Whitespace tweak, fold long line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/26 08:45:23

Modified files:
	textproc/p5-PPI: Makefile distinfo 

Log message:
update to p5-PPI-1.270, from wen heping


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/26 08:49:40

Modified files:
	www/p5-Catalyst-Plugin-Session-PerUser: Makefile 

Log message:
add missing TDEP to fix tests. reorder RUN_DEPENDS. from wen heping


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/26 08:53:26

Modified files:
	devel/p5-Object-Signature: Makefile distinfo 

Log message:
update to p5-Object-Signature-1.08, from wen heping
- tweaks from me: fix whitespace nits while there, and add FIX_EXTRACT_PERMISSIONS=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/26 08:56:31

Modified files:
	math/p5-Statistics-Descriptive: Makefile distinfo 
	math/p5-Statistics-Descriptive/pkg: PLIST 

Log message:
update to p5-Statistics-Descriptive-3.0702, from wen heping


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/26 09:02:07

Modified files:
	devel/p5-MCE   : Makefile distinfo 
	devel/p5-MCE/pkg: DESCR PLIST 

Log message:
update to p5-MCE-1.843, based on update to 1.841 from wen heping
(1.841 is no longer available, plus i tweaked DESCR)


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/07/26 11:22:09

Modified files:
	etc            : unbound.conf 

Log message:
standard DoT port is 853 not 953; from myportslist20190323 at nym.hush.com


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/26 12:01:21

Modified files:
	usr.bin/mandoc : main.c 

Log message:
Structural cleanup, no functional change:
Move process group management out of main() into its own function
because it has its own, self-contained logic and its own local variables.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/26 14:08:40

Modified files:
	usr.bin/tmux   : client.c 

Log message:
Change "lost server" message to "server exited unexpectedly", from Neal
McBurnett in GitHub issue 1857.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/26 15:03:16

Modified files:
	usr.bin/mandoc : main.c 

Log message:
Structural cleanup, no functional change:
Mixing parser and formatter state in the same struct was a bad idea,
so pull the parser state and configuration out of it.
This makes sure output options are not passed into parser functions
and parser options are not passed into output functions.
While here, add comments to the important local variables in main().


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/26 16:00:42

Modified files:
	emulators/fs-uae: Makefile 
Added files:
	emulators/fs-uae/patches: patch-src_od-fs_bsdsocket_posix_cpp 
	                          patch-src_od-fs_picasso96_cpp 

Log message:
fs-uae: unbreak with ports-gcc. While here move HOMEPAGE to https.

"Go ahead" edd@ (maintainer), "Looks good" sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/26 17:12:02

Modified files:
	usr.bin/mandoc : main.c 

Log message:
Cleanup, no functional change:
For clarity, stop storing the same information (in this case, -O
settings) in two structs.  Give the local struct in main.c a more
descriptive name (output state).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/26 20:07:33

Log message:
    Import x11/qtfm, a desktop-independent Unix file manager.
    ok rsadowski@
    
    QtFM is a desktop-independent file manager.
    
    Features:
    * XDG integration
    * Customizable interface
    * Powerful custom command system
    * Customizable key bindings
    * Drag & drop functionality
    * Tabs support
    * Removable storage support
    * System tray daemon (qtfm-tray(1))
    * Extensive thumbnail support
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190726
    
    N ports/x11/qtfm/Makefile
    N ports/x11/qtfm/distinfo
    N ports/x11/qtfm/patches/patch-share_qtfm_pri
    N ports/x11/qtfm/pkg/PLIST
    N ports/x11/qtfm/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/26 20:07:52

Modified files:
	x11            : Makefile 

Log message:
+qtfm


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/26 22:47:59

Modified files:
	sys/dev/pci/drm/i915: i915_gem.c 

Log message:
Match linux path in i915_gem_mmap_ioctl() and change ggtt origin if
I915_MMAP_WC flag is set.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/26 23:18:22

Modified files:
	sys/dev/pci/drm/include/drm: drm_displayid.h 
	sys/dev/pci/drm: drm_edid.c 

Log message:
drm/edid: parse CEA blocks embedded in DisplayID

From Andres Rodriguez
66a13b5e4e9cc7bb2c6a5d12a650df4309b77c46 in linux 4.19.y/4.19.61
e28ad544f462231d3fd081a7316339359efbb481 in mainline linux


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:44:23

Modified files:
	driver/xf86-video-intel/src/sna: sna_accel.c 

Log message:
Compatibility with xserver 1.20


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:46:01

Modified files:
	driver/xf86-video-nv/src: nv_driver.c riva_driver.c 
	                          riva_include.h 

Log message:
Compatibility with xserver 1.20


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:46:53

Modified files:
	driver/xf86-video-r128/src: atipcirename.h 

Log message:
Compatibility with xserver 1.20


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:47:47

Modified files:
	driver/xf86-video-savage/src: savage_driver.c 

Log message:
Compatibility with xserver 1.20


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:48:19

Modified files:
	driver/xf86-video-wsfb/src: wsfb_driver.c 

Log message:
Compatibility with xserver 1.20


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:49:57

Modified files:
	driver/xf86-video-geode/src: gx_driver.c 

Log message:
Compatibility with xserver 1.20
reminded by jsg@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:51:59

xenocara/xserver/test/bigreq

Update of /cvs/xenocara/xserver/test/bigreq
In directory cvs.openbsd.org:/tmp/cvs-serv62306/bigreq

Log Message:
Directory /cvs/xenocara/xserver/test/bigreq added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:52:16

xenocara/xserver/test/sync

Update of /cvs/xenocara/xserver/test/sync
In directory cvs.openbsd.org:/tmp/cvs-serv6515/sync

Log Message:
Directory /cvs/xenocara/xserver/test/sync added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 01:57:26

Modified files:
	xserver        : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac manpages.am 
	xserver/Xext   : Makefile.am Makefile.in dpms.c dpmsproc.h 
	                 geext.c hashtable.c panoramiX.c panoramiXSwap.c 
	                 saver.c security.c shape.c shm.c sync.c 
	                 syncsrv.h vidmode.c xcmisc.c xf86bigfont.c 
	                 xres.c xselinux_ext.c xtest.c xvdisp.c xvmain.c 
	                 xvmc.c 
	xserver/Xi     : Makefile.in allowev.c chgdctl.c chgfctl.c 
	                 chgkbd.c chgkmap.c chgprop.c chgptr.c 
	                 closedev.c devbell.c extinit.c getbmap.c 
	                 getdctl.c getfctl.c getfocus.c getkmap.c 
	                 getmmap.c getprop.c getselev.c getvers.c 
	                 grabdev.c grabdevb.c grabdevk.c gtmotion.c 
	                 listdev.c opendev.c queryst.c selectev.c 
	                 sendexev.c setbmap.c setdval.c setfocus.c 
	                 setmmap.c setmode.c ungrdev.c ungrdevb.c 
	                 ungrdevk.c xiallowev.c xibarriers.c 
	                 xichangecursor.c xichangehierarchy.c 
	                 xigetclientpointer.c xigrabdev.c 
	                 xipassivegrab.c xiproperty.c xiquerydevice.c 
	                 xiquerypointer.c xiqueryversion.c xiselectev.c 
	                 xisetclientpointer.c xisetdevfocus.c 
	                 xiwarppointer.c 
	xserver/composite: Makefile.in compalloc.c compext.c compinit.c 
	                   compint.h compwindow.c 
	xserver/config : Makefile.in 
	xserver/damageext: Makefile.in damageext.c 
	xserver/dbe    : Makefile.in dbe.c 
	xserver/dix    : Makefile.am Makefile.in Xserver.d devices.c 
	                 dispatch.c dixfonts.c dixutils.c enterleave.c 
	                 eventconvert.c events.c extension.c gc.c 
	                 getevents.c globals.c inpututils.c main.c 
	                 pixmap.c privates.c property.c protocol.txt 
	                 swaprep.c swapreq.c window.c 
	xserver/doc    : Makefile.in Xserver-spec.xml 
	xserver/doc/dtrace: Makefile.in 
	xserver/dri3   : Makefile.in dri3.c dri3.h dri3_priv.h 
	                 dri3_request.c dri3_screen.c 
	xserver/exa    : Makefile.in exa.c exa_priv.h exa_render.c 
	                 exa_unaccel.c 
	xserver/fb     : Makefile.am Makefile.in fb.h fbarc.c fbbits.c 
	                 fbbits.h fbblt.c fbbltone.c fbcopy.c fbgc.c 
	                 fbgetsp.c fbglyph.c fbimage.c fbline.c 
	                 fboverlay.c fbpict.c fbpict.h fbpixmap.c 
	                 fbpoint.c fbscreen.c fbseg.c fbsetsp.c 
	                 fbsolid.c fbwindow.c wfbrename.h 
	xserver/glamor : Makefile.am Makefile.in glamor.c glamor.h 
	                 glamor_copy.c glamor_core.c glamor_debug.h 
	                 glamor_egl.c glamor_egl.h glamor_egl_stubs.c 
	                 glamor_eglmodule.c glamor_fbo.c 
	                 glamor_gradient.c glamor_image.c glamor_priv.h 
	                 glamor_program.c glamor_rects.c glamor_render.c 
	                 glamor_transfer.c glamor_utils.h glamor_vbo.c 
	                 glamor_xv.c 
	xserver/glx    : Makefile.am Makefile.in createcontext.c 
	                 extension_string.c extension_string.h 
	                 glxbyteorder.h glxcmds.c glxcmdsswap.c 
	                 glxcontext.h glxdri2.c glxdricommon.c 
	                 glxdricommon.h glxdriswrast.c glxext.c glxext.h 
	                 glxscreens.c glxscreens.h glxserver.h 
	                 indirect_program.c 
	                 indirect_texture_compression.c indirect_util.c 
	                 single2.c single2swap.c singlepix.c 
	                 singlepixswap.c unpack.h xfont.c 
	xserver/hw     : Makefile.in 
	xserver/hw/dmx : Makefile.in dmx.c dmxdpms.c dmxdpms.h 
	                 dmxextension.c dmxinit.c dmxpixmap.c dmxprop.c 
	                 dmxscrinit.c 
	xserver/hw/dmx/config: Makefile.in dmxparse.c 
	xserver/hw/dmx/config/man: Makefile.in dmxtodmx.man vdltodmx.man 
	                           xdmxconfig.man 
	xserver/hw/dmx/doc: Makefile.in 
	xserver/hw/dmx/doxygen: Makefile.in 
	xserver/hw/dmx/examples: Makefile.in ev.c 
	xserver/hw/dmx/glxProxy: Makefile.in glxcmds.c glxcmdsswap.c 
	                         glxcontext.h glxext.c glxscreens.h 
	xserver/hw/dmx/input: Makefile.am Makefile.in dmxarg.c 
	                      dmxinputinit.c 
	xserver/hw/dmx/man: Makefile.in Xdmx.man 
	xserver/hw/kdrive: Makefile.am Makefile.in 
	xserver/hw/kdrive/ephyr: Makefile.am Makefile.in ephyr.c ephyr.h 
	                         ephyr_draw.c ephyr_glamor_glx.c 
	                         ephyr_glamor_xv.c ephyrcursor.c 
	                         ephyrinit.c ephyrvideo.c hostx.c 
	xserver/hw/kdrive/ephyr/man: Makefile.in Xephyr.man 
	xserver/hw/kdrive/src: Makefile.am Makefile.in kcmap.c kdrive.c 
	                       kdrive.h kinfo.c kinput.c kshadow.c kxv.c 
	                       kxv.h 
	xserver/hw/vfb : InitOutput.c Makefile.am Makefile.in 
	xserver/hw/vfb/man: Makefile.in Xvfb.man 
	xserver/hw/xfree86: Makefile.am Makefile.in sdksyms.sh 
	xserver/hw/xfree86/common: Makefile.am Makefile.in compiler.h 
	                           modeline2c.awk xf86.h 
	                           xf86AutoConfig.c xf86Bus.c xf86Bus.h 
	                           xf86Config.c xf86Config.h 
	                           xf86Configure.c xf86DGA.c xf86DPMS.c 
	                           xf86Events.c xf86Globals.c 
	                           xf86Helper.c xf86Init.c xf86Mode.c 
	                           xf86Module.h xf86Option.c xf86PM.c 
	                           xf86Priv.h xf86Privstr.h xf86Xinput.c 
	                           xf86pciBus.c xf86pciBus.h 
	                           xf86platformBus.c xf86platformBus.h 
	                           xf86str.h 
	xserver/hw/xfree86/ddc: Makefile.in 
	xserver/hw/xfree86/dixmods: Makefile.in glxmodule.c 
	xserver/hw/xfree86/doc: Makefile.in ddxDesign.xml 
	xserver/hw/xfree86/dri: Makefile.in dri.c dri.h xf86dri.c 
	xserver/hw/xfree86/dri2: Makefile.in dri2.c dri2ext.c 
	xserver/hw/xfree86/dri2/pci_ids: Makefile.in i965_pci_ids.h 
	                                 radeonsi_pci_ids.h 
	xserver/hw/xfree86/drivers: Makefile.in 
	xserver/hw/xfree86/drivers/modesetting: Makefile.am Makefile.in 
	                                        dri2.c driver.c driver.h 
	                                        drmmode_display.c 
	                                        drmmode_display.h 
	                                        modesetting.man 
	                                        pageflip.c present.c 
	                                        vblank.c 
	xserver/hw/xfree86/exa: Makefile.in examodule.c 
	xserver/hw/xfree86/exa/man: Makefile.in exa.man 
	xserver/hw/xfree86/fbdevhw: Makefile.in fbdevhw.c 
	xserver/hw/xfree86/fbdevhw/man: Makefile.in fbdevhw.man 
	xserver/hw/xfree86/glamor_egl: Makefile.in glamor_xf86_xv.c 
	xserver/hw/xfree86/i2c: Makefile.in 
	xserver/hw/xfree86/int10: Makefile.in 
	xserver/hw/xfree86/loader: Makefile.am Makefile.in loader.c 
	                           loader.h loaderProcs.h loadmod.c 
	xserver/hw/xfree86/man: Makefile.in Xorg.man Xorg.wrap.man 
	                        Xwrapper.config.man xorg.conf.d.man 
	                        xorg.conf.man 
	xserver/hw/xfree86/modes: Makefile.in xf86Crtc.c xf86Crtc.h 
	                          xf86Cursors.c xf86DiDGA.c 
	                          xf86EdidModes.c xf86Modes.c 
	                          xf86RandR12.c xf86Rotate.c xf86cvt.c 
	                          xf86gtf.c 
	xserver/hw/xfree86/os-support: Makefile.in xf86_OSlib.h 
	xserver/hw/xfree86/os-support/bsd: Makefile.am Makefile.in 
	                                   bsd_apm.c bsd_init.c 
	                                   bsd_kqueue_apm.c 
	xserver/hw/xfree86/os-support/bus: Makefile.in Pci.h Sbus.c 
	                                   xf86Pci.h xf86Sbus.h 
	xserver/hw/xfree86/os-support/hurd: Makefile.in 
	xserver/hw/xfree86/os-support/linux: Makefile.am Makefile.in 
	                                     lnx_agp.c lnx_apm.c 
	                                     lnx_init.c lnx_platform.c 
	                                     lnx_video.c 
	xserver/hw/xfree86/os-support/linux/int10/vm86: linux_vm86.c 
	xserver/hw/xfree86/os-support/misc: Makefile.in SlowBcopy.c 
	xserver/hw/xfree86/os-support/shared: posix_tty.c 
	xserver/hw/xfree86/os-support/solaris: Makefile.in sun_apm.c 
	xserver/hw/xfree86/os-support/stub: Makefile.in 
	xserver/hw/xfree86/parser: Device.c Makefile.am Makefile.in 
	                           OutputClass.c scan.c xf86Parser.h 
	xserver/hw/xfree86/ramdac: Makefile.am Makefile.in xf86Cursor.h 
	                           xf86HWCurs.c 
	xserver/hw/xfree86/shadowfb: Makefile.am Makefile.in 
	xserver/hw/xfree86/utils: Makefile.in 
	xserver/hw/xfree86/utils/cvt: Makefile.in 
	xserver/hw/xfree86/utils/gtf: Makefile.in gtf.c 
	xserver/hw/xfree86/utils/man: Makefile.in cvt.man gtf.man 
	xserver/hw/xfree86/vbe: Makefile.in 
	xserver/hw/xfree86/vgahw: Makefile.in 
	xserver/hw/xfree86/x86emu: Makefile.in debug.c sys.c 
	xserver/hw/xfree86/x86emu/x86emu: debug.h types.h 
	xserver/hw/xfree86/xkb: Makefile.in 
	xserver/hw/xnest: Init.c Makefile.am Makefile.in Screen.c 
	xserver/hw/xnest/man: Makefile.in Xnest.man 
	xserver/hw/xquartz: Makefile.in X11Application.m darwin.c 
	                    keysym2ucs.c keysym2ucs.h quartz.c 
	                    quartzKeyboard.c 
	xserver/hw/xquartz/GL: Makefile.in visualConfigs.c 
	xserver/hw/xquartz/bundle: Makefile.in 
	xserver/hw/xquartz/mach-startup: Makefile.am Makefile.in 
	xserver/hw/xquartz/man: Makefile.in Xquartz.man 
	xserver/hw/xquartz/pbproxy: Makefile.in 
	xserver/hw/xquartz/xpr: Makefile.in x-hash.c 
	xserver/hw/xwayland: Makefile.am Makefile.in xwayland-cursor.c 
	                     xwayland-glamor-xv.c xwayland-glamor.c 
	                     xwayland-input.c xwayland-output.c 
	                     xwayland-shm.c xwayland.c xwayland.h 
	xserver/hw/xwin: InitInput.c InitOutput.c Makefile.am 
	                 Makefile.in win.h winauth.c winblock.c 
	                 wincreatewnd.c wincursor.c windialogs.c 
	                 winengine.c winerror.c winglobals.c 
	                 winglobals.h winkeyhook.c winmultiwindowicons.c 
	                 winmultiwindowwm.c winprefs.c winprocarg.c 
	                 winrandr.c winscrinit.c winshadddnl.c 
	                 winshadgdi.c wintrayicon.c winvalargs.c 
	                 winwindow.h winwndproc.c 
	xserver/hw/xwin/dri: Makefile.in 
	xserver/hw/xwin/glx: Makefile.am Makefile.in glshim.c glthunk.c 
	                     indirect.c indirect.h wgl_ext_api.c 
	                     winpriv.c 
	xserver/hw/xwin/man: Makefile.in XWin.man XWinrc.man 
	xserver/hw/xwin/winclipboard: Makefile.in wndproc.c xevents.c 
	                              xwinclip.man 
	xserver/include: Makefile.am Makefile.in dix-config.h.in dix.h 
	                 dixstruct.h do-not-use-config.h.in events.h 
	                 eventstr.h extinit.h extnsionst.h gcstruct.h 
	                 globals.h glx_extinit.h inputstr.h list.h 
	                 misc.h os.h pixmap.h pixmapstr.h privates.h 
	                 property.h protocol-versions.h scrnintstr.h 
	                 xkbsrv.h xorg-config.h.in xorg-server.h.in 
	                 xserver_poll.h 
	xserver/man    : Makefile.in Xserver.man 
	xserver/mi     : Makefile.in miarc.c mibitblt.c mieq.c 
	                 miexpose.c migc.c migc.h miinitext.c misprite.c 
	xserver/miext  : Makefile.in 
	xserver/miext/damage: Makefile.in damage.c damagestr.h 
	xserver/miext/rootless: Makefile.in 
	xserver/miext/shadow: Makefile.am Makefile.in shadow.c shadow.h 
	                      shafb4.c shafb8.c shiplan2p4.c 
	                      shiplan2p8.c shpacked.c shplanar.c 
	                      shplanar8.c shrotate.c shrotpack.h 
	                      shrotpackYX.h 
	xserver/miext/sync: Makefile.in misync.c misyncstr.h 
	xserver/os     : Makefile.in WaitFor.c auth.c backtrace.c 
	                 client.c connection.c inputthread.c io.c log.c 
	                 mitauth.c oscolor.c osdep.h osinit.c ospoll.c 
	                 timingsafe_memcmp.c utils.c xdmcp.c 
	xserver/present: Makefile.am Makefile.in present.c present.h 
	                 present_event.c present_fence.c present_priv.h 
	                 present_request.c present_screen.c 
	xserver/pseudoramiX: Makefile.in 
	xserver/randr  : Makefile.am Makefile.in randr.c randrstr.h 
	                 rrcrtc.c rrdispatch.c rrmode.c rrmonitor.c 
	                 rroutput.c rrproperty.c rrprovider.c rrscreen.c 
	                 rrsdispatch.c rrxinerama.c 
	xserver/record : Makefile.in record.c 
	xserver/render : Makefile.in animcur.c glyph.c mirect.c 
	                 picture.c picturestr.h render.c 
	xserver/test   : Makefile.am Makefile.in fixes.c hashtabletest.c 
	                 input.c list.c misc.c signal-logging.c 
	                 simple-xinit.c string.c touch.c xfree86.c 
	                 xtest.c 
	xserver/test/scripts: run-piglit.sh xephyr-glamor-piglit.sh 
	                      xinit-piglit-session.sh xvfb-piglit.sh 
	xserver/test/xi1: protocol-xchangedevicecontrol.c 
	xserver/test/xi2: protocol-common.c protocol-common.h 
	                  protocol-eventconvert.c 
	                  protocol-xigetclientpointer.c 
	                  protocol-xigetselectedevents.c 
	                  protocol-xipassivegrabdevice.c 
	                  protocol-xiquerydevice.c 
	                  protocol-xiquerypointer.c 
	                  protocol-xiqueryversion.c 
	                  protocol-xiselectevents.c 
	                  protocol-xisetclientpointer.c 
	                  protocol-xiwarppointer.c xi2.c 
	xserver/xfixes : Makefile.in cursor.c region.c saveset.c 
	                 select.c xfixes.c 
	xserver/xkb    : Makefile.in XKBGAlloc.c XKBMAlloc.c XKBMisc.c 
	                 ddxLoad.c xkb.c xkbDflts.h xkbInit.c 
	                 xkbPrKeyEv.c xkbSwap.c 
Added files:
	xserver        : README.md meson_options.txt 
	xserver/glamor : glamor_egl_ext.h 
	xserver/glx    : vnd_dispatch_stubs.c vndcmds.c vndext.c 
	                 vndserver.h vndservermapping.c 
	                 vndservervendor.c vndservervendor.h 
	xserver/hw/xfree86/common: xf86Build.sh xf86MatchDrivers.h 
	xserver/hw/xfree86/loader: symbol-test.c 
	xserver/hw/xfree86/ramdac: xf86CursorRD.c 
	xserver/hw/xfree86/shadowfb: shadowfb.c 
	xserver/hw/xwayland: xwayland-glamor-eglstream.c 
	                     xwayland-glamor-gbm.c xwayland-present.c 
	xserver/include: glxvndabi.h xorg-config.h.meson.in 
	                 xorg-server.h.meson.in xwayland-config.h.in 
	                 xwayland-config.h.meson.in 
	                 xwin-config.h.meson.in 
	xserver/miext/shadow: sh3224.c 
	xserver/present: present_execute.c present_scmd.c 
	                 present_vblank.c present_wnmd.c 
	xserver/randr  : rrlease.c 
	xserver/test   : test_xkb.c tests-common.c tests-common.h 
	                 tests.c tests.h 
	xserver/test/bigreq: request-length.c 
	xserver/test/sync: sync.c 
Removed files:
	xserver        : README 
	xserver/Xext   : dpmsstubs.c 
	xserver/dix    : ffs.c 
	xserver/fb     : fb24_32.c fb24_32.h 
	xserver/hw/dmx/input: lnx-keyboard.c lnx-keyboard.h lnx-ms.c 
	                      lnx-ms.h lnx-ps2.c lnx-ps2.h 
	xserver/hw/kdrive/ephyr: os.c 
	xserver/hw/kdrive/fake: Makefile.am fake.c fake.h fakeinit.c 
	                        kbd.c mouse.c os.c 
	xserver/hw/kdrive/fbdev: Makefile.am fbdev.c fbdev.h fbinit.c 
	xserver/hw/kdrive/linux: Makefile.am evdev.c keyboard.c linux.c 
	                         mouse.c ms.c ps2.c tslib.c 
	xserver/hw/kdrive/src: kmode.c 
	xserver/hw/xfree86/drivers/modesetting: sh3224.c sh3224.h 
	xserver/hw/xfree86/loader: os.c 
	xserver/hw/xfree86/os-support/bsd: bsd_ev56.c 
	xserver/hw/xfree86/os-support/linux: lnx_ev56.c 
	xserver/hw/xfree86/ramdac: xf86Cursor.c 
	xserver/hw/xfree86/shadowfb: shadow.c 
	xserver/include: kdrive-config.h.in 
	xserver/miext/shadow: shalloc.c 
	xserver/test   : xkb.c 
	xserver/test/xi1: Makefile.am 
	xserver/test/xi2: Makefile.am 

Log message:
Update to xserver 1.20.5. Tested by jsg@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 02:05:17

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:34:40

Modified files:
	devel/desktop-file-utils: Makefile distinfo 
	devel/desktop-file-utils/patches: patch-src_install_c 
	                                  patch-src_update-desktop-database_c 
	                                  patch-src_validator_c 
	devel/desktop-file-utils/pkg: PLIST 
Removed files:
	devel/desktop-file-utils/patches: patch-src_keyfileutils_c 
	                                  patch-src_mimeutils_c 

Log message:
Update to desktop-file-utils-0.24.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:40:18

Modified files:
	security/libtasn1: Makefile distinfo 

Log message:
Update to libtasn1-4.14.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:46:23

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/pkg: PLIST 

Log message:
Update to glib2-2.60.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:47:40

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.197.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:48:18

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.207.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:48:38

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.680.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:51:11

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-platform_gsutil_gslib_commands_config_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-255.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:52:58

Modified files:
	www/py-bokeh   : Makefile distinfo 
	www/py-bokeh/pkg: PLIST 

Log message:
Update to py-bokeh-1.3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:53:32

Modified files:
	sysutils/govmomi: Makefile distinfo 

Log message:
Update to govc-0.21.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:55:17

Modified files:
	security/gnutls: Makefile distinfo 
	security/gnutls/pkg: PLIST 

Log message:
Update to gnutls-3.6.9.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/27 03:55:46

Modified files:
	usr.sbin/ldomctl: ldomctl.8 
	usr.sbin/ldomd : Makefile ldomd.8 
Added files:
	usr.sbin/ldomd : ldom.conf.5 

Log message:
Move configuration format into ldom.conf(5)

ldomctl(8) contains the entire format describing logical domain
configurations loaded with that tool.  Entangle control commands and config
options by putting the latter into its own page.

The config options' descriptions stayed the same, only the EXAMPLE section
gained a bit wording.

Convert mdoc(7) macros `Ic =' to `Ns = Ns' and `Ic \&{ ... Ic \&}' to
`Brq ...' while here.

More improvements will follow in-tree.

OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 03:58:45

Modified files:
	sysutils/terraform/provider-heroku: Makefile distinfo 
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/07/27 04:35:56

Modified files:
	distrib/sets/lists/xbase: md.amd64 md.arm64 md.armv7 md.hppa 
	                          md.i386 md.loongson md.luna88k 
	                          md.macppc md.sgi md.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/27 04:41:49

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 05:27:55

Modified files:
	x11/gnome/libdazzle: Makefile distinfo 

Log message:
Update to libdazzle-3.32.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/07/27 06:58:08

Modified files:
	x11/vlc        : Makefile 

Log message:
Use CONFIGURE_STYLE=autoreconf

Switch "find | xargs rm" to "find -delete" while here.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/27 07:20:12

Modified files:
	sys/dev/ic     : nvme.c 

Log message:
Make target numbers match the NVMe namespace identifiers.  This fixes booting
from nvme(4) on sparc64 as the OBP device paths contain namespace identifiers
that we end up matching to targets when trying to find the device we booted
from.  Also results in (slightly) cleaner code and less confusion as the
numbers now match instead of being off-by-one.

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/27 07:40:42

Modified files:
	usr.bin/mandoc : main.c tag.c tag.h 

Log message:
Move two more output state variables into the new struct outstate.
Also, move setting of tag_files.tagname into tag_init().
No functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/27 07:54:13

Modified files:
	net/ldns       : Makefile distinfo 
Added files:
	net/ldns/patches: patch-examples_ldns-nsec3-hash_c 
	net/ldns/pkg   : DESCR-drill DESCR-main DESCR-utils PLIST-drill 
	                 PLIST-main PLIST-utils 
Removed files:
	net/ldns       : Makefile.inc 
	net/ldns/drill : Makefile 
	net/ldns/drill/patches: patch-drill_root_c 
	net/ldns/drill/pkg: DESCR PLIST 
	net/ldns/libldns: Makefile 
	net/ldns/libldns/patches: patch-Makefile_in 
	net/ldns/libldns/pkg: DESCR PLIST 
	net/ldns/utils : Makefile 
	net/ldns/utils/patches: patch-examples_configure_ac 
	                        patch-examples_ldns-signzone_c 
	net/ldns/utils/pkg: DESCR PLIST 

Log message:
update to ldns-1.7.1

the build scaffolding changed so that it's easier to build everything at
once, so merge the sub-ports into a single build with multipackages.
dependent ports (net/adsuck net/p5-Zonemaster/ldns security/opendnssec)
will be synced shortly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/27 07:54:41

Modified files:
	net/adsuck     : Makefile 
	net/p5-Zonemaster/ldns: Makefile 
	security/opendnssec: Makefile 

Log message:
handle packaging changes in net/ldns


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/07/27 07:59:03

Modified files:
	usr.sbin/ldomctl: ldomctl.8 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/27 08:01:45

Modified files:
	net/isc-bind   : Makefile 

Log message:
the geoip flavour requires COMPILER=base-clang ports-gcc / COMPILER_LANGS=c


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/27 08:10:21

Modified files:
	etc/mtree      : 4.4BSD.dist 

Log message:
man5/sparc64 is now required (on all arch)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/27 08:11:45

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/27 09:16:01

Modified files:
	lang/php       : Makefile 
	lang/php/7.1   : Makefile 
	lang/php/7.1/patches: patch-sapi_fpm_www_conf_in 
	lang/php/7.2   : Makefile 
	lang/php/7.2/patches: patch-sapi_fpm_www_conf_in 
	lang/php/7.3   : Makefile 
	lang/php/7.3/patches: patch-sapi_fpm_www_conf_in 

Log message:
add a note to the sample php-fpm.conf files that if using TCP (rather than
the patched default of a unix socket), the fpm port should never be exposed
to the internet.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 09:37:03

Modified files:
	x11/gnome/grilo-plugins: Makefile 

Log message:
Missong BDEP on devel/gperf.

reporte by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/27 09:47:15

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.197.
(forgot to commit this with sysutils/awscli)


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/07/27 09:47:35

Modified files:
	graphics/glslang: Makefile 
	graphics/spirv-tools: Makefile 
	graphics/vulkan-loader: Makefile 

Log message:
set COMPILER to base-clang ports-gcc for vulkan ports, fixing build on
powerpc. No revision bump because packages never built on base-gcc
archs.

diffs and build testing on ppc from cwen@, thanks!
ok jca@ for vulkan-loader diff
ok sthen@ for spirv-tools and glslang diff


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/27 10:36:37

Modified files:
	sysutils/psftools: Makefile distinfo 
	sysutils/psftools/pkg: PLIST 

Log message:
Update psftools to 1.0.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/27 10:53:07

Modified files:
	misc/dialog    : Makefile distinfo 
	misc/dialog/pkg: PLIST 

Log message:
Update dialog to 1.3-20190724.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/27 13:31:44

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/27 15:15:36

Modified files:
	sys/kern       : vfs_lookup.c 
	sys/sys        : namei.h 

Log message:
Move unveil prototypes from vfs_lookup.c to namei.h for functions
implemented in kern_unveil.c.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ratchov@cvs.openbsd.org	2019/07/27 17:59:51

Modified files:
	www/chromium   : Makefile 
	www/chromium/files: sndio_output.cc 

Log message:
Fix audio-video synchronisation bug revealed by last commit.

A/V synchronization was caused by confusion between bytes and samples
in the hardware delay calculation. Bug reported and fix tested by
Tobias Kortkamp and robert@, thanks.

ok robert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/07/28 00:57:20

Modified files:
	sysutils/u-boot: Makefile distinfo 
	sysutils/u-boot/patches: patch-configs_firefly-rk3399_defconfig 
	sysutils/u-boot/pkg: PFRAG.aarch64 PFRAG.arm 
Added files:
	sysutils/u-boot/patches: 
	                         patch-configs_rockpro64-rk3399_defconfig 
	                         patch-lib_efi_loader_efi_boottime_c 
Removed files:
	sysutils/u-boot/patches: patch-arch_arm_dts_rk3399-firefly_dts 
	                         patch-include_efi_h 
	                         patch-lib_efi_loader_efi_memory_c 

Log message:
update to U-Boot 2019.07

Sinovoip_BPI_M2_Plus target was renamed to bananapi_m2_plus_h3
am335x_boneblack target replaced by am335x_evm
build rockpro64-rk3399 target as a few people have hardware (untested)

Add back flushing/disabling caches for armv7 efi which was removed in
2019.04 and later and is required to load kernels on i.MX 6.
The UEFI specification states that non-architectural caches
(not controlled by cp15 operations) should be disabled during boot time
services.  On i.MX 6 there is a PL310 L2 cache which U-Boot leaves on,
which breaks loading kernels even after we disable all the cp15
controlled caches in bootarm.efi.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/28 01:32:34

Modified files:
	net/py-boto3   : Makefile 

Log message:
Tighten RDEP on py-botocore.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/07/28 01:33:03

Modified files:
	sysutils/py-elasticsearch-curator: Makefile 

Log message:
Don't hardcode ',python3', use MODPY_FLAVOR.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ratchov@cvs.openbsd.org	2019/07/28 02:45:00

Modified files:
	www/chromium   : Makefile 
	www/chromium/files: sndio_input.cc sndio_output.cc 

Log message:
Fix confusion in time units breaking audio/video synchronization.

ok robert


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/07/28 03:44:10

Modified files:
	usr.bin/sndiod : defs.h 
	usr.bin/aucat  : defs.h 

Log message:
16 channels is not enough to handle all common uaudio(4) devices, so
crank the maximum channels number to 64.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/28 05:01:10

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
add newer intel nic virtual function ids


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/28 05:02:42

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 06:47:56

Modified files:
	sys/arch/octeon/stand/rdboot: cmd.c 

Log message:
Fix trimming of newline.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 06:57:09

Modified files:
	sys/arch/octeon/dev: octdwctwo.c 

Log message:
Put DWC2 controller into reset mode on (pseudo-)shutdown to make
kernel handover safer.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 07:01:43

Modified files:
	sys/arch/octeon/conf: BOOT 

Log message:
With the DWC2 reset in place, dwctwo(4) should be safe to use
in the bootloader.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/28 07:12:58

Modified files:
	usr.bin/mandoc : main.c 

Log message:
Improve structure, no functional change:
Unify code to process one single input file
and move it into a dedicated new function.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 07:25:25

Modified files:
	gnu/llvm/lib/Target/Mips/AsmParser: MipsAsmParser.cpp 

Log message:
Address a few issues in the expansion of li.d and li.s:
- In the N64 mode, properly load the whole immediate value
in the destination register even if the lower 32 bits are zero.
- Ensure correct alignment of memory operands.
- Fix the endianess of memory operands.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/28 08:51:07

Modified files:
	usr.sbin/ldomctl: config.c ldomctl.h parse.y 

Log message:
Add support for configuring static direct I/O.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/28 08:55:59

Modified files:
	usr.sbin/ldomctl: config.c 

Log message:
Delete all CPUs from the primary and add back the number that we want to
keep.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/28 09:30:45

Modified files:
	usr.sbin/ldomctl: Makefile 
	usr.sbin/ldomd : Makefile 
Added files:
	usr.sbin/ldomctl: ldom.conf.5 
Removed files:
	usr.sbin/ldomd : ldom.conf.5 

Log message:
Move ldom.conf.5 to ldomctl

ldomctl(8)/ldomd(8) differs from the usual control/daemon setup since
ldom.conf(5) is never read by the daemon itself but the control program
only, so put it where it belongs.

While here, mention eeprom(8) for a list of OpenPROM variables.

Move prompted by kettenis
Positive feedback deraadt, "go ahead" kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/28 09:32:45

Modified files:
	usr.sbin/ldomctl: ldom.conf.5 

Log message:
Use imperative present tense consistently


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 09:41:52

Modified files:
	distrib/octeon/boot: Makefile 
	etc/etc.octeon : disktab 
	sys/arch/octeon/conf: BOOT 

Log message:
Add a dedicated ramdisk entry for the octeon bootloader to reduce
the size of the "boot" file.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 09:45:30

Modified files:
	distrib/octeon : Makefile 
	etc/etc.octeon : Makefile.inc 
	sys/arch/octeon: Makefile 
	sys/arch/octeon/stand: Makefile 
	sys/arch/octeon/stand/rdboot: Makefile 

Log message:
Link octeon bootloader to the build.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 09:49:18

Modified files:
	distrib/octeon/ramdisk: install.md 

Log message:
Add octeon bootloader to the set of files that get copied
to the boot partition.

To use the bootloader, the firmware has to be configured to load
file "boot" instead of "bsd".

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 09:51:23

Modified files:
	distrib/sets/lists/base: md.octeon 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/28 10:09:07

Modified files:
	distrib/notes/octeon: install 

Log message:
Update instructions to use the bootloader.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/07/28 11:37:40

Modified files:
	usr.sbin/ldomctl: ldom.conf.5 

Log message:
Add missing article, use Dq not literal "


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/28 12:22:35

Modified files:
	usr.bin/mandoc : main.c 

Log message:
In man(1) mode, do the search for each name independently, and
show the results in the order of the command line arguments.
Implemented by separating the code for man(1) and apropos(1)
in the main() program.
Surprisingly, the number of lines of code remains unchanged.
Issue reported by deraadt@, additional input from millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/28 12:35:09

Modified files:
	usr.bin/mandoc : main.c 

Log message:
There is no point in pledge(2)ing literally the same list twice,
so delete the second copy.  No functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/28 12:50:01

Modified files:
	usr.sbin/ldomctl: ldom.conf.5 

Log message:
Document the iodevice keyword.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/28 13:41:02

Modified files:
	usr.bin/mandoc : main.c 

Log message:
Simplification, no functional change:
Delete the "argc" argument from fs_search() which is now always 1,
and move error reporting to the main() program where it is more
logically placed and easier to see.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/28 14:41:04

Modified files:
	usr.sbin/ldomctl: ldom.conf.5 

Log message:
minor markup polishing and typo fixes; OK kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/07/28 17:18:33

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm(4): join some short lines of code

KNF, no code change.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/28 18:40:49

Modified files:
	sys/dev/pci    : files.pci 
Added files:
	sys/dev/pci    : if_iavf.c 

Log message:
Add iavf(4), a driver for Intel Ethernet Adaptive Virtual Functions.
This should work with SR-IOV virtual functions of Intel 700 series and
newer ethernet controllers.  Written based on ixl(4) and the AVF
Hardware Architecture Specification released by Intel.

ok dlg@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/07/28 20:08:32

Modified files:
	regress/sys/kern/stackpivot: Makefile pivot.h 

Log message:
regress: Add mips64 stack pivot asm for octeon in stackpivot tests


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/28 23:00:13

Modified files:
	sys/dev/pci    : if_ixl.c 

Log message:
remove some VF bits now that iavf(4) exists

ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/29 03:04:36

Modified files:
	bin/csh        : csh.1 

Log message:
Remove several .Xrs to section 2 and 3 that help little.
Instead, link to the explanation of octal permission masks in chmod(2)
directly from the description of "umask", and to ksh(1) from SEE ALSO.
Fixing an oddity pointed out by guenther@; OK jmc@ millert@.


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/07/29 04:06:55

Modified files:
	usr.bin/openssl: dgst.c 

Log message:
Moving variables into struct in openssl(1) dgst

First step to adapt openssl(1) dgst command to new option handling.
There is no functional changes by this diff, and just moving variables
into dgst_config struct.

ok bcook@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/07/29 04:41:29

Modified files:
	lang/duktape   : Makefile distinfo 
	lang/duktape/patches: patch-src_duk_config_h 

Log message:
Update duktape to 2.4.0 and switch HOMEPAGE and MASTER_SITES to HTTPS.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/29 04:46:06

Modified files:
	sys/dev/pci/drm: linux_reservation.c 

Log message:
dma-buf: Discard old fence_excl on retrying get_fences_rcu for realloc

From Chris Wilson
c947cf3e95839e9f449d8194fd15979e5ebc5f16 in linux 4.19.y/4.19.62
f5b07b04e5f090a85d1e96938520f2b2b58e4a8e in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/29 04:49:41

Modified files:
	sys/dev/pci/drm: linux_reservation.c 

Log message:
reduce the diff to linux


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/07/29 04:50:09

Modified files:
	sys/dev/pci    : if_iwn.c if_iwnreg.h if_iwnvar.h 
	sys/net80211   : ieee80211.c ieee80211_input.c ieee80211_mira.c 
	                 ieee80211_node.c ieee80211_node.h 
	                 ieee80211_output.c ieee80211_proto.c 
	                 ieee80211_proto.h ieee80211_var.h 

Log message:
Add support for 802.11n Tx aggregation to net80211 and the iwn(4) driver.

In particular, add Tx block ack session management to net80211, with
enough funcionality to support Tx aggregation on devices which perform
A-MPDU subframe scheduling in firmware.
Make use of the iwn(4) firmware Tx scheduler to build A-MPDUs.

net80211's QoS support code is now enabled and used by Tx aggregation.

A-MSDU frames inside A-MPDUs have been tested and work in principle.
For now, this feature is disabled because unfair TCP connection sharing
was observed during testing, where bursts of TCP Ack frames for a single
tcpbench(1) connection arriving in A-MSDUs made other TCP connections stall.
Switch off support for A-MSDUs inside A-MPDUs on the Rx side as well.

Tested on iwn chipsets 1000, 4965, 5100, 5300, 2200, 6200, 6205, 6300
(committed version of tested diff has all debug printfs removed)
tests/ok benno kmos mlarkin kevlo


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/29 05:07:40

Modified files:
	sys/dev/pci/drm/include/uapi/drm: i915_drm.h 

Log message:
drm/i915: Fix I915_EXEC_RING_MASK

From Chris Wilson
554f4253700e09d2b9ef7a133c68e32389a48c81 in linux 4.19.y/4.19.50
d90c06d57027203f73021bb7ddb30b800d65c636 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/29 06:04:31

Modified files:
	sys/dev/pci    : if_iavf.c 

Log message:
Shut down queues properly when bringing the interface down


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/29 06:35:19

Modified files:
	sys/kern       : vfs_lookup.c 

Log message:
When setting immutable flags on directories with chflags(1), calling
unveil(2) on a nonexisting file failed.  Ignore files that cannot
be created due to permissions.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/07/29 08:51:39

Modified files:
	sys/arch/amd64/stand/efiboot: efidev.c 

Log message:
Support disk write in efiboot.  Requested by deraadt.


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/07/29 09:19:03

Modified files:
	usr.bin/nc     : socks.c 

Log message:
Make proxy auth work with http 1.1 speaking webservers.
Diff from Alexander Koeppe format_c -AT- online -DOT- de, thanks.
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/29 09:39:35

Modified files:
	sysutils/exa   : Makefile distinfo 
	sysutils/exa/patches: patch-Cargo_toml 

Log message:
update sysutils/exa to 0.9.0

from Stephen Gregoratto


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/07/29 10:28:25

Modified files:
	sys/net        : if_gre.c 

Log message:
The IPv6 duplicate address detection may send a packet before the
gre tunnel is set up.  This could cause a panic.  In gre(4) reject
outgoing packets during that time window.  While there, count
interface errors and use generic unhandled_af().
bug reported by andreas at nullbyte dot se; OK dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/07/29 11:26:00

Modified files:
	share/man/man5 : acct.5 

Log message:
Add AUNVEIL bit to the acct(5) manpage since it's already being used by both
kernel and userland.

OK deraadt@ jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/29 12:17:43

Modified files:
	graphics/openscenegraph: Makefile 
Added files:
	graphics/openscenegraph/patches: 
	                                 patch-src_osgDB_ConvertBase64_cpp 
	                                 patch-src_osgPlugins_osgjs_Base64 
	                                 patch-src_osgPlugins_osgjs_Base64_cpp 

Log message:
openscenegraph: fix narrowing errors on archs where char is unsigned
by default (ppc, arm). While here, remove the forced use of C++11 on
ports-gcc archs.

OK pascal@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/29 14:23:41

Modified files:
	mail/s-nail    : Makefile distinfo 

Log message:
update to s-nail-14.9.14, from maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/07/29 15:44:26

Modified files:
	share/man/man5 : acct.5 

Log message:
Expand description of ac_flag values into a tagged list.
OK mestre@ jmc@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/07/29 16:33:26

Modified files:
	sys/arch/armv7/stand/efiboot: efidev.c 
	sys/arch/arm64/stand/efiboot: efidev.c 

Log message:
Support disk write in efiboot for armv7 and arm64.

ok patrick deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/29 17:14:06

Modified files:
	lib/libc/crypt : crypt_checkpass.3 
	lib/libc/sys   : execve.2 pledge.2 
	sys/kern       : kern_unveil.c 

Log message:
correct mispellings of EACCES; from Kris Katterjohn


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/29 20:55:48

Modified files:
	benchmarks/iozone: Makefile distinfo 
	benchmarks/iozone/patches: patch-src_current_libbif_c 
	                           patch-src_current_makefile 

Log message:
Update to iozone-3.487
Diff from wen heping. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/29 20:59:12

Modified files:
	converters/p5-Date-Tolkien-Shire-Data: Makefile distinfo 

Log message:
Update to p5-Date-Tolkien-Shire-Data-0.006


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/29 21:49:58

Modified files:
	lang/flang/flang: Makefile distinfo 
	lang/flang/libpgmath: Makefile distinfo 
	lang/flang/libpgmath/patches: patch-lib_x86_64_libm_amd_h 

Log message:
Update to the latest flang code. Note the minor bump to libflangrti.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/07/29 23:04:49

Modified files:
	usr.bin/ssh    : sshbuf.h sshbuf-misc.c 

Log message:
let sshbuf_find/cmp take a void* for the search/comparison
argument, instead of a u_char*. Saves callers needing to cast.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/07/29 23:41:21

Modified files:
	share/man/man5 : acct.5 

Log message:
remove uneeded macro in previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/29 23:50:20

Modified files:
	sys/dev/pci/drm: drm_drv.c 

Log message:
enable DRIVER and KMS debug messages when DRMDEBUG is defined
leave out CORE as it is quite noisy


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/07/30 00:21:23

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Previous version accidentally enabled VMM_DEBUG, so turn that off.

noticed by tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/07/30 03:23:36

Modified files:
	bin/ed         : ed.1 

Log message:
In addresses, consistently use "+" rather than ".+1".
Both have the same meaning, but the former is explicitly defined
in this manual page as "the next line" whereas the latter requires
combining various pieces of information for understanding.
Unification suggested and patch OK'ed by martijn@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/07/30 03:52:11

Modified files:
	print/py-relatorio: Makefile distinfo 

Log message:
update print/py-relatorio to 0.9.0

while here, switch HOMEPAGE to https

Announce: https://discuss.tryton.org/t/release-of-relatorio-0-9-0/1615

Relatorio is a templating library which provides a way to easily output several kinds of files but mainly OpenDocument.

This is a minor release that adds new features:
- Support out parameter of render
- Write opendocument stream directly to the ZipFile

ok kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/07/30 04:10:02

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Reorder some text in the windows & panes section and add some better
explanation of modes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/30 05:38:48

Modified files:
	security/gnutls: Makefile 

Log message:
changes to asm code in gnutls-3.6.9 result in the following error
on i386; link with -Wl,-z,notext for now (this knocks out a large chunk
of the ports tree). ok aja@

ld: error: can't create dynamic relocation R_386_32 against symbol: _gnutls_x86_cpuid_s in readonly segment; recompile object files with -fPIC or pass '-Wl,-z,notext' to allow text relocations in the output


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/30 06:11:42

Modified files:
	sys/dev/pci    : if_msk.c 

Log message:
push rxed packets to the stack once per interrupt (per port)

pushing to the stack on every packet completion interacts badly
with the backpressure mechanism in ifiq_input when you rx more than
8 or so packets per interrupt.

while here move to ifiq_input and apply backpressure before we start
dropping in software.

the problem was found by olivier taibi and reported on bugs@
i tested this on an overdrive 1000 which uses msk for its onboard nic


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/30 06:48:27

Modified files:
	sbin/dhclient  : dhclient.8 dhclient.c dhcpd.h kroute.c 

Log message:
Use AUTOCONF4 flag. Set the flag on startup. But if the flag is
subsequently reset by ifconfig(8) then stop applying leases. If the
flag is set after being reset then get a new lease and carry on.

Clean up man page verbiage and add AUTOCONF4 description.

ok benno@, man page formatting ok ingo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/30 07:09:21

Modified files:
	games/flare    : Makefile distinfo 
	games/flare/pkg: PLIST-data PLIST-main 

Log message:
update to flare-1.11


CVSROOT:	/cvs
Module name:	www
Changes by:	danj@cvs.openbsd.org	2019/07/30 07:32:32

Modified files:
	faq/ports      : testing.html 

Log message:
Add link for portslogger(1)

From Alex Naumov


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/30 07:41:14

Modified files:
	textproc/mupdf : Makefile distinfo 
	textproc/mupdf/patches: patch-Makerules patch-Makethird 
	                        patch-docs_man_mupdf_1 
	                        patch-platform_x11_pdfapp_c 
	                        patch-platform_x11_x11_main_c 
	                        patch-source_fitz_load-jpx_c 
	                        patch-source_helpers_pkcs7_pkcs7-openssl_c 
	                        patch-source_tools_mudraw_c 
	                        patch-source_tools_pdfclean_c 
	                        patch-source_tools_pdfextract_c 
	                        patch-source_tools_pdfshow_c 
	textproc/mupdf/pkg: PLIST 

Log message:
update to MuPDF 1.16.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/30 07:41:37

Modified files:
	textproc/zathura/plugins/mupdf: Makefile 
Added files:
	textproc/zathura/plugins/mupdf/patches: 
	                                        patch-zathura-pdf-mupdf_search_c 

Log message:
patch zathura-pdf-mupdf to cope with MuPDF api change


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/30 07:44:00

Modified files:
	libexec/reorder_kernel: reorder_kernel.sh 

Log message:
shorten the failure message, it should not wrap a line.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/30 08:39:47

ports/www/ttyd/patches

Update of /cvs/ports/www/ttyd/patches
In directory cvs.openbsd.org:/tmp/cvs-serv97021/patches

Log Message:
Directory /cvs/ports/www/ttyd/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/30 09:05:39

Modified files:
	www/ttyd       : Makefile distinfo 
Added files:
	www/ttyd/patches: patch-src_server_c patch-src_server_h 
	                  patch-src_utils_c 

Log message:
update to ttyd-1.5.1. patch to backout an upstream commit which results in
unlocking an unlocked mutex, fatal with our libpthread (ticket opened upstream).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/30 09:05:45

Modified files:
	sysutils/diffoscope: Makefile distinfo 

Log message:
Update to diffoscope-120


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/07/30 09:17:47

Modified files:
	lang/cython    : Makefile distinfo 

Log message:
Update to cython 0.29.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/30 09:59:48

Modified files:
	textproc/mupdf : Makefile 

Log message:
build MuPDF with gcc on armv7, problem reported by adr at sdf.org in
https://marc.info/?l=openbsd-ports&m=156448467232400&w=2 - Bus error at
runtime - suspect possible alignment issue?


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/30 10:51:09

Modified files:
	geo/mapcache   : Makefile distinfo 
	geo/mapcache/pkg: PLIST 

Log message:
Update to mapcache 1.8.0.

See https://mapserver.org/development/changelog/mapcache/changelog-1-8.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/07/30 10:57:41

Modified files:
	www/midori     : Makefile distinfo 
	www/midori/pkg : PLIST 

Log message:
Update to midori 9.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	kettenis@cvs.openbsd.org	2019/07/30 11:55:47

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/pkg: PFRAG.aarch64 

Log message:
The rk3399 targets switched to using TPL so include that into the images.

Don't build rockpro64-rk3399 for now since it needs LPDDR4 support that
didn't make it into U-Boot 2019.07.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/30 12:08:28

Modified files:
	sys/arch/arm64/arm64: machdep.c 

Log message:
Make sure the virtual addresses that are used for EFI runtime services
fit into the 39-bit address space that we currently use for the runtime
mappings.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/07/30 12:22:19

Modified files:
	fonts/font-awesome: Makefile distinfo 

Log message:
Update font-awesome to 5.10.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/30 13:03:58

Modified files:
	sys/arch/arm64/dev: acpipci.c agintc.c 

Log message:
Seems the Amppere eMAG has a silicon big where the number of writable bits
of the ICC_PMR_EL1 registers varies with the value being written.  Change the
value we write to probe the number of writable bits to a value that yields
the desired result.

Suggested by drahn@

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/30 13:59:08

Modified files:
	audio/mpg123   : Makefile distinfo 

Log message:
update to 1.25.11: fix a number of bugs found by OSS-Fuzz


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/30 15:41:47

Modified files:
	sys/dev/pci    : if_iavf.c 

Log message:
Update media type and status on link change events.  Since we don't have
any information about the actual media type (there might not even be one),
just pick an arbitrary type of the right speed.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/07/30 15:44:15

Modified files:
	sys/arch/arm64/dev: acpipci.c 

Log message:
Fix mapping of MSI sideband data when there are SMMU's present.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/30 15:45:19

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : iavf.4 

Log message:
basic man page for iavf(4)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/30 16:17:59

Modified files:
	lang/gcc/8     : Makefile distinfo 

Log message:
regen i386 ada bootstrap, I think I had messed up patching previously because
it was still not working on a new-realpath system.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/30 18:08:01

Modified files:
	lang/seed7     : Makefile distinfo 
	lang/seed7/pkg : PLIST 

Log message:
Update to seed7-20190714


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/07/30 18:14:10

Modified files:
	sbin/pdisk     : partition_map.c 

Log message:
Allow sbBlkCount to be less than the number of physical sectors on the
disk.

Fixes dealing with MacOS 9.2.2 formatted disk, allowing dual boot
again.

Problem reported and fix tested by Donovan Watteau on his B&W
G3. Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/07/30 19:27:34

Modified files:
	sys/dev/pci    : if_iavf.c 

Log message:
Actually set promisc modes based on the interface state


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/31 01:55:32

Modified files:
	games/gemrb    : Makefile 
	games/gemrb/files: baldurs_gate_1.cfg 
	games/gemrb/pkg: PLIST 
Added files:
	games/gemrb/patches: patch-gemrb_core_System_VFS_cpp 
	games/gemrb/pkg: README 

Log message:
- add README
- fix typo in files/baldurs_gate_1.cfg
- remove GameOverridePath option in files/baldurs_gate1.cfg
- backport fix from upstream for "Unable to create cache directory"

from Nam Nguyen with some tweaks by me.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/07/31 02:22:19

Modified files:
	share/man/man4 : iavf.4 

Log message:
uppercase Ethernet;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/07/31 02:23:48

Modified files:
	sbin/dhclient  : dhclient.8 

Log message:
space between macro arg and punctuation;


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/31 04:35:08

Modified files:
	sys/dev/pci/drm/amd/display/dc/dce110: dce110_hw_sequencer.c 

Log message:
drm/amd/display: Fill prescale_params->scale for RGB565

From Nicholas Kazlauskas
147137f86b5b72aea3af4edb2e66f10c0baa841e in linux 4.19.y/4.19.63
1352c779cb74d427f4150cbe779a2f7886f70cae in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/31 04:37:42

Modified files:
	sys/dev/pci/drm/amd/amdgpu: gmc_v9_0.c 

Log message:
drm/amdgpu/sriov: Need to initialize the HDP_NONSURFACE_BAStE

From Tiecheng Zhou
c242a531bb068c91bea7454353206330423ec1a6 in linux 4.19.y/4.19.63
fe2b5323d2c3cedaa3bf943dc7a0d233c853c914 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/31 04:39:48

Modified files:
	sys/dev/pci/drm/amd/display/dc/dce: dce_abm.c 

Log message:
drm/amd/display: Disable ABM before destroy ABM struct

From Paul Hsieh
6b1d2871fe369cb65f087cd300bad6af50764ac7 in linux 4.19.y/4.19.63
1090d58d4815b1fcd95a80987391006c86398b4c in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/31 04:41:57

Modified files:
	sys/dev/pci/drm/amd/amdkfd: kfd_mqd_manager_v9.c 

Log message:
drm/amdkfd: Fix a potential memory leak

From Oak Zeng
db64bc13944013357d231cbf9d1aee798d7b9892 in linux 4.19.y/4.19.63
e73390d181103a19e1111ec2f25559a0570e9fe0 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/31 04:44:30

Modified files:
	sys/dev/pci/drm/amd/amdkfd: kfd_device_queue_manager.c 

Log message:
drm/amdkfd: Fix sdma queue map issue

From Oak Zeng
210dfe6309112dd028bf06561b828a749b6e1169 in linux 4.19.y/4.19.63
065e4bdfa1f3ab2884c110394d8b7e7ebe3b988c in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/31 04:47:09

Modified files:
	sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm.c 

Log message:
drm/amd/display: Always allocate initial connector state state

From Nicholas Kazlauskas
11b4e9f3695c155f71cb2bc56d761284bf5e65b1 in linux 4.19.y/4.19.63
f04bee34d6e35df26cbb2d65e801adfd0d8fe20d in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/07/31 04:50:49

Modified files:
	sys/dev/pci/drm/amd/display/dc/dcn10: dcn10_hw_sequencer.c 

Log message:
drm/amd/display: fix compilation error

From Hariprasad Kelam
6a7047471073c2cf8e375b2fe5a71bacf9799973 in linux 4.19.y/4.19.63
88099f53cc3717437f5fc9cf84205c5b65118377 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2019/07/31 05:19:39

Modified files:
	distrib/luna88k/ramdisk: Makefile 

Log message:
Fix errors while building bsd.rd & minirootXX.fs on luna88k that is
caused by recent Makefile changes.

Confirmed by me, "sure" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/31 05:20:32

Modified files:
	mail/exim      : Makefile distinfo 

Log message:
security update to exim-4.92.1, from maintainer Renauld Allard
https://www.exim.org/static/doc/security/CVE-2019-13917.txt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/31 05:21:11

Modified files:
	mail/exim      : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
security update to exim-4.92.1, from maintainer Renauld Allard
https://www.exim.org/static/doc/security/CVE-2019-13917.txt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/31 05:24:36

Modified files:
	www/ttyd/patches: patch-src_server_h patch-src_utils_c 

Log message:
#include patches committed upstream


CVSROOT:	/cvs
Module name:	www
Changes by:	inoguchi@cvs.openbsd.org	2019/07/31 06:05:09

Modified files:
	.              : 66.html 

Log message:
Add libressl improvements


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/07/31 06:25:29

Modified files:
	.              : ftp.html 
	build          : Makefile 
	openbgpd       : ftp.html 

Log message:
OpenBGPD 6.5p1 just got released


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/07/31 06:35:28

Modified files:
	build/mirrors  : openbgpd-ftp.html.head 
	openbgpd       : ftp.html 

Log message:
Adjust the hardcoded version and release date of OpenBGPD 6.5p1.
Missed in previous commit.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/31 06:37:53

Added files:
	geo/qlandkartegt/patches: patch-src_CDeviceGPSD_cpp 

Log message:
fix for newer gpsd API
OK landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/31 06:38:04

Modified files:
	sys/arch/octeon/octeon: machdep.c 

Log message:
Fix kmem access on octeon. Currently, mem_layout lists segments that
were free after the kernel was loaded. The memory occupied by the kernel
image is not included. To let libkvm access the image through /dev/kmem,
return true from is_memory_range() if the physical address is within
the kernel.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/31 06:47:11

Modified files:
	security/gpa   : Makefile distinfo 
	security/gpa/pkg: PLIST 

Log message:
update to gpa-0.10.0, from Stefan Hagen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/31 07:10:48

Modified files:
	games/dmagnetic: Makefile distinfo 

Log message:
update to dMagetic-0.17, from maintainer/upstream


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/31 07:12:27

Modified files:
	devel/py-setuptools_scm: Makefile distinfo 
	devel/py-setuptools_scm/pkg: PLIST 

Log message:
Update devel/py-setuptools_scm 2.0.0 -> 3.3.3

Bring py-setuptools_scm up to the current version.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/07/31 07:14:28

Modified files:
	devel/pyflakes : Makefile distinfo 
	devel/pyflakes/pkg: PLIST 

Log message:
Update devel/pyflakes 1.5.0 -> 2.1.1

From Paco Esteban. Thank you!

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/31 07:30:28

Log message:
    C++ template library for function minimization.
    new dependency for mlpack update
    
    okay sthen@
    
    Status:
    
    Vendor Tag:	espie
    Release Tags:	ports
    
    N ports/math/ensmallen/Makefile
    N ports/math/ensmallen/distinfo
    N ports/math/ensmallen/pkg/DESCR
    N ports/math/ensmallen/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/07/31 07:31:08

Modified files:
	math           : Makefile 

Log message:
+ensmallen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/31 07:48:15

Modified files:
	net/icinga/web2: Makefile distinfo 
	net/icinga/web2/pkg: PLIST 

Log message:
update to icinga-web2-2.7.0


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/31 09:05:24

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/07/31 09:13:49

Modified files:
	astro/gcal     : Makefile distinfo 
	astro/gcal/pkg : PLIST 

Log message:
Update to gcal-4.1
Changelog: https://git.savannah.gnu.org/cgit/gcal.git/tree/NEWS
Take MAINTAINER
ok and pointer to using libunistring sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/31 09:38:27

Modified files:
	geo/geoclue    : Makefile 
Removed files:
	geo/geoclue/patches: patch-configure 

Log message:
disable gpsd support
suggestion and ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/07/31 09:44:31

Modified files:
	misc/gpsd      : Makefile distinfo 
	misc/gpsd/pkg  : PLIST-main PLIST-x11 
Added files:
	misc/gpsd/patches: patch-SConstruct 
Removed files:
	misc/gpsd/patches: patch-configure 

Log message:
update to gpsd-3.19
changelog: https://gpsd.gitlab.io/gpsd/NEWS

tweaks and OKs from sthen@ and landry@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/31 09:47:49

Modified files:
	sys/dev/acpi   : dsdt.c 

Log message:
The ACPI 3 spec says the ToHexString and ToDec(imal)String
operators can take a data argument of Integer, String, or Buffer
types, not just Integer.

ok kettenis, deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/31 09:58:00

Modified files:
	sys/dev/acpi   : dsdt.c 

Log message:
aml_find_node: perform callback on matched direct-child nodes before
recursing into child devices looking for matches.

This ensures that when walking nodes with acpi_inidev, a method like
\_SB_.PCI0._INI will be executed before \_SB_.PCI0.I2C1.TPL1._INI.

This matches how ACPICA walks nodes and a commonly-used DSDT
template assumes that \OSYS has been initialized in \_SB_.PCI0._INI
before being used by other device _INI methods.

This should also help to execute \_INI and \_SB_._INI first, if
present, which ACPICA does explicitly.

Tested in snaps, ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/31 10:04:16

Modified files:
	sys/dev/pci    : dwiic_pci.c 

Log message:
dwiic: stop enabling polling by default

The interrupt problem had nothing to do with changes in the Intel
100 Series and was due to most of these machines using the same DSDT
template where we were walking _INI nodes in the wrong order.

This lead to the touchpad device's _INI method being called before
\_SB_.PCI0._INI (where \OSYS is initialized), making the touchpad
device's interrupts setup for an OSYS of 0, but when its _CRS method
was called later during ihidev attachment (after \_SB_.PCI0._INI was
executed, modifying OSYS), it returned information for interrupts as
if were initially setup for the proper OSYS.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/31 10:07:21

Modified files:
	sys/dev/acpi   : dwiic_acpi.c 

Log message:
dwiic_acpi: handle GPIO interrupts when we have no appropriate driver

Avoid printing a confusing "irq 0" message in this case.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/07/31 10:09:12

Modified files:
	sys/dev/i2c    : ihidev.c 

Log message:
ihidev: continue doing polling when interrupt setup fails


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/07/31 10:36:47

Modified files:
	games/maelstrom: Makefile 
Added files:
	games/maelstrom/patches: patch-Maelstrom-netd_c 
	                         patch-buttonlist_h 

Log message:
maelstrom: unbreak with ports-gcc by removing redundant struct usage.
Also add missing headers.

OK phessler@ (maintainer), rapha@ (who also tested on macppc)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/07/31 11:16:09

Modified files:
	.              : 66.html 

Log message:
credit the work of Samuel Weiser and David Schrammel


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/07/31 11:30:30

Modified files:
	education/verbiste: Makefile distinfo 
	education/verbiste/pkg: PLIST 

Log message:
update to 0.1.46: the graphical interface can now be displayed in Italian


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/07/31 12:30:53

Modified files:
	usr.sbin/snmpctl: snmpclient.c 

Log message:
When walking a leaf return the value itself instead of returning the
getnext value. Based on an older diff.

Reminded and tested by deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/07/31 13:43:48

Modified files:
	.              : plus.html 

Log message:
plus for June 24 - July 15
OK florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/07/31 14:58:10

Modified files:
	devel/protobuf : Makefile distinfo 
	devel/protobuf/patches: patch-src_Makefile_in 
	devel/protobuf/pkg: PLIST 

Log message:
- update to protobuf-3.9.0, from Jonathon Sisson

- restrict to O1 on aarch64; segfaults at runtime knocking out various
builds of ports depending on protobuf (dnsdist, mosh, etc). tracked down
thus far by otto@, more details in https://marc.info/?l=openbsd-ports&m=156363469501634&w=2


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/07/31 19:01:59

Modified files:
	.              : mail.html 

Log message:
minor markup improvements; from Alex Naumov


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/07/31 19:09:09

Modified files:
	gnu/llvm/lib/Target/AArch64: AArch64TargetMachine.cpp 

Log message:
The GlobalISel IRTranslator pass assumes that it is safe to use the
LOAD_STACK_GUARD pseudo without consulting the value of useLoadStackGuardNode(),
and then tries to add the return from getSDagStackGuard() as a parameter without
consulting the return from getIRStackGuard() to see if it should do that. This
means that the GlobalISel IRTranslator's implementation for
Intrinsic::stackprotector is broken for platforms that implement
getIRStackGuard() like we do, and this causes a segfault later when the
incomplete LOAD_STACK_GUARD pseudo is lowered in the back end.

Since GlobalISel is disabled on aarch64 most of the time anyway, add a bit that
disables it for OpenBSD/aarch64 all the time.

Fixes a crash when building on aarch64 without retguard, with a stack protector
and without optimizations, which manifests when building cross-tools.

ok patrick@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/07/31 19:25:35

Modified files:
	games/freesynd : Makefile 

Log message:
Fix url scheme in HOMEPAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/07/31 20:32:23

Modified files:
	security/burpsuite: Makefile distinfo 

Log message:
Update to Burp Suite 2.1.02.

http://releases.portswigger.net/2019/07/professional-community-edition-2102.html

While here, update the PERMIT_* URLs to the latest URLs.

ok rpointel@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/31 21:05:46

Added files:
	sys/net        : if_tpmr.c 

Log message:
add tpmr(4), a quick and dirty 802.1Q Two-Port MAC Relay implementation

a TPMR is a simplified brigde (as supported by bridge(4)). it only
supports two ports, and unconditionally forwards frames between
them. this is unlike a real bridge which can support an arbitrary
number of ports and implements a learning algorithm.

i needed this to tunnel LACP between switches in a couple of data
centers separated by an IP network. because bridge(4) implements
an actual 802.1Q bridge, it eats packets that are supposed to be
sent between bridges, such as spanning tree and LACP. TPMR according
to the spec does a lot less of this, and is in fact documented in
the spec as being able to support transport of LACP frames. tpmr(4)
is actually a lot dumber and current does no filtering (except what
you can do with BPF).

because the forwarding path in tpmr(4) is so short and simple, it
is relatively fast and can be used to isolate and help improve the
relative performance of some parts of the system. i also have plans
to use this for monitoring traffic without processing it.

tpmr(4) implements the trunk(4) ioctls for managing configuration.
the ifconfig output for trunk interfaces is a bit shorter and needs
a lot less stuff faked to be useful. inside the kernel it appears
as an IFT_BRIDGE interface (like bridge(4)). it generally just drops
stuff unless it's between the ports it's managing.

this has been in production at my work for a few days between some
physical nics and etherip(4), and so far it has been really solid.
hrvoje popovski has kicked the tyres too, but more from a performance
point of view.

ok claudio@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/31 21:06:35

Modified files:
	sys/conf       : files 

Log message:
wire up tpmr(4), an 802.1Q Two-Port MAC Relay implementation


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/31 21:06:59

Modified files:
	sys/conf       : GENERIC 

Log message:
enable tpmr(4) so people can try it.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/07/31 21:08:43

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : tpmr.4 

Log message:
add a manpage for tpmr(4).

the examples section need to be cut down a lot, but this is a good
start.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/07/31 21:30:43

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/07/31 22:52:56

Modified files:
	sys/arch/octeon/stand/rdboot: cmd.c 

Log message:
Fix fd leak that broke disk_close().


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/01 01:05:17

Modified files:
	devel/pango    : Makefile 
Added files:
	devel/pango/patches: patch-pango_pango-bidi-type_c 

Log message:
SECURITY fix for CVE-2019-1010238
https://gitlab.gnome.org/GNOME/pango/issues/342

prodded by tj@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/01 01:08:13

Modified files:
	usr.bin/tmux   : grid.c 

Log message:
Remove check for same size - size has already been changed so this
breaks reflow.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/01 02:32:00

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/files: sndio_output.cc sndio_output.h 
	www/chromium/patches: patch-BUILD_gn patch-base_BUILD_gn 
	                      patch-base_allocator_allocator_shim_cc 
	                      patch-base_atomicops_h 
	                      patch-base_debug_stack_trace_posix_cc 
	                      patch-base_i18n_icu_util_cc 
	                      patch-build_config_BUILD_gn 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_config_linux_pkg-config_py 
	                      patch-build_detect_host_arch_py 
	                      patch-cc_BUILD_gn 
	                      patch-chrome_app_chrome_content_browser_overlay_manifest_cc 
	                      patch-chrome_app_chrome_main_delegate_cc 
	                      patch-chrome_app_chromium_strings_grd 
	                      patch-chrome_app_generated_resources_grd 
	                      patch-chrome_app_google_chrome_strings_grd 
	                      patch-chrome_app_settings_strings_grdp 
	                      patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_after_startup_task_utils_cc 
	                      patch-chrome_browser_browser_process_impl_cc 
	                      patch-chrome_browser_browser_process_impl_h 
	                      patch-chrome_browser_browser_resources_grd 
	                      patch-chrome_browser_chrome_browser_main_cc 
	                      patch-chrome_browser_chrome_content_browser_client_cc 
	                      patch-chrome_browser_chrome_content_browser_client_h 
	                      patch-chrome_browser_download_chrome_download_manager_delegate_cc 
	                      patch-chrome_browser_download_download_commands_cc 
	                      patch-chrome_browser_download_download_commands_h 
	                      patch-chrome_browser_download_download_item_model_cc 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_browser_extensions_browser_context_keyed_service_factories_cc 
	                      patch-chrome_browser_extensions_external_provider_impl_cc 
	                      patch-chrome_browser_flag_descriptions_cc 
	                      patch-chrome_browser_flag_descriptions_h 
	                      patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc 
	                      patch-chrome_browser_metrics_chrome_metrics_service_client_cc 
	                      patch-chrome_browser_net_system_network_context_manager_cc 
	                      patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc 
	                      patch-chrome_browser_prefs_browser_prefs_cc 
	                      patch-chrome_browser_profiles_profile_attributes_entry_cc 
	                      patch-chrome_browser_profiles_profile_impl_cc 
	                      patch-chrome_browser_renderer_preferences_util_cc 
	                      patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                      patch-chrome_browser_resources_settings_appearance_page_appearance_page_js 
	                      patch-chrome_browser_signin_signin_util_cc 
	                      patch-chrome_browser_ssl_ssl_error_controller_client_cc 
	                      patch-chrome_browser_sync_chrome_sync_client_cc 
	                      patch-chrome_browser_tracing_crash_service_uploader_cc 
	                      patch-chrome_browser_ui_browser_command_controller_cc 
	                      patch-chrome_browser_ui_browser_window_h 
	                      patch-chrome_browser_ui_tab_helpers_cc 
	                      patch-chrome_browser_ui_toolbar_app_menu_model_cc 
	                      patch-chrome_browser_ui_views_chrome_browser_main_extra_parts_views_cc 
	                      patch-chrome_browser_ui_views_first_run_dialog_cc 
	                      patch-chrome_browser_ui_views_frame_browser_view_cc 
	                      patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc 
	                      patch-chrome_browser_ui_views_frame_system_menu_model_builder_cc 
	                      patch-chrome_browser_ui_views_tabs_new_tab_button_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                      patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc 
	                      patch-chrome_browser_ui_webui_settings_settings_localized_strings_provider_cc 
	                      patch-chrome_common_BUILD_gn 
	                      patch-chrome_common_chrome_features_cc 
	                      patch-chrome_common_chrome_features_h 
	                      patch-chrome_common_chrome_paths_internal_h 
	                      patch-chrome_common_chrome_switches_cc 
	                      patch-chrome_common_chrome_switches_h 
	                      patch-chrome_common_pref_names_cc 
	                      patch-chrome_common_pref_names_h 
	                      patch-chrome_common_webui_url_constants_cc 
	                      patch-chrome_common_webui_url_constants_h 
	                      patch-chrome_renderer_chrome_content_renderer_client_cc 
	                      patch-chrome_test_BUILD_gn 
	                      patch-chromecast_browser_cast_browser_main_parts_cc 
	                      patch-chromecast_browser_cast_content_browser_client_cc 
	                      patch-components_autofill_core_browser_autofill_experiments_cc 
	                      patch-components_autofill_core_browser_personal_data_manager_cc 
	                      patch-components_autofill_core_common_autofill_util_cc 
	                      patch-components_crash_content_app_BUILD_gn 
	                      patch-components_crash_core_common_BUILD_gn 
	                      patch-components_download_internal_common_base_file_cc 
	                      patch-components_feature_engagement_public_event_constants_cc 
	                      patch-components_feature_engagement_public_event_constants_h 
	                      patch-components_metrics_BUILD_gn 
	                      patch-components_network_session_configurator_browser_network_session_configurator_cc 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-components_services_filesystem_file_system_app_cc 
	                      patch-components_sync_device_info_local_device_info_util_cc 
	                      patch-content_app_content_main_runner_impl_cc 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_gpu_gpu_process_host_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_h 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_service_manager_service_manager_context_cc 
	                      patch-content_browser_webui_shared_resources_data_source_cc 
	                      patch-content_gpu_gpu_main_cc 
	                      patch-content_gpu_gpu_sandbox_hook_linux_cc 
	                      patch-content_public_common_common_param_traits_macros_h 
	                      patch-content_public_common_content_features_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_render_process_impl_cc 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_renderer_renderer_blink_platform_impl_cc 
	                      patch-content_renderer_renderer_blink_platform_impl_h 
	                      patch-content_shell_BUILD_gn 
	                      patch-content_shell_browser_shell_browser_context_cc 
	                      patch-extensions_common_api__permission_features_json 
	                      patch-gpu_command_buffer_service_external_vk_image_backing_cc 
	                      patch-gpu_ipc_service_gpu_init_cc 
	                      patch-gpu_ipc_service_gpu_memory_buffer_factory_cc 
	                      patch-gpu_ipc_service_gpu_watchdog_thread_cc 
	                      patch-gpu_ipc_service_gpu_watchdog_thread_h 
	                      patch-gpu_vulkan_generate_bindings_py 
	                      patch-gpu_vulkan_vulkan_function_pointers_cc 
	                      patch-gpu_vulkan_vulkan_function_pointers_h 
	                      patch-headless_lib_browser_headless_content_browser_client_cc 
	                      patch-headless_lib_browser_headless_content_browser_client_h 
	                      patch-ipc_ipc_message_utils_cc 
	                      patch-ipc_ipc_message_utils_h 
	                      patch-media_base_video_frame_cc 
	                      patch-media_base_video_frame_h 
	                      patch-media_capture_video_video_capture_device_client_cc 
	                      patch-media_media_options_gni 
	                      patch-media_mojo_services_gpu_mojo_media_client_cc 
	                      patch-media_video_gpu_memory_buffer_video_frame_pool_cc 
	                      patch-mojo_public_js_mojo_bindings_resources_grd 
	                      patch-net_BUILD_gn 
	                      patch-net_base_network_change_notifier_cc 
	                      patch-net_base_network_change_notifier_posix_cc 
	                      patch-net_http_http_network_session_cc 
	                      patch-net_proxy_resolution_proxy_resolution_service_cc 
	                      patch-net_tools_cert_verify_tool_cert_verify_tool_cc 
	                      patch-net_tools_quic_quic_http_proxy_backend_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-remoting_host_remoting_me2me_host_cc 
	                      patch-services_content_simple_browser_simple_browser_service_cc 
	                      patch-services_content_simple_browser_simple_browser_service_h 
	                      patch-services_network_BUILD_gn 
	                      patch-services_network_network_context_cc 
	                      patch-services_network_network_service_cc 
	                      patch-services_network_network_service_h 
	                      patch-services_resource_coordinator_public_cpp_memory_instrumentation_os_metrics_linux_cc 
	                      patch-services_service_manager_BUILD_gn 
	                      patch-services_service_manager_embedder_main_cc 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_blink_renderer_core_html_canvas_canvas_async_blob_creator_cc 
	                      patch-third_party_blink_renderer_core_layout_layout_view_cc 
	                      patch-third_party_blink_renderer_platform_BUILD_gn 
	                      patch-third_party_blink_renderer_platform_fonts_font_cache_cc 
	                      patch-third_party_blink_renderer_platform_fonts_font_cache_h 
	                      patch-third_party_blink_renderer_platform_fonts_font_metrics_cc 
	                      patch-third_party_blink_renderer_platform_fonts_skia_font_cache_skia_cc 
	                      patch-third_party_ffmpeg_BUILD_gn 
	                      patch-third_party_libusb_BUILD_gn 
	                      patch-third_party_pdfium_core_fxcrt_fx_system_h 
	                      patch-third_party_pdfium_core_fxge_fx_ge_linux_cpp 
	                      patch-third_party_pdfium_xfa_fgas_font_cfx_fontsourceenum_file_cpp 
	                      patch-third_party_perfetto_src_tracing_core_tracing_service_impl_cc 
	                      patch-third_party_skia_src_sksl_SkSLString_h 
	                      patch-third_party_sqlite_BUILD_gn 
	                      patch-third_party_sqlite_amalgamation_sqlite3_c 
	                      patch-third_party_unrar_src_crypt_cpp 
	                      patch-third_party_webrtc_rtc_base_BUILD_gn 
	                      patch-third_party_webrtc_rtc_base_physical_socket_server_cc 
	                      patch-tools_gn_build_gen_py 
	                      patch-tools_gn_tools_gn_args_cc 
	                      patch-tools_json_schema_compiler_feature_compiler_py 
	                      patch-tools_variations_fieldtrial_to_struct_py 
	                      patch-ui_base_dragdrop_os_exchange_data_provider_factory_cc 
	                      patch-ui_base_resource_resource_bundle_cc 
	                      patch-ui_base_webui_web_ui_util_cc 
	                      patch-ui_gfx_BUILD_gn 
	                      patch-ui_gfx_font_render_params_h 
	                      patch-ui_gfx_ipc_gfx_param_traits_macros_h 
	                      patch-ui_gfx_linux_client_native_pixmap_dmabuf_cc 
	                      patch-ui_gfx_mojo_buffer_types_struct_traits_cc 
	                      patch-ui_gfx_mojo_buffer_types_struct_traits_h 
	                      patch-ui_gfx_native_pixmap_handle_cc 
	                      patch-ui_gfx_native_pixmap_handle_h 
	                      patch-ui_gl_BUILD_gn 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_message_center_views_message_popup_view_cc 
	                      patch-ui_views_controls_label_cc 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_examples_widget_example_cc 
	                      patch-ui_views_style_platform_style_cc 
	                      patch-ui_views_views_delegate_h 
	                      patch-ui_views_widget_desktop_aura_desktop_window_tree_host_x11_cc 
	                      patch-ui_views_window_custom_frame_view_cc 
	                      patch-ui_webui_resources_js_cr_js 
	                      patch-v8_BUILD_gn 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/patches: 
	                      patch-components_sync_device_info_local_device_info_util_linux_cc 
	                      patch-content_browser_builtin_service_manifests_cc 
	                      patch-services_device_usb_BUILD_gn 
	                      patch-services_network_public_cpp_features_cc 
	                      patch-v8_src_api_api_cc 
	                      patch-v8_src_common_globals_h 
Removed files:
	www/chromium/patches: patch-build_config_compiler_compiler_gni 
	                      patch-components_sync_base_get_session_name_cc 
	                      patch-components_sync_base_get_session_name_linux_cc 
	                      patch-content_public_app_content_packaged_services_manifest_cc 
	                      patch-device_usb_BUILD_gn 
	                      patch-third_party_angle_src_common_system_utils_posix_cpp 
	                      patch-third_party_webrtc_rtc_base_string_utils_h 
	                      patch-ui_gl_gl_surface_glx_cc 
	                      patch-v8_src_api_cc patch-v8_src_globals_h 
	                      patch-v8_src_log-utils_h 

Log message:
update to 76.0.3809.87


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/01 02:42:23

Modified files:
	devel/pango    : Tag: OPENBSD_6_5 Makefile 
Added files:
	devel/pango/patches: Tag: OPENBSD_6_5 
	                     patch-pango_pango-bidi-type_c 

Log message:
SECURITY fix for CVE-2019-1010238
https://gitlab.gnome.org/GNOME/pango/issues/342

prodded by tj@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/01 02:42:34

Modified files:
	usr.bin/tmux   : cmd-capture-pane.c tmux.1 

Log message:
Add -N to capture-pane to preserve trailing spaces, from Leon Winter.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/01 02:49:04

Modified files:
	lang/gcc/8     : Makefile distinfo 

Log message:
New adastrap for powerpc to go over the realpath bump, unbreaks 5k+
ports requiring gcc8 for c++.


CVSROOT:	/cvs
Module name:	www
Changes by:	landry@cvs.openbsd.org	2019/08/01 03:42:38

Modified files:
	.              : donations.html 

Log message:
Jan Vlach sent me an EdgeRouter Lite, many thanks!


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2019/08/01 04:29:42

Modified files:
	.              : 66.html 

Log message:
add windows perf opt.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/01 05:24:27

Modified files:
	misc/dialog    : Makefile distinfo 

Log message:
Update dialog to 1.3-20190728.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/01 05:44:35

Modified files:
	math/armadillo : Makefile distinfo 
	math/armadillo/pkg: PLIST 
	math/mlpack    : Makefile distinfo 
	math/mlpack/patches: patch-CMakeLists_txt 
	math/mlpack/pkg: PLIST-main PLIST-python 
Added files:
	math/mlpack/patches: 
	                     patch-src_mlpack_bindings_python_PythonInstall_cmake 
Removed files:
	math/mlpack/patches: patch-CMake_allexec2man_sh 

Log message:
update to new versions
bump shared libs because why not ?


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/01 05:45:34

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
xterm 348 now disables margins when resized, so send DECLRMM again.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/01 06:16:50

Modified files:
	textproc/mupdf : Makefile 
	textproc/mupdf/pkg: PLIST 

Log message:
Fix PLIST, breakage in -js (duplicate filenames) reported by naddy; I had
accidentally duplicated .js files between the plain and js flavour.
Add an rm in post-install so this doesn't happen again.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/01 06:40:52

Modified files:
	textproc/solr  : Makefile distinfo 
	textproc/solr/pkg: PLIST 

Log message:
update to solr-8.2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/01 06:47:41

Modified files:
	security/gpgme : Makefile distinfo 
	security/gpgme/patches: patch-lang_qt_tests_Makefile_in 
	security/gpgme/pkg: PLIST-main 

Log message:
update to gpgme-1.13.1, from Stefan Hagen with small tweaks by me


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/01 07:03:19

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/01 08:30:31

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Select the correct word for select-word when already at the start of a
word, GitHub issue 1820.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/01 08:31:39

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Correctly wrap search in copy mode even if at the very top left, GitHub
issue 1845.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/01 09:09:25

Modified files:
	sys/kern       : kern_unveil.c 

Log message:
In ufs_lookup() *vpp is always refcounted, also in the ISDOTDOT
case even if *vpp == vdp.  So in unveil_find_cover() it is wrong
to skip dereferencing if parent == vp.  This fixes an umount(8)
device busy error when unveil(2) and chroot(2) are used together
on a file system.
reported by Matthias Pitzl; OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/01 09:20:51

Log message:
    Call unveil(2) in combination with unlink(2) and chroot(2).
    Use umount(8) to check that the mountpoint leaks no vnode.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190801
    
    N src/regress/sys/kern/unveil-unmount/Makefile
    N src/regress/sys/kern/unveil-unmount/unveil-unlink.c
    N src/regress/sys/kern/unveil-unmount/unveil-chroot.c
    N src/regress/sys/kern/unveil-unmount/unveil-perm.c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/01 09:52:15

Modified files:
	sbin/dhclient  : kroute.c 

Log message:
Don't leak resolv.conf contents.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2019/08/01 09:55:34

Modified files:
	.              : want.html 

Log message:
I could use another set of four 4 GB memory DIMMs for my T1000 sparc64.
The required DIMMs are: DDR2-RAM 4GB PC2-5300R ECC
Relevant part numbers are "KTS8122K2/8G" and "X7803A"
I have bought some already but could not find enough to max out the machine.
In case such DIMMs are collecting dust somewhere, please ship them to me.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/01 09:56:59

Modified files:
	regress/sys/kern: Makefile 

Log message:
Link regress unveil-unmount to build.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/01 12:58:24

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
the argument name is "address_family" (with an underscore);


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/01 13:40:31

Modified files:
	x11/qdirstat   : Makefile distinfo 
	x11/qdirstat/patches: patch-src_src_pro 
	x11/qdirstat/pkg: PLIST 

Log message:
Update qdirstat to 1.6


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/01 13:42:52

Modified files:
	distrib/notes  : INSTALL m4.common packages 
	distrib/notes/alpha: install xfer 
	distrib/notes/amd64: xfer 
	distrib/notes/hppa: install 
	distrib/notes/i386: xfer 
	distrib/notes/sparc64: xfer 

Log message:
text improvements from evan silberman;

tweaked along the way by at least myself and tj;
ok tj deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/01 14:20:39

Modified files:
	lang/php       : Makefile.inc 
	lang/php/7.1   : Makefile distinfo 
	lang/php/7.2   : Makefile distinfo 
	lang/php/7.3   : Makefile distinfo 
	lang/php/7.3/patches: patch-php_ini-development 
	                      patch-php_ini-production 

Log message:
update to php 7.1.31, 7.2.21, 7.3.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/01 14:21:24

Modified files:
	lang/php       : Tag: OPENBSD_6_5 Makefile.inc 
	lang/php/7.1   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.1/patches: Tag: OPENBSD_6_5 
	                      patch-sapi_fpm_www_conf_in 
	lang/php/7.1/pkg: Tag: OPENBSD_6_5 PLIST-main 
	lang/php/7.2   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.2/patches: Tag: OPENBSD_6_5 
	                      patch-sapi_fpm_www_conf_in 
	lang/php/7.3   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.3/patches: Tag: OPENBSD_6_5 
	                      patch-sapi_fpm_www_conf_in 

Log message:
update to php 7.1.31, 7.2.21, 7.3.8 in -stable


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/01 17:08:23

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
smtpd can crash on excessively large input, causing a denial of service.
the crash is caused by a logic error leading to a fatal()

ok deraadt@ bluhm@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/01 17:09:12

Modified files:
	usr.sbin/smtpd : Tag: OPENBSD_6_4 smtp_session.c 

Log message:
smtpd can crash on excessively large input, causing a denial of service.
the crash is caused by a logic error leading to a fatal()

ok deraadt@ bluhm@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/01 17:09:36

Modified files:
	usr.sbin/smtpd : Tag: OPENBSD_6_5 smtp_session.c 

Log message:
smtpd can crash on excessively large input, causing a denial of service.
the crash is caused by a logic error leading to a fatal()

ok deraadt@ bluhm@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/08/01 19:23:19

Modified files:
	usr.bin/ssh    : ssh_config.5 

Log message:
typo; from Christian Hesse


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/08/01 19:41:24

Modified files:
	regress/usr.bin/ssh/unittests/test_helper: test_helper.c 

Log message:
fix some memleaks in test_helper code

bz#3037 from Jitendra Sharma


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/01 20:17:35

Modified files:
	sys/arch/sparc64/sparc64: db_interface.c 
	sys/conf       : param.c 
	sys/kern       : kern_clock.c kern_exec.c kern_time.c 
	sys/sys        : kernel.h proc.h 

Log message:
per-process itimers: itimerval -> itimerspec

Loongson runs at 128hz.  128 doesn't divide evenly into a million,
but it does divide evenly into a billion.  So if we do the per-process
itimer bookkeeping with itimerspec structs we can have error-free
virtual itimers on loongson just as we do on most other platforms.

This change doesn't fix the virtual itimer error alpha, as 1024 does not
divide evenly into a billion.  But this doesn't make the situation any
worse, either.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/01 21:01:05

Modified files:
	games/wtf      : Makefile distinfo 
	games/wtf/patches: patch-wtf 

Log message:
Update to wtf-20190728
While here, remove extra block from the patch that snuck in last update; it breaks runtime. The patch is now what is was in rev 1.4. Noticed by David Goerger <david (AT) goerger (DOT) info> in a private mail.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/01 21:33:15

Modified files:
	sys/sys        : time.h 

Log message:
missing part of commit by cheloha:

per-process itimers: itimerval -> itimerspec

Loongson runs at 128hz.  128 doesn't divide evenly into a million,
but it does divide evenly into a billion.  So if we do the per-process
itimer bookkeeping with itimerspec structs we can have error-free
virtual itimers on loongson just as we do on most other platforms.

This change doesn't fix the virtual itimer error alpha, as 1024 does not
divide evenly into a billion.  But this doesn't make the situation any
worse, either.

ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2019/08/01 23:08:19

Modified files:
	.              : want.html 

Log message:
remove my request for memory DIMMs for my T1000
chris@ will be getting the needed DIMMs shipped to me, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/08/02 00:29:53

Modified files:
	geo/geoclue/pkg: PLIST 

Log message:
regen PLIST to unbreak after gpsd support was disabled
reported by landry@, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/08/02 01:41:13

Modified files:
	sys/arch/mips64/mips64: trap.c 

Log message:
Call refreshcreds() from ast() on mips64. This ensures that credentials
get updated when handling an AST after an interrupt.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/08/02 01:41:57

Modified files:
	sys/arch/mips64/mips64: sendsig.c 

Log message:
Avoid repeated invocation of curcpu().


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/02 02:12:35

Modified files:
	sys/kern       : kern_unveil.c vfs_syscalls.c 
	sys/sys        : namei.h 

Log message:
Move prototypes of unveil(2) functions which are used in separate C
files into the common namei.h header.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/02 04:04:59

Modified files:
	sys/arch/arm64/dev: agintc.c 

Log message:
Add support for additional ITS page sizes and make sure we allocate
enough memory for the device table to cover the entire DeviceID space.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/02 04:07:18

Modified files:
	graphics/krita : Makefile distinfo 
	graphics/krita/pkg: PLIST 

Log message:
Bugfix update krita to 4.2.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/02 05:14:47

ports/productivity/tryton/5.2/account_payment_sepa/patches

Update of /cvs/ports/productivity/tryton/5.2/account_payment_sepa/patches
In directory cvs.openbsd.org:/tmp/cvs-serv8559/patches

Log Message:
Directory /cvs/ports/productivity/tryton/5.2/account_payment_sepa/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/02 05:15:58

Modified files:
	productivity/tryton/5.0/account_fr_chorus: Makefile distinfo 
	productivity/tryton/5.0/account_fr_chorus/pkg: PLIST 
	productivity/tryton/5.0/sao/files: sao-dependencies.sh 
	productivity/tryton/5.0/timesheet: Makefile distinfo 
	productivity/tryton/5.0/timesheet/pkg: PLIST 
	productivity/tryton/5.0/trytond: Makefile distinfo 

Log message:
productivity/tryton/5.0: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/02 05:18:44

Modified files:
	productivity/tryton/5.2/account: Makefile distinfo 
	productivity/tryton/5.2/account_fr_chorus: Makefile distinfo 
	productivity/tryton/5.2/account_fr_chorus/pkg: PLIST 
	productivity/tryton/5.2/account_payment_sepa: Makefile 
	productivity/tryton/5.2/product_price_list: Makefile distinfo 
	productivity/tryton/5.2/product_price_list/pkg: PLIST 
	productivity/tryton/5.2/sao/files: sao-dependencies.sh 
	productivity/tryton/5.2/timesheet: Makefile distinfo 
	productivity/tryton/5.2/timesheet/pkg: PLIST 
	productivity/tryton/5.2/tryton: Makefile distinfo 
	productivity/tryton/5.2/trytond: Makefile distinfo 
Added files:
	productivity/tryton/5.2/account_payment_sepa/patches: 
	                                                      patch-payment_py 
Removed files:
	productivity/tryton/5.2/trytond/patches: 
	                                         patch-trytond_ir_model_py 

Log message:
productivity/tryton/5.2: maintenance update

while here, backport issue8550 to properly generate sepa_remittance_information


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/02 06:59:52

Modified files:
	devel/angr/py-z3-solver/patches: patch-core_scripts_mk_util_py 

Log message:
fix py-z3-solver on i386, from jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/02 07:22:17

Modified files:
	geo/geoclue    : Makefile 

Log message:
bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/08/02 07:27:17

Modified files:
	mail/courier-authlib: Makefile distinfo 

Log message:
Update to 0.69.1
some ldap related fixes


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/02 07:34:50

Modified files:
	.              : errata64.html errata65.html 

Log message:
release smtpd errata.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/02 07:49:29

Modified files:
	x11/dunst      : Makefile distinfo 
	x11/dunst/patches: patch-config_mk patch-docs_dunst_pod 
	                   patch-dunstrc 
Removed files:
	x11/dunst/patches: patch-src_dunst_c patch-src_menu_c 

Log message:
update to dunst-1.4.1, from Timo Myyra


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/08/02 08:04:27

Modified files:
	misc/memcached : Makefile distinfo 

Log message:
update to 1.5.16
adds authentication to ansi protocol
bug fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/02 08:40:13

Modified files:
	usr.bin/printf : printf.1 

Log message:
document octal escape format in %b arguments;
omission reported by Andras Farkas <deepbluemistake at gmail dot com>;
OK deraadt@ jmc@, and Andras Farkas also checked the patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/02 08:45:54

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/py-turbocheetah: Makefile distinfo 
	devel/py-turbocheetah/pkg: DESCR PLIST 
	devel/py-turbokid: Makefile distinfo 
	devel/py-turbokid/pkg: DESCR PLIST 

Log message:
Remove devel/py-turbocheetah and devel/py-turbokid ports.

py-turbokid hasn't been updated since January 2010 while py-turbocheetah
was last updated in November 2007.

OK danj@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/02 08:55:07

Modified files:
	www/libmicrohttpd: Makefile distinfo 

Log message:
Update to libmicrohttpd-0.9.66
consumers happy


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/02 08:57:53

Modified files:
	regress/usr.sbin/pkg_add: Makefile 
Added files:
	regress/usr.sbin/pkg_add: inject-badsum 

Log message:
pass -Dchecksum around so that checksum is exercised.
Also, inject fault and verify that package does indeed not get fully deleted


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/02 09:12:07

Modified files:
	security/gpgme : Makefile 

Log message:
drop bogus rmdir in post-install, I was trying to stop a dir
from being added to the main PLIST, actually it's used in the -qt
subpackage.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/02 09:15:24

Modified files:
	devel/re2c     : Makefile distinfo 

Log message:
update to re2c-1.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/08/02 09:17:32

Modified files:
	devel/netbeans : Makefile distinfo 
	devel/netbeans/pkg: PLIST 

Log message:
update to 11.1
ok rsadowsky@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/08/02 09:24:45

Log message:
    Import posterazor.
    
    The PosteRazor cuts a raster image into pieces which can afterwards
    be printed out and assembled to a poster.  As input, the PosteRazor
    takes a raster image. The resulting poster is saved as a multipage
    PDF document. An easy to use, wizard like user interface guides
    through 5 steps.
    
    tweaks and OK sthen@
    
    Status:
    
    Vendor Tag:	kirby
    Release Tags:	kirby_20190802
    
    N ports/graphics/posterazor/Makefile
    N ports/graphics/posterazor/distinfo
    N ports/graphics/posterazor/pkg/DESCR
    N ports/graphics/posterazor/pkg/PLIST
    N ports/graphics/posterazor/patches/patch-src_FlPosteRazorDialog_cpp
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/08/02 09:26:18

Modified files:
	graphics       : Makefile 

Log message:
+posterazor


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/02 09:32:29

Modified files:
	devel          : Makefile 

Log message:
Remove devel/py-turbocheetah and devel/py-turbokid ports.

py-turbokid hasn't been updated since January 2010 while py-turbocheetah
was last updated in November 2007.

Remove them from the build

OK danj@ sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2019/08/02 10:10:48

Modified files:
	opensmtpd      : index.html 

Log message:
release 6.4.2 to address errata


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/02 10:44:41

Modified files:
	net/seafile    : Makefile.inc 
	net/seafile/client: Makefile distinfo 
	net/seafile/libsearpc: Makefile distinfo 
	net/seafile/libsearpc/patches: patch-Makefile_am 
	net/seafile/seafile: Makefile distinfo 

Log message:
- use github commit ids for the seafile ports; upstream often changes with
commit a tag points to (both for "release-looking" tags and one with a name
which suggests they're going to do this anyway).

- move all GH_* to the subdirs to make it easier to see what's going on

- use common (and recent) autoconf/automake versions, rather than several
different ones. (client uses cmake not autoconf, but that's ok, the AUTO*_VERSION
variables are just ignored there).

ok kirby@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/02 11:04:55

Modified files:
	usr.bin/mandoc : html.c 

Log message:
minor sync of the inline stylesheet with mandoc.css:
delete unimportant .Pp rule and shorten overly specific selectors


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/02 15:45:16

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add Ampere vendor and eMAG PCIe devices.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/02 15:45:47

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/02 15:59:35

Modified files:
	infrastructure/db: user.list 

Log message:
Register a _dma user and _dma group for mail/dma.
ok jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/02 16:00:37

Log message:
    Import mail/dma, the DragonFly Mail Agent
    ok kn@
    
    dma is a small Mail Transport Agent (MTA), designed for home and office
    use. It accepts mails from locally installed Mail User Agents (MUA) and
    delivers the mails either locally or to a remote destination. Remote
    delivery includes several features like TLS/SSL support and SMTP
    authentication.
    
    dma is not intended as a replacement for real, big MTAs like sendmail(8)
    or postfix(1). Consequently, dma does not listen on port 25 for incoming
    connections.
    
    This package is a fork of the upstream portable version to add in some
    compatibility code from DragonFly BSD.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190802
    
    N ports/mail/dma/Makefile
    N ports/mail/dma/distinfo
    N ports/mail/dma/pkg/README
    N ports/mail/dma/pkg/PLIST
    N ports/mail/dma/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/02 16:00:54

Modified files:
	mail           : Makefile 

Log message:
+dma


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/02 16:36:37

Modified files:
	usr.bin/pkg-config: pkg-config.1 

Log message:
add the missing .An -nosplit


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/08/03 01:20:35

Added files:
	x11/kde4/workspace/patches: 
	                            patch-plasma_generic_dataengines_geolocation_location_gps_cpp 

Log message:
fix build with newer gpsd API

reported by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 02:41:41

Modified files:
	mail/dma       : Makefile 
	mail/dma/pkg   : README 

Log message:
Don't hardcode /usr/local.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/08/03 02:44:41

Modified files:
	misc/gpsd      : Makefile 

Log message:
add MODGCC4_CPPLIBDEP to LIB_DEPENDS-main to unbreak !clang arches

reported by landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/03 03:25:09

Modified files:
	sys/arch/arm64/arm64: cpu.c 

Log message:
Recognize Applied Micro as an Implementor and X-Gene as a PartNum for
processor identification purposes.  Use the name instead of the ID as
the sentinel in the various tables since X-Gene has PartNum zero.

Note that this means Ampere eMAG gets recognized as Applied Micro
X-Gene r3p2.  That makes sense as the CPU started its life as X-Gene 3.
Apparently future Ampere parts will use the new Ampere Implementer ID.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/08/03 03:40:45

Modified files:
	devel/p5-Benchmark-Timer: Makefile distinfo 
Removed files:
	devel/p5-Benchmark-Timer/patches: patch-Makefile_PL 

Log message:
bugfix update to 0.7112


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/03 03:44:18

Modified files:
	mail/kopano    : Makefile.inc 
	mail/kopano/core: Makefile distinfo 

Log message:
update to 8.7.82.62


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/03 03:53:02

Modified files:
	graphics/krita : Makefile distinfo 

Log message:
Bugfix update krita to 4.2.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/03 04:24:09

Modified files:
	mail/kopano/core: Makefile 
	mail/kopano/core/pkg: kopano_gateway.rc kopano_ical.rc 
	                      kopano_monitor.rc kopano_search.rc 
	                      kopano_server.rc kopano_spamd.rc 
	                      kopano_spooler.rc 

Log message:
kopano removed support for daemonizing so we have to do it ourselves


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 04:41:26

Modified files:
	mail/cyrus-imapd: Makefile distinfo 
	mail/cyrus-imapd/patches: patch-configure 
	mail/cyrus-imapd/pkg: PLIST 

Log message:
Update to cyrus-imapd-3.0.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:15:25

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.326.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:23:15

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.200.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:23:25

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.200.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:23:49

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.210.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:26:19

Modified files:
	net/gnugk      : Makefile distinfo 
	net/gnugk/patches: patch-configure 
	net/gnugk/pkg  : PLIST 

Log message:
Update to gnugk-5.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:27:41

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-256.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:36:21

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:47:59

Modified files:
	www/py-bokeh   : Makefile distinfo 
	www/py-bokeh/pkg: PLIST 

Log message:
Update to py-bokeh-1.3.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 05:48:29

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-powerdns: Makefile distinfo 
	sysutils/terraform/provider-rundeck: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/03 06:56:09

Modified files:
	graphics/sane-backends: Makefile distinfo 
	graphics/sane-backends/patches: patch-backend_Makefile_in 
	                                patch-backend_canon_c 
	                                patch-backend_dll_c 
	                                patch-backend_dll_conf_in 
	                                patch-backend_epsonds_c 
	                                patch-backend_kvs40xx_h 
	                                patch-backend_p5_device_c 
	                                patch-backend_sm3600-scanusb_c 
	                                patch-configure 
	                                patch-doc_saned_man 
	                                patch-tools_openbsd_attach 
	                                patch-tools_openbsd_detach 
	graphics/sane-backends/pkg: PLIST 
Added files:
	graphics/sane-backends/patches: patch-backend_genesys_low_cc 
	                                patch-backend_ricoh2_buffer_c 
Removed files:
	graphics/sane-backends/patches: patch-backend_genesys_low_c 

Log message:
Update to sane-backends-1.0.28.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/08/03 08:57:51

Modified files:
	sys/arch/amd64/amd64: lapic.c tsc.c 

Log message:
If the CPU frequency is available during TSC init, make it available
for lapic timer init to avoid calibrating against the 8254 clock.
Some newer machines are shipping with the 8254 clock gated for power
saving, so it may not be usable.

ok mlarkin
discussed with deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/03 09:22:21

Modified files:
	sys/lib/libsa  : Makefile stand.h ufs.c ufs.h ufs2.c 
	sys/stand/boot : boot.c cmd.c 
	sys/arch/alpha/stand/boot: filesystem.c 
	sys/arch/amd64/stand/boot: Makefile conf.c 
	sys/arch/amd64/stand/cdboot: Makefile conf.c 
	sys/arch/amd64/stand/efi32: Makefile.common conf.c 
	sys/arch/amd64/stand/efi64: Makefile.common conf.c 
	sys/arch/amd64/stand/efiboot: Makefile.common conf.c 
	sys/arch/amd64/stand/pxeboot: Makefile conf.c 
	sys/arch/arm64/stand/efiboot: Makefile conf.c 
	sys/arch/armv7/stand/efiboot: Makefile conf.c 
	sys/arch/hppa/stand/boot: conf.c 
	sys/arch/hppa/stand/libsa: Makefile 
	sys/arch/i386/stand/boot: Makefile conf.c 
	sys/arch/i386/stand/cdboot: Makefile conf.c 
	sys/arch/i386/stand/pxeboot: Makefile conf.c 
	sys/arch/landisk/stand/boot: conf.c 
	sys/arch/landisk/stand/xxboot: boot1.c 
	sys/arch/loongson/stand/boot: conf.c 
	sys/arch/loongson/stand/libsa: Makefile 
	sys/arch/macppc/stand/boot.mac: Makefile 
	sys/arch/macppc/stand/ofwboot: Makefile 
	sys/arch/sgi/stand/libsa: Makefile 
Added files:
	sys/lib/libsa  : fchmod.c 

Log message:
In the bootblocks, after discovering and opening /bsd.upgrade, fchmod -x
so the file cannot be re-executed upon the next boot.  This provides a
stronger one-shot-upgrade model than the upgrade script's rm /bsd.upgrade.
Now various forms of upgrade failure will reboot into /bsd, which is probably
more recoverable.  Performing fchmod -x depends on (1) use of MI boot.c
(not alpha/macppc/sparc64/sgi/octeon) and (2) "can write blocks" functionality
in the IO layer.  Most architectures have this support now.

Two diagnostics "fchmod a-x %s: failed" and "/bsd.upgrade is not u+x" will
remain in the tree while refinements happen for some of the laggard
architectures.

based upon a discussion florian
tested in snapshots for more than a week without any complaints


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/03 10:56:03

Removed files:
	xserver        : .dir-locals.el fix-miregion 
	                 fix-miregion-private fix-patch-whitespace 
	                 fix-region 
	xserver/config : dbus-api 
	xserver/damageext: damageext.h 
	xserver/doc    : c-extensions 
	xserver/hw/kdrive: Xkdrive.man 
	xserver/hw/kdrive/fake: Makefile.in 
	xserver/hw/kdrive/fbdev: Makefile.in Xfbdev.man 
	xserver/hw/kdrive/linux: Makefile.in 
	xserver/hw/xfree86/os-support/shared: platform_noop.c 
	xserver/hw/xquartz/GL: glcontextmodes.c glcontextmodes.h 
	xserver/hw/xquartz/bundle/Resources/Dutch.lproj: 
	                                                 InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/English.lproj: 
	                                                   InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/French.lproj: 
	                                                  InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/German.lproj: 
	                                                  InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/Italian.lproj: 
	                                                   InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/Japanese.lproj: 
	                                                    InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/Spanish.lproj: 
	                                                   InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/ar.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/ca.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/cs.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/da.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/el.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/fi.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/he.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/hr.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/hu.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/ko.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/no.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/pl.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/pt.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/pt_PT.lproj: 
	                                                 InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/ro.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/ru.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/sk.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/sv.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/th.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/tr.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/uk.lproj: InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/zh_CN.lproj: 
	                                                 InfoPlist.strings 
	xserver/hw/xquartz/bundle/Resources/zh_TW.lproj: 
	                                                 InfoPlist.strings 
	xserver/hw/xwin: winvideo.c 
	xserver/hw/xwin/winclipboard: internal.h 
	xserver/test/xi1: Makefile.in 
	xserver/test/xi2: Makefile.in 
	xserver/xkb    : XKM_file_format.txt 

Log message:
Remove files that are no longer part of upstream tarballs.
They accumulated over releases for various reasons.
No build change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/03 11:05:23

ports/productivity/vdirsyncer/patches

Update of /cvs/ports/productivity/vdirsyncer/patches
In directory cvs.openbsd.org:/tmp/cvs-serv53766/patches

Log Message:
Directory /cvs/ports/productivity/vdirsyncer/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/03 11:08:45

Modified files:
	productivity/vdirsyncer: Makefile 
Added files:
	productivity/vdirsyncer/patches: patch-docs_conf_py 

Log message:
Fix build of vdirsyncer with setuptools_scm 3.3.3

vdirsyncer calls setuptools_scm from within sphinx which is a no-no.

Fix it with patch from From https://github.com/pimutils/vdirsyncer/pull/799/

OK remi@ sthen@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/03 11:19:54

Removed files:
	xserver/test   : ddxstubs.c 

Log message:
Remove one more file that is no longer part of upstream tarballs.
Missed in previous commit.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/03 12:25:42

Modified files:
	sys/arch/sparc64/stand/ofwboot: ofdev.c 

Log message:
Add F_WRITE support to the block layer (not yet used)
ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/08/03 12:52:24

Modified files:
	x11/gnome/gedit: Makefile 

Log message:
Fix gedit build on non-clang archs

Like a bunch of gnome projects gedit assumes C99 support by default.
Make it use ports-gcc on non-clang archs to avoid the same problem when
C11 support by default will be assumed.

"fine by me" says bcallah@, who proposed another fix.
ok ajacoutot@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/03 13:16:22

Modified files:
	textproc/mupdf : Makefile distinfo 
	textproc/mupdf/patches: patch-platform_x11_pdfapp_c 

Log message:
update to MuPDF 1.16.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/03 13:36:04

Modified files:
	math/plplot    : Makefile 
	math/plplot/pkg: PLIST-main 

Log message:
add hidden dep on devel/shapelib and regen plist (besides linking to the library,
a different set of files are installed if shapelib is present, breaking packaging
if this occurs)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/08/03 13:36:56

Modified files:
	libexec/ld.so  : Makefile 
	libexec/ld.so/aarch64: Makefile.inc 
	libexec/ld.so/amd64: Makefile.inc 
	libexec/ld.so/arm: Makefile.inc 

Log message:
Suppress DWARF2 warnings on clang archs by building with -gdwarf-4

ok deraadt@, kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/08/03 13:56:40

Modified files:
	libexec/ld.so/amd64: rtld_machine.c 

Log message:
The ABI says JUMP_SLOT relocations don't have an addend, so don't add it in

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/03 16:51:25

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
Mention dhclient vs AUTOCONF4.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/03 16:53:45

Modified files:
	sys/kern       : kern_time.c 
	sys/sys        : time.h 

Log message:
R.I.P. itimerround(); ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/08/03 16:58:42

Modified files:
	devel/desktop-file-utils: Makefile 
	devel/desktop-file-utils/patches: 
	                                  patch-src_update-desktop-database_c 

Log message:
update-desktop-database wants to read from locale.alias in the
/usr/local/share/locale/ directory, so unveil it.

Found with accounting=YES.

ok aja


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/03 17:16:08

Added files:
	etc/signify    : openbsd-67-base.pub 

Log message:
good idea to make next-generation keys available well before heading into release.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/03 17:27:34

Modified files:
	sys/arch/arm64/conf: GENERIC 

Log message:
There are some pretty big arm64 machines so crank maxusers to 80.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/03 17:29:46

Modified files:
	sys/arch/arm64/conf: files.arm64 

Log message:
permit maxusers to grow up to 128


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/03 20:47:10

Modified files:
	games/armagetronad: Makefile 
Added files:
	games/armagetronad/patches: patch-src_tron_gCycle_cpp 
	                            patch-src_tron_gGame_cpp 

Log message:
armagetronad was broken at runtime, at least on clang archs.
A patch in the FreeBSD port provided a hint towards a possible solution.
Indeed, the solution checks out and armagetronad now works again.
ports-gcc is happy with the build too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/04 00:36:19

Modified files:
	emulators/mame : Makefile distinfo 

Log message:
Update mame to 0.212.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/04 00:55:42

Modified files:
	share/man/man4 : pci.4 iavf.4 

Log message:
tweak the iavf text a little, and add an entry to pci.4;
ok jmatthew


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/04 02:42:29

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Calling unveil(2) with the current directory leaked a vnode.  Even
if the parent and the lookup vnode are equal, namei(9) reference
counts both.  So release the parent vnode uncoditionally.
OK visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/08/04 02:53:14

Modified files:
	distrib/octeon : Makefile 
	etc/etc.octeon : Makefile.inc 
	sys/arch/octeon/stand: Makefile 
	sys/arch/octeon/stand/boot: Makefile 
	sys/arch/octeon/stand/rdboot: Makefile 

Log message:
Revise the way how the octeon bootloader is built. The original
approach was not right, and there is still room for improvement.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/08/04 02:56:15

Removed files:
	sys/arch/octeon/stand/boot: Makefile.inc clock.c conf.c 
	                            devopen.c exec.c libsa.h machdep.c 
	                            start.S uart.c 

Log message:
Remove the old, unfinished octeon bootloader.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/08/04 02:58:20

Removed files:
	distrib/octeon/boot: Makefile list 

Log message:
Remove unused files.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/04 03:00:17

Modified files:
	regress/sys/kern/unveil-unmount: Makefile 
Added files:
	regress/sys/kern/unveil-unmount: unveil-chdir.c 

Log message:
Test that unmount works after calling unlink(2) with relative
directories obtained by chdir(2).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/04 03:01:55

Modified files:
	misc/osinfo    : Makefile.inc 
	misc/osinfo/libosinfo: Makefile distinfo 
	misc/osinfo/osinfo-db: Makefile distinfo 
	misc/osinfo/osinfo-db/pkg: PLIST 
	misc/osinfo/osinfo-db-tools: Makefile distinfo 

Log message:
Update osinfo:
- libosinfo-1.6.0
- osinfo-db-20190726
- osinfo-db-tools-1.6.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/04 03:27:09

Modified files:
	sys/dev/acpi   : efi.h 
	sys/arch/arm64/conf: GENERIC files.arm64 
	sys/arch/arm64/dev: efi.c 
Added files:
	sys/arch/arm64/dev: smbios.c 
	sys/arch/arm64/include: smbiosvar.h 

Log message:
Implement smbios support on arm64.

ok deraadt@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/04 04:00:37

Modified files:
	sys/arch/arm64/dev: smbios.c 

Log message:
Unmap tables once we're done with them.


CVSROOT:	/cvs
Module name:	ports
Changes by:	visa@cvs.openbsd.org	2019/08/04 06:54:11

Modified files:
	lang/gcc/8     : Makefile distinfo 

Log message:
Update mips64 adastrap.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/04 07:25:21

Modified files:
	lib/libXdmcp   : ChangeLog Key.c Makefile.am Makefile.in 
	                 aclocal.m4 autogen.sh config.h.in configure 
	                 configure.ac 
	lib/libXdmcp/doc: xdmcp.xml 
Added files:
	lib/libXdmcp   : README.md 
Removed files:
	lib/libXdmcp   : README 

Log message:
Update to libXdmcp 1.1.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/04 07:33:46

Modified files:
	lib/libX11     : Makefile.bsd-wrapper 
	lib/libICE     : Makefile.bsd-wrapper 
	lib/libxtrans  : ChangeLog Makefile.am Makefile.in Xtrans.c 
	                 Xtrans.h Xtransint.h Xtranslcl.c Xtranssock.c 
	                 aclocal.m4 compile configure configure.ac 
	                 xtrans.m4 
	lib/libxtrans/doc: xtrans.xml 
Added files:
	lib/libxtrans  : README.md 
Removed files:
	lib/libxtrans  : README 

Log message:
Update to libxtrans 1.4.0. Major bumps for libX11 and libICE.
no objections from naddy@, espie@ and ajacoutot@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/04 07:34:55

Modified files:
	lib/libX11     : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 compile configure configure.ac 
	lib/libX11/include: Makefile.in 
	lib/libX11/man : Compose.man Makefile.in XrmGetFileDatabase.man 
	lib/libX11/man/xkb: Makefile.am Makefile.in XkbBell.man 
	                    XkbBellEvent.man XkbDeviceBell.man 
	                    XkbDeviceBellEvent.man XkbForceBell.man 
	                    XkbForceDeviceBell.man 
	lib/libX11/modules: Makefile.in 
	lib/libX11/modules/im: Makefile.in 
	lib/libX11/modules/im/ximcp: Makefile.in imDefIm.c imLcFlt.c 
	lib/libX11/modules/lc: Makefile.in 
	lib/libX11/modules/lc/Utf8: Makefile.in 
	lib/libX11/modules/lc/def: Makefile.in 
	lib/libX11/modules/lc/gen: Makefile.in 
	lib/libX11/modules/om: Makefile.in 
	lib/libX11/modules/om/generic: Makefile.in 
	lib/libX11/nls : Makefile.in compose.dir.pre locale.alias.pre 
	                 locale.dir.pre 
	lib/libX11/nls/en_US.UTF-8: Compose.pre 
	lib/libX11/specs: Makefile.in 
	lib/libX11/specs/XIM: Makefile.in 
	lib/libX11/specs/XKB: Makefile.in ch13.xml 
	lib/libX11/specs/i18n: Makefile.in 
	lib/libX11/specs/i18n/compose: Makefile.in 
	lib/libX11/specs/i18n/framework: Makefile.in 
	lib/libX11/specs/i18n/localedb: Makefile.in 
	lib/libX11/specs/i18n/trans: Makefile.in 
	lib/libX11/specs/libX11: AppC.xml Makefile.in 
	lib/libX11/src : CopyCmap.c CrCmap.c Depths.c FSWrap.c Font.c 
	                 FontInfo.c FontNames.c FreeCmap.c GetAtomNm.c 
	                 GetFPath.c GetMoEv.c GetPntMap.c GetRGBCMap.c 
	                 LiICmaps.c LiProps.c ListExt.c Makefile.am 
	                 Makefile.in ModMap.c PixFormats.c PolyReg.c 
	                 PutImage.c QuColors.c QuTree.c Quarks.c 
	                 RdBitF.c Region.c SetHints.c SetRGBCMap.c 
	                 TextToStr.c VisUtil.c WrBitF.c XlibInt.c 
	                 config.h.in 
	lib/libX11/src/util: Makefile.am Makefile.in makekeys.c 
	lib/libX11/src/xcms: CvCols.c Makefile.in StCols.c cmsColNm.c 
	                     cmsInt.c 
	lib/libX11/src/xkb: Makefile.am Makefile.in XKBAlloc.c 
	                    XKBGetMap.c XKBMAlloc.c XKBNames.c 
	                    XKBlibint.h 
	lib/libX11/src/xlibi18n: ICWrap.c Makefile.in XDefaultIMIF.c 
	                         XlcDL.c lcCharSet.c lcDB.c lcGeneric.c 
	                         lcPrTxt.c lcWrap.c 
Added files:
	lib/libX11     : README.md 
	lib/libX11/man/xkb: XkbAllocGeomOverlayKeys.man 
	lib/libX11/src : reallocarray.c reallocarray.h 
Removed files:
	lib/libX11     : README 
	lib/libX11/man/xkb: XkbAllocGeomOverlayKey.man 
	lib/libX11/modules/lc/xlocale: Makefile.am Makefile.in 

Log message:
Update to libX11 1.6.8 riding the major bump caused by xtrans 1.4.0


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/04 07:35:29

Modified files:
	lib/libICE     : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 compile config.h.in configure configure.ac 
	lib/libICE/doc : ICElib.xml 
	lib/libICE/include/X11/ICE: ICEmsg.h ICEproto.h 
	lib/libICE/specs: ice.xml 
	lib/libICE/src : ICElibint.h Makefile.am Makefile.in authutil.c 
	                 connect.c error.c getauth.c iceauth.c 
	                 icetrans.c listen.c listenwk.c misc.c process.c 
	                 protosetup.c register.c replywait.c setauth.c 
	                 shutdown.c watch.c 
Added files:
	lib/libICE     : README.md 
Removed files:
	lib/libICE     : README 

Log message:
update to libICE 1.0.10


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/04 07:36:02

Modified files:
	lib/libXft     : ChangeLog Makefile.am Makefile.in NEWS 
	                 aclocal.m4 compile configure configure.ac 
	lib/libXft/src : xftdpy.c xftdraw.c xftint.h 

Log message:
Update to libXft 2.3.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/04 07:37:42

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/04 07:44:46

Modified files:
	lib/libXft     : aclocal.m4 configure 
Added files:
	lib/libXft     : README.md 
Removed files:
	lib/libXft     : README 

Log message:
missed README -> README.md conversion in previous


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/04 07:45:15

Modified files:
	sys/arch/amd64/stand/cdboot: conf.c 
	sys/arch/amd64/stand/efi32: conf.c 
	sys/arch/amd64/stand/efi64: conf.c 
	sys/arch/amd64/stand/efiboot: conf.c 
	sys/arch/amd64/stand/pxeboot: conf.c 
	sys/arch/arm64/stand/efiboot: conf.c 
	sys/arch/armv7/stand/efiboot: conf.c 
	sys/arch/hppa/stand/boot: conf.c 
	sys/arch/i386/stand/boot: conf.c 
	sys/arch/i386/stand/cdboot: conf.c 
	sys/arch/i386/stand/pxeboot: conf.c 
	sys/arch/landisk/stand/boot: conf.c 
	sys/arch/loongson/stand/boot: conf.c 
	sys/arch/macppc/stand: conf.c 
	sys/arch/sparc64/stand/ofwboot: vers.c 

Log message:
crank version, following fchmod change


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/04 07:47:51

Modified files:
	lib/libICE     : aclocal.m4 config.h.in configure 

Log message:
regen after xtrans 1.4.0 update.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/04 08:24:07

Modified files:
	x11/worker     : Makefile distinfo 

Log message:
Update to worker-4.0.1
Changelog: http://www.boomerangsworld.de/cms/worker/changes.html#org48d6ffe


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/04 08:28:58

Modified files:
	sys/arch/amd64/amd64: bios.c 
	sys/arch/amd64/include: biosvar.h smbiosvar.h 
	sys/arch/arm64/dev: smbios.c 
	sys/arch/arm64/include: smbiosvar.h 
	sys/arch/i386/i386: bios.c 
	sys/arch/i386/include: biosvar.h smbiosvar.h 

Log message:
Cleanup the bios(4)/smbios(4) code a bit.  Fix some KNF issues, reduce
differences between the i386 and amd64 versions of the code and
switch to using the standard C integer exact width integer types.

ok deraadt@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	deraadt@cvs.openbsd.org	2019/08/04 09:21:02

Modified files:
	distrib/sets/lists/xbase: mi 
	distrib/sets/lists/xshare: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/08/04 09:27:37

Modified files:
	regress/sys/kern/stackpivot: Makefile pivot.h 

Log message:
Add arm64 asm for stackpivot regress test.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/04 09:29:04

Modified files:
	astro/kstars   : Makefile distinfo 
	astro/kstars/pkg: PLIST 

Log message:
Update kstars to 3.3.3


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/04 09:44:17

Modified files:
	sys/dev/acpi   : dwiic_acpi.c 
	sys/arch/arm64/conf: GENERIC 

Log message:
Add support for X-Gene/eMAG variant.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/08/04 09:44:34

Modified files:
	sys/arch/octeon/dev: octcit.c 

Log message:
Ensure that a posted write completes when re-enabling interrupts
or sending an IPI.


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/08/04 10:15:58

Modified files:
	sys/arch/amd64/include: smbiosvar.h 
	sys/arch/arm64/include: smbiosvar.h 
	sys/arch/i386/include: smbiosvar.h 

Log message:
Fix a typo I noticed reviewing the smbios code cleanup diff.

(stirng -> string)

ok kettenis@ who pointed out I should fix the new arm64 smbiosvar.h too


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/04 11:41:18

Modified files:
	www/ttyd       : Makefile distinfo 
Removed files:
	www/ttyd/patches: patch-src_server_c patch-src_server_h 
	                  patch-src_utils_c 

Log message:
update to ttyd head, the mutex problem was fixed upstream

-    if (pthread_mutex_trylock(&client->mutex)) {
+    if (pthread_mutex_trylock(&client->mutex) == 0) {


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 12:40:21

Added files:
	devel/ocaml-cppo: Makefile distinfo 
	devel/ocaml-cppo/pkg: DESCR PFRAG.dynlink-native PFRAG.native 
	                      PLIST 

Log message:
Re-import ocaml-cppo

with improvements from sthen@ and ok by krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 12:54:39

Log message:
    Import dever/ocaml-configurator
    
    improvements by sthen@, ok by krw@
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190804
    
    N ports/devel/ocaml-configurator/Makefile
    N ports/devel/ocaml-configurator/distinfo
    N ports/devel/ocaml-configurator/pkg/DESCR
    N ports/devel/ocaml-configurator/pkg/PLIST
    N ports/devel/ocaml-configurator/pkg/PFRAG.dynlink-native
    N ports/devel/ocaml-configurator/pkg/PFRAG.native
    N ports/devel/ocaml-configurator/patches/patch-src_configurator_ml
    N ports/devel/ocaml-configurator/patches/patch-src_configurator_mli
    N ports/devel/ocaml-configurator/patches/patch-src_jbuild
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 12:56:14

Log message:
    Import devel/ocaml-configurator
    
    improvements by @sthen, ok by @krw
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190804
    
    U ports/devel/ocaml-configurator/Makefile
    U ports/devel/ocaml-configurator/distinfo
    U ports/devel/ocaml-configurator/pkg/DESCR
    U ports/devel/ocaml-configurator/pkg/PLIST
    U ports/devel/ocaml-configurator/pkg/PFRAG.dynlink-native
    U ports/devel/ocaml-configurator/pkg/PFRAG.native
    U ports/devel/ocaml-configurator/patches/patch-src_configurator_ml
    U ports/devel/ocaml-configurator/patches/patch-src_configurator_mli
    U ports/devel/ocaml-configurator/patches/patch-src_jbuild
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 12:57:52

Log message:
    Import devel/ocaml-configurator
    
    improvements by @sthen, ok by @krw
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190804
    
    U ports/devel/ocaml-configurator/Makefile
    U ports/devel/ocaml-configurator/distinfo
    U ports/devel/ocaml-configurator/pkg/DESCR
    U ports/devel/ocaml-configurator/pkg/PLIST
    U ports/devel/ocaml-configurator/pkg/PFRAG.dynlink-native
    U ports/devel/ocaml-configurator/pkg/PFRAG.native
    U ports/devel/ocaml-configurator/patches/patch-src_configurator_ml
    U ports/devel/ocaml-configurator/patches/patch-src_configurator_mli
    U ports/devel/ocaml-configurator/patches/patch-src_jbuild
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 13:04:48

Log message:
    Import dever/ocaml-biniou
    
    improvements by @sthen, ok by @krw
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190804
    
    N ports/devel/ocaml-biniou/Makefile
    N ports/devel/ocaml-biniou/distinfo
    N ports/devel/ocaml-biniou/pkg/DESCR
    N ports/devel/ocaml-biniou/pkg/PLIST
    N ports/devel/ocaml-biniou/pkg/PFRAG.dynlink-native
    N ports/devel/ocaml-biniou/pkg/PFRAG.native
    N ports/devel/ocaml-biniou/patches/patch-Makefile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 13:06:03

Log message:
    import devel/ocaml-easy-format
    
    improvements by @sthen, ok by @krw
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190804
    
    N ports/devel/ocaml-easy-format/Makefile
    N ports/devel/ocaml-easy-format/distinfo
    N ports/devel/ocaml-easy-format/pkg/DESCR
    N ports/devel/ocaml-easy-format/pkg/PLIST
    N ports/devel/ocaml-easy-format/pkg/PFRAG.native
    N ports/devel/ocaml-easy-format/pkg/PFRAG.dynlink-native
    N ports/devel/ocaml-easy-format/patches/patch-Makefile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 13:07:43

Log message:
    import devel/ocaml-yojson
    
    improvements by @sthen, ok by @krw
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190804
    
    N ports/devel/ocaml-yojson/Makefile
    N ports/devel/ocaml-yojson/distinfo
    N ports/devel/ocaml-yojson/pkg/DESCR
    N ports/devel/ocaml-yojson/pkg/PLIST
    N ports/devel/ocaml-yojson/pkg/PFRAG.dynlink-native
    N ports/devel/ocaml-yojson/pkg/PFRAG.native
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 13:09:17

Log message:
    import graphics/ocaml-cairo
    
    improvements by @sthen, ok by @krw
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190804
    
    N ports/graphics/ocaml-cairo/Makefile
    N ports/graphics/ocaml-cairo/distinfo
    N ports/graphics/ocaml-cairo/pkg/DESCR
    N ports/graphics/ocaml-cairo/pkg/PLIST
    N ports/graphics/ocaml-cairo/pkg/PFRAG.dynlink-native
    N ports/graphics/ocaml-cairo/pkg/PFRAG.native
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 13:13:19

Log message:
    import x11/lablgtk3
    
    improvements by @sthen, ok by @krw
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190804
    
    N ports/x11/lablgtk3/Makefile
    N ports/x11/lablgtk3/distinfo
    N ports/x11/lablgtk3/patches/patch-src_Makefile
    N ports/x11/lablgtk3/pkg/DESCR
    N ports/x11/lablgtk3/pkg/PFRAG.dynlink-native
    N ports/x11/lablgtk3/pkg/PFRAG.native
    N ports/x11/lablgtk3/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/04 13:47:21

Modified files:
	devel          : Makefile 
	x11            : Makefile 
	graphics       : Makefile 

Log message:
enable recently imported ports:

devel/ocaml-configure
devel/ocaml-binio
devel/ocaml-yojson
devel/ocaml-cppo
devel/ocaml-easy-format
graphics/ocaml-cairo
x11/lablgtk3


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/08/04 14:52:47

Modified files:
	devel/physfs   : Makefile distinfo 

Log message:
update to physfs 3.0.2
all consumers (except games/love) tested by me.
take MAINTAINER while here
http -> https (found by kn@)
ok bcallah@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/08/04 17:51:45

Modified files:
	libexec/ld.so  : resolve.h resolve.c dlfcn.c loader.c 
	libexec/ld.so/aarch64: rtld_machine.c 
	libexec/ld.so/alpha: rtld_machine.c 
	libexec/ld.so/amd64: rtld_machine.c 
	libexec/ld.so/arm: rtld_machine.c 
	libexec/ld.so/hppa: rtld_machine.c 
	libexec/ld.so/i386: rtld_machine.c 
	libexec/ld.so/m88k: rtld_machine.c 
	libexec/ld.so/mips64: rtld_machine.c 
	libexec/ld.so/powerpc: rtld_machine.c 
	libexec/ld.so/sh: rtld_machine.c 
	libexec/ld.so/sparc64: rtld_machine.c 

Log message:
Simplify _dl_find_symbol().  Currently, it returns three values:
- the symbol it found, returned via the second argument
- the base offset of the the object it was found in, via the return value
- optionally: the object it was found in, returned via the last argument

Instead, return a struct with the symbol and object pointers and let the
caller get the base offset from the object's obj_base member.  On at least
aarch64, amd64, mips64, powerpc, and sparc64, a two word struct like this
is passed in registers.

ok mpi@, kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/04 19:55:38

Modified files:
	sys/net        : if_tpmr.c 

Log message:
pay some lip service to TPMR compliance according to 802.1Q-2018

the spec says we should filter packets destined to a list of ethernet
addresses. im currently interpreting "filter" as meaning dropping,
which this diff does.

however, one of the addresses to filter is the one lacp uses by
default and not a lot of lacp implementations (read switches) support
the configuration of a different address. i still need lacp to go
over tpmr, and because i can't change the address, this diff also
has a way to configure tpmr to still allow the packets through.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/04 21:56:31

Modified files:
	sys/net        : if_tpmr.c 

Log message:
run pf against ip packets coming in and out of the two ports.

the idea and a good chunk of the implementation is copied from
bridge(4).

note that IP packets inside "service delimited" traffic, ie, vlan,
svlan, or bpe encapsulated traffic, are not considered IP and will
therefore not be given to pf to look at. if you want to filter that
you'll need to configure vlan/svlan/bpe interfaces to get past their
headers, and then configure them with their own tpmrs. hopefully
the interface input handlers were established in the right order.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/04 22:06:10

Modified files:
	share/man/man4 : tpmr.4 

Log message:
document how to make technically non-compliant TPMRs


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/04 22:06:52

Modified files:
	share/man/man4 : tpmr.4 

Log message:
Xr pf 4


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/08/05 00:19:12

Modified files:
	www/honk       : Makefile distinfo 

Log message:
Update to v0.7.7

Changelog:
+ Add another retry to workaround pixelfed's general unreliability.
+ Attached images are not lost when previewing.
- Remove sensitivity to spicy peppers.
+ Keep reply to setting during preview.
+ Increase max thread retrieval depth to 10.

from Horia Racoviceanu


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/05 00:42:02

Modified files:
	usr.bin/tmux   : input.c screen-write.c tmux.h tty-term.c tty.c 

Log message:
Add support for the SD (scroll down) escape sequence, GitHub issue 1861.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/05 01:08:57

Modified files:
	share/man/man4/man4.arm64: Makefile 
Added files:
	share/man/man4/man4.arm64: smbios.4 

Log message:
add a manual page for smbios

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/05 02:33:38

Modified files:
	sys/dev/pci    : files.pci 

Log message:
sis(4) calls mii_phy_reset(); add explicit dependency on mii_phy in config
from grunk@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/05 02:35:59

Modified files:
	sys/dev/pci/drm: drm_linux.c 
	sys/isofs/cd9660: cd9660_vnops.c 
	sys/kern       : kern_descrip.c kern_sysctl.c vfs_syscalls.c 
	                 vfs_vnops.c 
	sys/miscfs/fuse: fuse_vnops.c 
	sys/msdosfs    : msdosfs_vnops.c 
	sys/nfs        : nfs_kq.c 
	sys/sys        : file.h 
	sys/tmpfs      : tmpfs_vnops.c 
	sys/ufs/ufs    : ufs_vnops.c 

Log message:
Allow concurrent reads of the f_offset field of struct file by
serializing both read/write operations using the existing file mutex.
The vnode lock still grants exclusive write access to the offset; the
mutex is only used to make the actual write atomic and prevent any
concurrent reader from observing intermediate values.

ok mpi@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/05 02:36:19

Modified files:
	usr.sbin/bgpd  : bgpd.c rde.c 

Log message:
Change the order how filtersets are passed during config reloads. Instead
of sending them after e.g. the filter rule send them before. The benefit
is that the filterset is present when a rule is added and so the filter
rule is complete at that moment.
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/05 02:45:50

Modified files:
	www/epiphany   : Makefile distinfo 

Log message:
Update to epiphany-3.32.4.

ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/05 02:46:46

Modified files:
	sys/dev        : diskmap.c 

Log message:
Favor vn_close() in the error path of diskmapioctl() since side-effects
caused by calling vn_open() with write permissions must be reverted.
Otherwise, the vfs subsystem could panic while releasing the last vnode
reference if the writecount is still positive.

ok visa@

Reported-by: syzbot+4724df09d9ab0fdca28a@syzkaller.appspotmail.com
Reported-by: syzbot+a430606fd528645559db@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/05 02:46:55

Modified files:
	usr.sbin/bgpd  : bgpd.c bgpd.h config.c parse.y printconf.c 
	                 rde.c rde_sets.c 

Log message:
Cleanup config reload in the RDE. Use the bgpd_conf struct to store sets
and l3vpns instead of temporary globals. Also rework rde_reload_done to
free filters and sets earlier. The soft-reconfiguration process no longer
needs the previous filters / sets to do its work since there is a full
Adj-RIB-Out.
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/05 04:08:37

Modified files:
	www/mozilla-firefox: Makefile 
	www/seamonkey  : Makefile 

Log message:
add comment to make it clear that DPB_PROPERTIES=lonesome on i386 intentionally overrides "parallel"


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/05 04:09:51

Modified files:
	www/chromium   : Makefile 
	www/iridium    : Makefile 

Log message:
get rid of "parallel" in DPB_PROPERTIES on i386, just keep the "lonesome"


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/05 04:42:51

Modified files:
	sys/net        : if_aggr.c 

Log message:
try to be more compliant with the spec by implementing marker responses.

i hope, i didn't test this that hard.


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2019/08/05 05:43:25

Modified files:
	libressl       : index.html releases.html 

Log message:
LibreSSL 3.0.0


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/08/05 05:50:33

Modified files:
	usr.bin/ssh    : authfile.c authfile.h sshconnect2.c 

Log message:
Remove now-redundant perm_ok arg since sshkey_load_private_type will
now return SSH_ERR_KEY_BAD_PERMISSIONS in that case.  Patch from
jitendra.sharma at intel.com, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/08/05 06:01:51

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
Remove -port option from s_server since it is same as -accept

ok schwarze@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/05 06:14:52

Added files:
	devel/gmake/patches: patch-tests_run_make_tests_pl 

Log message:
fix running the regression tests with newer perl (no . in @INC); from upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/05 06:30:50

Modified files:
	lib/libutil    : ber.c 

Log message:
There's no reason why the first digit of an OID can't be 0.

OK claudio@
"Good find" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/05 06:38:14

Modified files:
	lib/libutil    : ber.c 

Log message:
Don't use a 0 element to determine the end of an OID when comparing two
OIDS. This can result in false equality matches.

OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/05 06:51:32

Modified files:
	usr.sbin/bgpctl: bgpctl.c 

Log message:
Add a comment why network_bulk() is not using send_filterset(). Using
send_filterset() would result in a use after free because send_filterset()
frees the set after sending but network_bulk() runs in a loop.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/05 07:31:07

Modified files:
	sys/kern       : kern_unveil.c 

Log message:
Remove the unused function parameter rootvnode from unveil_add_vnode().


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/05 07:35:20

Log message:
    Import multimedia/handbrake, an open source video transcoder.
    ok kn@
    
    HandBrake is an open-source, GPL-licensed, multiplatform, multithreaded
    video transcoder with rich selection of features. Both GUI and
    command-line only versions are available.
    
    Supported sources:
    * Most common multimedia files that libavformat and libavcodec support
    * Any DVD or Bluray-like source which is NOT copy-protected (removal
    of copy protection is not supported)
    
    Outputs:
    * File (container) format: MP4 (M4V) and MKV
    * Video: H.264 (x264), H.265 (x265), MPEG-2/MPEG-4 (ffmpeg), or
    Theora (libtheora)
    * Audio: AAC, CoreAudio AAC/HE-AAC (OS X only), MP3, FLAC, AC3, or
    Vorbis; AC-3, DTS, DTS-HD, AAC, and MP3 pass-through
    
    HandBrake also includes support for chapters, subtitles, advanced video
    filters, and more. It is also useful for making videos compatible with
    portable video devices such as the Apple iPod/iPhone.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190805
    
    N ports/multimedia/handbrake/Makefile
    N ports/multimedia/handbrake/distinfo
    N ports/multimedia/handbrake/patches/patch-gtk_configure_ac
    N ports/multimedia/handbrake/patches/patch-libhb_fifo_c
    N ports/multimedia/handbrake/patches/patch-make_include_gcc_defs
    N ports/multimedia/handbrake/patches/patch-make_include_main_defs
    N ports/multimedia/handbrake/patches/patch-libhb_decsrtsub_c
    N ports/multimedia/handbrake/patches/patch-make_configure_py
    N ports/multimedia/handbrake/patches/patch-gtk_src_callbacks_c
    N ports/multimedia/handbrake/pkg/PLIST
    N ports/multimedia/handbrake/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/05 07:35:54

Modified files:
	multimedia     : Makefile 

Log message:
+handbrake


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/05 07:51:42

Modified files:
	sysutils/random_run: Makefile distinfo 

Log message:
new option -R (rotate)
slowly running out of letters :)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/05 09:05:09

Modified files:
	devel/gmake    : Makefile 
Added files:
	devel/gmake/patches: patch-tests_scripts_misc_close_stdout 

Log message:
don't error out on empty test; from upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/05 09:13:44

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Kernel realpath(3) had the same vnode leakage bug like unveil(2).
If parent and lookup vnode are equal, namei(9) locks them once but
reference counts twice.
from Moritz Buhl


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/05 09:16:39

Log message:
    Call realpath(3) in combination with chroot(2) and chdir(2).
    Use umount(8) to check that the mountpoint leaks no vnode.
    from Moritz Buhl
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190805
    
    N src/regress/sys/kern/realpath-unmount/Makefile
    N src/regress/sys/kern/realpath-unmount/realpath-chdir.c
    N src/regress/sys/kern/realpath-unmount/realpath-chroot.c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/05 09:18:34

Modified files:
	regress/sys/kern: Makefile 

Log message:
Link regress realpath-unmount to build.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/05 09:20:29

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
If the leases file cannot be opened for writing, just issue a warning
and carry-on. Similar to treatment of /etc/resolv.conf[.tail].

Lets /var/db/dhclient.leases.if be on RO filesystem.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/05 10:22:00

Modified files:
	sbin/dhclient  : dhclient.c 

Log message:
dhclient.leases(5) is not required for dhclient(8) to work, so just
carry on if it can't be accessed. e.g. if /var/db is not present in
single user mode.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/05 10:28:44

Modified files:
	devel/libuv    : Makefile distinfo 
Removed files:
	devel/libuv/patches: patch-test_test-fs_c 

Log message:
Update libuv to 1.30.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/05 10:28:54

Modified files:
	devel/py-uv    : Makefile distinfo 
	devel/py-uv/patches: patch-setup_libuv_py 

Log message:
Update py-uv to 1.4.0 which supports libuv 1.30.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/05 11:07:25

Modified files:
	textproc/py-emoji: Makefile distinfo 

Log message:
Update py-emoji 0.5.2 -> 0.5.3

Fairly trivial update. Changelog consists of one entry:

Use codecs.open() instead of open() when processing readme in setup.py

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/05 11:42:40

Modified files:
	audio/mumble   : Makefile 
	audio/mumble/patches: patch-src_mumble_AudioOutput_cpp 
	                      patch-src_mumble_AudioWizard_cpp 
	                      patch-src_mumble_ConnectDialog_cpp 
	                      patch-src_mumble_ServerHandler_cpp 
Added files:
	audio/mumble/patches: patch-src_mumble_ACLEditor_cpp 
	                      patch-src_mumble_About_cpp 
	                      patch-src_mumble_BanEditor_cpp 
	                      patch-src_mumble_CustomElements_cpp 
	                      patch-src_mumble_DBus_cpp 
	                      patch-src_mumble_GlobalShortcut_cpp 
	                      patch-src_mumble_LCD_cpp 
	                      patch-src_mumble_Log_cpp 
	                      patch-src_mumble_Log_unix_cpp 
	                      patch-src_mumble_LookConfig_cpp 
	                      patch-src_mumble_MainWindow_cpp 
	                      patch-src_mumble_Messages_cpp 
	                      patch-src_mumble_NetworkConfig_cpp 
	                      patch-src_mumble_OSS_cpp 
	                      patch-src_mumble_OverlayClient_cpp 
	                      patch-src_mumble_OverlayConfig_cpp 
	                      patch-src_mumble_OverlayEditorScene_cpp 
	                      patch-src_mumble_OverlayEditor_cpp 
	                      patch-src_mumble_OverlayUserGroup_cpp 
	                      patch-src_mumble_OverlayUser_cpp 
	                      patch-src_mumble_Overlay_cpp 
	                      patch-src_mumble_Overlay_macx_mm 
	                      patch-src_mumble_Plugins_cpp 
	                      patch-src_mumble_PulseAudio_cpp 
	                      patch-src_mumble_RichTextEditor_cpp 
	                      patch-src_mumble_SocketRPC_cpp 
	                      patch-src_mumble_Tokens_cpp 
	                      patch-src_mumble_UserEdit_cpp 
	                      patch-src_mumble_UserInformation_cpp 
	                      patch-src_mumble_UserModel_cpp 
	                      patch-src_mumble_UserView_cpp 
	                      patch-src_mumble_VersionCheck_cpp 
	                      patch-src_mumble_VoiceRecorderDialog_cpp 
	                      patch-src_mumble_VoiceRecorder_cpp 
	                      patch-src_mumble_WASAPINotificationClient_cpp 
	                      patch-src_mumble_WASAPI_cpp 
	                      patch-src_mumble_os_macx_mm 

Log message:
fix audio/mumble build with protobuf 3.7+, from https://github.com/mumble-voip/mumble/pull/3623 via pkgsrc


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/05 11:45:17

Modified files:
	mail/postfix/snapshot: Makefile distinfo 
Removed files:
	mail/postfix/snapshot/patches: patch-src_util_sys_defs_h 

Log message:
update to postfix-3.5.20190724, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/08/05 12:27:32

Modified files:
	lang/gerbil    : Makefile 

Log message:
Enable the tests. From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/05 12:31:02

Modified files:
	lang/flang/driver: Makefile 
Added files:
	lang/flang/driver/patches: 
	                           patch-lib_Driver_ToolChains_OpenBSD_cpp 
	                           patch-lib_Driver_ToolChains_OpenBSD_h 

Log message:
Add back two patches that got removed in the flang-8.0.0 update. They're
needed in order to have a working runtime.

Problem reported by and testing by j <AT> bitminer <DOT> ca


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/05 13:27:47

Modified files:
	usr.sbin/ldomctl: config.c ldom.conf.5 ldomctl.h parse.y 

Log message:
Allow an optional stride in the vcpu specification.  This makes it possible
to allocate virtual CPUs but not assign them to domains.  This way you
can give domains exclusive access to a core without assigning all threads
of that core to the domain.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/05 13:48:49

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/patches: patch-client_mysqladmin_cc 
	                           patch-libmariadb_libmariadb_CMakeLists_txt 
	                           patch-libmariadb_mariadb_config_mariadb_config_c_in 
	                           patch-scripts_mysql_install_db_sh 
	databases/mariadb/pkg: PLIST-main PLIST-tests 

Log message:
update to MariaDB 10.3.17, from Brad

CVE-2019-2737, CVE-2019-2739, CVE-2019-2740, CVE-2019-2758,
CVE-2019-2805


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/05 14:09:59

Modified files:
	security/clamav: Makefile distinfo 

Log message:
update to clamav-0.101.3
fix DoS when scanning a non-recursive zip bomb


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/05 14:48:17

Modified files:
	misc/subsurface: Makefile 

Log message:
misc/subsurface port improvements, maintainer timeout

- explicitly list the gnu MODULE, this is normally included implicitly
when setting CONFIGURE_STYLE to something using autoconf. it has to be
done a bit differently than normal for a port that also uses cmake, but
it's better to use as much infrastructure as possible (this brings
in the standard ports autoconf cache file config.site, avoids the
confusing manual setting of MODGNU_* variables which should never be
set in a port, etc)

- due to mix of cmake+autoconf we can't use CONFIGURE_ARGS from the gnu
MODULE above so at least set "--disable-silent-rules" so we can see the
compiler commands

- the above lets us see that CC/CFLAGS are not honoured in the autoconf
part of the build, add ${CONFIGURE_ENV} so that these are picked up
so that it uses the correct system compiler rather than gcc 4.2.1 for
the libdivecomputer part of the build

- update to newer AUTOCONF_VERSION/AUTOMAKE_VERSION, mainly to increase
the chance that someone building will already have the right versions
installed

- requiring wxallowed is no reason to disable tests, but they don't
build at present anyway, so give a better comment

- use the new standard do-gen target for autoconf, tidy libdivecomputer
build dir creation, break out configure args onto separate lines as
normal in ports, use MAKE_PROGRAM rather than hardcoded gmake

- the change of compiler means the produced package is different so
bump REVISION


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/08/05 15:16:48

Added files:
	etc/signify    : openbsd-67-pkg.pub 

Log message:
6.7 packages key


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/08/05 15:27:02

Modified files:
	www/gitea      : Makefile distinfo 
	www/gitea/patches: patch-custom_conf_app_ini_sample 
	                   patch-main_go 
	www/gitea/pkg  : PLIST 

Log message:
Update gitea 1.8.3 -> 1.9.0
Release notes: https://github.com/go-gitea/gitea/releases/tag/v1.9.0


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/08/05 15:45:27

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
Many key types are supported now, so take care to check the size
restrictions and apply the default size only to the matching key
type.
tweak and ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/05 17:28:55

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Kernel realpath(3) and unveil(2) did not work correctly if the root
directory was written as "//".  If there is no non-slash character
in the path name, use the spacial case for root.
found by gmake regression tests; OK naddy@ benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/05 17:32:04

Modified files:
	regress/sys/kern/realpath: realpathtest.c 
	regress/sys/kern/unveil-unmount: Makefile 

Log message:
Test realpath and unveil if the root directory is written as "//".


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/05 18:57:04

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/05 18:57:54

Modified files:
	distrib/sets/lists/comp: md.arm64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/05 19:42:50

Modified files:
	etc/signify    : openbsd-67-base.pub 

Log message:
oops, 6.7, spotted by tedu well in advance of it becoming an issue


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/08/05 22:01:42

Modified files:
	libexec/ld.so  : loader.c 
	libexec/ld.so/aarch64: rtld_machine.c 
	libexec/ld.so/alpha: rtld_machine.c 
	libexec/ld.so/amd64: rtld_machine.c 
	libexec/ld.so/arm: rtld_machine.c 
	libexec/ld.so/hppa: rtld_machine.c 
	libexec/ld.so/i386: rtld_machine.c 
	libexec/ld.so/m88k: rtld_machine.c 
	libexec/ld.so/mips64: rtld_machine.c 
	libexec/ld.so/powerpc: rtld_machine.c 
	libexec/ld.so/sh: rtld_machine.c 
	libexec/ld.so/sparc64: rtld_machine.c 

Log message:
Factor out TEXTREL mprotecting from the per-arch files into _dl_rtld(),
hiding the actual grotty bits in inline functions

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/06 00:56:29

Modified files:
	sys/dev/ic     : dwiic.c dwiicreg.h 

Log message:
Read the fifo depths from the appropriate configuration register and
update the values if they are non-zero and smaller than the current
hardcoded depths.  Fixes dwiic(4) on Ampere eMAG.

ok patrick@, jcs@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/06 01:16:48

Modified files:
	sys/dev        : diskmap.c 

Log message:
Resolve some minor nits in diskmapioctl():

* Favor ENOTTY for unknown ioctl commands
* Return the actual error from copyinstr and copyoutstr, removes the need to
initialize the local error variable
* Do not use parens around return expressions consistently

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/06 01:21:29

Modified files:
	sys/dev/pci    : if_vmx.c 

Log message:
use ifiq_input so we can call if_rxr_livelocked to apply backpressure


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/06 01:27:10

Modified files:
	regress/usr.sbin/bgpd/integrationtests: mrt-table-mp.ok 

Log message:
Update output file for mrt table-mp dumps since those can now dump
the MPLS VPN as well.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/06 01:31:53

Modified files:
	regress/usr.sbin/bgpd/integrationtests: Makefile md5.sh mrt.sh 
	                                        network_statement.sh 
	                                        ovs.sh 

Log message:
Cleanup the scripts a bit, error out early if not run as root, use
set -x later in the script instead of ksh -x to shorten the output
of the tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/06 01:54:53

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/06 03:36:54

Modified files:
	sys/dev/pci    : if_vmx.c 

Log message:
if the rx ring gets empty and can't be filled, retry in the future

there have been several reports that vmx gets stuck sometimes and
only comes good after it's taken down and up again. hopefully this
fixes that issue.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/08/06 03:38:15

Modified files:
	net/mattermost-server: Makefile distinfo 
	net/mattermost-server/patches: patch-config_default_json 
	                               patch-utils_fileutils_fileutils_go 
	net/mattermost-server/pkg: PLIST 
Added files:
	net/mattermost-server/patches: patch-config_file_go 

Log message:
Update mattermost-server 5.9.0 -> 5.13.2
Changelog: https://docs.mattermost.com/administration/changelog.html
ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/06 04:07:45

Modified files:
	distrib/miniroot: install.sub 

Log message:
raise the watchdog for sysupgrade-initiated updates from 30m to 45m.
on my anoncvs server it takes about 20m already to untar sets, which is
a bit close to the limit for my liking (we only want to trigger the
watchdog if things are *really* stuck; if it's still proceeding then
rebooting mid-upgrade can leave things in a worse state).

we can probably do something smarter (e.g. reset the watchdog after
untarring each set) but this is an easier-to-test initial improvement.

ok florian deraadt kn


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/06 04:09:37

Modified files:
	sys/dev/pci    : if_vmx.c 

Log message:
i replaced a misplaced tab with g, not a space. make this work again.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/06 04:15:27

Modified files:
	sys/dev/pci    : if_vmx.c if_vmxreg.h 

Log message:
have a go at using msi interrupts.

vmx has an interesting feature where config in the hypervisor can
say what type of interrupts the guest should configure for the nic,
with the options of auto, msix, msi, and intx. depending on this,
the driver should try to map the type specified and fall back from
there.

also interesting is that my guest gets "auto" from the hypervisor,
which i fall through to msi with, but an msi interrupt cannot be
mapped. i cannot see any msi interrupts in this guest actually.
there must be something funky at the platform level that we don't
like, and that prevents msi from being mapped.

if msi does get mapped, we should be able to avoid a register read
on every interrupt. that should probably provide a noticable
performance improvement if we can ever take advantage of it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/06 04:20:09

Modified files:
	devel/pkgconf  : Makefile distinfo 

Log message:
update to pkgconf-1.6.3, from Christoph R. Winter, looks good to maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/06 04:54:40

Modified files:
	sys/dev/pci    : if_vmx.c 

Log message:
remove some debug cruft i should have removed before the last commit.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/06 05:07:37

Modified files:
	sbin/dhclient  : dhclient.c 
	usr.sbin/dhcpd : dhcpd.c 
	usr.sbin/dhcrelay: dhcrelay.c 
	usr.sbin/dhcrelay6: dhcrelay6.c 

Log message:
Use pw->pw_dir when chroot'ing, not _PATH_VAREMPTY.

Brings various dhcp related daemons into line with
the common idiom.

ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/06 05:38:16

Modified files:
	regress/sys/kern/realpath: realpathtest.c 
	regress/sys/kern/unveil-unmount: Makefile 

Log message:
Test more variants to specify the root directory.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/06 06:19:26

Modified files:
	devel/gmake    : Makefile 
Added files:
	devel/gmake/patches: patch-posixos_c 

Log message:
Use a non-blocking read with pselect to avoid hangs.  From upstream.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/06 06:48:26

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/06 07:16:47

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/08/06 07:34:36

Modified files:
	libexec/spamd  : spamd.c 

Log message:
By now we are already confident that pledge(2) "just works(tm)" and that it can
be used to effectively remove filesystem access.

That being said, in spamd(8) when I pledge(2)d it the main priv process got
"stdio inet" which means there's no fs access at all so calling
chroot(2)/chdir(2) here doesn't get us any additional protection. Just remove
them.

OK deraadt@ and no objections from schwarze@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/06 09:49:57

Modified files:
	regress/usr.sbin/bgpd/integrationtests: Makefile 
Added files:
	regress/usr.sbin/bgpd/integrationtests: api-exabgp.sh as0.sh 
	                                        bgpd.as0.conf 
	                                        exabgp.as0.test1.in 
	                                        exabgp.as0.test2.in 
	                                        exabgp.as0.test2.ok 
	                                        exabgp.as0.test2_2.in 
	                                        exabgp.as0.test2_3.in 

Log message:
Implement RFC7607 testing using exabgp since we need to fiddle with
attributes. Currently not enabled since it will fail.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/06 11:13:39

Modified files:
	mail/geary     : Makefile distinfo 

Log message:
Update to geary 3.32.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/06 11:16:13

Modified files:
	audio/mpc      : Makefile distinfo 
	audio/mpc/patches: patch-doc_meson_build 

Log message:
Update to mpc 0.32


CVSROOT:	/cvs
Module name:	ports
Changes by:	jcs@cvs.openbsd.org	2019/08/06 11:23:28

Modified files:
	lang/crystal   : Makefile distinfo 
	lang/crystal/pkg: PLIST 

Log message:
update to crystal 0.30.0, shards to 0.9.0
now builds with llvm8, remove broken marker

from maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/06 11:28:12

Modified files:
	audio/mpd      : Makefile distinfo 
	audio/mpd/patches: patch-doc_mpdconf_example 
	audio/mpd/pkg  : PLIST 
Added files:
	audio/mpd/patches: patch-doc_meson_build 
	                   patch-src_net_meson_build 
Removed files:
	audio/mpd/patches: patch-Makefile_in patch-src_Main_cxx 
	                   patch-src_command_CommandError_cxx 

Log message:
Update to mpd 0.21.11.

Long awaited update to 0.21.x branch, been using it on 6.5/amd64 since
months without issues.
Upstream switched CONFIGURE_STYLE to to meson, so adapt CONFIGURE_ARGS
but try to keep the same enable/disable flags list for now (there are
waayyyyy too many options in there).
Macppc build fixes/tweaks from cwen@, thanks!
General apathy from ports@, so  users will get to test it now...


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/06 11:38:05

Modified files:
	misc/gpsd      : Makefile 

Log message:
Add missing BDEP on textproc/xmlto, spotted on sparc64


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/08/06 12:04:57

Modified files:
	lang/vala      : Makefile distinfo 

Log message:
update to vala-0.44.7


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/06 12:06:32

Modified files:
	sys/arch/sparc64/sparc64: ipifuncs.c 

Log message:
Block interrupts while (attempting to) send an IPI on sun4v just like we
do on sun4u.  Appears to fix random kernel hangs (often involving
fpusave_proc()) on the new ports cluster machines.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/08/06 12:13:36

Modified files:
	sysutils/py-ghmi: Makefile distinfo 
	sysutils/py-ghmi/pkg: PLIST 

Log message:
update to py-ghmi-1.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/08/06 12:19:51

Modified files:
	lang/chicken   : Makefile.inc 
	lang/chicken/bootstrap: Makefile distinfo 
	lang/chicken/core: Makefile distinfo 
	lang/chicken/core/patches: patch-defaults_make patch-eval_scm 
	lang/chicken/core/pkg: README 

Log message:
Update to chicken 5.1. From Timo Myyra (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/08/06 12:32:20

Modified files:
	print/poppler  : Makefile distinfo 
	print/poppler/patches: patch-glib_CMakeLists_txt 

Log message:
Update to poppler-0.79.0.

Extra tests on sparc64 by jca@ -- thanks!

In contrast to the update I sent to ports@, this only contains a minor
bump to libpoppler-glib (spotted by jca@).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/08/06 12:37:37

Modified files:
	graphics/gdcm  : Makefile distinfo 
	graphics/gdcm/patches: patch-CMakeLists_txt 

Log message:
update to gdcm-3.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/06 12:43:50

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-8.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/06 12:45:24

Modified files:
	www/ttyd       : Makefile distinfo 

Log message:
update to ttyd-1.5.2


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/06 13:24:45

Modified files:
	sys/dev/pv     : if_vio.c 

Log message:
The vio(4) interface did not recover from mbuf shortage.  The logic
to start the rx tick did not work since we use if_rxr_get().  An
easy fix is to start the rx timeout every second unconditionally.
OK dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/06 14:21:37

Modified files:
	regress/sys/kern/unveil: Makefile 

Log message:
Use SUDO to run test as root.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/06 14:58:26

Modified files:
	devel/cgdb     : Makefile distinfo 
	devel/cgdb/patches: patch-configure_ac 
Added files:
	devel/cgdb/patches: patch-cgdb_cgdb_cpp 
	                    patch-lib_util_fork_util_cpp 

Log message:
update to cgdb-0.7.1

patch and add a dependency to use ports gdb ("egdb") by default, this
doesn't seem to work too well with base gdb (for example input hangs or
something gets confused with gdb's questions like "Make breakpoint
pending on future shared library load").


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/06 14:59:16

Modified files:
	textproc/oniguruma: Makefile distinfo 

Log message:
update to oniguruma-6.9.3


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/06 16:45:02

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Fix white spaces.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/06 16:57:55

Modified files:
	sys/net        : if.c if_loop.c netisr.h 
	sys/netinet    : ip_input.c 
	sys/netinet6   : ip6_input.c 

Log message:
When we needed the kernel lock for local IP packet delivery, mpi@
introduced a queue to grab the lock for multiple packets.  Now we
have only netlock for both IP and protocol input.  So the queue is
not necessary anymore.  It just switches CPU and decreases performance.
So remove the inet and inet6 ip queue for local packets.
To get TCP running on loopback, we have to queue once between TCP
input and output of the two sockets.  So use the loopback queue in
looutput() unconditionally.
OK visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/06 17:17:55

Modified files:
	multimedia/mpv : Makefile 
	multimedia/mpv/pkg: PLIST 
Added files:
	multimedia/mpv/patches: patch-libmpv_client_h 

Log message:
Build and install the libmpv shared library and associated headers.
Much better sed line from naddy@, ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/08/06 22:22:16

Modified files:
	lib/libedit    : terminal.c 

Log message:
Initialize the line buffer by zero when allocation.  This fixes the
problem a crash happens after the window size change.
Worked and discussed with asou and schwarze.

ok schwarze


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/07 00:02:31

Modified files:
	devel/pycharm  : Makefile distinfo 
	devel/pycharm/patches: patch-bin_pycharm_sh 
	devel/pycharm/pkg: PLIST 

Log message:
Update pycharm to 2019.2


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/07 00:51:54

Modified files:
	usr.sbin/bgpd  : bgpd.8 

Log message:
Order RFC by number.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/07 00:53:48

Modified files:
	usr.sbin/bgpd  : parse.y 

Log message:
Only templates can have a remote-as of 0 (as in uninitalised, trust the AS
from the OPEN message) any other use of AS 0 is forbidden. This makes
templates work again without any extra unwanted config.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/07 00:55:53

Modified files:
	usr.sbin/bgpd  : rde.c 

Log message:
Implement the last few missing bits of RFC7607 and ensure that the AS in
AGGREGATOR and AS4_AGGREGATOR are non zero. All other cases have already
been covered.
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/07 01:37:17

Modified files:
	devel/libgee   : Makefile distinfo 

Log message:
Update to libgee-0.20.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/07 01:57:49

Modified files:
	regress/usr.sbin/bgpd/integrationtests: Makefile 

Log message:
The as0 regress can be enabled now. Needs exabgp to run else it is skipped.


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/08/07 01:58:56

Modified files:
	mail/exim      : Tag: OPENBSD_6_5 Makefile 

Log message:
Replace back PERMIT_PACKAGE into PERMIT_PACKAGE_CDROM

PERMIT_PACKAGE is not valid on 6.5 ports tree.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/07 02:02:57

Modified files:
	x11/gnome/nautilus: Makefile distinfo 

Log message:
Update to nautilus-3.32.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/07 02:49:30

Modified files:
	converters/bdf2psf: Makefile distinfo 

Log message:
Update bdf2psf to 1.193.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/07 02:50:20

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/07 02:54:56

Modified files:
	textproc/ruby-rouge: Makefile distinfo 
	textproc/ruby-rouge/pkg: PLIST 

Log message:
Update ruby-rouge to 3.8.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/07 03:06:11

Modified files:
	databases/mydumper: Makefile 
	databases/mydumper/patches: patch-CMakeLists_txt 

Log message:
unbreak databases/mydumper on LLD arches following mariadb update;
mydumper uses libm functions but doesn't pull in the library itself.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/07 04:26:41

Modified files:
	usr.sbin/bgpd  : bgpd.conf.5 bgpd.h parse.y printconf.c rde.c 
	                 rde.h rde_decide.c rde_rib.c 

Log message:
Improve RIB reload behaviour. Especially when the rtable changes or the
route evaluation is modified. In both cases the softreconfig code will
now walk the RIB and ensure that everything is in proper sync.
Additionally remove 'route-collector yes|no' from the bgpd config, instead
use 'rde rib Loc-RIB no evaluate' with the benefit that you can alter
the setting now during runtime.
Tested and OK benno@


CVSROOT:	/cvs
Module name:	www
Changes by:	claudio@cvs.openbsd.org	2019/08/07 04:34:25

Modified files:
	faq            : current.html 

Log message:
The config keyword route-collector is deprecated and will cause bgpd(8)
to fail parsing the config.  Instead disable the route evaluation process
on the Loc-RIB with rde rib Loc-RIB no evaluate.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/07 04:44:49

Modified files:
	graphics/digikam: Makefile distinfo 
	graphics/digikam/patches: patch-core_CMakeLists_txt 
	graphics/digikam/pkg: PLIST 

Log message:
Update digikam to 6.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/07 05:14:16

Modified files:
	sys/dev/usb    : uvideo.c uvideo.h 

Log message:
Add support for the KSMedia 8-bit IR format, a greyscale format,
as seen on the IR camera of my Lenovo X395.

ok jan@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/07 05:16:02

Modified files:
	sys/dev/usb    : uvideo.c 

Log message:
Add support for integrated USB cameras with two functions, as
seen on a Lenovo X395 which combines normal webcam functionality
with another IR camera, by parsing the USB interface association
descriptors.  This fixes the symptom of uvideo(4) complaining
about too many headers and not providing any functionality at all.

ok jan@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/07 06:51:10

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/py-addons: Makefile distinfo 
	devel/py-addons/pkg: DESCR PLIST 
	devel/py-peak-rules: Makefile distinfo 
	devel/py-peak-rules/pkg: DESCR PLIST 
	devel/py-prioritized_methods: Makefile distinfo 
	devel/py-prioritized_methods/pkg: DESCR PLIST 

Log message:
Remove py-addons, py-peak-rules, and py-prioritized_methods.

Upstream on these hasn't had a real release in 10 or more years.

Time for them to go.

ok danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/07 08:14:01

Modified files:
	sys/kern       : kern_sig.c 

Log message:
avoid large MAXPATHLEN object on the stack in coredump(), by allocating
it from the pool.
ok bluhm visa


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/07 08:56:15

Modified files:
	math/ebc       : Makefile distinfo 

Log message:
Update to ebc-2.1.2
Changelog: https://github.com/gavinhoward/bc/releases/tag/2.1.2


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/07 10:20:22

Modified files:
	regress/usr.sbin/bgpd/integrationtests: exabgp.as0.test2_3.in 

Log message:
Actually make the hand coded ASPATH a AS_SEQUENCE and not an AS_SET.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/07 12:11:34

Modified files:
	textproc/podofo: Makefile 
Added files:
	textproc/podofo/patches: patch-test_TokenizerTest_CMakeLists_txt 

Log message:
Unbreak podofo with upcoming cmake 3.15

OK sthen@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/07 12:13:58

Modified files:
	productivity/gnucash: Makefile 
Added files:
	productivity/gnucash/patches: patch-CMakeLists_txt 

Log message:
Unbreak gnucash with upcoming cmake 3.15

OK ajacoutot@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/08/07 12:53:12

Modified files:
	sys/arch/amd64/include: codepatch.h 
	sys/arch/amd64/amd64: codepatch.c 

Log message:
Add codepatch_jmp(), like codepath_call() but inserting a jmp instead of a call.

tweaked based on feedback from kettenis@
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/08/07 12:53:28

Modified files:
	sys/arch/amd64/amd64: cpu.c locore.S vector.S 
	sys/arch/amd64/include: codepatch.h frameasm.h 

Log message:
Mitigate CVE-2019-1125: block speculation past conditional jump to mis-skip
or mis-take swapgs in interrupt path and in trap/fault/exception path.  The
latter is improved to have no conditionals around this when Meltdown mitigation
is in effect.  Codepatch out the fences based on the description of CPU bugs
in the (well written) Linux commit message.

feedback from kettenis@
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/07 13:23:10

Modified files:
	multimedia/handbrake: Makefile 
Added files:
	multimedia/handbrake/patches: patch-make_variant_freebsd_defs 

Log message:
Fix up the iconv.h includes. Add -msse2 to the i386 build.
Noted by sthen@ from the i386 bulk build.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/07 14:30:30

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
The pathname in unveil(2) allocated 1024 bytes on the stack during
the system call.  Better use namei pool like sys___realpath() does.
OK semarie@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/08/07 15:31:03

Modified files:
	lib            : check_sym 

Log message:
Report changes in the size of data symbols, which require a major bump


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/08/07 16:03:43

Modified files:
	sys/dev/pci    : azalia_codec.c 

Log message:
recognize the Realtek ALC285


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/08/07 16:03:46

Modified files:
	sys/dev/pci    : if_iavf.c 

Log message:
Process admin queue responses in the interrupt handler, rather than
deferring to a task, so we can run sequences of admin commands using
tasks.  The only part of this that can't be done in interrupt context
is allocating new admin response buffers, so make that the responsibility
of the admin command issuer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/07 16:06:11

Modified files:
	net/bird/2     : Makefile distinfo 

Log message:
update to bird-2.0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/07 16:06:21

Modified files:
	net/bird/1     : Makefile distinfo 

Log message:
update to bird-1.6.7


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/08/07 16:34:25

Modified files:
	sys/dev/pci    : if_iavf.c 

Log message:
Handle VF resets.  When the PF changes VF settings, the VF will be reset,
which means the driver has to set everything up again from scratch.
When we detect a reset (identified by an interrupt with ICR 0xdeadbeef),
schedule a task that sets up the admin queue, establishes communication
with the PF, and configures the rx/tx queues again.  The interface is
taken down during the reset process.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/07 20:17:51

Modified files:
	bin/date       : date.c date.1 

Log message:
date(1): remove -d dst and -t minutes_west

Part of the kernel timezone removal effort.

With input from deraadt@ and tedu@.

"burn it!" mpi@, ok tedu@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/07 20:19:18

Modified files:
	sys/dev/wscons : wsevent.c wskbd.c wsmouse.c 

Log message:
wskbd, wsmouse(4): tsleep(9) -> tsleep_nsec(9); ok mpi@ kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/07 20:19:55

Modified files:
	sys/dev        : softraid.c softraid_raid5.c 

Log message:
softraid(4): tsleep(9) -> tsleep_nsec(9); ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/08/08 00:59:44

Modified files:
	usr.sbin/dhcpd : pfutils.c 

Log message:
One missing piece when I added pledge(2) to dhcpd(8) was in the code path when
it's invoked with either -A/-C/-L, which at the time I left alone due to some
forbidden ioctls by pledge(2).

Now we have unveil(2) and this path can be further restricted by using it
instead of chroot(2) since this "sandbox" (not sure why people call sandbox to
about everything these days) can be escaped with *at(2) calls.

Since no filesystem access is needed here then we can disable its access by
calling unveil("/", "") unveil(NULL, NULL).

added /* no filesystem visibility */ as per suggestion by and OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/08 01:57:48

Modified files:
	misc/dialog    : Makefile distinfo 

Log message:
Update dialog to 1.3-20190806.


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/08/08 02:02:57

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
Allow the maximimum uint32 value for the argument passed to -b which
allows better error messages from later validation.  bz#3050, ok djm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/08 02:26:28

Modified files:
	x11/chbg       : Makefile 

Log message:
use standard "lowercase for start of COMMENT"


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2019/08/08 03:15:13

Modified files:
	usr.sbin/bgpd  : bgpd.conf.5 

Log message:
Describe what "disabling the decision process" entails for the "no evaluate" flag
ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/08 04:32:02

Modified files:
	devel/ocaml-configurator/patches: patch-src_configurator_ml 

Log message:
fix building with OCaml 4.07 (missing Int module).

"not qualified for OK, but please commit" sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/08 05:00:21

Modified files:
	multimedia/handbrake: Makefile 

Log message:
libtoolize is also required


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/08 05:30:46

Modified files:
	usr.sbin/bgpd  : parse.y 

Log message:
Set the reconf state of listening addrs to RECONF_REINIT. This is what
the session engine expects and will allow to send out the config without
calling merge_config first.
OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/08 05:33:08

Modified files:
	usr.sbin/bgpd  : bgpd.c 

Log message:
Parse the config file early on startup before bgpd is daemonized.
This way config errors will be directly user visible on startup.
To do this split out send_config() out of reconfigure() which is
sending the config to the SE and RDE.
OK sthen@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/08 06:04:36

Modified files:
	driver/xf86-video-wsudl/src: wsudl_driver.c 

Log message:
Adapt Block and Wakeup handlers prototypes to X server 1.20.
No functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/08 06:06:50

Modified files:
	share/man/man5 : mk.conf.5 

Log message:
clarify the DEBUG text a little, since sthen noted it wasn;t particularly
clear;

ok/tweaks sthen


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/08 06:23:34

Modified files:
	driver/xf86-input-ws/src: emumb.c ws.h 

Log message:
Adapt Block and Wakeup handlers prototypes to X server 1.20.
No functional change.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/08 06:28:09

Modified files:
	driver/xf86-input-ws/src: emumb.c 

Log message:
replace obsoleted xf86{,Un}BlockSIGIO() calls by input_{,un}lock()
for xserver 1.20. No functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/08 06:54:33

Modified files:
	audio/schismtracker: Makefile distinfo 
	audio/schismtracker/patches: patch-configure_ac 

Log message:
Update schismtracker to 20190805.


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/08/08 07:41:40

Modified files:
	usr.sbin/pkg_add/pod: OpenBSD::Intro.pod 
	                      OpenBSD::PackingElement.pod 

Log message:
Fix typos in OpenBSD::Intro.3p and OpenBSD::PackingElement.3p.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/08 07:56:35

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/py-extremes: Makefile distinfo 
	devel/py-extremes/pkg: DESCR PLIST 
	devel/py-kid   : Makefile distinfo 
	devel/py-kid/pkg: DESCR PLIST 

Log message:
Remove devel/py-kid and devel/py-extremes

devel/py-extremes - only consumer was py-peak-rules, which we just removed.
Its last release was Feburary 2009

devel/py-kid - only consumer was devel/py-turbokid, which we just removed.
Its last release was July 2007

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/08 07:56:56

Modified files:
	sys/dev/pci    : if_iwm.c if_iwmreg.h 

Log message:
Support WPA2 CCMP encryption/decryption in hardware with iwm(4).
We offload crypto operations for unicast data frames only.
Based on an initial diff from procter@
Tested in snaps for almost a week.
ok procter@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/08 07:59:16

Modified files:
	share/man/man4 : iwm.4 

Log message:
Document iwm(4) CCMP offload support. Text copied from iwn(4) man page.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/08 10:31:48

Modified files:
	.              : i386.html 

Log message:
mention that only easy and critical security fixes will be ported to i386.
discussed with and ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 10:34:02

Modified files:
	editors/focuswriter: Makefile distinfo 

Log message:
Bugfix update to focuswriter-1.7.3


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/08/08 10:48:48

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
added /* no filesystem visibility */ above unveil("/", "") since "" is too easy
to misread.

as per suggestion by and OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/08/08 10:49:35

Modified files:
	usr.bin/nc     : netcat.c 

Log message:
added /* no filesystem visibility */ above unveil("/", "") since "" is too easy
to misread.

as per suggestion by and OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/08/08 10:50:15

Modified files:
	usr.sbin/ripd  : ripd.c 

Log message:
added /* no filesystem visibility */ above unveil("/", "") since "" is too easy
to misread.

as per suggestion by and OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/08/08 10:50:31

Modified files:
	sys/arch/amd64/amd64: Tag: OPENBSD_6_5 codepatch.c cpu.c 
	                      locore.S vector.S 
	sys/arch/amd64/include: Tag: OPENBSD_6_5 codepatch.h frameasm.h 

Log message:
Mitigate CVE-2019-1125: block speculation past conditional jump to mis-skip
or mis-take swapgs in interrupt path and in trap/fault/exception path.  The
latter is improved to have no conditionals around this when Meltdown mitigation
is in effect.  Codepatch out the fences based on the description of CPU bugs
in the (well written) Linux commit message.

feedback from kettenis@
ok deraadt@

OpenBSD 6.5 errata 008


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/08/08 10:50:52

Modified files:
	usr.sbin/snmpd : snmpe.c 

Log message:
added /* no filesystem visibility */ above unveil("/", "") since "" is too easy
to misread.

as per suggestion by and OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/08/08 10:52:13

Modified files:
	sys/arch/amd64/amd64: Tag: OPENBSD_6_4 codepatch.c cpu.c 
	                      locore.S vector.S 
	sys/arch/amd64/include: Tag: OPENBSD_6_4 codepatch.h frameasm.h 

Log message:
Mitigate CVE-2019-1125: block speculation past conditional jump to mis-skip
or mis-take swapgs in interrupt path and in trap/fault/exception path.  The
latter is improved to have no conditionals around this when Meltdown mitigation
is in effect.  Codepatch out the fences based on the description of CPU bugs
in the (well written) Linux commit message.

feedback from kettenis@
ok deraadt@

OpenBSD 6.4 errata 021


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/08 11:11:24

Modified files:
	emulators/desmume: Makefile 
Added files:
	emulators/desmume/patches: patch-src_MMU_timing_h 
	                           patch-src_ctrlssdl_cpp 

Log message:
desmume: fix with ports-gcc by adding some additional type casting.
While here, move HOMEPAGE to https.

tweaks and OK sthen@, maintainer timeout


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/08 12:14:25

Modified files:
	.              : errata64.html errata65.html 

Log message:
release swapgs errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/08 14:06:29

Modified files:
	usr.sbin/bgpd  : carp.c control.c kroute.c mrt.c pftable.c 

Log message:
Use O_CLOEXEC or SOCK_CLOEXEC on every open or socket call. Even though
some sockets are open for a short time it does not hurt and it ensures
that there is no file descriptor leak.
OK deraadt@ bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/08/08 14:37:08

Modified files:
	usr.sbin/bgpd  : bgpd.conf.5 
	usr.sbin/rad   : rad.conf.5 
	usr.sbin/vmctl : vmctl.8 
	share/man/man1 : update-plist.1 

Log message:
Fix a bunch of typos in various man pages.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/08 14:59:24

Modified files:
	www/tomcat/v9  : Makefile distinfo 
	www/tomcat/v9/pkg: PLIST-examples PLIST-main 

Log message:
update to tomcat-9.0.22


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/08 15:01:49

Modified files:
	www/tomcat/v8  : Makefile distinfo 
	www/tomcat/v8/pkg: PLIST-examples PLIST-main 

Log message:
update to tomcat-8.5.43


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/08 15:03:02

Modified files:
	www/tomcat/v7  : Makefile distinfo 
	www/tomcat/v7/pkg: PLIST-examples 

Log message:
update to tomcat-7.0.96


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/08 15:03:16

Modified files:
	www/tomcat     : Makefile.inc 

Log message:
fix find...-delete invocation


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/08/08 15:21:17

Modified files:
	graphics/pdf2djvu: Makefile 
Added files:
	graphics/pdf2djvu/patches: patch-sys-uuid_cc 

Log message:
Unbreak pdf2djvu on sparc64.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/08 17:04:22

Modified files:
	infrastructure/templates: Makefile.template 

Log message:
Add MODPY_EGG_VERSION, MODPY_PI, MODPY_SETUPTOOLS, and
MODPY_VERSION to /usr/ports/infrastructure/templates/Makefile.template.

These are the most common entries that portgen(1) will throw at the
bottom of a generated python port because it doesn't know where it would
go. Adding these will have portgen(1) put them in the appropriate place.

Comment tweaks and ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:08:26

Log message:
    Import games/openjazz, an open-source version of the classic Jazz
    Jackrabbit games.
    macppc testing and ok cwen@
    
    OpenJazz is a free, open-source version of the classic Jazz Jackrabbit
    games. Jazz Jackrabbit is a platforming game in which the player
    controls an anthropomorphic rabbit against an invading tortoise army.
    
    While this package and the game engine are open source, one still needs
    to provide the original game assets from Jazz Jackrabbit, which is not
    open source. You will need to purchase the original game to use this
    package.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190808
    
    N ports/games/openjazz/Makefile
    N ports/games/openjazz/distinfo
    N ports/games/openjazz/patches/patch-src_io_network_cpp
    N ports/games/openjazz/patches/patch-src_menu_mainmenu_cpp
    N ports/games/openjazz/patches/patch-ext_psmplug_stdafx_h
    N ports/games/openjazz/pkg/DESCR
    N ports/games/openjazz/pkg/PLIST
    N ports/games/openjazz/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:08:43

Modified files:
	games          : Makefile 

Log message:
+openjazz


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:13:27

Modified files:
	games/gottcode/connectagram: Makefile distinfo 
	games/gottcode/connectagram/patches: patch-connectagram_pro 

Log message:
Update to connectagram-1.2.10
Changelog: https://gottcode.org/connectagram/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:16:18

Modified files:
	games/gottcode/cutemaze: Makefile distinfo 
	games/gottcode/cutemaze/patches: patch-cutemaze_pro 

Log message:
Update to cutemaze-1.2.5
Changelog: https://gottcode.org/cutemaze/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:18:56

Modified files:
	games/gottcode/gottet: Makefile distinfo 

Log message:
Update to gottet-1.1.8
Changelog: https://gottcode.org/gottet/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:21:19

Modified files:
	games/gottcode/hexalate: Makefile distinfo 
	games/gottcode/hexalate/patches: patch-hexalate_pro 

Log message:
Update to hexalate-1.1.5
Changelog: https://gottcode.org/hexalate/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:23:51

Modified files:
	games/gottcode/peg-e: Makefile distinfo 
	games/gottcode/peg-e/patches: patch-peg-e_pro 

Log message:
Update to peg-e-1.2.7
Changelog: https://gottcode.org/peg-e/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:26:10

Modified files:
	games/gottcode/simsu: Makefile distinfo 

Log message:
Update to simsu-1.3.8
Changelog: https://gottcode.org/simsu/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:30:51

Modified files:
	games/gottcode/tanglet: Makefile distinfo 
	games/gottcode/tanglet/pkg: PLIST 

Log message:
Update to tanglet-1.5.4
Changelog: https://gottcode.org/tanglet/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 17:34:09

Modified files:
	games/gottcode/tetzle: Makefile distinfo 
	games/gottcode/tetzle/patches: patch-tetzle_pro 

Log message:
Update to tetzle-2.1.5
Changelog: https://gottcode.org/tetzle/


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 18:00:40

Modified files:
	devel/bpython  : Makefile distinfo 
	devel/bpython/pkg: PLIST 

Log message:
Update to bpython-0.18
Changelog: https://github.com/bpython/bpython/compare/0.17-release...0.18-release


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/08 18:05:55

Modified files:
	lang/kona      : Makefile distinfo 

Log message:
Update to kona-3.2.0.20190719


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/08/08 22:24:03

Modified files:
	usr.bin/ssh    : ssh_config.5 sshd_config.5 

Log message:
Change description of TCPKeepAlive from "inactive" to "unresponsive"
to clarify what it checks for.  Patch from jblaine at kickflop.net via
github pr#129, ok djm@.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/08/08 23:02:19

Modified files:
	lib            : check_sym 

Log message:
Move the "data object size changes" into the "Dynamic export changes"
section for consistency

based on diff from jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/08/08 23:05:55

Modified files:
	usr.bin/ssh    : readconf.c 

Log message:
produce a useful error message if the user's shell is set incorrectly
during "match exec" processing. bz#2791 reported by Dario Bertini;
ok dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/08 23:28:01

Modified files:
	usr.bin/rsync  : extern.h main.c rsync.1 socket.c 

Log message:
Add --address argument to openrsync to bind to the specified address
when connecting to a rsync daemon.
OK deraadt@ benno@ naddy@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/08 23:29:51

Modified files:
	usr.sbin/rpki-client: main.c 

Log message:
If the rsync of a repository fails print out the URI of the failed process.
Better error handling is needed but at least now it is clear which repository
fails.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/08/09 00:01:21

Modified files:
	devel/protobuf : Makefile 
Removed files:
	devel/protobuf/patches: patch-src_Makefile_in 

Log message:
Use the bundled googletest suite instead of forcing use of the
devel/gtest port. This way the legacy INSTANTIATE_TEST_SUITE_P
is defined and the tests compile. The protobuf-test hangs after
some time, but that's a problem for another day.

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/09 00:14:23

src/usr.bin/snmp

Update of /cvs/src/usr.bin/snmp
In directory cvs.openbsd.org:/tmp/cvs-serv82728/snmp

Log Message:
Directory /cvs/src/usr.bin/snmp added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/09 00:17:59

Added files:
	usr.bin/snmp   : Makefile mib.c mib.h smi.c smi.h snmp.1 snmp.c 
	                 snmp.h snmpc.c 

Log message:
Import snmp(1), a new snmp client which aims to be netsnmp compatible for
supported features.  It only supports get, getnext, walk, bulkget, bulkwalk,
trap, mibtree, and is SNMPv1 and SNMPv2c for now.

This will shortly replace snmpctl entirely. People using snmpctl are encouraged
to test and migrate to this code as soon as possible.

Much help with the manpage from schwarze@ and jmc@
No objections from reyk@
"Roll it in" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/09 00:18:25

Modified files:
	usr.bin        : Makefile 

Log message:
Hook up snmp(1)


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/09 01:58:26

Modified files:
	regress/usr.sbin/snmpd: snmpd.sh 

Log message:
Move snmpd regress test from snmpctl(8) to snmp(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/09 02:12:04

Modified files:
	usr.sbin/snmpd : snmpd.8 snmpd.conf.5 

Log message:
Replace snmpctl(8) references with snmp(1).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/09 03:21:41

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_atom.c 

Log message:
match radeon/atom.c rev 1.4 and #undef DEBUG before DEBUG macro


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/09 03:24:19

Modified files:
	sys/dev/pci/drm: drm_print.c 

Log message:
don't #define DEBUG, breaks building kernel with option DEBUG
reported by 'mujo' on bugs@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/09 03:50:44

Modified files:
	usr.sbin/rpki-client: main.c rpki-client.8 

Log message:
Add -b bind_addr as argument which is passed to rsync as --address to
use as source address for connecting to the rsync daemons.
OK sthen@ benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/08/09 05:25:29

Modified files:
	devel/boost    : Makefile 

Log message:
Use ONLY_FOR_ARCHS-md instead of a ".if ${MACHINE_ARCH} ..." tests list

ok sthen@ Brad Smith (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/09 06:08:16

Modified files:
	devel/ocaml-configurator/patches: patch-src_configurator_ml 

Log message:
Fix for building with OCaml 4.07, which has no Int or Bool modules.


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/09 06:47:49

Log message:
    import Game of Trees
    
    Game of Trees (Got) is a version control system which prioritizes
    ease of use and simplicity over flexibility.
    
    Got is still under development; it is being developed exclusively
    on OpenBSD and its target audience are OpenBSD developers. Got is
    ISC-licensed and was designed with pledge(2) and unveil(2) in mind.
    
    Got uses Git repositories to store versioned data. At present, Got
    supports local version control operations only. Git can be used
    for any functionality which has not yet been implemented in Got.
    It will always remain possible to work with both Got and Git on
    the same repository.
    
    This package includes the got(1) command-line interface and the
    tog(1) read-only repository browser. EXAMPLES in the got(1) man
    page contains a quick-start guide for OpenBSD developers.
    
    ok kn@ gonzalo@
    
    Status:
    
    Vendor Tag:	stsp
    Release Tags:	stsp_20190809
    
    N ports/devel/got/Makefile
    N ports/devel/got/distinfo
    N ports/devel/got/pkg/DESCR
    N ports/devel/got/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/09 06:58:38

Modified files:
	devel/got      : Makefile distinfo 

Log message:
Update devel/got to got-0.2:
- improve error message if helper binaries fail to unveil(2)
- add support for tags to -c options of some got commands
- attempt to reject GOT_AUTHOR values without an email address because git
is unable to parse resulting commit objects
- fix build on OpenBSD/sparc64 (gcc)


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/09 07:11:26

Modified files:
	usr.bin/rsync  : socket.c 

Log message:
Only print the message of the day in the rsyncd header if rsync is
started with -v. In normal operation rsync should only print errors.
OK benno@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/09 07:17:41

Modified files:
	devel          : Makefile 

Log message:
+= got


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/09 07:33:38

Modified files:
	games/openjazz : Makefile 
	games/openjazz/pkg: PLIST 

Log message:
Remove excess PLIST items. Noticed by aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/09 07:44:27

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_decide.c rde_rib.c rde_update.c 

Log message:
Rename some of the prefix functions to make it clearer. Also rename
path_update to prefix_update since this is now more working on a prefix.
OK clang


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/09 07:48:39

Modified files:
	misc/dialog    : Makefile distinfo 

Log message:
Update dialog to 1.3-20190808.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/09 08:12:21

Modified files:
	usr.sbin/bgpd  : rde_rib.c 

Log message:
Move prefix_update to the right spot and also move some prototypes down.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/09 08:40:39

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2019/08/09 09:20:05

Modified files:
	sys/arch/amd64/amd64: cpu.c tsc.c 
	sys/arch/amd64/include: cpu.h cpuvar.h 

Log message:
Add TSC synchronization for multiprocessor machines.

CPU0 is the reference clock and all others are skewed. During CPU
initialization the clocks synchronize by keeping a registry of each CPU
clock skewness and adapting the TSC read routine accordingly.

This commit also re-enables TSC as the default time source.

Future work includes MSR-based synchronization via IA32_TSC_ADJUST
and perhaps adding a task that is executed periodically to keep the
clocks in sync in case they drift apart.

Inspired from NetBSD.
Tested by many and thoroughly reviewed by kettenis@, thank you!

OK kettenis@, deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/09 09:55:52

Added files:
	emulators/retroarch/patches: 
	                             patch-libretro-common_features_features_cpu_c 

Log message:
retroarch: unbreak on macppc by adding a missing header.
Don't bump REVISION as retroarch has never been built on macppc,
and this change impacts only this arch (hint from sthen@).

OK sthen@ bentley@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/09 10:00:32

ports/biology/p5-Bio-ASN1-EntrezGene/patches

Update of /cvs/ports/biology/p5-Bio-ASN1-EntrezGene/patches
In directory cvs.openbsd.org:/tmp/cvs-serv61796/patches

Log Message:
Directory /cvs/ports/biology/p5-Bio-ASN1-EntrezGene/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/09 10:03:10

Modified files:
	biology/p5-Bio-ASN1-EntrezGene: Makefile 
Added files:
	biology/p5-Bio-ASN1-EntrezGene/patches: 
	                                        patch-lib_Bio_ASN1_EntrezGene_pm 
	                                        patch-lib_Bio_ASN1_Sequence_pm 

Log message:
p5-Bio-ASN1-EntrezGene: fix unescaped left braces in regexes that
generated warnings that made tests failing.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/09 10:05:17

Modified files:
	productivity/ledger: Makefile 
Added files:
	productivity/ledger/patches: patch-src_item_h 

Log message:
ledger: fix namespace issues with ports-gcc

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/08/09 15:16:13

Modified files:
	lang/racket-minimal: Makefile distinfo 
	lang/racket-minimal/pkg: PLIST 

Log message:
Update to racket 7.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/09 15:31:07

Modified files:
	libexec/rpc.rstatd: rstat_proc.c 

Log message:
Fix pointless cast: (struct timezone *)0 -> NULL


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/09 15:45:02

Modified files:
	share/man/man4 : cdce.4 

Log message:
add zte mf920v; from christoph r. winter


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/09 16:20:29

Added files:
	etc/signify    : openbsd-67-fw.pub 

Log message:
add 6.7 firmware key


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/09 16:21:02

Modified files:
	distrib/sets/lists/base: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/08/09 16:37:29

Modified files:
	www/netsurf/browser: Makefile distinfo 
	www/netsurf/hubbub: Makefile distinfo 
	www/netsurf/libcss: Makefile distinfo 
	www/netsurf/libdom: Makefile distinfo 
	www/netsurf/libnsfb: Makefile distinfo 
	www/netsurf/libnspsl: Makefile distinfo 
	www/netsurf/libutf8proc: Makefile distinfo 
	www/netsurf/libwapcaplet: Makefile distinfo 
	www/netsurf/netsurf-fb: Makefile distinfo 
	www/netsurf/netsurf-fb/pkg: PLIST 
	www/netsurf/nsgenbind: Makefile distinfo 
Removed files:
	www/netsurf/netsurf-fb/patches: patch-Makefile 
	                                patch-frontends_framebuffer_Makefile 

Log message:
Update to netsurf-3.9.

testing and ok cwen@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/09 16:52:13

Modified files:
	libexec/talkd  : table.c 

Log message:
Use NULL for second gettimeofday(2) argument; ok deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	mestre@cvs.openbsd.org	2019/08/09 19:30:53

Modified files:
	usr.sbin/ldpd  : ldpd.c ldpe.c 

Log message:
Like we did on other daemons that cannot be pledged due to forbidden ioctls the
main process can be unveiled to restrict filesystem access. In this case we can
restrict it to only read, although it must be the entire / since the daemon is
able to include config files from anywhere.

Additionally the ldpe process currently has cpath promise to unlink the socket,
nevertheless the socket is actually unlinked from the main proc so this
permission can be removed. As we discussed before, leaving the socket behind
doesn't do any harm that's why I didn't unveil it in the main proc.

OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/09 21:48:32

Log message:
    Import py-seaborn-0.9.0.
    
    DESCR:
    Seaborn is a library for making statistical graphics in Python. It is
    built on top of matplotlib and closely integrated with pandas data
    structures. Seaborn aims to make visualization a central part of
    exploring and understanding data. Its dataset-oriented plotting
    functions operate on dataframes and arrays containing whole datasets and
    internally perform the necessary semantic mapping and statistical
    aggregation to produce informative plots.
    
    OK kmos@
    
    Status:
    
    Vendor Tag:	bket
    Release Tags:	bket_20190810
    
    N ports/graphics/py-seaborn/Makefile
    N ports/graphics/py-seaborn/distinfo
    N ports/graphics/py-seaborn/pkg/DESCR
    N ports/graphics/py-seaborn/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/09 21:56:02

Modified files:
	etc/root       : root.mail 
	share/mk       : sys.mk 
	sys/arch/macppc/stand/tbxidata: bsd.tbxi 
	sys/conf       : newvers.sh 
	sys/sys        : param.h 
	usr.bin/signify: signify.1 

Log message:
move to 6.6-beta


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/09 21:56:39

Modified files:
	graphics       : Makefile 

Log message:
+py-seaborn{,python3}


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/09 21:58:34

Modified files:
	distrib/sets/lists/base: md.alpha md.amd64 md.armv7 md.hppa 
	                         md.i386 md.landisk md.loongson 
	                         md.luna88k md.macppc md.octeon md.sgi 
	                         md.sparc64 
	distrib/sets/lists/comp: gcc.alpha gcc.amd64 gcc.armv7 gcc.hppa 
	                         gcc.i386 gcc.landisk gcc.loongson 
	                         gcc.luna88k gcc.macppc gcc.octeon 
	                         gcc.sgi gcc.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/09 22:02:13

Modified files:
	net/openconnect: Makefile distinfo 
	net/openconnect/pkg: PLIST 

Log message:
Update to openconnect-8.04.

Overview on changes can be found at
https://www.infradead.org/openconnect/changelog.html

OK sthen@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/10 00:28:40

Modified files:
	emulators/dosbox: Makefile distinfo 
	emulators/dosbox/patches: patch-src_cpu_core_dyn_x86_risc_x86_h 

Log message:
Update dosbox to 0.74-3.

OK jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/08/10 02:14:17

Modified files:
	share/man/man7 : hier.7 

Log message:
remove groff leftover. from micah muer


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/10 02:18:39

Modified files:
	emulators/ucon64: Makefile distinfo 
	emulators/ucon64/patches: patch-src_Makefile 
	                          patch-src_libdiscmage_Makefile_in 
	                          patch-src_ucon64_opts_c 
Added files:
	emulators/ucon64/patches: patch-src_ucon64_c 
Removed files:
	emulators/ucon64/patches: patch-src_config_mak_in 
	                          patch-src_configure 
	                          patch-src_configure_in 
	                          patch-src_misc_parallel_c 

Log message:
Update ucon64 to 2.2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 02:22:29

Modified files:
	sysutils/d-feet: Makefile distinfo 
	sysutils/d-feet/pkg: PLIST 

Log message:
Update to d-feet-0.3.15.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/10 02:39:49

Modified files:
	x11/enlightenment: Makefile distinfo 
	x11/enlightenment/files: sound_sndio.c 
	x11/enlightenment/patches: patch-eesh_main_c 
	                           patch-src_Makefile_am 

Log message:
Update to Enlightenment E16 1.0.20


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 03:35:43

Modified files:
	usr.sbin/smtpd : util.c 

Log message:
valid_domainpart() uses res_hnok() internally which considers the hostnames
ending with a dot to be valid. add a check to make sure that if domain part
ends with a dot, it is rejected as it should.

issue reported by Hans Freitag <hans.freitag@conesphere.com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/08/10 04:03:41

Modified files:
	devel/protobuf : Makefile distinfo 

Log message:
Update protobuf to 3.9.1.

ok sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/08/10 05:49:50

Modified files:
	sys/conf       : newvers.sh 

Log message:
really crank to 6.6-beta


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/10 07:08:21

Modified files:
	sys/arch/arm64/stand/efiboot: efiboot.c 

Log message:
Fix pixel formats.  Turns out the order in the device tree description is
exactly the opposite of the order in the enum used by UEFI.

Makes console output come out white-on-blue instead of white-on-red.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/10 07:16:01

Modified files:
	sys/dev/ofw    : fdt.c 

Log message:
Make sure fdt_get_reg() looks beyond its parent to establish the correct
#address-cells and #size-cells for the bus it sits on.  This makes sure
the glass console works since the framebuffer shows up as a child of
/chosen which typically doesn't have these properties.  This makes us
look at the root node instead.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 07:34:30

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
documentation was missing 'smtp limit' bits, document them.

spotted by "mabi"


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 07:38:01

Modified files:
	usr.sbin/smtpd : smtpd.h 

Log message:
bump version


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 08:50:58

Modified files:
	usr.sbin/smtpd : lka_proc.c 

Log message:
let smtpd tell filters about configuration keys before they register hooks.
the set of configuration keys is not yet finalized but the mechanism is all
we need for now to be able to release 6.6 with a stable api.

discussed with eric months ago


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/10 09:31:52

Modified files:
	devel/got      : Makefile distinfo 

Log message:
Update devel/got to got-0.3 and avoid using 'make obj' in the port which
should fix build on systems without a /usr/src directory (noticed by landry@).

Changes for 0.3:
- fix bug where 'revert -p' would delete all lines following a reverted change
- fix merge bug inherited from OpenRCS, affecting lines with leading .
- fix man page installation during manual 'make install' from plain tarball


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 09:46:22

Modified files:
	usr.sbin/smtpd : util.c 

Log message:
enforce domain length check in valid_domainpart(), checking it in caller is
not the proper place, also since helo uses valid_domainpart(), such a check
would have indirectly prevented last weeks errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 09:55:20

Added files:
	lib/libcrypto/cms: cms_asn1.c cms_att.c cms_cd.c cms_dd.c 
	                   cms_enc.c cms_env.c cms_err.c cms_ess.c 
	                   cms_io.c cms_kari.c cms_lcl.h cms_lib.c 
	                   cms_pwri.c cms_sd.c cms_smime.c 

Log message:
Work towards supporting Cryptographic Message Syntax (CMS) in libcrypto.

Cryptographic Message Syntax (CMS) is a standard for cryptographically
protecting messages, as defined in RFC 5652. It is derived from PKCS #7
version 1.5 and utilises various ASN.1 structures, making it complex and
fairly heavyweight. Various protocols - including RPKI (RFC 6480) - have
been built on top of it, which means it is necessary to support CMS, in
order to support RPKI.

This imports around 6,000 lines of code from OpenSSL 1.1.1, which is still
under the original OpenSSL license. Further work will occur in tree.

Requested by and discussed with many.

ok deraadt@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 10:02:24

Modified files:
	lib/libcrypto/cms: cms_asn1.c cms_att.c cms_cd.c cms_dd.c 
	                   cms_enc.c cms_env.c cms_ess.c cms_io.c 
	                   cms_kari.c cms_lcl.h cms_lib.c cms_pwri.c 
	                   cms_sd.c cms_smime.c 

Log message:
Restore the original per-file licenses for CMS.

These were removed in OpenSSL b1322259d93cf6b6286f9febcd468b6a9f577d91.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 10:03:54

Modified files:
	lib/libcrypto/cms: cms_asn1.c cms_att.c cms_cd.c cms_dd.c 
	                   cms_enc.c cms_env.c cms_err.c cms_ess.c 
	                   cms_io.c cms_kari.c cms_lcl.h cms_lib.c 
	                   cms_pwri.c cms_sd.c cms_smime.c 

Log message:
Add $OpenBSD$ tags.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 10:07:02

Modified files:
	usr.sbin/smtpd : parse.y smtp.c smtp_session.c smtpd.h 
	usr.sbin/smtpd/smtpd: Makefile 
Added files:
	usr.sbin/smtpd : proxy.c 

Log message:
this introduces experimental proxy v2 support which is fairly isolated to a
single proxy.c file, importing it to work in tree

initial work from Antoine Kaufmann <toni@famkaufmann.info>


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/10 10:13:46

Modified files:
	usr.bin/rcs    : diff3.c 

Log message:
Fix merge(1) of files which contain lines with leading dots.

A check which tried to detect "dot on a line of its own" in the
internal ed script was treating any line with a leading dot as such.
Changes made to groups of such lines therefore ended up being
truncated in the merged result.

"For a random user, there's no shame in being unable to use ed."
-- Michael W Lucas

ok millert@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 10:18:22

Added files:
	lib/libcrypto/cms: cms.h 

Log message:
Provide cms.h.

This is OpenSSL 1.1.1 cms.h and cmserr.h combined, essentially reverting
OpenSSL 52df25cf2e656146cb3b206d8220124f0417d03f.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 10:20:45

Modified files:
	lib/libcrypto/cms: cms.h 

Log message:
Restore the per-file license for cms.h.

This reverts the removal from OpenSSL
21dcbebc6e35419f1842f39a125374ea1ba45693.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 10:22:09

Modified files:
	lib/libcrypto/cms: cms.h 

Log message:
Add $OpenBSD$ tag.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 10:31:15

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
document proxy-v2 option to listener


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/10 10:34:22

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 76.0.3809.100


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 10:38:47

Modified files:
	lib/libcrypto/cms: cms_err.c 

Log message:
Include cms.h instead of cmserr.h.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 10:39:17

Modified files:
	lib/libcrypto/cms: cms_cd.c cms_dd.c cms_enc.c cms_env.c 
	                   cms_ess.c cms_kari.c cms_pwri.c cms_sd.c 
	                   cms_smime.c 

Log message:
Fix includes for non-installed headers.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/10 10:39:33

Modified files:
	usr.bin/rcs    : diff3.c 

Log message:
Amend previous fix; joris@ fixed the same bug in OpenCVS's diff3.c r1.47.
Put the OpenCVS fix, which additionally checks for trailing \n, into OpenRCS.
Sync requested by deraadt@ (thanks, I would otherwise have overlooked this)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 10:42:20

Modified files:
	lib/libcrypto/cms: cms_asn1.c cms_att.c cms_cd.c cms_dd.c 
	                   cms_enc.c cms_env.c cms_err.c cms_ess.c 
	                   cms_io.c cms_kari.c cms_lib.c cms_pwri.c 
	                   cms_sd.c cms_smime.c 

Log message:
First pass at style(9).

Whitespace only and no change according to diff -w.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/10 11:58:18

Removed files:
	lang/gcc/4.9   : Makefile distinfo gcc4.port.mk 
	lang/gcc/4.9/patches: patch-Makefile_in patch-boehm-gc_configure 
	                      patch-boehm-gc_dyn_load_c 
	                      patch-boehm-gc_include_gc_config_h_in 
	                      patch-boehm-gc_include_gc_config_macros_h 
	                      patch-boehm-gc_include_gc_pthread_redirects_h 
	                      patch-boehm-gc_include_private_gcconfig_h 
	                      patch-boehm-gc_mach_dep_c 
	                      patch-boehm-gc_misc_c 
	                      patch-boehm-gc_os_dep_c 
	                      patch-boehm-gc_pthread_support_c 
	                      patch-boehm-gc_threadlibs_c 
	                      patch-configure patch-contrib_texi2pod_pl 
	                      patch-fixincludes_fixincl_x 
	                      patch-fixincludes_inclhack_def 
	                      patch-gcc_Makefile_in 
	                      patch-gcc_ada_a-calend_adb 
	                      patch-gcc_ada_adaint_c 
	                      patch-gcc_ada_adaint_h 
	                      patch-gcc_ada_g-calend_ads 
	                      patch-gcc_ada_gcc-interface_Make-lang_in 
	                      patch-gcc_ada_gcc-interface_Makefile_in 
	                      patch-gcc_ada_osint_adb 
	                      patch-gcc_ada_s-osinte-openbsd_adb 
	                      patch-gcc_ada_s-osinte-openbsd_ads 
	                      patch-gcc_ada_s-osprim-posix_adb 
	                      patch-gcc_ada_sysdep_c 
	                      patch-gcc_ada_system-openbsd-arm_ads 
	                      patch-gcc_ada_system-openbsd-hppa_ads 
	                      patch-gcc_ada_system-openbsd-mips64_ads 
	                      patch-gcc_ada_system-openbsd-mips64el_ads 
	                      patch-gcc_ada_system-openbsd-ppc_ads 
	                      patch-gcc_ada_system-openbsd-sparc_ads 
	                      patch-gcc_ada_system-openbsd-sparcv9_ads 
	                      patch-gcc_ada_system-openbsd-x86_64_ads 
	                      patch-gcc_ada_system-openbsd-x86_ads 
	                      patch-gcc_bitmap_c patch-gcc_builtins_c 
	                      patch-gcc_c-family_c-format_c 
	                      patch-gcc_c-family_c_opt 
	                      patch-gcc_c_c-decl_c patch-gcc_cgraph_c 
	                      patch-gcc_common_config_arm_arm-common_c 
	                      patch-gcc_common_opt 
	                      patch-gcc_config_alpha_alpha_c 
	                      patch-gcc_config_alpha_alpha_md 
	                      patch-gcc_config_alpha_alpha_opt 
	                      patch-gcc_config_alpha_openbsd_h 
	                      patch-gcc_config_arm_arm_opt 
	                      patch-gcc_config_arm_openbsd1_h 
	                      patch-gcc_config_arm_openbsd_h 
	                      patch-gcc_config_elfos_h 
	                      patch-gcc_config_exec-stack_h 
	                      patch-gcc_config_gcc 
	                      patch-gcc_config_i386_i386_c 
	                      patch-gcc_config_i386_openbsd_h 
	                      patch-gcc_config_i386_openbsdelf_h 
	                      patch-gcc_config_mips_mips_h 
	                      patch-gcc_config_mips_openbsd_h 
	                      patch-gcc_config_openbsd-libpthread_h 
	                      patch-gcc_config_openbsd_h 
	                      patch-gcc_config_openbsd_opt 
	                      patch-gcc_config_pa_pa-openbsd_h 
	                      patch-gcc_config_pa_pa_c 
	                      patch-gcc_config_pa_pa_h 
	                      patch-gcc_config_rs6000_driver-rs6000_c 
	                      patch-gcc_config_rs6000_openbsd1_h 
	                      patch-gcc_config_rs6000_openbsd_h 
	                      patch-gcc_config_rs6000_rs6000_c 
	                      patch-gcc_config_rs6000_sysv4_h 
	                      patch-gcc_config_rs6000_t-openbsd 
	                      patch-gcc_config_sparc_openbsd64_h 
	                      patch-gcc_config_sparc_openbsd_h 
	                      patch-gcc_config_sparc_sparc_c 
	                      patch-gcc_configure patch-gcc_cp_g++spec_c 
	                      patch-gcc_cppbuiltin_c 
	                      patch-gcc_defaults_h patch-gcc_dwarf2cfi_c 
	                      patch-gcc_dwarf2out_c patch-gcc_flags_h 
	                      patch-gcc_fortran_f95-lang_c 
	                      patch-gcc_gcc_c patch-gcc_go_go-lang_c 
	                      patch-gcc_ipa-devirt_c 
	                      patch-gcc_ipa-inline_c 
	                      patch-gcc_ipa-profile_c 
	                      patch-gcc_ipa-prop_c patch-gcc_java_lang_c 
	                      patch-gcc_loop-iv_c patch-gcc_lto_lto_c 
	                      patch-gcc_opts_c patch-gcc_profile_c 
	                      patch-gcc_stor-layout_c patch-gcc_system_h 
	                      patch-gcc_targhooks_c 
	                      patch-gcc_testsuite_gcc_dg_format_format_h 
	                      patch-gcc_toplev_c 
	                      patch-gcc_tree-ssa-reassoc_c 
	                      patch-gcc_value-prof_c 
	                      patch-gnattools_Makefile_in 
	                      patch-gnattools_configure 
	                      patch-gnattools_configure_ac 
	                      patch-libatomic_Makefile_in 
	                      patch-libatomic_configure_tgt 
	                      patch-libcilkrts_Makefile_in 
	                      patch-libcilkrts_runtime_os-unix_c 
	                      patch-libffi_Makefile_in 
	                      patch-libffi_configure 
	                      patch-libffi_include_Makefile_in 
	                      patch-libffi_src_closures_c 
	                      patch-libgcc_Makefile_in 
	                      patch-libgcc_config_arm_unwind-arm_h 
	                      patch-libgcc_config_host 
	                      patch-libgcc_config_t-hardfp 
	                      patch-libgcc_libgcc2_c 
	                      patch-libgcc_unwind-dw2_c 
	                      patch-libgfortran_Makefile_in 
	                      patch-libgo_Makefile_in 
	                      patch-libgo_config_libtool_m4 
	                      patch-libgo_configure 
	                      patch-libgomp_configure 
	                      patch-libiberty_cp-demangle_c 
	                      patch-libitm_Makefile_in 
	                      patch-libjava_Makefile_in 
	                      patch-libjava_classpath_configure 
	                      patch-libjava_classpath_doc_texi2pod_pl 
	                      patch-libjava_configure 
	                      patch-libjava_configure_host 
	                      patch-libjava_libltdl_configure 
	                      patch-libjava_prims_cc 
	                      patch-libobjc_Makefile_in 
	                      patch-libobjc_configure 
	                      patch-libquadmath_Makefile_in 
	                      patch-libquadmath_configure 
	                      patch-libssp_Makefile_in 
	                      patch-libssp_configure 
	                      patch-libstdc++-v3_configure 
	                      patch-libstdc++-v3_libsupc++_Makefile_in 
	                      patch-libstdc++-v3_src_Makefile_in 
	                      patch-libtool_m4 patch-ltmain_sh 
	                      patch-lto-plugin_Makefile_in 
	                      patch-lto-plugin_configure 
	                      patch-zlib_configure 
	lang/gcc/4.9/pkg: PFRAG.CILKRTS-libs PFRAG.CILKRTS-main 
	                  PFRAG.ITM-libs PFRAG.ITM-main 
	                  PFRAG.QUADMATH-libs PFRAG.QUADMATH-main 
	                  PFRAG.X86-main PFRAG.alpha-main 
	                  PFRAG.amd64-main PFRAG.arm-main 
	                  PFRAG.hppa-main PFRAG.i386-main 
	                  PFRAG.mips64-main PFRAG.mips64el-main 
	                  PFRAG.powerpc-main PFRAG.sparc64-main 
	                  PLIST-ada PLIST-c++ PLIST-f95 PLIST-java 
	                  PLIST-libs PLIST-main PLIST-objc 

Log message:
remove gcc 4.9, no longer hooked up to the build; ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/10 11:58:57

Modified files:
	distrib/notes/loongson: hardware install 

Log message:
tweaks, from miod


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/08/10 12:11:39

Modified files:
	www/youtube-dl : Makefile distinfo 

Log message:
Update to 2019.08.02

[tvigle] Add support for HLS and DASH formats (#21967)
[tvigle] Fix extraction (#21967)
[yandexvideo] Add support for DASH formats (#21971)
[discovery] Use API call for video data extraction (#21808)
[mgtv] Extract format_note (#21881)
[tvn24] Fix metadata extraction (#21833, #21834)
[dlive] Relax URL regular expression (#21909)
[openload] Add support for oload.best (#21913)
[youtube] Improve metadata extraction for age gate content (#21943)


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 12:11:52

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
start documenting filters for next release


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 12:15:52

Modified files:
	lib/libcrypto/cms: cms_asn1.c cms_att.c cms_cd.c cms_dd.c 
	                   cms_enc.c cms_env.c cms_err.c cms_ess.c 
	                   cms_io.c cms_kari.c cms_lib.c cms_pwri.c 
	                   cms_sd.c cms_smime.c 

Log message:
More style(9), whitespace and readability fixes.

Files are identical once whitespace and newlines are removed.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/10 12:18:27

Modified files:
	sys/dev/gpio   : gpiodcf.c 

Log message:
gpiodcf(4): tvtohz(9)+timeout_add(9) -> timeout_add_msec(9)

"looks fine" kettenis@, ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 12:24:33

Modified files:
	lib/libcrypto/cms: cms.h 

Log message:
More style(9) and whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/10 12:27:49

Modified files:
	lib/libcrypto/cms: cms_lcl.h 

Log message:
Fix style(9) and whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/10 13:09:05

Modified files:
	usr.bin/snmp   : snmp.1 

Log message:
explicitly point out extraordinary and inconsistent syntax requirements
regarding whitespace that result in a trap for the unwary;
OK martijn@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/10 13:16:01

Modified files:
	usr.sbin/smtpd : mda.c 

Log message:
improve level of details when logging mda errors that happen while we're in
the creation of the mda process. in some situations, we can provide details
far more precise than just the strerror()


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/10 13:17:56

Modified files:
	net/py-msgpack : Makefile distinfo 
	net/py-msgpack/pkg: PLIST 

Log message:
Update to py-msgpack-0.6.1.

Changelog can be found at
https://github.com/msgpack/msgpack-python/blob/v0.6.1/ChangeLog.rst

While here take MAINTAINER.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/10 13:41:08

Modified files:
	devel/libf2c   : Makefile 
	devel/llvm     : Makefile 
	editors/xemacs21/stable: Makefile 
	lang/g77       : Makefile 
	lang/gcc/8     : Makefile 
	lang/gpc       : Makefile 
	lang/pcc       : Makefile 
	lang/swi-prolog: Makefile 
	math/octave    : Makefile 
	x11/e17/e      : Makefile 
	x11/e17/elementary: Makefile 
	x11/e17/emotion: Makefile 
	x11/e17/evas   : Makefile 

Log message:
bump for plist changes 6.5 -> 6.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:01:25

Modified files:
	audio/pulseaudio: Makefile 

Log message:
portroach: add 12.99.2 to skipv.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:02:36

Modified files:
	misc/osinfo/osinfo-db: Makefile distinfo 

Log message:
Update to osinfo-db-20190805.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:09:32

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.205.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:09:47

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.205.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:10:15

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.215.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:13:57

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.687.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:15:12

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-257.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:15:36

Modified files:
	sysutils/exoscale-cli: Makefile distinfo 

Log message:
Update to exoscale-cli-1.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:21:22

Modified files:
	www/py-bokeh   : Makefile distinfo 

Log message:
Update to py-bokeh-1.3.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/10 14:23:12

Modified files:
	graphics/graphene: Makefile distinfo 

Log message:
Update to graphene-1.9.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/10 15:24:31

Modified files:
	www/goaccess   : Makefile 

Log message:
set COMPILER to unbreak on base-gcc arches; libmaxminddb headers requires
base-clang or ports-gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/10 15:27:07

Log message:
    Import productivity/novprog, a graphical wordcount grapher.
    ok cwen@
    
    NovProg is a tool to graph your progress in writing a NaNoWriMo style
    novel. You enter your wordcount and it updates a graph showing you how
    much progress you have made. It also shows you how far you are through
    your daily goal, and your total goal. Mousing over a bar in the graph
    will show a tooltip with that day's wordcount.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190810
    
    N ports/productivity/novprog/Makefile
    N ports/productivity/novprog/distinfo
    N ports/productivity/novprog/pkg/PLIST
    N ports/productivity/novprog/pkg/DESCR
    N ports/productivity/novprog/patches/patch-novprog_pro
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/10 15:27:47

Modified files:
	productivity   : Makefile 

Log message:
+novprog


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/10 15:28:19

Modified files:
	net/pmacct     : Makefile 

Log message:
set COMPILER to unbreak on base-gcc arches; libmaxminddb headers requires
base-clang or ports-gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/10 15:30:28

Modified files:
	net/ntopng     : Makefile 

Log message:
drop base-gcc from COMPILER; uses libmaxminddb so won't work on base-gcc arches


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2019/08/10 16:23:11

Modified files:
	devel/protobuf : Makefile 

Log message:
aarch64 needs -O1 for both C and C++ files


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/08/10 16:51:24

Modified files:
	lang/janet     : Makefile distinfo 

Log message:
Update janet to 1.2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/10 17:03:29

Modified files:
	textproc/nfoview: Makefile distinfo 
	textproc/nfoview/pkg: PLIST 

Log message:
Update to nfoview-1.27


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/10 17:19:08

Modified files:
	editors/featherpad: Makefile distinfo 
	editors/featherpad/pkg: PLIST 

Log message:
Update to featherpad-0.11.0
Changelog: https://github.com/tsujan/FeatherPad/releases/tag/V0.11.0


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/10 17:29:59

Modified files:
	sys/dev/usb    : udcf.c 

Log message:
udcf(4): tvtohz(9)+timeout_add(9) -> timeout_add_msec(9); ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/10 17:41:22

Added files:
	lib/libcrypto/man: BIO_new_CMS.3 CMS_add0_cert.3 
	                   CMS_add1_recipient_cert.3 CMS_add1_signer.3 
	                   CMS_compress.3 CMS_decrypt.3 CMS_encrypt.3 
	                   CMS_final.3 CMS_get0_RecipientInfos.3 
	                   CMS_get0_SignerInfos.3 CMS_get0_type.3 
	                   CMS_get1_ReceiptRequest.3 CMS_sign.3 
	                   CMS_sign_receipt.3 CMS_uncompress.3 
	                   CMS_verify.3 CMS_verify_receipt.3 
	                   PEM_write_bio_CMS_stream.3 SMIME_read_CMS.3 
	                   SMIME_write_CMS.3 i2d_CMS_bio_stream.3 

Log message:
Re-convert and re-import the CMS manual pages from OpenSSL 1.1.1
(which are still under a free license) with pod2mdoc(1) now that
jsing@ has begun work to provide these APIs.
Some formatting was improved and some typos were fixed, but apart
from that, little was changed, so there is still much to polish.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 00:47:19

Modified files:
	lib/libcrypto/cms: cms.h cms_pwri.c cms_smime.c 

Log message:
Unlike OpenSSL we do not have our own special ssize_t.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 02:15:27

Modified files:
	lib/libcrypto/cms: cms.h cms_lcl.h 

Log message:
We use DECLARE_STACK_OF rather than DEFINE_STACK_OF.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/11 04:03:32

Modified files:
	sys/dev/ic     : pluart.c 

Log message:
Fix an issue where output gets stuck when a machine is under load.  Also
make sure Tx interrupts are counted.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:15:30

Modified files:
	lib/libcrypto/cms: cms.h cms_asn1.c cms_ess.c cms_io.c cms_lcl.h 
	                   cms_lib.c cms_pwri.c cms_sd.c 

Log message:
Expand ASN.1 macros.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:24:15

Modified files:
	lib/libcrypto/cms: cms_asn1.c 

Log message:
Expand a new macro that tried to get away...


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:26:04

Modified files:
	lib/libcrypto/cms: cms_asn1.c cms_lcl.h 

Log message:
Switch ASN.1 INT32 back to LONG.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:38:27

Modified files:
	lib/libcrypto/cms: cms_cd.c cms_dd.c cms_enc.c cms_env.c 
	                   cms_ess.c cms_io.c cms_kari.c cms_lib.c 
	                   cms_pwri.c cms_sd.c cms_smime.c 

Log message:
Convert CMSerr() to CMSerror().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:41:49

Modified files:
	lib/libcrypto/cms: cms_enc.c cms_env.c cms_ess.c cms_kari.c 
	                   cms_pwri.c cms_sd.c 

Log message:
Use malloc(3) and free(3), rather than OPENSSL_{malloc,free}().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:43:24

Modified files:
	lib/libcrypto/cms: cms_env.c cms_kari.c 

Log message:
Use explicit_bzero() instead of OPENSSL_cleanse().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:43:57

Modified files:
	lib/libcrypto/cms: cms_asn1.c cms_enc.c cms_env.c cms_kari.c 
	                   cms_pwri.c 

Log message:
Use freezero() rather than OPENSSL_clear_free().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:50:23

Modified files:
	lib/libcrypto/cms: cms_dd.c cms_enc.c cms_ess.c cms_pwri.c 
	                   cms_sd.c 

Log message:
Include string.h for memcmp()/memcpy().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 04:54:11

Modified files:
	lib/libcrypto/cms: cms_enc.c cms_ess.c cms_pwri.c 

Log message:
Use arc4random_buf() instead of RAND_bytes().

This also removes return checks since arc4random_buf() does not fail.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 04:54:44

Modified files:
	usr.sbin/smtpd : ruleset.c to.c 

Log message:
properly implement the "from socket" match criteria, so it is now possible
to specifically match a connection that happened through the local enqueuer


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 05:04:18

Modified files:
	lib/libcrypto/cms: cms_cd.c cms_dd.c cms_enc.c cms_env.c 
	                   cms_ess.c cms_kari.c cms_lib.c cms_pwri.c 
	                   cms_sd.c 

Log message:
Expand M_ASN1_new_of and M_ASN1_free_of macros.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 05:07:40

Modified files:
	lib/libcrypto/cms: cms_env.c cms_kari.c 

Log message:
Include string.h for explicit_bzero().


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 05:11:02

Modified files:
	usr.sbin/smtpd : mta_session.c 

Log message:
the mta "certificate check" log line was not in the same format as other
log lines, fix


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/11 05:16:05

Modified files:
	sys/dev/fdt    : ehci_fdt.c 

Log message:
The "phy-names" property has been dropped from the Linux device trees so
make initialization of the PHYs work without it.  Simply initialize all
the PHYs; there should only be one anyway.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/11 05:17:24

Modified files:
	audio/libopenmpt: Makefile distinfo 

Log message:
Update libopenmpt to 0.4.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/11 05:19:41

Modified files:
	sys/dev/fdt    : files.fdt 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/arch/arm64/conf: GENERIC RAMDISK 
Added files:
	sys/dev/fdt    : sxisyscon.c 

Log message:
Add sxisyscon(4) a driver for the system controller found on various
Allwinner SoCs.

This is basically a stripped down syscon(4) and is needed because the
Linux device trees dropped the "syscon" compatible.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/11 05:23:32

Added files:
	share/man/man4 : sxisyscon.4 

Log message:
sxisyscon(4)


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2019/08/11 05:45:18

Modified files:
	.              : 66.html 

Log message:
correct stable tag


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 06:17:07

Modified files:
	usr.sbin/smtpd : parse.y 

Log message:
rework grammar for builtin filters so i can start documenting it


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/11 06:43:23

Modified files:
	share/man/man4 : Makefile 

Log message:
sxisyscon(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/11 06:46:38

Modified files:
	lib/libcrypto/man: BIO_new_CMS.3 CMS_add0_cert.3 
	                   CMS_add1_recipient_cert.3 CMS_add1_signer.3 
	                   CMS_compress.3 CMS_decrypt.3 CMS_encrypt.3 
	                   CMS_final.3 CMS_get0_RecipientInfos.3 
	                   CMS_get0_SignerInfos.3 CMS_get0_type.3 
	                   CMS_get1_ReceiptRequest.3 CMS_sign.3 
	                   CMS_sign_receipt.3 CMS_uncompress.3 
	                   CMS_verify.3 CMS_verify_receipt.3 
	                   PEM_write_bio_CMS_stream.3 SMIME_read_CMS.3 
	                   SMIME_write_CMS.3 i2d_CMS_bio_stream.3 

Log message:
bring HISTORY sections up to OpenBSD standards


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 07:00:57

Modified files:
	usr.sbin/smtpd : table.5 

Log message:
no longer document that username may be omitted if equal to label, this is
not true anymore.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/11 07:32:41

Modified files:
	distrib/miniroot: install.sub 

Log message:
Typofixes in comments

OK sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 07:57:37

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
start documenting the builtin filters


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 08:11:28

Modified files:
	lib/libcrypto/evp: evp.h 

Log message:
Provide ASN1_PKEY_CTRL_CMS_RI_TYPE.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 08:13:14

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
document filter chains, which is essentially a way to declare a set of
related filters to be applied one after another


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 08:14:14

Modified files:
	lib/libcrypto/stack: safestack.h 

Log message:
Bring back stack macros for CMS structs.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 08:18:38

Modified files:
	lib/libcrypto/cms: cms_err.c 

Log message:
Fix loading of CMS error strings.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 08:19:09

Modified files:
	lib/libcrypto/cms: cms_ess.c 

Log message:
Remove label that is now unused (due to arc4random_buf() returning void).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 08:27:01

Modified files:
	lib/libcrypto/cms: cms_kari.c 

Log message:
Disable DES3 since we do not currently provide DES3 keywrap.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 08:35:57

Modified files:
	lib/libcrypto/cms: cms_sd.c 

Log message:
Remove unsupported GOST 2012 NIDs.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/11 08:38:20

Modified files:
	sys/dev/fdt    : axppmic.c 

Log message:
Add battery sensors for the AXP803.  A somewhat recent Linux DT is needed
to expose these sensors.

Heavily based on a diff from Krystian Lewandowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/11 08:41:20

Modified files:
	usr.bin/snmp   : smi.c snmpc.c 

Log message:
ugly whitespaces


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/11 08:41:49

Modified files:
	usr.bin/snmp   : snmpc.c 

Log message:
error if malloc fails; ok martijn


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 08:43:52

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
document proc and proc-based filters


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/11 08:46:18

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/arch/armv7/conf: GENERIC RAMDISK 
	sys/dev/fdt    : sxirtc.c 

Log message:
Add clock support to sxirtc(4); needed by newer Linux DTs.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/11 08:51:15

Modified files:
	lib/libcrypto/cms: cms_smime.c 

Log message:
Use ERR_asprintf_error_data() instead of ERR_add_error_data().


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/08/11 09:16:22

Modified files:
	www/netsurf/netsurf-fb: Makefile 
	www/netsurf/browser: Makefile 

Log message:
Missing build dependency on vim (for xxd).

Noticed by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/11 09:48:08

Modified files:
	lib/libc/gen   : sysconf.3 Makefile.inc 
	lib/libc/sys   : ioctl.2 mmap.2 sysctl.2 
	lib/libkvm     : kvm_getprocs.3 
	share/man/man7 : script.7 
	usr.bin/lastcomm: lastcomm.1 
Added files:
	lib/libc/gen   : execv.3 
Removed files:
	lib/libc/gen   : exec.3 

Log message:
No specific called "exec(3)", so move primary manpage to a name which
does exist -- execv(3).  Still call this a family but without "Nm".
Adjust Xr in various pages to refer to the precise function used
rather than the family, in most cases the semantics of execve(2) are
being referenced, so change the Xr.
ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/11 09:48:17

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/11 09:52:46

Modified files:
	usr.bin/snmp   : smi.c 

Log message:
whitespace issues like a knife in my eyes


CVSROOT:	/cvs
Module name:	src
Changes by:	denis@cvs.openbsd.org	2019/08/11 10:04:23

Modified files:
	lib/libc/sys   : sysctl.2 

Log message:
Document ip.arpq and remove ip, ip6 and mpls ifq.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 10:35:10

Modified files:
	usr.sbin/smtpd : parse.y smtp_session.c 

Log message:
fix rewrite action on filtering of MAIL FROM phase
basically the transaction must be created in the proceed function for the
mail from phase, not in the checking function, otherwise the second pass
in the check function will fail due to the tx already existing.

reported by Niklas Hallqvist <niklas@appli.se>


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 10:51:00

Modified files:
	usr.sbin/smtpd : lka_filter.c 

Log message:
teach builtin filter rdns how to match a session that has or lacks rdns


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/11 11:01:50

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/11 11:08:33

Modified files:
	usr.sbin/config: cmd.c cmd.h config.8 ukc.c ukc.h 

Log message:
delete the bufcachepercent command (since this can be done at runtime),
and leftovers from past commands shmseg/shmmaxpg/nmbclusters
ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/11 11:22:31

Modified files:
	usr.bin/snmp   : snmpc.c 

Log message:
Cleanup usage.

Prodded by and OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 11:23:12

Modified files:
	usr.sbin/smtpd : parse.y ruleset.c smtpd.conf.5 to.c 

Log message:
add 'from rdns' to ruleset match criterias making it possible to match
envelopes created by sessions that had or did not have an rDNS:

match from rdns [...] action "local"
match !from rdns [...] reject


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/11 11:35:27

Modified files:
	usr.sbin/smtpd : lka_filter.c lka_report.c 

Log message:
the filtering protocol in OpenBSD 6.6 will be version 0, it has worked fine
for about a year now but until we have had a release with filters and until
we bring back the feedback from that release into the protocol, we will not
be version 1 of the protocol.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/11 11:54:43

Modified files:
	gnu/usr.bin/binutils-2.17/bfd: coffcode.h elf32-ppc.c ppcboot.c 
	                               xcofflink.c 
	gnu/usr.bin/binutils-2.17/gas/config: tc-ppc.c 
	gnu/usr.bin/binutils-2.17/include/elf: ppc.h 
	gnu/usr.bin/binutils-2.17/opcodes: ppc-dis.c 

Log message:
Various fixes to make this compile with clang on powerpc.

ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/11 12:11:10

Modified files:
	usr.bin/snmp   : snmpc.c 

Log message:
Replace some err(1, NULL) with err(1, "malloc").

Requested by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/08/11 13:44:25

Modified files:
	usr.sbin/acme-client: netproc.c 

Log message:
In let's encrypt v1 we had to track a challenge for every domain in
the certificate we were requesting.

This is no longer true in v2 and we have to free the amount of
challenges the server told us to fullfill.

OK benno


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/11 13:56:44

Modified files:
	devel/got      : Makefile distinfo 

Log message:
Update devel/got to got-0.4
- add support for tag objects to 'got diff'
- fix tog log -r option (patch by semarie@)
- fix use of potentially out-of-date errno values (patch by Hiltjo Posthuma)
- fix getline(3) return value check (patch by Hiltjo Posthuma)
- use Oo/Oc/Op instead of plain brackets in man pages (patch by bentley@)
- fix spurious failures of test_revert_patch_one_change due to race condition


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/11 14:42:44

Modified files:
	audio/clementine: Makefile 
Added files:
	audio/clementine/patches: 
	                          patch-3rdparty_libechonest_CMakeLists_txt 
	                          patch-src_devices_giolister_cpp 
	                          patch-src_musicbrainz_chromaprinter_cpp 

Log message:
clementine: add missing headers and remove -Werror on 3rd party libechonest
so it builds with ports-gcc.
While here, prepare for the future update to chromaprint-1.4x in a
backward compatible way.

OK bket@ kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/11 14:53:07

Modified files:
	lang/gcc/8     : Makefile 
	lang/gcc/8/patches: patch-libgcc_config_host 
Added files:
	lang/gcc/8/patches: patch-libgcc_config_rs6000_t-openbsd 

Log message:
gcc/8: add crt* symbols on powerpc
These symbols are needed at least for php-7.3.

Tips (thanks a lot!) and OK pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	tim@cvs.openbsd.org	2019/08/11 15:05:02

Modified files:
	usr.sbin/smtpd : mail.lmtp.c 

Log message:
Change all error exits to EX_TEMPFAIL so that mail rejected by the LMTP
server stays queued instead of being bounced.

Also improve getline(3) error handling and remove unreachable code.

OK sunil@ a while ago, "please get it in" gilles@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2019/08/11 18:52:36

Modified files:
	app/cwm        : menu.c 

Log message:
Fix regression from r1.107 (lost a return); kettenis@ pointed out the high
potential for a use-after-free (true!) where kn@ ran into the regression using
an app that actually exercised the XGrabPointer() failure path.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/08/12 00:24:00

Modified files:
	security/sqlmap: Makefile distinfo 
	security/sqlmap/pkg: PLIST 

Log message:
Update SQLMap to 1.3.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/08/12 00:32:33

Modified files:
	www/sblg       : Makefile distinfo 

Log message:
Update to sblg-0.4.29

Update from maintainer Bryan Vyhmeiste


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/08/12 00:54:10

Modified files:
	www/youtube-dl : Makefile 

Log message:
Update homepage.


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/12 01:40:45

Modified files:
	sbin/iked      : iked.h ikev2.c ikev2_msg.c ikev2_pld.c policy.c 

Log message:
Prepend SPI to send and recv log messages to see which line belongs to
which SA. Use IKE specific terms peer and local instead of to and from.

ok reyk@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/12 02:17:05

Modified files:
	sys/kern       : syscalls.master vfs_vnops.c 

Log message:
Unlock lseek(2) since the file offset is MP-safe by now. Calling
VOP_GETATTR() must still be serialized using the kernel lock since the
underlying file system implementation is not MP-safe.

no objection from deraadt@ and ok mpi@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/08/12 02:17:38

Modified files:
	games/polymorphable: Makefile 

Log message:
Simplify do-install

Install both directories and files while skipping editor files and
traversing the source tree just once.

OK bcallah


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/12 02:19:09

Modified files:
	sys/kern       : init_sysent.c syscalls.c 
	sys/sys        : syscall.h syscallargs.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/08/12 03:00:30

Modified files:
	net/powerdns   : Makefile distinfo 

Log message:
Update to PDNS server 4.1.13


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/12 03:49:21

Modified files:
	etc            : Makefile 

Log message:
There is no reason why the TAL files are installed only readable by root
these are public files.
Agreed by deraadt@ (and florian@)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/12 03:56:47

Modified files:
	sys/dev        : ipmi.c ipmivar.h 

Log message:
Remlve command mutex.  It is unnecessary since commands are already
serialized by the use of a taskq and it prevents sendmsg/endmsg from
being able to sleep.  This hurts when implementing SSIF since some
i2c controllers sleep while waiting for transactions on the i2c bus to
complete.

ok jmatthew@, deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/12 05:01:26

Modified files:
	devel/got      : Makefile distinfo 

Log message:
Update to got-0.5
- fix blame with single-commit history and with files without \n
- fix crashes in tog when blame returns no results on a file (found by otto@)
- man page improvements (bentley@)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/12 05:36:12

Modified files:
	lib/libcrypto/man: PEM_read_bio_PrivateKey.3 

Log message:
merge a few minor improvements from the OpenSSL 1.1.1 branch,
which is still under a free license:

* mention pem_password_cb in NAME and SYNOPSIS
* recommend -1 as pem_password_cb error return for OpenSSL compat
* minor improvements to the pass_cb() example code
* mention that the pass phrase is just a byte sequence
* and minor wording and markup improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/12 05:54:32

Modified files:
	usr.bin/vmstat : vmstat.c 

Log message:
Add the CP_SPIN time to the sum of system time reported.
OK kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/12 07:28:15

Modified files:
	etc            : changelist 

Log message:
Add the rpki TAL files to the changelist including arin.tal (which is not
shipeed by default).
OK job@ sthen@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/12 07:58:06

Modified files:
	databases/freetds: Makefile distinfo 

Log message:
update to freetds-1.1.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/12 08:09:08

Modified files:
	devel/re2c     : Makefile distinfo 
	devel/re2c/pkg : PLIST 

Log message:
update to re2c-1.2.1


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/12 08:15:27

Modified files:
	usr.sbin/bgpd  : session.c 

Log message:
Change the way IdleHoldTime is reset once the session is up and stable.
The implemented reverse exponential backoff results in very long times
until a session gets back to the initial hold values. Instead just wait
for the timer to fire once and reset the settings then. In most cases
the timer is double the IdleHold time (because of the way the backoff
is implemented) which is enough to ensure that fast flapping sessions
are punished.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/12 08:24:38

Added files:
	lib/libcrypto/man: CMS_ContentInfo_new.3 d2i_CMS_ContentInfo.3 

Log message:
These public functions are listed in the OpenSSL manuals but not
actually documented, so write the documentation from scratch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/12 08:40:04

Modified files:
	security/aircrack-ng: Makefile 
	security/aircrack-ng/pkg: PFRAG.ppc 

Log message:
aircrack-ng: allow packaging on macppc
POWER8 libaircrack-crypto isn't built on powerpc -- remove them from PFRAG.

OK benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/08/12 08:42:34

Modified files:
	www/kcgi       : Makefile distinfo 

Log message:
Update kcgi to 0.10.11


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/12 09:02:05

Modified files:
	usr.sbin/bgpd  : control.c 

Log message:
Reset the IdleHoldTime and the session error count when doing a admin
command that clears or starts a neighbor. This way an admin reset does
what people expect since it makes the session behave like a brand new one.
OK job@ deraadt@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/12 09:19:17

Modified files:
	textproc       : Makefile 
Removed files:
	textproc/py-Chart: Makefile distinfo 
	textproc/py-Chart/pkg: DESCR PLIST 

Log message:
textproc/py-Chart has no consumers and was last updated May 2009

Time to remove it

I checked with maintainer benoit@ who agrees it should go

OK benoit@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/12 09:21:30

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Update quirks to reflect removal of textproc/py-Chart

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/12 09:34:42

Modified files:
	lib/libcrypto/man: CMS_decrypt.3 

Log message:
Fix .Xrs to non-existant pages by correcting the misspelled function
names and documenting these two functions, CMS_decrypt_set1_pkey(3)
and CMS_decrypt_set1_key(3) right here in this same page.
While here, simplify and improve some wording.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/12 09:41:55

Modified files:
	lang/flang/libpgmath: Makefile distinfo 
	lang/flang/libpgmath/patches: patch-CMakeLists_txt 
	                              patch-lib_CMakeLists_txt 
	                              patch-lib_common_CMakeLists_txt 
	                              patch-lib_common_acos_fma3_CMakeLists_txt 
	                              patch-lib_common_asin_fma3_CMakeLists_txt 
	                              patch-lib_common_dispatch_c 
	                              patch-lib_common_exp_fma3_CMakeLists_txt 
	                              patch-lib_common_log_fma3_CMakeLists_txt 
	                              patch-lib_common_pow_fma3_CMakeLists_txt 
	                              patch-lib_common_powi_CMakeLists_txt 
	                              patch-lib_common_sincos_CMakeLists_txt 
	                              patch-lib_x86_64_CMakeLists_txt 
	                              patch-lib_x86_64_fast_CMakeLists_txt 
	                              patch-lib_x86_64_libm_amd_h 
	lang/flang/flang: Makefile distinfo 
	lang/flang/flang/patches: 
	                          patch-runtime_flangrti_x86_64-Linux_dumpregs_c 
Added files:
	lang/flang/libpgmath/patches: 
	                              patch-lib_common_cexp_CMakeLists_txt 
	                              patch-lib_common_cexpf_CMakeLists_txt 
	                              patch-lib_common_log10_CMakeLists_txt 
	                              patch-lib_common_log10f_CMakeLists_txt 
	                              patch-lib_common_logf_CMakeLists_txt 
	                              patch-test_CMakeLists_txt 
	                              patch-test_lit_site_cfg_in 
Removed files:
	lang/flang/libpgmath/patches: 
	                              patch-lib_common_exp_CMakeLists_txt 
	                              patch-lib_common_log_CMakeLists_txt 
	                              patch-lib_common_pow_CMakeLists_txt 

Log message:
Update to new flang build system. The build mechanism for libpgmath went
through a major rewrite which took some working with upstream to figure out
No real change to flang itself.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/12 10:00:05

Modified files:
	lib/libcrypto/man: SMIME_read_CMS.3 

Log message:
correct misspelled page name in an .Xr


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/12 10:17:50

Modified files:
	lib/libcrypto/man: CMS_sign.3 

Log message:
correct a misspelled page name in an .Xr;
it looks like this was the last bad .Xr in *CMS*(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2019/08/12 10:40:40

Modified files:
	databases/postgresql: Makefile distinfo 
	databases/postgresql/pkg: PLIST-docs 

Log message:
Update to 11.5

ok jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/12 11:47:52

Modified files:
	emulators/xnp2 : Makefile 
Added files:
	emulators/xnp2/patches: patch-x11_compiler_h 

Log message:
xnp2: fix the build with ports-gcc

OK bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/08/12 12:01:44

Modified files:
	usr.sbin/acme-client: chngproc.c 

Log message:
Do not exit with error if the challenge file already exists, instead truncate it and
write the challenge again. We can get asked to supply the same challenge multiple times.
bug found and patch tested by jmc@
patch discussed with, mangled and okayed by florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/12 12:03:17

Modified files:
	usr.sbin/rpki-client: Makefile main.c 
	regress/usr.sbin/rpki-client: Makefile test-cert.c test-ip.c 
	                              test-mft.c test-roa.c test-tal.c 

Log message:
Stop pulling libssl into rpki-client.

None of this code actually does TLS, hence libssl is not needed. Instead,
pull in the correct headers and call the appropriate libcrypto
initialisation functions (even this is only necessary to support OpenSSL
prior to 1.1).

While here also remove libssl/libcrypto initialisation/uninitialisation
from main() - it should only be necessary in proc_parser().

ok deraadt@ job@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/12 12:04:57

Modified files:
	lib/libcrypto/cms: cms_pwri.c 

Log message:
Inline the equivalent of ASN1_TYPE_unpack_sequence().


CVSROOT:	/cvs
Module name:	ports
Changes by:	pea@cvs.openbsd.org	2019/08/12 12:06:41

Modified files:
	databases/postgresql: Tag: OPENBSD_6_5 Makefile distinfo 
	databases/postgresql/pkg: Tag: OPENBSD_6_5 PLIST-docs 

Log message:
Security update to 11.5
ok jeremy@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/08/12 12:13:13

Modified files:
	lib/libcrypto/cms: cms_lib.c 

Log message:
Provide a local version of X509_get0_subject_key_id()

It seems that the CMS code is currently the only code in existence that
uses this function.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/12 13:17:35

Modified files:
	sys/arch/arm64/stand/efiboot: Makefile conf.c efiboot.c 
	                              efiboot.h 

Log message:
Make it possible to switch to framebuffer "glass" console in case it
isn't the default already.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/08/12 13:49:14

Modified files:
	share/man/man8 : starttls.8 

Log message:
instructions for replacing cert.pem are probably more harmful than helpful.
noticed by freda_bundchen. ok gilles millert


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/08/12 14:03:28

Modified files:
	usr.bin/calendar: day.c 

Log message:
In isnow(), always validate the value of the month variable before
using it as an index into the cumdays[] array.
Found with American Fuzzy Lop.  Original diff by and OK fcambus@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/12 14:04:31

Modified files:
	sys/arch/arm64/stand/efiboot: efiboot.c 

Log message:
Remove spurious newline.  Spotted by patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/12 14:06:02

Modified files:
	sys/dev/fdt    : axppmic.c 

Log message:
Fix typo; spotted by Krystian Lewandowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/08/12 14:21:58

Modified files:
	usr.sbin/ospfd : hello.c 

Log message:
Warn when a neighbor changes its source IP address. Either it is because
of a planned change or something bad is happening in the network.

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	remi@cvs.openbsd.org	2019/08/12 14:32:39

Modified files:
	usr.sbin/ospfd : packet.c 

Log message:
On broadcast and point-to-point interfaces only accept hello packets when
the destination is 224.0.0.5 (AllSPFRouters).

RFC 2328 sys in "9.5. Sending Hello packets" that hello packets are
sent to the multicast address AllSPFRouters on broadcast and physical
point-to-point networks.

With this new check the test for AllDRouters is not needed anymore.

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	tim@cvs.openbsd.org	2019/08/12 14:56:23

Modified files:
	usr.sbin/smtpd : mail.lmtp.c 

Log message:
Prepend a dot to every line that starts with a dot -- not merely the
ones that consist of a single dot.

OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	tim@cvs.openbsd.org	2019/08/12 14:57:31

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
Mark up no-verify with Cm; OK jmc@ gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/12 15:29:43

Modified files:
	lib/libcrypto/man: CMS_add0_cert.3 

Log message:
some cleanup:
* add missing STANDARDS section
* avoid repetitions and jumping back and forth among functions
* describe the difference between 0 and 1 more precisely and more concisely
* mark up the ASN.1 type and field names


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/12 15:47:24

Modified files:
	audio/flac     : Makefile distinfo 
	audio/flac/pkg : PLIST 
Removed files:
	audio/flac/patches: patch-configure patch-src_libFLAC_cpu_c 

Log message:
update to 1.3.3: no significant user-visible changes


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/08/12 17:10:19

Modified files:
	.              : events.html 

Log message:
Add EuroBSDCon and vBSDCon to the future events along with the
speaking developers and the titles of their talks.

"Looks good" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/08/12 17:43:03

Modified files:
	gnu/llvm/lib/CodeGen: LocalStackSlotAllocation.cpp 

Log message:
Ensure stack protector slot access is resolved by PEI.

On arm64, arm, and ppc it is possible that a large stack frame will
cause the stack protector slot to be reallocated at the wrong end of
the frame.

Noticed by tj@. ok patrick@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/12 17:58:09

Log message:
    "Soup Sieve is a CSS selector library designed to be used with Beautiful
    Soup 4. It aims to provide selecting, matching, and filtering using
    modern CSS selectors."
    
    Version 1.9.2
    
    It is needed for www/py-beautifulsoup4 4.7.0+ as the CSS Selector
    implementation in bs4 was replaced with a dependency on soupsieve.
    
    ok danj@
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190812
    
    N ports/www/py-soupsieve/Makefile
    N ports/www/py-soupsieve/distinfo
    N ports/www/py-soupsieve/pkg/DESCR
    N ports/www/py-soupsieve/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/12 17:58:50

Modified files:
	www            : Makefile 

Log message:
Hook www/py-soupsieve up to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/08/12 18:34:03

Modified files:
	net/haproxy    : Makefile distinfo 
	net/haproxy/patches: patch-doc_haproxy_1 patch-src_ssl_sock_c 

Log message:
Update to haproxy-1.9.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/12 18:52:04

Modified files:
	www/py-beautifulsoup4: Makefile distinfo 

Log message:
Update www/py-beautifulsoup4 4.6.3 -> 4.7.1

Update beautifulsoup4. py-soupsieve is now required for new versions.

Converted port to MODPY_PI. Also makes tests work normally.

OK danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/12 21:13:06

Modified files:
	sys/dev/pci/drm/include/drm: drm_drv.h 
	sys/dev/pci/drm/amd/amdgpu: amdgpu_kms.c 

Log message:
Don't match on amdgpu devices flagged as having experimental hardware support
(AMD_EXP_HW_SUPPORT) in the amdgpu_pciidlist table.

Prompted by a report from Charlie Burnett that display doesn't light up
with a Radeon VII (VEGA20).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/12 21:17:11

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
add Union Memory NVMe


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/12 21:18:38

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/13 01:09:21

Modified files:
	sys/kern       : syscalls.master vfs_vnops.c 

Log message:
Revert unlock of lseek(2) since vn_lock() could end up calling tsleep()
which is not allowed without holding the kernel lock. Otherwise, wakeups
could be lost.

Reported-by: syzbot+57588681ca9e3e9ba926@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/13 01:10:31

Modified files:
	sys/kern       : init_sysent.c syscalls.c 
	sys/sys        : syscall.h syscallargs.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/13 01:39:57

Modified files:
	usr.sbin/bgpd  : config.c parse.y 

Log message:
When allocating a new peer set the reconf_action to RECONF_REINIT.
Also in merge_config() it is no longer needed to reset the reconf_action
of the new peers to RECONF_REINIT. merge_config() is not called on
startup and so some of the initialisation of new peers did not happen
correctly.

This fixes the md5 integration test since the md5 initialisation did not
happen early enough.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/13 01:47:40

Modified files:
	distrib/miniroot: install.sub 

Log message:
Reset sysupgrade watchdog upon every set installation

Instead of having a single timeout for the entire upgrade, start anew right
before extracting each set's tarball.

Do so by replacing the background job with a proper co-process that gets
killed and restarted (reset), analogue to the dmesg listener in interactive
mode.

Prompted by and OK sthen
OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/08/13 02:12:57

Modified files:
	mail/amavisd-new: Makefile distinfo 
	mail/amavisd-new/patches: patch-amavisd patch-amavisd_conf 
	mail/amavisd-new/pkg: PLIST-main PLIST-utils 

Log message:
Update to 2.12.0
Support to rspamd
dkim patch committed upstream
bug fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/13 02:17:52

Modified files:
	sys/arch/amd64/stand/efi32: conf.c 

Log message:
Unbreak build of efi32 due to a typo in the fchmod change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2019/08/13 02:24:07

Log message:
    Import py-joblib required by upcoming py-scikit-learn.
    
    Joblib is a set of tools to provide lightweight pipelining in Python.
    In particular:
    
    transparent disk-caching of functions and lazy re-evaluation
    (memoize pattern)
    
    easy simple parallel computing
    
    Joblib is optimized to be fast and robust in particular on large
    data and has specific optimizations for numpy arrays. It is
    BSD-licensed.
    
    Initial work by robert@, polished by kmos@.
    
    OK robert, kmos
    
    Status:
    
    Vendor Tag:	pirofti
    Release Tags:	pirofti_20190813
    
    N ports/sysutils/py-joblib/Makefile
    N ports/sysutils/py-joblib/distinfo
    N ports/sysutils/py-joblib/pkg/DESCR
    N ports/sysutils/py-joblib/pkg/PLIST
    N ports/sysutils/py-joblib/patches/patch-setup_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2019/08/13 02:26:02

Modified files:
	sysutils       : Makefile 

Log message:
Add py-joblib


CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2019/08/13 02:30:07

Log message:
    Import py-scikit-learn.
    
    scikit-learn is a BSD-licensed Python module for machine learning
    and data mining built on top of SciPy.
    
    Initially created by robert@, modified by me and kmos@.
    
    This is not polished enough, but it can improved in the tree now.
    Once the 21 branch rolls out a new version, we will probably update to that.
    Currently it is broken for non-OpenMP builds.
    
    OK robert@, kmos@
    
    Status:
    
    Vendor Tag:	pirofti
    Release Tags:	pirofti_20190813
    
    N ports/math/py-scikit-learn/Makefile
    N ports/math/py-scikit-learn/distinfo
    N ports/math/py-scikit-learn/pkg/DESCR
    N ports/math/py-scikit-learn/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	pirofti@cvs.openbsd.org	2019/08/13 02:31:17

Modified files:
	math           : Makefile 

Log message:
Add py-scikit-learn


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/13 02:42:46

Modified files:
	graphics/ansilove: Makefile distinfo 

Log message:
Update ansilove to 4.0.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/13 03:00:20

Modified files:
	sys/arch/amd64/stand/efi32: conf.c efipxe.c 
	sys/arch/amd64/stand/efi64: conf.c efipxe.c 
	sys/arch/amd64/stand/efiboot: conf.c efipxe.c 
	sys/arch/arm64/stand/efiboot: conf.c efipxe.c 
	sys/arch/armv7/stand/efiboot: conf.c efipxe.c 

Log message:
Allow PXE booting using u-boot by relaxing our requirements
of the EFI PXE protocol.  This also brings us in line with
the GRUB2 implementation.

Tested by naddy@ to behave the same
Tested by sven falempin on his Pine64


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/13 03:08:19

Modified files:
	regress/usr.sbin/bgpd/integrationtests: Makefile 

Log message:
Move comment about exabgp to the rule since this way it is shown to the user.
Reminded by bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/08/13 04:41:33

Modified files:
	usr.bin/awk    : run.c 

Log message:
Fix a segmentation fault in awk, from upstream version 20121220.

OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/08/13 04:45:56

Modified files:
	usr.bin/awk    : run.c 

Log message:
Check for strdup return value and exit on failure.

OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/13 06:13:26

Modified files:
	usr.sbin/bgpd  : session.c 

Log message:
Do not use the SE global conf struct for the bgpd_config but actually
the bgpd_config pointer passed to these functions. Luckily the affected
functions were not used outside of the SE. While there also use
getpeerbyid() to check if an peer id is in use instead of the rather
dumb linear loop.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/13 06:16:20

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_filter.c rde_update.c 

Log message:
Instead of passing a struct prefix pointer to rde_filter() pass the 4 values
prefix_peer, prefix_vstate and prefix/prefixlen to the function. This removes
some ugly hacks in cases where the prefix was not available.
Also adjust the order of arguments of rde_attr_set() to match rde_filter().
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/13 06:25:54

Modified files:
	devel/got      : Makefile distinfo 

Log message:
Update to got-0.6
- 'got log' and 'tog log' now display tags in addition to branch references
- 'got ref' can now be used to create symbolic references
- use <limits.h> instead of <sys/limits.h> (patch by Thomas Klausner)
- fix crash if 'got rebase' has no commits to rebase (with semarie@)
- annotate symlinks with @ in 'got tree' and 'tog tree'


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/13 06:28:03

Modified files:
	usr.bin/snmp   : snmpc.c 

Log message:
Error-index starts at 1, not 0.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/13 06:46:19

Modified files:
	usr.sbin/snmpd : mib.c 

Log message:
Report if_iqdrops (input queue drops) as ifInDiscards. This is pretty
much what this counter is for. For sure better than net.inet.ip.ifq.drops
which no longer exists.
Found by and OK martijn@ and OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/13 06:52:41

Modified files:
	usr.sbin/snmpd : mib.c 

Log message:
snmpd was using ifq_len for ifOutQLen, apart from being the wrong variable
for this MIB in the first place, this has now been removed in ifq changes.
Since the MIB is marked as deprecated anyway, simply return 0. ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/13 07:04:54

Modified files:
	textproc/py-xmldiff: Makefile distinfo 
	textproc/py-xmldiff/pkg: PLIST 
Removed files:
	textproc/py-xmldiff/patches: patch-bin_xmldiff patch-bin_xmlrev 

Log message:
Update textproc/py-xmldiff 0.6.10 -> 2.3

py-xmldiff hasn't been updated in a long time, but it still gets used.
So time to update it. Current 2.x versions are a rewrite in pure python.

Patches go away. Port moved to use MODPY_PI and MODPY_SETUPTOOLS.

Move it to python3 only since executable is just xmldiff and xmlpatch.

OK landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/13 07:07:11

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Update quirks to reflect py-xmldiff's migration to python3
(py-xmldiff -> py3-xmldiff)

ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/13 07:27:26

Modified files:
	usr.sbin/rpki-client: cert.c cms.c crl.c extern.h main.c mft.c 

Log message:
Show the most common warnings only if verbose is set. Most of these warnings
were shown because of an inconsistent rpki database and is no real problem.
OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/08/13 07:34:43

Modified files:
	usr.sbin/rpki-client: io.c 

Log message:
Silence warnings about short reads. They happen, we deal with it, it's
just noise.
OK claudio


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/13 07:36:00

Modified files:
	cad/gnucap     : Makefile 
Added files:
	cad/gnucap/patches: patch-src_plot_cc 

Log message:
gnucap: fix the build with ports-gcc

OK bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/13 07:53:49

Modified files:
	usr.sbin/rpki-client: output-bgpd.c 

Log message:
Do not abuse a for-loop to do an addition.


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/08/13 08:11:05

Modified files:
	mail/exim      : Tag: OPENBSD_6_5 Makefile 

Log message:
Fixing my previous bad fix.
PERMIT_PACKAGE used to be PERMIT_PACKAGE_CDROM and not
PERMIT_PACKAGE_WITH_CDROM..


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/13 08:50:13

Modified files:
	audio/clementine: Makefile distinfo 

Log message:
use standard GH_*


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/08/13 09:18:30

Modified files:
	build          : mirrors.dat 

Log message:
disable http://mirrors.unb.br/pub/OpenBSD/ for now, 404 (maintainer pinged)
add LF for ftp.usa


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/08/13 09:19:47

Modified files:
	.              : ftp.html ftplist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/13 09:20:03

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.7
- properly parse timestamps in commit objects as UTC (patch by Hiltjo Posthuma)
- strip Git GPG signatures from log messages
- fix regression: don't try to parse "leightweight" tags as real tag objects


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/08/13 09:28:13

Modified files:
	sys/dev/pci    : azalia.c azalia.h azalia_codec.c 

Log message:
azalia: add quirk for speaker routing on ThinkPad X1C7

The X1C7 has 4 speakers and the speaker2 set needs to be routed to a
different DAC.

Also add the Intel 300 Series HDA to the list of devices on which to
enable snooping.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/08/13 09:34:44

Modified files:
	build          : mirrors.dat 

Log message:
comment-out some https - expired certs


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/08/13 09:34:59

Modified files:
	.              : ftp.html httpslist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/13 09:37:14

Modified files:
	textproc/py-xmldiff: Makefile 
	textproc/py-xmldiff/pkg: PLIST 

Log message:
The upgrade path from py-xmldiff to py3-xmldiff won't work as it
was. Needed to add "@conflict" with py-xmldiff and "@pkgpath
textproc/py-xmldiff". Then it will work.

From and OK sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/08/13 09:54:11

Modified files:
	build          : mirrors.dat 

Log message:
add comments listing known nodes for leaseweb cluster


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/13 09:55:41

Modified files:
	astro/ansiweather: Makefile distinfo 

Log message:
Update ansiweather to 1.14.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/13 10:02:33

Modified files:
	usr.sbin/smtpd : envelope.c smtp_session.c to.c 

Log message:
use proper format to display inet6 addresses in logs as well as to store in
disk envelopes. smtpd used the Received and helo response format that isn't
valid in a relay url and looks wrong in logs.

spotted and tested ok@ by semarie


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2019/08/13 12:10:11

Modified files:
	audio/chromaprint/patches: patch-tests_CMakeLists_txt 

Log message:
some of the tests depend on signed char, which is not true on several arches
remove those tests temporarily, they will be fixed in the upcoming 1.4.3 update

no bump, because the tests are not included in the package

OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2019/08/13 12:13:53

Modified files:
	x11/gtk+4      : Makefile 

Log message:
gtk+4,-cups depends on colord on aarch64, too

while here, sort the list of arches

OK ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/13 12:31:23

Modified files:
	sys/dev        : ipmi.c ipmivar.h 
	sys/dev/acpi   : ipmi_acpi.c 

Log message:
Reorganize the ipmi(4) code a bit in anticipation of adding SSIF support:
- Put function prototypes in more logical places.
- Inroduce a ipmi_attach_common() function.
- Move all the SMBIOS related code to the end of the file and only
compile it in on amd64 & i386.

ok jmatthew@ and deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gilles@cvs.openbsd.org	2019/08/13 12:40:10

Log message:
    import mail/opensmtpd-filter-rspamd, an rspamd integration for OpenSMTPD
    
    ok landry@ and kn@
    
    Status:
    
    Vendor Tag:	gilles
    Release Tags:	gilles_20190813
    
    N ports/mail/opensmtpd-filter-rspamd/Makefile
    N ports/mail/opensmtpd-filter-rspamd/distinfo
    N ports/mail/opensmtpd-filter-rspamd/pkg/PLIST
    N ports/mail/opensmtpd-filter-rspamd/pkg/README
    N ports/mail/opensmtpd-filter-rspamd/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	xenocara
Changes by:	okan@cvs.openbsd.org	2019/08/13 12:45:38

Modified files:
	app/cwm        : kbfunc.c 

Log message:
Because cwm warps the pointer during a client move (to stay within the client),
there's a window of time where an expose or enternotify event will get
generated for a lower client; use a hammer and drain events after keyboard
move/resize, until such a time that cwm doesn't warp the pointer.  Behavior
noticed by kn.

ok kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gilles@cvs.openbsd.org	2019/08/13 14:29:43

Modified files:
	mail           : Makefile 

Log message:
link mail/opensmtpd-filter-rspamd to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/13 14:38:50

Modified files:
	math/ebc       : Makefile distinfo 

Log message:
Update to ebc-2.1.3
Changelog: https://github.com/gavinhoward/bc/releases/tag/2.1.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/13 15:14:11

Modified files:
	www/apache-httpd: Makefile distinfo 
	www/apache-httpd/patches: patch-Makefile_in patch-config_layout 
	                          patch-configure 
	                          patch-docs_conf_httpd_conf_in 
	                          patch-docs_man_htpasswd_1 
	                          patch-docs_man_httpd_8 
	                          patch-modules_ssl_ssl_engine_init_c 
	                          patch-modules_ssl_ssl_private_h 
	                          patch-server_mpm_unix_c 
	                          patch-support_apachectl_in 
	                          patch-support_apxs_in 
	                          patch-support_rotatelogs_c 
	www/apache-httpd/pkg: PLIST 
Removed files:
	www/apache-httpd/patches: patch-modules_filters_mod_reqtimeout_c 

Log message:
update to apache-httpd 2.4.41


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/13 15:36:18

Modified files:
	usr.sbin/config: ukc.c ukc.h 

Log message:
config -eu uses a second copy of the nlist array[], which should never
become different or the #define's for the slots could diverge.  To avoid
this, make one a copy of the other at runtime.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/13 15:40:42

Modified files:
	devel/libcoap  : Makefile distinfo 
	devel/libcoap/patches: patch-configure_ac 
	                       patch-examples_client_c 
	devel/libcoap/pkg: DESCR PLIST 
Added files:
	devel/libcoap/patches: patch-Makefile_am 
Removed files:
	devel/libcoap/patches: patch-src_coap_io_c 

Log message:
Update to a newer libcoap snapshot (4.2.0 release works but has some minor
problems, current devel tree works better here). Remove USE_LLD=No and
USE_LIBTOOL=gnu as it now successfully builds and runs without (previously
this had a runtime failure). Tested against ikea tradfri 1.8.26.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/13 16:02:28

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_kms.c 

Log message:
Implement backlight control for amdgpu(4).  This allows me to set
the backlight of my X395 using wsconsctl(8).  Unfortunately the
backlight hotkeys don't yet allow adjusting the brightness.

ok jsg@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/13 17:14:46

Modified files:
	devel/py-entrypoints: Makefile distinfo 
	devel/py-entrypoints/pkg: PLIST 

Log message:
Update devel/py-entrypoints 0.2.3 -> 0.3

From Paco Esteban. Thank you very much!

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/13 17:19:10

Modified files:
	devel/py-codestyle: Makefile distinfo 

Log message:
Update devel/py-codestyle 2.3.1 -> 2.5.0

From Paco Esteban. Thank you very much!

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/13 17:25:24

Modified files:
	devel/flake8   : Makefile distinfo 
	devel/flake8/pkg: PLIST 
Removed files:
	devel/flake8/patches: patch-setup_py 

Log message:
Update devel/flake8 3.5.0 -> 3.7.7

From Paco Esteban. Thank you very much!

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/13 17:54:16

Modified files:
	lib/libcrypto/man: CMS_add1_recipient_cert.3 

Log message:
some cleanup:
* state the common, general purpose up front
* more precision regarding which ASN.1 types and fields are involved
* mark up the ASN.1 type and field names
* add the missing STANDARDS section
* and minor wording improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/13 18:08:46

Modified files:
	sys/arch/amd64/conf: GENERIC 

Log message:
enable amdgpu on amd64 requested by a few people

there are still issues:
- running piglit will quickly trigger a gpu hang
- hardware cursor (the default) isn't always correct,
can be worked around by specifying SWcursor
- suspend/resume doesn't work

ok patrick@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/13 22:43:32

Modified files:
	usr.sbin/snmpd : traphandler.c 

Log message:
Fix ber_scanf_elements for traphandler:
- pdu header has 3 elements, not 4
- additional varbinds are optional.

This is needed to make ber_scanf_elements stricter.

Note that people using "trap handle" in their snmpd.conf and expect a trap
without additional varbinds to show the trapoid to appear twice will have
to adjust their "command".

OK rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/13 22:48:13

Modified files:
	lib/libutil    : ber.c 

Log message:
Make sure that ber in ber_scanf_elements is not NULL before parsing format
where ber is utilized. This also allows us to remove the ber->be_next
check, which can cause weird behaviour, because a NULL be_next would result
in parsing the last element twice.

OK claudio@ on previous version
OK rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/13 23:32:56

Modified files:
	sys/dev/pci/drm/include/drm: drmP.h 
	sys/dev/pci/drm/include/linux: kconfig.h 

Log message:
move CONFIG_DRM_FBDEV_EMULATION and CONFIG_BACKLIGHT_CLASS_DEVICE
defines to kconfig.h with most of the others


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/08/13 23:59:50

Modified files:
	mail/nmh       : Makefile 

Log message:
Comment why USE_GROFF is necessary (.fc; see roff(7)).


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/14 00:56:51

Modified files:
	cad/qcad       : Makefile distinfo 
	cad/qcad/pkg   : PLIST 
Added files:
	cad/qcad/patches: patch-scripts_Help_About_About_js 
	                  patch-scripts_Widgets_CommandLine_CommandLine_js 
	                  patch-shared_app_pri patch-shared_pri 
	                  patch-src_3rdparty_opennurbs_opennurbs_opennurbs_pro 
	                  patch-src_3rdparty_opennurbs_opennurbs_pro 
	                  patch-src_3rdparty_qt-labs-qtscriptgenerator-5_5_0_qtbindings_qtbindingsbase_pri 
	                  patch-src_core_RSPlatform_cpp 
	                  patch-src_core_RS_cpp 
	                  patch-src_core_RSettings_cpp 
	                  patch-src_core_core_pro patch-src_run_run_pri 
Removed files:
	cad/qcad/patches: patch-dxflib_Makefile_in 
	                  patch-dxflib_src_dl_writer_h 
	                  patch-fparser_Makefile_in 
	                  patch-mkspecs_defs_pro 
	                  patch-qcad_src_qc_applicationwindow_cpp 
	                  patch-qcad_src_qcad_pro 
	                  patch-qcadactions_src_rs_actionzoompan_cpp 
	                  patch-qcadguiqt_src_qg_dialogfactory_cpp 
	                  patch-qcadlib_src_engine_rs_arc_cpp 
	                  patch-qcadlib_src_engine_rs_circle_cpp 
	                  patch-qcadlib_src_engine_rs_ellipse_cpp 
	                  patch-qcadlib_src_engine_rs_entity_cpp 
	                  patch-qcadlib_src_engine_rs_layer_cpp 
	                  patch-qcadlib_src_engine_rs_line_cpp 
	                  patch-qcadlib_src_engine_rs_system_cpp 
	                  patch-qcadlib_src_engine_rs_system_h 
	                  patch-qcadlib_src_gui_rs_graphicview_cpp 
	                  patch-qcadlib_src_gui_rs_linetypepattern_h 
	                  patch-qcadlib_src_information_rs_information_cpp 
	                  patch-scripts_build_qcad_sh 
	                  patch-scripts_release_translations_sh 

Log message:
Update to QCAD 3.23.0.0

Tweak and OK by bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/14 01:34:49

Modified files:
	usr.sbin/vmctl : vmctl.c 
	usr.sbin/vmd   : vmd.c vmd.h 

Log message:
Improve the error message when supplying an invalid template to vmctl
start. Favoring 'invalid template' over 'permission denied' should give
the user a better hint on what went wrong.

ok kn@ mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/14 01:39:04

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_rib.c 

Log message:
There is no longer a reason to use two structs for RIBs where one is part
of the other. Just merge struct rib_desc into struct rib. Makes code simpler.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/14 02:03:42

Modified files:
	regress/sbin/iked/parser: common.c 

Log message:
Add ikev2_ikesa_info dummy definition for parser test.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/08/14 02:23:28

Modified files:
	lang/go        : Makefile distinfo 

Log message:
Update lang/go to 1.12.8.

This includes security fixes to the net/http and net/url packages.


CVSROOT:	/cvs
Module name:	src
Changes by:	asou@cvs.openbsd.org	2019/08/14 02:31:00

Modified files:
	lib/libedit    : readline.c 

Log message:
read() returns -1 on failure

ok yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/14 02:35:46

Modified files:
	sbin/iked      : iked.h ikev2.c ikev2_pld.c 

Log message:
Fix NAT traversal detection bug when "local" option is not explicitly
set.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/14 03:58:31

Modified files:
	usr.bin/tmux   : cmd-rotate-window.c cmd-select-pane.c 
	                 cmd-swap-pane.c cmd-switch-client.c tmux.1 
	                 tmux.h window-copy.c window.c 

Log message:
Add -Z flag to rotate-window, select-pane, swap-pane, switch-client to
preserve zoomed state. GitHub issue 1839.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/14 03:59:44

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Revert a change I did not mean to commit yet.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/14 04:02:24

Modified files:
	usr.bin/tmux   : window-copy.c 

Log message:
Default to previous search string for search-forward and
search-backward, from Leah Neukirchen.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/14 04:07:17

Modified files:
	emulators/hatari: Makefile 
	emulators/hatari/patches: patch-CMakeLists_txt 

Log message:
Avoid picking up audio/portmidi if it's installed.

Thanks to naddy@ for spotting the issue.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/14 05:54:23

Modified files:
	lib/libcrypto/man: CMS_add1_signer.3 

Log message:
some cleanup:
* avoid repetitions and jumping back and forth between the functions
* more precision regarding which ASN.1 types and fields are involved
* mark up the ASN.1 type and field names
* explain CMS_REUSE_DIGEST more precisely
* move the discussion of attributes to CMS_NOATTR where it belongs
* GOST does not need an ENGINE in LibreSSL, so don't use it as an example
* add the missing STANDARDS section
* and minor wording improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/14 05:57:21

Modified files:
	usr.sbin/bgpd  : rde.c rde.h rde_rib.c 

Log message:
Rework the way ribs are stored in the RDE. Instead of a flat array that
gets enlarged use an array of pointers, so pointers to struct rib entries
remain valid after adding new RIBs. Also remove the global ribs pointer
and rib_valid() since they are no longer used since all the code uses now
rib_byid() instead.
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/14 06:01:38

Log message:
    Import muparser 2.2.6.1
    
    muParser is an extensible high performance math expression parser library
    written in C++. It works by transforming a mathematical expression into
    bytecode and precalculating constant parts of the expression.
    
    ok bentley@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_20190814
    
    N ports/math/muparser/Makefile
    N ports/math/muparser/distinfo
    N ports/math/muparser/pkg/PLIST
    N ports/math/muparser/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/14 06:03:33

Modified files:
	math           : Makefile 

Log message:
+muparser


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/14 06:09:41

Log message:
    Import LibreCAD 2.2.0-rc1
    
    LibreCAD is a cross-platform 2D CAD program written in C++11 using the Qt
    framework. It can read DXF and DWG files and can write DXF, PDF and SVG files.
    The user interface is highly customizable, and has dozens of translations.
    
    ok bentley@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_20190814
    
    N ports/cad/librecad/Makefile
    N ports/cad/librecad/distinfo
    N ports/cad/librecad/pkg/DESCR
    N ports/cad/librecad/pkg/PLIST
    N ports/cad/librecad/patches/patch-common_pri
    N ports/cad/librecad/patches/patch-scripts_postprocess-unix_sh
    N ports/cad/librecad/patches/patch-librecad_src_lib_engine_rs_system_cpp
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/14 06:13:36

Modified files:
	cad            : Makefile 

Log message:
+librecad


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 06:43:53

Modified files:
	audio          : Makefile 
Removed files:
	audio/py-id3   : Makefile distinfo 
	audio/py-id3/pkg: DESCR PLIST 
	audio/py-tagger: Makefile distinfo 
	audio/py-tagger/patches: patch-README patch-setup_py 
	audio/py-tagger/pkg: DESCR PLIST 

Log message:
Remove audio/py-id3 and audio/py-tagger from the ports tree

Neither have any consumers

py-id3 hasn't been updated since it was imported in 2003

py-tagget hasn't been updated since it was imported in 2006

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 06:47:14

Modified files:
	chinese        : Makefile 
Removed files:
	chinese/py-zhCodecs: Makefile distinfo 
	chinese/py-zhCodecs/pkg: DESCR PLIST 

Log message:
Remove chinese/py-zhCodecs from the tree

chinese/py-zhCodecs is python2-only, has no consumers, and hasn't been updated
since 2002

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/14 06:56:21

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
Tweak some comments.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/14 07:07:46

Modified files:
	faq            : faq10.html faq15.html 

Log message:
-stable packages for amd64 and i386


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 07:26:52

Modified files:
	databases      : Makefile 
Removed files:
	databases/pgworksheet: Makefile distinfo 
	databases/pgworksheet/pkg: DESCR PLIST 
	databases/py-cdb: Makefile distinfo 
	databases/py-cdb/pkg: DESCR PLIST 
	databases/py-pgsql: Makefile distinfo 
	databases/py-pgsql/pkg: DESCR PLIST 

Log message:
Remove databases/pgworksheet, database/py-cdb, and database/py-pgsql
from the tree

databases/py-cdb is python2-only, has no consumers, and hasn't been updated
since 2004

databases/py-pgsql is python2-only, has only pgworksheet as a
consumer, and hasn't been updated since 2008

databases/pgworksheet is python2-only, has no consumers, and hasn't
been updated since 2008

OK pea@ (maintainer) for py-pgsql and pgworksheet
OK sthen@ for all


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 07:29:50

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add all of the following to the obsolete list as they have been removed
from the ports tree:

py-id3
py-tagger
py-zhCodecs
py-cjkcodecs
py-iconvcodec
py-cdb
py-pgsql
pgworksheet

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/14 08:05:32

Modified files:
	lib/libcrypto/man: EVP_DigestInit.3 

Log message:
document EVP_Digest(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/14 08:40:23

Modified files:
	usr.bin/snmp   : snmp.1 snmpc.c 

Log message:
make usage() and SYNOPSIS more alike
discussed with martijn


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/14 11:07:15

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-258.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/14 11:20:41

Modified files:
	lib/libutil    : ber.c 

Log message:
Make ber_scanf_elements's 'e' attribute eat the element.
Right now all consumers use 'e' at the end of the list, so no regressions
should be introduced.

OK claudio@
Seems sensible to deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/14 11:21:42

Modified files:
	lib/libutil    : ber_get_string.3 

Log message:
Document that ber_scanf_elements' 'p' and 't' attribute don't eat the
current ber element.

OK claudio@
Seems sensible to deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/14 11:36:04

Modified files:
	lib/libutil    : ber_get_string.3 

Log message:
wonky comma;


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 12:26:59

Modified files:
	converters     : Makefile 
Removed files:
	converters/py-cjkcodecs: Makefile distinfo 
	converters/py-cjkcodecs/pkg: DESCR PLIST 
	converters/py-iconvcodec: Makefile distinfo 
	converters/py-iconvcodec/pkg: DESCR PLIST 

Log message:
Remove the following obsolete ports:

converters/py-cjkcodecs is python2-only, has no consumers, and
hasn't been updated since 2003

converters/py-iconvcodec is python2-only, has no consumers, and
hasn't been updated since 2004

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 12:39:07

Modified files:
	devel          : Makefile 
Removed files:
	devel/py-monthdelta: Makefile distinfo 
	devel/py-monthdelta/pkg: DESCR PLIST 
	devel/py-optik : Makefile distinfo 
	devel/py-optik/pkg: DESCR PLIST 
	devel/py-protocols: Makefile distinfo 
	devel/py-protocols/pkg: DESCR PLIST 
	devel/py-ruledispatch: Makefile distinfo 
	devel/py-ruledispatch/patches: patch-src_dispatch___init___py 
	                               patch-src_dispatch_predicates_py 
	devel/py-ruledispatch/pkg: DESCR PLIST 
	devel/py-silc  : Makefile distinfo 
	devel/py-silc/pkg: DESCR PLIST 
	devel/py-tpg   : Makefile distinfo 
	devel/py-tpg/pkg: DESCR PLIST 
	devel/py-unit  : Makefile distinfo 
	devel/py-unit/pkg: DESCR PFRAG.no-no_x11 PLIST 
	devel/pybugz   : Makefile distinfo 
	devel/pybugz/pkg: DESCR PLIST 

Log message:
Remove the following obsolete ports from the tree

All are python2-only.

devel/py-monthdelta has no consumers, last release was in 2012

devel/py-optik has no consumers, last release was 2005

devel/py-protocols has no consumers, last release was before 2007

devel/py-ruledispatch has no consumers, and hasn't been updated
since import in 2007

devel/py-silc has no consumers, last release was in 2006

devel/py-tpg has no consumers, and hasn't been updated since 2006

devel/py-unit has no consumers, last release was in 2009

devel/pybugz has no consumers, hasn't been updated since it was
imported in 2009

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 12:43:01

Modified files:
	math           : Makefile 
Removed files:
	math/py-gnuplot: Makefile distinfo 
	math/py-gnuplot/patches: patch-setup_py 
	math/py-gnuplot/pkg: DESCR PLIST 
	math/py-probstat: Makefile distinfo 
	math/py-probstat/pkg: DESCR PLIST 

Log message:
Remove the following obsolete ports from the tree

math/py-gnuplot is python2-only, has no consumers, and last release
was in 2009

math/py-probstat is python2-only, has no consumers, and last release
was in 2002

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 12:43:49

Modified files:
	misc           : Makefile 
Removed files:
	misc/pymissile : Makefile distinfo 
	misc/pymissile/pkg: DESCR PLIST 

Log message:
Remove misc/pymissile from the tree.

Port hasn't been updated since import in 2006

sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 12:50:22

Modified files:
	net            : Makefile 
Removed files:
	net/py-adns    : Makefile distinfo 
	net/py-adns/patches: patch-setup_py 
	net/py-adns/pkg: DESCR PLIST 
	net/py-flowd   : Makefile distinfo 
	net/py-flowd/pkg: DESCR PLIST 
	net/py-flowtools: Makefile distinfo 
	net/py-flowtools/pkg: DESCR PLIST 
	net/py-medusa  : Makefile distinfo 
	net/py-medusa/pkg: DESCR PLIST 

Log message:
Remove the following obsolete ports from ports/net

py-adns is python2-only, has no consumers, and hasn't been updated
since import in 2008

py-flowd is python2-only, has no consumers, and hasn't been updated
since 2006

py-flowtools is python2-only, has no consumers, and hasn't been
updated since 2010

py-medusa is python2-only, has no consumers, and hasn't been updated
since import in 2008

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 12:57:45

Modified files:
	security       : Makefile 
Removed files:
	security/py-Rijndael: Makefile distinfo 
	security/py-Rijndael/pkg: DESCR PLIST 
	security/py-crack: Makefile distinfo 
	security/py-crack/patches: patch-configure_ac 
	security/py-crack/pkg: DESCR PLIST 
	security/py-cryptkit: Makefile distinfo 
	security/py-cryptkit/patches: patch-ecc_src_onb_integer_c 
	                              patch-sha256_src_sha2_c 
	security/py-cryptkit/pkg: DESCR PLIST 

Log message:
Remove the following obsolete ports from ports/security

py-Rijndael is python2-only, has no consumers, and hasn't been
updated since 2009

py-crack is python2-only, has no consumers, and hasn't been updated
since 2009

py-cryptkit is python2-only, has no consumers, and hasn't been updated
since it was imported in 2002

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 13:00:34

Modified files:
	textproc       : Makefile 
Removed files:
	textproc/py-HappyDoc: Makefile distinfo 
	textproc/py-HappyDoc/patches: 
	                              patch-happydoclib_docstring_StructuredText_STDOM_py 
	                              patch-srcdocs_HappyDoc-r2_1_happydoclib_docstring_StructuredText_STDOM_NodeWrapper_html 
	                              patch-srcdocs_HappyDoc-r2_1_happydoclib_docstring_StructuredText_STDOM_Node_html 
	textproc/py-HappyDoc/pkg: DESCR PLIST 
	textproc/py-epydoc: Makefile distinfo 
	textproc/py-epydoc/pkg: DESCR PLIST 
	textproc/py-jaxml: Makefile distinfo 
	textproc/py-jaxml/patches: patch-jaxml_py patch-setup_py 
	textproc/py-jaxml/pkg: DESCR PLIST 
	textproc/py-rtf: Makefile distinfo 
	textproc/py-rtf/pkg: DESCR PLIST 

Log message:
Remove the following obsolete ports from ports/textproc

py-HappyDoc is python2-only, has no consumers, and hasn't been
updated since 2002

py-epydoc is python2-only, has no consumers, and hasn't been updated
since 2008

py-jaxml is python2-only, has no consumers, and hasn't been updated
since 2004

py-rtf is python2-only, has no consumers, and hasn't been updated
since 2005

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 13:04:23

Modified files:
	www            : Makefile 
Removed files:
	www/py-cherrypy2: Makefile distinfo 
	www/py-cherrypy2/pkg: DESCR PLIST 
	www/py-clientform: Makefile distinfo 
	www/py-clientform/pkg: DESCR PLIST 
	www/py-htmltmpl: Makefile distinfo 
	www/py-htmltmpl/pkg: DESCR PLIST 

Log message:
Remove the following obsolete ports from ports/www

py-cherrypy2 is python2-only, has no consumers, and hasn't been
updated since import in 2007

py-clientform is python2-only, has no consumers, and hasn't been
updated since 2009

py-htmltmpl is python2-only, has no consumers, and hasn't been
updated since 2010

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/14 13:08:03

Modified files:
	lib/libutil    : ber_set_header.3 

Log message:
Fix argument list for ber_set_writecallback

OK claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 13:08:22

Modified files:
	x11            : Makefile 
Removed files:
	x11/py-kiwi    : Makefile distinfo 
	x11/py-kiwi/patches: patch-setup_py 
	x11/py-kiwi/pkg: DESCR PLIST 
	x11/py-osd     : Makefile distinfo 
	x11/py-osd/patches: patch-setup_py 
	x11/py-osd/pkg : DESCR PLIST 

Log message:
Remove the following obsolete ports from ports/x11

py-kiwi is python2-only, has no consumers, and hasn't been updated
since import in 2009

py-osd is python2-only, has no consumers, and hasn't been updated
since 2006

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/14 13:16:09

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add the rest of the obsolete ports I removed from the tree to the
quirks obsolete list

py-HappyDoc
py-Rijndael
py-adns
py-cherrypy2
py-clientform
py-crack
py-cryptkit
py-epydoc
py-flowd
py-flowtools
py-gnuplot
py-htmltmpl
py-jaxml
py-kiwi
py-medusa
py-monthdelta
py-optik
py-osd
py-probstat
py-protocols
py-rtf
py-ruledispatch
py-silc
py-tpg
py-unit
pybugz
pymissile

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/08/14 13:32:41

Modified files:
	distrib/miniroot: install.sub 

Log message:
Clean up clean_old():
* Remove syspatch files from the installed system and not the ramdisk.
* Directly try to remove the old files without superfluous check.
* Use an extended glob to match /usr/lib/gcc-lib contents that don't
belong to this OS version.
* For /usr/lib/clang, set an array to the expansion of the glob, which is
an alphabetically sorted list, drop the last element, and rm the rest.

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/08/14 14:30:19

Modified files:
	distrib/syspatch: README 

Log message:
Explain how to take over syspatch builds from another machine.

ok ajacoutot robert


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/14 14:53:55

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
Whitespace nit. Add {} around body of SLIST_FOREACH().


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/14 15:02:02

Modified files:
	sys/scsi       : scsiconf.c scsiconf.h 

Log message:
scsi_[add|remove]_link() are local functions so move their
declarations.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/14 15:11:25

Modified files:
	usr.sbin/smtpd : envelope.c smtp_session.c to.c 

Log message:
revert the inet6 format diff, regression observed by florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/14 15:18:35

Modified files:
	net/bro        : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
bro-2.6.3: SECURITY patch release to address potential Denial of Service
vulnerabilities; see https://github.com/zeek/zeek/blob/release/NEWS for
details


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/14 15:19:47

Modified files:
	net/bro        : Makefile distinfo 

Log message:
bro-2.6.3: SECURITY patch release to address potential Denial of Service
vulnerabilities; see https://github.com/zeek/zeek/blob/release/NEWS for
details


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/14 15:20:58

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-digitalocean: Makefile distinfo 
	sysutils/terraform/provider-fastly: Makefile distinfo 
	sysutils/terraform/provider-heroku: Makefile distinfo 
	sysutils/terraform/provider-opc: Makefile distinfo 
	sysutils/terraform/provider-vault: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/08/14 17:17:08

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Add test case for ber_scanf_elements.

Significant tweak by and ok martijn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/14 23:43:15

Modified files:
	x11/xarchiver  : Makefile distinfo 
	x11/xarchiver/pkg: PLIST 

Log message:
Update to xarchiver 0.5.4.14


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/14 23:44:37

Modified files:
	audio/mpd      : Makefile 
	audio/mpd/pkg  : PLIST mpd.rc 

Log message:
Install the mpd binary in bin instead of sbin

requested by and ok ajacoutot@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/14 23:47:59

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 68.0.2.

See https://www.mozilla.org/en-US/firefox/68.0.2/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-24/


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/15 00:11:18

Modified files:
	lib/libutil    : ber.c 

Log message:
Revert previous. There were some users of the quirky behaviour that were
missed during code scan.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:32:03

Modified files:
	textproc/catfish: Makefile distinfo 
	textproc/catfish/pkg: PLIST 
Removed files:
	textproc/catfish/patches: patch-catfish_CatfishSearchEngine_py 

Log message:
Update to catfish 1.4.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:32:33

Modified files:
	x11/gigolo     : Makefile distinfo 
	x11/gigolo/pkg : PLIST 

Log message:
Update to gigolo 0.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:33:35

Modified files:
	x11/xfce4      : Makefile 

Log message:
sort entries


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:35:32

Modified files:
	x11/xfce4      : xfce4.port.mk 

Log message:
Updates for 4.14:

- switch all MASTER_SITES/HOMEPAGE to https
- set XFCE_DESKTOP_VERSION to 4.14.0
- default MODXFCE_WANTLIB to xfce4panel-2.0 as most plugins use Gtk+3 now


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:36:11

Modified files:
	x11/xfce4/exo  : Makefile distinfo 
	x11/xfce4/exo/pkg: PLIST 

Log message:
Update to exo 0.12.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:36:51

Modified files:
	x11/xfce4/garcon: Makefile distinfo 
	x11/xfce4/garcon/pkg: PLIST 

Log message:
Update to garcon 0.6.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:38:31

Modified files:
	x11/xfce4/libxfce4ui: Makefile distinfo 
	x11/xfce4/libxfce4ui/pkg: PLIST 

Log message:
Update to libxfce4ui 4.14.1.

- Add dependency on glade
- Provide vala & gobject-introspection bindings


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:39:16

Modified files:
	x11/xfce4/libxfce4util: Makefile distinfo 
	x11/xfce4/libxfce4util/pkg: PLIST 

Log message:
Update to libxfce4util 4.14.0.

Provide gobject-introspection and vala bindings.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:40:29

Modified files:
	x11/xfce4/thunar: Makefile distinfo 
	x11/xfce4/thunar/pkg: PLIST 

Log message:
Update to thunar 1.8.9, now uses Gtk+3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:41:02

Modified files:
	x11/xfce4/tumbler: Makefile distinfo 

Log message:
Update to tumbler 0.2.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:41:33

Modified files:
	x11/xfce4/xfce4-appfinder: Makefile distinfo 
	x11/xfce4/xfce4-appfinder/pkg: PLIST 

Log message:
Update to xfce4-appfinder 4.14.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:42:11

Modified files:
	x11/xfce4/xfce4-dev-tools: Makefile distinfo 
	x11/xfce4/xfce4-dev-tools/pkg: PLIST 
Removed files:
	x11/xfce4/xfce4-dev-tools/patches: patch-scripts_xdt-commit 

Log message:
Update to xfce4-dev-tools 4.14.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:44:28

Modified files:
	x11/xfce4/xfce4-panel: Makefile distinfo 
	x11/xfce4/xfce4-panel/pkg: PLIST 

Log message:
Update to xfce4-panel 4.14.0.

Now uses Gtk+3, and provides gobject-introspection and vala bindings.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:44:54

Modified files:
	x11/xfce4/xfce4-power-manager: Makefile distinfo 

Log message:
Update to xfce4-power-manager 1.6.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:47:28

Modified files:
	x11/xfce4/xfce4-session: Makefile distinfo 
	x11/xfce4/xfce4-session/pkg: PLIST 
Removed files:
	x11/xfce4/xfce4-session/patches: patch-scripts_xflock4 
	                                 patch-xfsm-shutdown-helper_main_c 

Log message:
Update to xfce4-session 4.14.0.

Now uses Gtk+3, drops useless xfsm library, and support for splash
screen at session startup. No more dependency on upower.

Patches merged upstream, and the dependency on consolekit/policykit for
shutdown/reboot is now optional : regular users can shutdown the machine
if member of operator group.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:49:12

Modified files:
	x11/xfce4/xfce4-settings: Makefile distinfo 
	x11/xfce4/xfce4-settings/pkg: PLIST 
Added files:
	x11/xfce4/xfce4-settings/patches: 
	                                  patch-common_display-profiles_c 

Log message:
Update to xfce4-settings 4.14.0.

Add a patch to fix a crash in xfce4-display-settings reported by kirby@,
being improved upstream.
Add dependency on colord for color settings applet.
Add missing dependency on gtk+3,-guic and corresponding @tag.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:50:51

Modified files:
	x11/xfce4/xfconf: Makefile distinfo 
	x11/xfce4/xfconf/pkg: PLIST 

Log message:
Update to xfconf 4.14.1.

Drops dependency on dbus-glib, as everything was migrated to GDbus.
Provides gobject-introspection and vala bindings.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:51:26

Modified files:
	x11/xfce4/xfdesktop: Makefile distinfo 
	x11/xfce4/xfdesktop/pkg: PLIST 

Log message:
Update to xfdesktop 4.14.1.

Now uses Gtk+3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:53:38

Modified files:
	x11/xfce4/xfwm4: Makefile distinfo 
	x11/xfce4/xfwm4/pkg: PLIST 

Log message:
Update to xfwm4 4.14.0.

Adds support for vsync and hidpi. If experiencing screen flickering,
toggle the vblank_mode method (will be documented in xfce's README)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:54:43

Modified files:
	x11/xfce4/mousepad: Makefile distinfo 
	x11/xfce4/mousepad/pkg: PLIST 

Log message:
Update to mousepad 0.4.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:54:53

Modified files:
	x11/xfce4/parole: Makefile distinfo 
	x11/xfce4/parole/pkg: PLIST 

Log message:
Update to parole 1.0.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:55:21

Modified files:
	x11/xfce4/ristretto: Makefile distinfo 

Log message:
Update to ristretto 0.10.0.

Now uses Gtk+3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:56:06

Modified files:
	x11/xfce4/thunar-archive: Makefile distinfo 
	x11/xfce4/thunar-archive/pkg: PLIST 

Log message:
Update to thunar-archive 0.4.0.

Now uses Gtk+3 to be compatible with thunar 1.8.x.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:56:28

Modified files:
	x11/xfce4/thunar-media-tags: Makefile distinfo 
	x11/xfce4/thunar-media-tags/pkg: PLIST 

Log message:
Update to thunar-media-tags 0.3.0.

Now uses Gtk+3 to be compatible with thunar 1.8.x.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:56:53

Modified files:
	x11/xfce4/thunar-vcs: Makefile distinfo 
	x11/xfce4/thunar-vcs/pkg: PLIST 

Log message:
Update to thunar-vcs 0.2.0.

Now uses Gtk+3 to be compatible with thunar 1.8.x.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:58:59

Modified files:
	x11/xfce4/xfce4-screensaver: Makefile distinfo 
	x11/xfce4/xfce4-screensaver/pkg: PLIST 

Log message:
Update to xfce4-screensaver 0.1.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 00:59:58

Modified files:
	x11/xfce4/xfce4-screenshooter: Makefile distinfo 
	x11/xfce4/xfce4-screenshooter/pkg: PLIST 

Log message:
Update to xfce4-screenshooter.

Now uses Gtk+3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:01:33

Modified files:
	x11/xfce4/xfce4-battery: Makefile distinfo 
	x11/xfce4/xfce4-battery/pkg: PLIST 

Log message:
Update to xfce4-battery 1.1.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:01:52

Modified files:
	x11/xfce4/xfce4-datetime: Makefile distinfo 
	x11/xfce4/xfce4-datetime/pkg: PLIST 

Log message:
Update to xfce4-datetime 0.8.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:02:07

Modified files:
	x11/xfce4/xfce4-diskperf: Makefile distinfo 
	x11/xfce4/xfce4-diskperf/pkg: PLIST 

Log message:
Update to xfce4-diskperf 2.6.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:02:23

Modified files:
	x11/xfce4/xfce4-fsguard: Makefile distinfo 
	x11/xfce4/xfce4-fsguard/pkg: PLIST 

Log message:
Update to xfce4-fsguard 1.1.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:02:38

Modified files:
	x11/xfce4/xfce4-genmon: Makefile distinfo 
	x11/xfce4/xfce4-genmon/pkg: PLIST 

Log message:
Update to xfce4-genmon 4.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:02:56

Modified files:
	x11/xfce4/xfce4-mpc: Makefile distinfo 
	x11/xfce4/xfce4-mpc/pkg: PLIST 

Log message:
Update to xfce4-mpc 0.5.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:03:13

Modified files:
	x11/xfce4/xfce4-netload: Makefile distinfo 
	x11/xfce4/xfce4-netload/pkg: PLIST 

Log message:
Update to xfce4-netload 1.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:03:35

Modified files:
	x11/xfce4/xfce4-places: Makefile distinfo 
	x11/xfce4/xfce4-places/pkg: PLIST 

Log message:
Update to xfce4-places 1.8.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:03:48

Modified files:
	x11/xfce4/xfce4-pulseaudio: Makefile distinfo 
	x11/xfce4/xfce4-pulseaudio/pkg: PLIST 

Log message:
Update to xfce4-pulseaudio 0.4.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:04:06

Modified files:
	x11/xfce4/xfce4-smartbookmark: Makefile distinfo 
	x11/xfce4/xfce4-smartbookmark/pkg: PLIST 

Log message:
Update to xfce4-smartbookmark 0.5.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:04:24

Modified files:
	x11/xfce4/xfce4-systemload: Makefile distinfo 

Log message:
Update to xfce4-systemload 1.2.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:04:39

Modified files:
	x11/xfce4/xfce4-time-out: Makefile distinfo 
	x11/xfce4/xfce4-time-out/pkg: PLIST 

Log message:
Update to xfce4-time-out 1.0.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:04:54

Modified files:
	x11/xfce4/xfce4-verve: Makefile distinfo 
	x11/xfce4/xfce4-verve/pkg: PLIST 

Log message:
Update to xfce4-verve 2.0.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:05:13

Modified files:
	x11/xfce4/xfce4-wavelan: Makefile distinfo 

Log message:
Update to xfce4-wavelan 0.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:05:29

Modified files:
	x11/xfce4/xfce4-weather: Makefile distinfo 

Log message:
Update to xfce4-weather 0.10.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:05:49

Modified files:
	x11/xfce4/xfce4-whiskermenu: Makefile distinfo 

Log message:
Update to xfce4-whiskermenu 2.3.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:07:11

Modified files:
	x11/xfce4/gtk-xfce-engine: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:07:30

Modified files:
	x11/xfce4/terminal: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:07:46

Modified files:
	x11/xfce4/xfce4-clipman: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https, fix WANTLIB while here


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:08:00

Modified files:
	x11/xfce4/xfce4-cpugraph: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:08:15

Modified files:
	x11/xfce4/xfce4-dict: Makefile 
	x11/xfce4/xfce4-icon-theme: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:08:32

Modified files:
	x11/xfce4/xfce4-mailwatch: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https, fix WANTLIB while here


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:09:22

Modified files:
	x11/xfce4/xfce4-mixer: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https.

Add direct dependency on dbus-glib as it was removed from xfce4-panel/xfconf.
Fix WANTLIB while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:09:37

Modified files:
	x11/xfce4/xfce4-notes: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https, fix WANTLIB while here


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:09:59

Modified files:
	x11/xfce4/xfce4-notifyd: Makefile 
	x11/xfce4/xfce4-statusnotifier: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:10:11

Modified files:
	x11/xfce4/xfce4-taskmanager: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:10:28

Modified files:
	x11/xfce4/xfce4-xkb: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https, fix WANTLIB while here and tidy up Makefile


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:11:05

Modified files:
	x11/xfce4/xfdashboard: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https.

Add direct dependency on dbus-glib as it was removed from xfconf.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:11:23

Modified files:
	x11/xfce4/xfwm4-themes: Makefile 
	x11/xfce4/xfmpc: Makefile 

Log message:
Bump REVISION for HOMEPAGE change to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 01:16:48

Modified files:
	meta/xfce      : Makefile 
	meta/xfce/pkg  : README-main 

Log message:
Update to Xfce 4.14.

- see https://xfce.org/about/news/?post=1565568000 for details &
https://xfce.org/download/changelogs/4.14 for complete changelogs.
- remove dependency on the now deprecated gtk-xfce-engine package, add
dependency on x11/greybird instead (as that's more or less the default
theme)
- Remove dependency on orage, add dependency on xfce4-screensaver.
- Add dependencies on xfce4-statusnotifier, catfish and gigolo for xfce-extras.
- Improve README wrt shutdown/reboot support without
consolekit/policykit and vblank method to stop screen flickering with
modesetting. Drop the section about LC_CTYPE, the world moved on and
OpenBSD supports UTF-8..


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/15 01:29:21

Modified files:
	sys/kern       : kern_acct.c 

Log message:
Serialize access to the vnode pointers associated with acct(2) system
accounting. Prevents a race where the acct thread and the acct(2)
syscall both tries to close a vnode.

ok visa@

Reported-by: syzbot+bf2ac4d4fa9ee92903b8@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/08/15 02:18:02

Modified files:
	net/munin      : Makefile 

Log message:
enable TLS
requested by dhill@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/15 03:36:29

Modified files:
	lib/libcrypto/man: EVP_EncryptInit.3 

Log message:
document but do not recommend EVP_Cipher(3);
jsing@ provided crucial help regarding the content;
tweaks and OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	miko@cvs.openbsd.org	2019/08/15 03:38:56

Modified files:
	sys/dev/pci    : auich.c 

Log message:
auich_freemem() returns void. while here fix a typo in an error message. audio playback still works under virtualbox. ok ratchov@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/15 05:42:53

Modified files:
	lib/libcrypto/man: CMS_compress.3 

Log message:
some cleanup:
* do not jump back and forth between different arguments
* display the flags in a proper list
* add the missing STANDARDS section
* mark up ASN.1 type names
* and minor wording improvements


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	schwarze@cvs.openbsd.org	2019/08/15 06:11:37

Modified files:
	app            : Makefile 
	distrib/sets/lists/xbase: mi 
	distrib/sets/lists/xshare: mi 
Removed files:
	app/xman       : COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in README 
	                 ScrollByL.c ScrollByL.h ScrollByLP.h aclocal.m4 
	                 buttons.c compile config.guess config.h.in 
	                 config.sub configure configure.ac defs.h 
	                 depcomp globals.c globals.h handler.c help.c 
	                 icon_help.h icon_open.h iconclosed.h install-sh 
	                 main.c man.c man.h misc.c missing search.c 
	                 tkfuncs.c vendor.c vendor.h xman.help 
	app/xman/app-defaults: Xman 
	app/xman/man   : Makefile.am Makefile.in xman.man 

Log message:
Retire xman(1).

It's totally broken (requires MLINKS which we removed long ago,
relies on the old man.conf(5) format we stopped supporting long ago,
Alfred Morgan reported additional bugs on bugs@, ...),
it reimplements man(1) in a very poor way,
and it lacks many useful features that man(1) in an xterm(1)
readily provides, so fixing it would be a waste of time.

matthieu@ deraadt@ krw@ agree with the direction.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/08/15 08:39:23

Modified files:
	lang/jruby     : Makefile distinfo 
	lang/jruby/pkg : PLIST 

Log message:
Update to JRuby 9.2.8.0


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 08:48:45

Modified files:
	xserver/hw/xfree86/modes: xf86EdidModes.c 

Log message:
Don't prune duplicate modes there.

This function removes too many modes, causing trouble with the vesa
driver at least.  Problem reported by semarie@. Thanks.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/08/15 09:08:14

Modified files:
	sys/kern       : tty_nmea.c 

Log message:
NMEA 4.1 has one more field in the RMC message; ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/15 09:46:51

Modified files:
	lib/libcrypto/man: CMS_uncompress.3 

Log message:
minor cleanup:
* add the missing STANDARDS section
* mark up ASN.1 type names
* and minor wording improvements


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 10:15:04

Modified files:
	app/fvwm/sample.fvwmrc: system.fvwm2rc 

Log message:
Remove xman from utilities menu.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 10:17:17

Modified files:
	app/twm/src    : system.twmrc 

Log message:
Remove xman and olwm (not available from ports anymore) from menu


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 10:23:33

Modified files:
	app/xenodm/man : xenodm.man 

Log message:
Provide better xsession examples. exec the window manager last.
Convert user's example to /bin/sh. Remove xman for example.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/08/15 10:24:46

Modified files:
	devel/git      : Makefile 

Log message:
Remove rsync from RUN_DEPENDS, rsync support was removed in git-2.8.0

from jan Stary, ok benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 10:56:00

Modified files:
	app/bitmap     : ChangeLog Handlers.c Makefile.am Makefile.in 
	                 aclocal.m4 autogen.sh configure configure.ac 
Added files:
	app/bitmap     : README.md 
Removed files:
	app/bitmap     : README 

Log message:
Update to bitmap 1.0.9


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 10:56:57

xenocara/app/fonttosfnt/man

Update of /cvs/xenocara/app/fonttosfnt/man
In directory cvs.openbsd.org:/tmp/cvs-serv83759/man

Log Message:
Directory /cvs/xenocara/app/fonttosfnt/man added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 10:57:57

Modified files:
	app/fonttosfnt : ChangeLog Makefile.am Makefile.in README 
	                 aclocal.m4 compile configure configure.ac 
	                 fonttosfnt.h read.c struct.c util.c 
Added files:
	app/fonttosfnt/man: Makefile.am Makefile.in fonttosfnt.man 
Removed files:
	app/fonttosfnt : fonttosfnt.man 

Log message:
Update to fontstosfnt 1.0.5


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:01:13

Modified files:
	app            : Makefile 
	app/mkfontscale: COPYING ChangeLog Makefile.am Makefile.in 
	                 aclocal.m4 config.h.in configure configure.ac 
	                 ident.c list.c mkfontscale.c 
	app/mkfontscale/man: Makefile.am Makefile.in 
Added files:
	app/mkfontscale: README.md constlist.c constlist.h mkfontdir.in 
	app/mkfontscale/man: mkfontdir.man 
Removed files:
	app/mkfontscale: README 
	app/mkfontdir  : COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in README 
	                 aclocal.m4 config.guess config.sub configure 
	                 configure.ac install-sh missing mkfontdir.in 
	app/mkfontdir/man: Makefile.am Makefile.in mkfontdir.man 

Log message:
Update to mkfontscale 1.2.1. This version got merged with mkfontdir.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:02:20

Modified files:
	app/sessreg    : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac sessreg.c sessreg.h 
Added files:
	app/sessreg    : README.md 
Removed files:
	app/sessreg    : README 

Log message:
Update to sessreg 1.1.2


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:03:15

Modified files:
	app/setxkbmap  : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac setxkbmap.c 
Added files:
	app/setxkbmap  : README.md 
Removed files:
	app/setxkbmap  : README 

Log message:
Update to setxkbmap 1.3.2


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:03:50

Modified files:
	app/x11perf    : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac do_tests.c x11perf.c 
	app/x11perf/man: x11perf.man 
Added files:
	app/x11perf    : README.md 
Removed files:
	app/x11perf    : README 

Log message:
Update to x11perf 1.6.1


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:09:24

Modified files:
	app/xbacklight : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac xbacklight.c 
Added files:
	app/xbacklight : README.md 
Removed files:
	app/xbacklight : README 

Log message:
Update to xbacklight 1.2.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:11:34

Modified files:
	app/xbiff      : ChangeLog Mailbox.c MailboxP.h Makefile.am 
	                 Makefile.in aclocal.m4 compile configure 
	                 configure.ac xbiff.c 
	app/xbiff/man  : xbiff.man 
Added files:
	app/xbiff      : README.md 
Removed files:
	app/xbiff      : README 

Log message:
Update to xbiff 1.0.4


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:13:47

Modified files:
	app/xcalc      : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 actions.c configure configure.ac math.c xcalc.c 
	                 xcalc.h 
	app/xcalc/app-defaults: XCalc 
	app/xcalc/man  : xcalc.man 
Added files:
	app/xcalc      : README.md 
Removed files:
	app/xcalc      : README 

Log message:
Update to xcalc 1.1.0


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:19:52

Modified files:
	app/xclock     : ChangeLog Clock.c ClockP.h Makefile.am 
	                 Makefile.in aclocal.m4 compile config.h.in 
	                 configure configure.ac xclock.c 
Added files:
	app/xclock     : README.md 
Removed files:
	app/xclock     : README 

Log message:
Update to xclock 1.0.9


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:27:05

Modified files:
	app/xcompmgr   : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac xcompmgr.c 
Added files:
	app/xcompmgr   : README.md 
Removed files:
	app/xcompmgr   : README 

Log message:
Update to xcompmgr 1.1.8


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:29:01

Removed files:
	app/xcompmgr   : AUTHORS 

Log message:
Remove empty file also removed upstreams.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:31:43

Modified files:
	app/xev        : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac xev.c 
Added files:
	app/xev        : README.md 
Removed files:
	app/xev        : README 

Log message:
Update to xev 1.2.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:33:49

Modified files:
	app/xfd        : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 compile config.h.in configure configure.ac 
	                 grid.c xfd.c 
Added files:
	app/xfd        : README.md 
Removed files:
	app/xfd        : README 

Log message:
Update to xfd 1.1.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:38:24

Modified files:
	app/xinput     : ChangeLog aclocal.m4 compile configure 
	                 configure.ac 
	app/xinput/man : xinput.man 
	app/xinput/src : list.c property.c test_xi2.c xinput.c xinput.h 

Log message:
Update to xinput 1.6.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:40:56

Modified files:
	app/xlogo      : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 compile configure configure.ac 
	app/xlogo/app-defaults: XLogo 
	app/xlogo/man  : xlogo.man 
Added files:
	app/xlogo      : README.md 
Removed files:
	app/xlogo      : README 

Log message:
Update to xlogo 1.0.5


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:43:43

Modified files:
	app/xlsatoms   : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac xlsatoms.c 
	app/xlsatoms/man: xlsatoms.man 
Added files:
	app/xlsatoms   : README.md 
Removed files:
	app/xlsatoms   : README 

Log message:
Update to xlsatoms 1.1.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:45:41

xenocara/app/xmore/man

Update of /cvs/xenocara/app/xmore/man
In directory cvs.openbsd.org:/tmp/cvs-serv74584/man

Log Message:
Directory /cvs/xenocara/app/xmore/man added to the repository


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:48:06

Modified files:
	app/xmore      : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac 
Added files:
	app/xmore      : README.md xmore.xml 
	app/xmore/man  : Makefile.am Makefile.in xmore.man 
Removed files:
	app/xmore      : README xmore.man xmore.sgml 

Log message:
Update to xmore 1.0.3


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:51:01

Modified files:
	app/xmodmap    : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 autogen.sh configure configure.ac handle.c 
	                 xmodmap.c 
	app/xmodmap/man: xmodmap.man 
Added files:
	app/xmodmap    : README.md 
Removed files:
	app/xmodmap    : README 

Log message:
Update to xmodmap 1.0.10


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:52:58

Modified files:
	app/xprop      : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 configure configure.ac dsimple.c xprop.c 
	app/xprop/man  : xprop.man 
Added files:
	app/xprop      : README.md 
Removed files:
	app/xprop      : README 

Log message:
Update to xprop 1.2.4


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 11:59:13

Modified files:
	app/xwininfo   : ChangeLog Makefile.am Makefile.in aclocal.m4 
	                 clientwin.c configure configure.ac dsimple.c 
	                 xwininfo.c 
	app/xwininfo/man: xwininfo.man 
Added files:
	app/xwininfo   : README.md 
Removed files:
	app/xwininfo   : README 

Log message:
Update to xwininfo 1.1.5


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 12:06:06

Removed files:
	app/fslsfonts  : COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in README 
	                 aclocal.m4 compile config.guess config.h.in 
	                 config.sub configure configure.ac depcomp 
	                 fslsfonts.c install-sh missing mkinstalldirs 
	app/fslsfonts/man: Makefile.am Makefile.in fslsfonts.man 
	app/fstobdf    : COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in README 
	                 aclocal.m4 chars.c compile config.guess 
	                 config.h.in config.sub configure configure.ac 
	                 depcomp fstobdf.c fstobdf.h header.c install-sh 
	                 missing props.c 
	app/fstobdf/man: Makefile.am Makefile.in fstobdf.man 
	app/showfont   : COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in README 
	                 aclocal.m4 compile config.guess config.h.in 
	                 config.sub configure configure.ac depcomp 
	                 install-sh missing mkinstalldirs showfont.c 
	app/showfont/man: Makefile.am Makefile.in showfont.man 
	app/xfsinfo    : COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in README 
	                 aclocal.m4 compile config.guess config.h.in 
	                 config.sub configure configure.ac depcomp 
	                 install-sh missing mkinstalldirs xfsinfo.c 
	app/xfsinfo/man: Makefile.am Makefile.in xfsinfo.man 
	app/xfwp       : AUTHORS COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in NEWS README 
	                 aclocal.m4 compile config.guess config.h.in 
	                 config.sub configure configure.ac depcomp 
	                 install-sh io.c io.h misc.c misc.h missing pm.c 
	                 pm.h transport.c transport.h xfwp.c xfwp.h 
	                 xfwp.man 
	app/scripts    : AUTHORS COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in NEWS README 
	                 aclocal.m4 config.guess config.h.in config.sub 
	                 configure configure.ac fontname.sh fontprop.sh 
	                 install-sh missing mkinstalldirs 
	                 xauth_switch_to_sun-des-1.cpp xon xon.man 
	app/xstdcmap   : COPYING ChangeLog INSTALL Makefile.am 
	                 Makefile.bsd-wrapper Makefile.in README 
	                 aclocal.m4 compile config.guess config.h.in 
	                 config.sub configure configure.ac depcomp 
	                 install-sh missing mkinstalldirs xstdcmap.c 
	app/xstdcmap/man: Makefile.am Makefile.in xstdcmap.man 

Log message:
Remove apps unlinked from the build several months ago.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/15 12:06:42

Modified files:
	.              : MODULES 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	phessler@cvs.openbsd.org	2019/08/15 12:20:21

Modified files:
	security/gpgme : Makefile 
Added files:
	security/gpgme/patches: patch-lang_cpp_tests_Makefile_in 

Log message:
remove hardcoded dependency on libstdc++, as it may not exist everywhere

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/15 12:22:34

Added files:
	audio/flac/patches: patch-src_libFLAC_cpu_c 

Log message:
flac: unbreak on macppc, by removing some use of getauxval(3), that
we don't implement. No revision bump because flac-1.3.3 never built
on macppc.

OK jca@ naddy@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/08/15 12:44:53

Modified files:
	sbin/pfctl     : pfctl.c 

Log message:
pfctl_reset() must set syncookies settings back to default
(bug found and fix tested by Jesper Wallin)

OK deraadt OK kn


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/15 14:41:15

Modified files:
	x11/qt5/docs   : Makefile 

Log message:
Mark BROKEN. It fails to package for weeks now (confirmed by naddy).
"KDE porting team" does not seem to care.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/15 15:01:49

Modified files:
	misc/screen    : Makefile 
	misc/screen/patches: patch-doc_screen_1 
	misc/screen/pkg: PLIST 
Added files:
	misc/screen/patches: patch-configure_in patch-os_h 
Removed files:
	misc/screen/patches: patch-configure shmpatch-configure_in 

Log message:
Do not rm -f /tmp/conftest*.  This kills configure tests of other builds
that happen to run at the same time.

Drop unused shmpatch for configure.in.

Miscellaneous cleanup.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/15 19:55:21

Modified files:
	share/man/man4 : bridge.4 

Log message:
STP works fine on etherip(4), it was gif(4) that lacked a MAC address.

getting etherip(4) to talk to a switch so i could verify this was
pretty fun.

remi@ pointed this bit of the manpage out somewhere, but it didn't
seem right anymore since etherip(4) was split out of gif(4). these
days if we have an interface that can be added to a bridge, we try
to make it look like an actual ethernet interface, which includes
having a mac address. we don't really have interfaces that change
modes and have these edge cases anymore.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/15 22:09:02

Modified files:
	sys/net        : ifq.c 

Log message:
ifq_hdatalen should keep the mbuf it's looking at, not leak it.

ie, use ifq_deq_rollback after looking at the head mbuf instead of
ifq_deq_commit.

this is used in tun/tap, where it had the effect that you'd get the
datalen for the packet, and then when you try to read that many
bytes it had gone. cool and normal.

this was found by a student who was trying to do just that. i've
always just read the packet into a large buffer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 23:29:38

Modified files:
	x11/xfce4/xfce4-mount: Makefile 

Log message:
Bump REVISION for HOMEPAGE change (i had to forget one)

reported by ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/15 23:33:51

Modified files:
	share/man/man4 : bridge.4 

Log message:
knock out useless Pp;


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/15 23:36:44

Added files:
	x11/xfce4/xfce4-mixer/patches: patch-panel-plugin_Makefile_in 
	                               patch-xfce4-mixer_Makefile_in 

Log message:
Add forgotten patches to properly find dbus-glib now that its dependency
was removed from the panel. Added locally >2y ago...

Build breakage reported by ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/08/16 00:13:15

Modified files:
	usr.bin/ssh    : misc.c 

Log message:
switch percent_expand() to use sshbuf instead of a limited fixed buffer;
ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/08/16 00:35:27

Modified files:
	usr.bin/ssh    : Makefile.inc 

Log message:
include sshbuf-misc.c in SRCS_BASE


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/16 01:42:13

Modified files:
	sbin/iked      : parse.y 

Log message:
Fix segfault in parser when specifying an invalid transform.
For all transforms the error case only printed the error but
did not exit. YYERROR was added to exit gracefully instead of
segfaulting later.

ok benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/16 02:52:25

Modified files:
	usr.bin/tmux   : grid-view.c 

Log message:
grid_view_delete_cells does need to clear, GitHub issue 1871.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/16 02:53:35

Modified files:
	www/logswan    : Makefile distinfo 

Log message:
Update logswan to 2.0.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/16 04:43:15

Modified files:
	lib/libcrypto/man: CMS_decrypt.3 

Log message:
minor cleanup:
* add the missing STANDARDS section
* mark up ASN.1 type names
* and minor wording improvements and typo fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/16 05:16:32

Modified files:
	usr.bin/ssh    : ssh_config.5 

Log message:
Call comma-separated lists as such to clarify semantics

Options such as Ciphers take values that may be a list of ciphers;  the
complete list, not indiviual elements, may be prefixed with a dash or plus
character to remove from or append to the default list respectively.

Users might read the current text as if each elment took an optional prefix,
so tweak the wording from "values" to "list" to prevent such ambiguity for
all options supporting this semantics (those that provide a list of
available elements via "ssh -Q ...").

Input and OK jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/16 05:30:10

Modified files:
	lib/libcrypto/man: CMS_encrypt.3 

Log message:
some cleanup:
* do not jump back and forth among different arguments and flags
* add the missing STANDARDS section
* mark up ASN.1 type names
* and several wording improvements


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/16 05:31:13

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.8:
- write tree entries the way git likes it to prevent git index corruption
- make 'got blame' show line numbers, dates, and author names
- add GOT_LOG_DEFAULT_LIMIT env var for setting a got log -l default


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/16 05:49:13

Modified files:
	usr.bin/tmux   : cmd-choose-tree.c mode-tree.c tmux.1 tmux.h 
	                 window-buffer.c window-client.c window-tree.c 

Log message:
Add a flag to reverse sort in the various choose modes, from Benjamin
Poirier in GitHub issue 1875.


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/16 06:11:07

Modified files:
	sbin/iked      : iked.conf.5 

Log message:
Add explanation for the [IKE/ESP only] column of the transform table.

Ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/16 06:16:22

Modified files:
	lib/libcrypto/man: BIO_get_ex_new_index.3 CRYPTO_set_ex_data.3 

Log message:
document EC_KEY_get_ex_new_index(3), EC_KEY_get_ex_data(3),
and EC_KEY_set_ex_data(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/16 06:25:23

Modified files:
	graphics/ansilove: Makefile distinfo 

Log message:
Update ansilove to 4.0.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/16 07:57:15

Modified files:
	geo/mapproxy   : Makefile distinfo 
	geo/mapproxy/pkg: PLIST 

Log message:
Update to mapproxy 1.11.1.

Fixes an XSS in the demo service, cf
https://lists.osgeo.org/pipermail/mapproxy/2019-August/002877.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/16 08:09:17

Modified files:
	geo/postgis    : Makefile distinfo 
	geo/postgis/pkg: PLIST 

Log message:
Update to postgis 2.5.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/08/16 09:21:38

Modified files:
	games/dxx-rebirth: Makefile distinfo 
	games/dxx-rebirth/patches: patch-SConstruct 
	                           patch-similar_editor_med_cpp 
	                           patch-similar_main_inferno_cpp 
	                           patch-similar_main_mglobal_cpp 
	games/dxx-rebirth/pkg: README 

Log message:
update dxx-rebirth to recent nightly and unbreak

remove base-clang from this C++14 port; found by kirby@

ok kirby@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/08/16 09:31:23

Modified files:
	graphics/vulkan-tools: Makefile 
	graphics/vulkan-validation-layers: Makefile 

Log message:
vulkan-tools and vulkan-validation-layers are C++11. Set COMPILER
accordingly.

found and diff by cwen@
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/08/16 09:38:15

Modified files:
	games/godot    : Makefile 
Added files:
	games/godot/patches: patch-servers_visual_shader_language_cpp 
	                     patch-thirdparty_thekla_atlas_nvcore_nvcore_h 

Log message:
fix bool type NULL -> false to not trip up ports-gcc
issue found by cwen@
diff by jca@

don't update to 3.1.1 yet - godot 3.0.6 can die another day...


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/16 10:15:51

Modified files:
	lib/libcrypto/man: ECDSA_SIG_new.3 Makefile 
Added files:
	lib/libcrypto/man: EC_KEY_METHOD_new.3 

Log message:
document the EC_KEY_METHOD function table


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/16 10:20:23

Modified files:
	lib/libcrypto/man: EC_KEY_new.3 

Log message:
link to the new EC_KEY_METHOD_new(3) page
and mention a trap set by EC_KEY_copy(3)


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/08/16 10:40:36

Modified files:
	.              : plus.html 

Log message:
plus for July 15 - August 13
tweak and OK florian


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/16 11:03:55

Modified files:
	usr.sbin       : Makefile 
Removed files:
	usr.sbin/snmpctl: Makefile parser.c parser.h snmpclient.c 
	                  snmpctl.8 snmpctl.c 

Log message:
Send snmpctl(8) to the great bitbucket in the sky. You've served us well.

People are now expected to use snmp(1) for all their snmp client needs.

"Go ahead" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/16 12:14:22

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-src_bootstrap_bin_rustc_rs 
	                   patch-src_bootstrap_lib_rs 
	                   patch-src_bootstrap_test_rs 
	                   patch-src_libstd_sys_unix_ext_net_rs 
	                   patch-src_tools_cargo_src_cargo_core_compiler_context_compilation_files_rs 
	                   patch-src_tools_cargo_tests_testsuite_support_paths_rs 
	lang/rust/pkg  : PLIST-main 
Added files:
	lang/rust/patches: patch-src_librustc_llvm_build_rs 
	                   patch-src_librustc_target_spec_mod_rs 
	                   patch-src_librustc_target_spec_sparc64_unknown_openbsd_rs 
	                   patch-src_libunwind_build_rs 
	                   patch-vendor_libc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs 
	                   patch-vendor_libc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_sparc64_rs 
Removed files:
	lang/rust/patches: patch-src_librustdoc_test_rs 

Log message:
update lang/rust to 1.37.0

(and add preliminary sparc64 support)

Announce: https://blog.rust-lang.org/2019/08/15/Rust-1.37.0.html
Changelog: https://github.com/rust-lang/rust/blob/stable/RELEASES.md#version-1370-2019-08-15

ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/16 13:28:14

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2019/08/16 13:53:32

Modified files:
	sys/net80211   : ieee80211_crypto.c ieee80211_crypto.h 

Log message:
check that software de/encrypt is possible: under hardware
offload, it needn't be. the stack must otherwise rely on every
offloading driver correctly handling all frames governed by a
given key.
ok stsp@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/16 14:11:07

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/16 15:01:54

Modified files:
	sysutils/packer: Makefile distinfo 

Log message:
Update to packer-1.4.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/16 15:19:56

Modified files:
	textproc/gtk-doc: Makefile distinfo 

Log message:
Update to gtk-doc-1.32.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/16 15:59:26

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.30.5.
aka the "shall-no-crash release to please Kristaps's fishes"


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/16 16:23:41

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sort; OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/16 16:28:25

Removed files:
	devel/py-fasteners/patches: patch-fasteners__utils_py.orig 
	                            patch-setup_py.orig 

Log message:
remove accidentally imported files


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/16 17:27:09

Modified files:
	devel/angr/py-z3-solver: Makefile 
Added files:
	devel/angr/py-z3-solver/patches: 
	                                 patch-core_src_util_lp_permutation_matrix_h 

Log message:
py-z3-solver: unbreak with ports-gcc, by fixing an incorrect conversion.
Tested on sparc64 (by kmos@, thanks!) and macppc.

OK kmos@ kn@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/16 17:37:09

Removed files:
	games/dxx-rebirth/patches: patch-SConstruct 
	                           patch-similar_editor_med_cpp 
	                           patch-similar_main_inferno_cpp 

Log message:
remove empty files


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/16 22:57:52

Modified files:
	sys/dev        : audio.c 

Log message:
Move block size and block count calculations in their own routines.

Makes the code easier to read, no behabior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/16 23:04:56

Modified files:
	sys/dev        : audio.c 

Log message:
Move play blocks count from the audio_softc to the audio_buf structure.

As the audio_buf structure is per-direction, this makes play and
recording code similar. No behavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/17 00:07:22

Modified files:
	sys/dev/pci/drm/include/linux: atomic.h 

Log message:
change drm memory barriers to be closer to what linux does on
amd64 and i386

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 01:59:25

Modified files:
	multimedia/py-chromecast: Makefile distinfo 
	multimedia/py-chromecast/pkg: PLIST 

Log message:
Update to py3-chromecast-3.2.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/17 02:11:32

Modified files:
	sys/dev/pci/drm/amd/display/dc/dce: dce_abm.c 

Log message:
drm/amd/display: Wait for backlight programming completion in set backlight level

From Sivapiriyan Kumarasamy
2a5e21adc71b46beec9232cc6418676fd2255bc5 in linux 4.19.y/4.19.67
c7990daebe71d11a9e360b5c3b0ecd1846a3a4bb in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/17 02:14:34

Modified files:
	sys/dev/pci/drm/amd/display/dc/core: dc_resource.c 

Log message:
drm/amd/display: use encoder's engine id to find matched free audio device

From Tai Man
e7a8a794109c07e0b8d7bd55fbfcb3082991626a in linux 4.19.y/4.19.67
74eda776d7a4e69ec7aa1ce30a87636f14220fbb in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:14:41

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:17:24

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.210.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/17 02:17:34

Modified files:
	sys/dev/pci/drm/amd/display/dc/core: amdgpu_dc.c dc_resource.c 

Log message:
drm/amd/display: Fix dc_create failure handling and 666 color depths

From Julian Parkin
3998e684463a7fa1721c171172ca085978d03a00 in linux 4.19.y/4.19.67
0905f32977268149f06e3ce6ea4bd6d374dd891f in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:17:40

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.210.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:18:04

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.220.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/17 02:21:00

Modified files:
	sys/dev/pci/drm/amd/display/dc/core: dc_resource.c 

Log message:
drm/amd/display: Only enable audio if speaker allocation exists

From Alvin Lee
f9420bfa29f9ece0b02a5435ae95f1a48bc97723 in linux 4.19.y/4.19.67
6ac25e6d5b2fbf251e9fa2f4131d42c815b43867 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/17 02:23:29

Modified files:
	sys/dev/pci/drm/amd/display/dc/inc: core_types.h 
	sys/dev/pci/drm/amd/display/dc/inc/hw: hw_shared.h 

Log message:
drm/amd/display: Increase size of audios array

From Tai Man
8d641499bf969a284161d2682b71669c96389773 in linux 4.19.y/4.19.67
7352193a33dfc9b69ba3bf6a8caea925b96243b1 in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:23:50

Modified files:
	graphics/ffmpeg: Makefile distinfo 
	graphics/ffmpeg/patches: patch-configure 
	graphics/ffmpeg/pkg: PLIST 
Removed files:
	graphics/ffmpeg/patches: patch-doc_decoders_texi 
	                         patch-libavcodec_Makefile 
	                         patch-libavcodec_allcodecs_c 
	                         patch-libavcodec_libdav1d_c 

Log message:
Update to ffmpeg-4.2.

Bulk build tested on amd64 by naddy@
from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:24:43

Modified files:
	x11/mplayer    : Makefile 

Log message:
Bump FFmpeg version.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/17 02:25:28

Modified files:
	sys/dev/pci/drm: drm_framebuffer.c 

Log message:
drm: silence variable 'conn' set but not used

From Qian Cai
991c4756be69417f720734ceb32a22071e0aa0af in linux 4.19.y/4.19.67
bbb6fc43f131f77fcb7ae8081f6d7c51396a2120 in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:26:24

Modified files:
	multimedia/x265: Makefile distinfo 
	multimedia/x265/patches: patch-source_test_checkasm-a_asm 
Removed files:
	multimedia/x265/patches: patch-source_common_lowres_cpp 

Log message:
Update to x265-3.1.2.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/17 02:27:43

Modified files:
	sys/dev/pci/drm/i915: vlv_dsi_pll.c 

Log message:
drm/i915: Fix wrong escape clock divisor init for GLK

From Stanislav Lisovskiy
edc388566a1d25f88e631bd8170462d4f86c5a24 in linux 4.19.y/4.19.67
73a0ff0b30af79bf0303d557eb82f1d1945bb6ee in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:28:48

Modified files:
	multimedia/dav1d: Makefile distinfo 
Added files:
	multimedia/dav1d/patches: patch-tools_meson_build 
Removed files:
	multimedia/dav1d/patches: patch-src_arm_asm_S patch-src_env_h 
	                          patch-src_recon_tmpl_c 

Log message:
Update to dav1d-0.4.0.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:35:32

Modified files:
	print/cups     : Makefile distinfo 
	print/cups/pkg : PLIST-libs 

Log message:
SECURITY update to cups-2.2.12 (multiple security/disclosure issues):
- CVE-2019-8696 and CVE-2019-8675: Fixed SNMP buffer overflows
- Fixed IPP buffer overflow
- Fixed memory disclosure issue in the scheduler
- Fixed DoS issues in the scheduler


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 02:42:49

Modified files:
	print/cups     : Tag: OPENBSD_6_5 Makefile 
Added files:
	print/cups/patches: Tag: OPENBSD_6_5 patch-cups_http_c 
	                    patch-cups_ipp_c patch-cups_snmp_c 
	                    patch-scheduler_client_c 

Log message:
Merge fixes from upstream to address multiple security/disclosure issues:
- CVE-2019-8696 and CVE-2019-8675: Fixed SNMP buffer overflows
- Fixed IPP buffer overflow
- Fixed memory disclosure issue in the scheduler
- Fixed DoS issues in the scheduler


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 03:50:14

Modified files:
	x11/gnome/tracker: Makefile 
	x11/gnome/tracker-miners: Makefile 

Log message:
portroach: ignore version 2.2.99.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 04:27:49

Modified files:
	x11/virt-viewer: Makefile 
	x11/gnome/vinagre: Makefile 

Log message:
Regen WANTLIB.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 04:31:22

Modified files:
	x11/gtk-vnc    : Makefile distinfo 
	x11/gtk-vnc/pkg: PLIST 
Added files:
	x11/gtk-vnc/patches: patch-meson_build patch-src_meson_build 

Log message:
Update to gtk-vnc-1.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 04:47:56

Modified files:
	x11/gtk+3      : Makefile 
	x11/gtk+4      : Makefile 

Log message:
Sync with devel/spidermonkey60.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 04:55:59

Modified files:
	devel/spidermonkey60: Makefile 

Log message:
Tweak comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 05:02:28

Modified files:
	devel/spidermonkey60: Makefile 
	net/wireshark  : Makefile 

Log message:
Sync these two as well (spidermonkey52 is no more).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 06:58:05

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	net/bro        : Makefile 
	net/bro/pkg    : DESCR PLIST README 

Log message:
Rename from Bro to Zeek since it's the new upstream name.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 07:10:12

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.25.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/17 07:29:42

Modified files:
	devel/ocaml-biniou: Makefile 
	devel/ocaml-cppo: Makefile 
	devel/ocaml-easy-format: Makefile 
	devel/ocaml-yojson: Makefile 
	x11/lablgtk3   : Makefile 
	graphics/ocaml-cairo: Makefile 
	devel/ocaml-configurator: Makefile 
	devel/dune     : Makefile 
	devel/dune/pkg : PLIST 
Added files:
	devel/dune/pkg : PFRAG.dynlink-native PFRAG.native 

Log message:
hardcode OCaml library path into dune binary.
This makes findlib superfluous when using dune.

"get it in" naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/17 08:25:06

Modified files:
	usr.bin/patch  : util.c util.h 

Log message:
signal handlers should not call exit() due to possibility of reentering
libc (stdio etc), instead do the unlink tasks then call _exit() instead
ok millert


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/17 08:41:01

Modified files:
	lib/libcrypto/man: CMS_get0_RecipientInfos.3 

Log message:
minor cleanup:
* add the missing STANDARDS section
* mark up ASN.1 type names
* avoid some repetitions
* make some lists more palatable in -column form
* and minor wording improvements and typo fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/17 08:43:21

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
no need to escape "-", generally speaking; instances remain in EXAMPLES;
(see ingo's notes in mandoc_char.7, if explanation neccessary)

ok schwarze gilles


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/17 09:23:26

Modified files:
	lib/libcrypto/man: CMS_get0_SignerInfos.3 

Log message:
some cleanup:
* add the missing STANDARDS section
* more precision below RETURN VALUES
* simplify some overly verbose text
* mark up ASN.1 type names
* and minor wording improvements and typo fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/17 09:31:41

Modified files:
	sys/scsi       : cd.c mpath_emc.c mpath_hds.c mpath_rdac.c 
	                 mpath_sym.c scsiconf.c st.c 

Log message:
Nuke some unused variables, tweak some declarations and
variable names into a consistant idiom.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 11:20:17

Modified files:
	graphics/GraphicsMagick: Makefile distinfo 

Log message:
Update to GraphicsMagick-1.3.33.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/17 11:24:33

Modified files:
	productivity/tryton/5.0/account_invoice: Makefile distinfo 
	productivity/tryton/5.0/account_invoice/pkg: PLIST 
	productivity/tryton/5.0/account_payment_sepa: Makefile distinfo 
	productivity/tryton/5.0/account_payment_sepa/pkg: PLIST 
	productivity/tryton/5.0/currency: Makefile distinfo 
	productivity/tryton/5.0/currency/pkg: PLIST 
	productivity/tryton/5.0/dashboard: Makefile distinfo 
	productivity/tryton/5.0/dashboard/pkg: PLIST 
	productivity/tryton/5.0/edocument_uncefact: Makefile distinfo 
	productivity/tryton/5.0/edocument_uncefact/pkg: PLIST 
	productivity/tryton/5.0/notification_email: Makefile distinfo 
	productivity/tryton/5.0/notification_email/pkg: PLIST 
	productivity/tryton/5.0/sao: Makefile distinfo 
	productivity/tryton/5.0/sao/files: sao-dependencies.sh 
	productivity/tryton/5.0/tryton: Makefile distinfo 
	productivity/tryton/5.0/trytond: Makefile distinfo 
	productivity/tryton/5.2/account_invoice: Makefile distinfo 
	productivity/tryton/5.2/account_payment_sepa: Makefile distinfo 
	productivity/tryton/5.2/account_payment_sepa/pkg: PLIST 
	productivity/tryton/5.2/currency: Makefile distinfo 
	productivity/tryton/5.2/currency/pkg: PLIST 
	productivity/tryton/5.2/notification_email: Makefile distinfo 
	productivity/tryton/5.2/notification_email/pkg: PLIST 
	productivity/tryton/5.2/sao: Makefile distinfo 
	productivity/tryton/5.2/sao/files: sao-dependencies.sh 
	productivity/tryton/5.2/tryton: Makefile distinfo 
	productivity/tryton/5.2/trytond: Makefile distinfo 
Removed files:
	productivity/tryton/5.2/account_payment_sepa/patches: 
	                                                      patch-payment_py 

Log message:
productivity/tryton: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/08/17 11:35:24

Modified files:
	net/toot       : Makefile distinfo 
	net/toot/pkg   : PLIST 

Log message:
Update to toot-0.22

- Add toot notifications to show notifications (thanks @dlax)
- Add posting and replying to curses interface (thanks @Skehmatics)
- Add --language option to toot post
- Enable attaching upto 4 files via --media option on toot post


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/17 12:52:48

Modified files:
	sysutils/xxhash: Makefile distinfo 
	sysutils/xxhash/patches: patch-Makefile 

Log message:
Update to xxhash-0.7.1.

Bump minor of SHARED_LIBS as symbols have been added.

Overview of changes can be found at
https://github.com/Cyan4973/xxHash/releases/tag/v0.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/17 12:54:11

Modified files:
	net/librsync   : Makefile 

Log message:
Switch from GitHub auto-generated tarball to MASTER_SITES.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/17 13:07:21

Modified files:
	inputmethods/scim-fcitx: Makefile 
	inputmethods/scim-fcitx/patches: patch-src_sp_cpp 
Added files:
	inputmethods/scim-fcitx/patches: patch-src_ime_cpp 
	                                 patch-src_scim_fcitx_imengine_cpp 

Log message:
scim-fcitx: add missing headers for ports-gcc.
Regen WANTLIB and remove base-gcc from COMPILER while here.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/17 13:08:38

Modified files:
	inputmethods/scim-hangul: Makefile 
	inputmethods/scim-hangul/patches: 
	                                  patch-src_scim_hangul_imengine_cpp 

Log message:
scim-hangul: add missing headers for ports-gcc.
Regen WANTLIB and remove base-gcc from COMPILER while here.

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/17 13:11:24

Modified files:
	devel/harfbuzz : Makefile distinfo 
	devel/harfbuzz/pkg: PLIST-main 

Log message:
Update to harfbuzz-2.6.0.
Tested in a bulk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/17 13:11:24

Modified files:
	graphics/ffmpeg: Makefile 
Added files:
	graphics/ffmpeg/patches: patch-libavformat_matroskadec_c 

Log message:
avformat/matroskadec: fix seeking; from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/17 14:24:35

Modified files:
	graphics/ocaml-cairo: Makefile 

Log message:
build-depend on findlib, because findlib ships the META file for
the graphics library.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/17 15:36:50

Modified files:
	shells/bash    : Makefile distinfo 

Log message:
update to 5.0 patchlevel 9


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/17 16:15:03

ports/inputmethods/scim-pinyin/patches

Update of /cvs/ports/inputmethods/scim-pinyin/patches
In directory cvs.openbsd.org:/tmp/cvs-serv59882/patches

Log Message:
Directory /cvs/ports/inputmethods/scim-pinyin/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/17 16:17:15

Modified files:
	inputmethods/scim-pinyin: Makefile 
Added files:
	inputmethods/scim-pinyin/patches: patch-src_scim_phrase_cpp 
	                                  patch-src_scim_pinyin_cpp 
	                                  patch-src_scim_pinyin_phrase_cpp 
	                                  patch-src_scim_special_table_cpp 

Log message:
scim-pinyin: add missing headers for ports-gcc.
Regen WANTLIB and remove base-gcc from COMPILER while here.

OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/17 18:58:54

Modified files:
	sys/scsi       : scsiconf.c scsiconf.h 

Log message:
sc_buswidth field in struct scsi_link is redundant. Just use
adapter_link->adapter_buswidth, which supplied the value for
sc_buswidth and is never changed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/08/17 19:15:12

Modified files:
	lang/compcert  : Makefile distinfo 
	lang/compcert/patches: patch-Makefile patch-configure 

Log message:
Update to latest git commit to add support for ocaml 4.08 and coq 8.10.

This should allow chrisz@ to move forward with updates of those ports.


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/08/17 19:17:02

Modified files:
	devel/ocaml-menhir: Makefile distinfo 
	devel/ocaml-menhir/pkg: PLIST 

Log message:
Update to ocaml-menhir 20190626.


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/08/17 19:19:36

Modified files:
	math/py-scipy  : Makefile distinfo 

Log message:
Update to py-scipy 1.2.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/17 20:43:52

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
When activating or detaching a target don't search the scsi_link SLIST
for each target:lun. Just travese the SLIST once taking care of relevant
scsi_link's as they are encountered.

ok jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/18 00:46:54

Modified files:
	x11/mplayer    : Makefile distinfo 

Log message:
Update to mplayer-20190817.
- additional SSE2 support.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/18 00:47:05

Modified files:
	x11/xdrawchem  : Makefile 
Added files:
	x11/xdrawchem/patches: patch-xdrawchem_render2d_text_cpp 

Log message:
Fix segfault in xdrawchem.

Pressing almost any key twice while hovering over a bond causes a
segmentation fault because a text-editor is internally created and
discarded but not deleted. Based on diff provided by
https://github.com/bryanherger/xdrawchem/pull/12.

While here take MAINTAINER.

OK tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/18 00:54:06

Modified files:
	graphics/ffmpeg: Makefile 
Added files:
	graphics/ffmpeg/patches: patch-fftools_ffplay_c 

Log message:
ffplay: properly detect all window size changes

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/18 00:56:07

Modified files:
	emulators/qemu : Makefile distinfo 
	emulators/qemu/patches: patch-audio_audio_c patch-configure 
	emulators/qemu/pkg: PLIST 

Log message:
Update to qemu-4.1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/08/18 02:06:00

Modified files:
	www/h2o        : Makefile distinfo 

Log message:
Update h2o to 2.2.6.  Fixes HTTP/2 DoS attack vulnerabilities CVE-2019-9512,
CVE-2019-9514 and CVE-2019-9515


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/08/18 02:34:02

Modified files:
	security/hitch : Makefile distinfo 
	security/hitch/patches: patch-hitch_conf_man_rst 
	                        patch-src_configuration_c 
	                        patch-src_hitch_c 
Added files:
	security/hitch/patches: patch-src_tests_hitch_test_sh 

Log message:
Update to hitch 1.5.0

* Support for UNIX domain socket connections. A backend endpoint can now
be specified as a UNIX domain socket, via backend = "/path/to/socket".
* New configuration file settings pem-dir and pem-dir-glob. pem-dir can
be used to specify a directory for loading certificates, without
specifying each file individually.
* Support for TLS 1.3. Thanks to Lasse Karstensen.
* Fixed a bug that would cause a crash on reload if ocsp-dir was changed.
* Add log-level. This supersedes the previous quiet setting,
which is now deprecated.
* Add proxy-tlv. This enables extra reporting of cipher and protocol as
part of the PROXYv2 protocol.
* Drop TLSv1.1 from the default TLS protocols list.

Use Python 3 during build and make tests depend on the current version while
here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/18 03:14:44

Modified files:
	www/rt         : Makefile distinfo 
	www/rt/patches : patch-Makefile_in 
	                 patch-sbin_rt-test-dependencies_in 
	www/rt/pkg     : PLIST 

Log message:
update to 4.4.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/18 04:09:50

Modified files:
	productivity/tryton/5.0/account_payment_sepa_cfonb: Makefile 
	                                                    distinfo 
	productivity/tryton/5.0/account_payment_sepa_cfonb/pkg: PLIST 

Log message:
productivity/tryton: 5.0 maintenance update

I missed this one in the previous batch.
thanks portroach.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 04:17:46

Modified files:
	fonts/font-awesome: Makefile distinfo 

Log message:
Update font-awesome to 5.10.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/18 04:19:17

Modified files:
	lib/libcrypto/man: CMS_get0_type.3 

Log message:
some cleanup:
* do not jump back and forth among functions
* show data type - NID correspondance in a table
* make the difference between content type and embedded content clearer
* add the missing STANDARDS section
* mark up ASN.1 type names
* remove some text that says nothing
* and minor wording improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/18 04:54:57

Modified files:
	lib/libcrypto/man: CMS_get1_ReceiptRequest.3 

Log message:
minor cleanup:
* mark up ASN.1 type and field names
* move the RFC reference to STANDARDS
* and minor wording improvements


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/18 05:33:06

Modified files:
	devel/cil      : Makefile 

Log message:
remove reference to /usr/bin/gcc that hasn't been used since 2012


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/18 06:06:51

Modified files:
	lib/libcrypto/man: CMS_sign.3 CMS_sign_receipt.3 CMS_verify.3 
	                   CMS_verify_receipt.3 

Log message:
minor cleanup:
* add the missing STANDARDS sections
* mark up ASN.1 type names
* GOST does not need an ENGINE in LibreSSL, so don't use it as an example
* and minor wording improvements and typo fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/18 07:02:37

Modified files:
	lib/libcrypto/man: SMIME_read_CMS.3 SMIME_write_CMS.3 

Log message:
minor cleanup:
* avoid jumping back and forth between use cases
* delete duplicate information
* and minor wording improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/18 07:11:47

Modified files:
	sys/dev/pci/drm: drm_drv.c drm_linux.c files.drm 
	sys/dev/pci/drm/amd/amdgpu: amdgpu_bios.c 
	sys/dev/pci/drm/i915: i915_drv.h 
	sys/dev/pci/drm/include/drm: drmP.h 
	sys/dev/pci/drm/include/linux: acpi.h backlight.h kconfig.h 
	                               notifier.h pci.h 
	sys/dev/pci/drm/radeon: radeon_bios.c 
Added files:
	sys/dev/pci/drm/include/generated: autoconf.h 

Log message:
Implement a few Linux compat ACPI interfaces and enable the ACPI support
code in radeon(4) and amdgpu(4).

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 07:55:45

Modified files:
	astro/kstars   : Makefile distinfo 

Log message:
Update kstars to 3.3.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/18 08:26:32

Modified files:
	www/nginx      : Makefile distinfo 

Log message:
Security update to nginx 1.16.1.

see http://nginx.org/en/security_advisories.html: When using HTTP/2 a
client might cause excessive memory consumption and CPU usage
(CVE-2019-9511, CVE-2019-9513,CVE-2019-9516).

Update chroot patch & fix WANTLIB while here.

ok sthen@ danj@ robert@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/18 08:30:42

Modified files:
	productivity/davical: Makefile distinfo 
	productivity/davical/pkg: PLIST 

Log message:
Update to davical 1.1.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 08:40:31

Modified files:
	x11/kde4       : Makefile 
	meta/kde4      : Makefile 

Log message:
KDE4 zeroconf-ioslave

No consumers left. Unhook and remove from KDE4 meta network. Bump KDE4 meta
-main and -network

Spotted by ajacoutot@. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 09:37:28

ports/devel/kf5/kconfig/patches

Update of /cvs/ports/devel/kf5/kconfig/patches
In directory cvs.openbsd.org:/tmp/cvs-serv73413/patches

Log Message:
Directory /cvs/ports/devel/kf5/kconfig/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/18 09:51:18

Modified files:
	sys/dev/ic     : dwiic.c 

Log message:
In polled mode, wait on STOP detected bit to be set in the interrupt status
register like we do for non-polled mode.  This seems to increase the
reliability of i2c transfers on the controller integrated on the Ampare
eMAG processor.

ok jcs@, mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/18 09:52:45

Modified files:
	sys/dev/ic     : dwiic.c 

Log message:
Increase timeout used when waiting for the Rx FIFO to fill up when in polled
mode.

ok jcs@, mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 10:19:34

Modified files:
	devel/jenkins/devel: Makefile distinfo 

Log message:
Update jenkins -devel to 2.189


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 10:21:27

Modified files:
	devel/jenkins/stable: Makefile distinfo 

Log message:
Update jenkins -stable to 2.176.2


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/18 10:21:32

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
Rename 'link' to 'link0' as it refers to target 0 only.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/18 10:52:02

Modified files:
	usr.sbin/smtpd : lka_filter.c lka_report.c 

Log message:
version field was reserved but not discussed, this is done now

ok millert@ martijn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 11:45:48

Modified files:
	x11/i3-gaps    : Makefile distinfo 
	x11/i3-gaps/patches: patch-Makefile_in patch-configure 
	                     patch-etc_config patch-etc_config_keycodes 

Log message:
Update i3-gaps to 4.17

OK bket@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 12:08:29

Modified files:
	devel/catch2   : Makefile distinfo 

Log message:
Update catch2 to 2.9.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/18 12:43:53

Modified files:
	devel/p5-SUPER : Makefile distinfo 

Log message:
Udate devel/p5-SUPER to 1.20190531

From wen heping <wenheping2000 () hotmail ! com>
OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/18 12:51:48

Modified files:
	databases/p5-SQL-Statement: Makefile distinfo 

Log message:
Update databases/p5-SQL-Statement to 1.412

From wen heping <wenheping2000 () hotmail ! com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/18 13:23:41

Modified files:
	inputmethods/scim-tables: Makefile 
Added files:
	inputmethods/scim-tables/patches: patch-src_scim_generic_table_h 

Log message:
scim-tables: add missing headers for ports-gcc.
Regen WANTLIB and remove base-gcc from COMPILER while here.

OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/18 13:29:33

Modified files:
	sysutils/sshfs-fuse: Makefile distinfo 
	sysutils/sshfs-fuse/patches: patch-sshfs_c 

Log message:
Update to sshfs-fuse-2.10.

Last version of sshfs-fuse that is compatible with our implementation of
fuse. Changelog can be found at
https://github.com/libfuse/sshfs/blob/sshfs-2.10/ChangeLog.rst.

Feedback on update from edd@.

OK edd@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/18 13:47:11

Modified files:
	productivity/homebank: Makefile distinfo 

Log message:
Update homebank to 5.2.7

Ok pea@ (Maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/18 14:16:14

Modified files:
	databases/p5-DBIx-Connector: Makefile distinfo 
	databases/p5-DBIx-Connector/pkg: PLIST 

Log message:
Udate databases/p5-DBIx-Connector to 0.56

From wen heping <wenheping2000 () hotmail ! com>
OK Abel Abraham Camarillo Ojeda <acamari () verlet ! org> (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/18 14:23:36

Modified files:
	databases/p5-DBIx-DBSchema: Makefile distinfo 
	databases/p5-DBIx-DBSchema/pkg: PLIST 

Log message:
Update databases/p5-DBIx-DBSchema to 0.45

From wen heping <wenheping2000 () hotmail ! com>
OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/18 14:43:14

Modified files:
	graphics/ilmbase: Makefile distinfo 

Log message:
Update to ilmbase-2.3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/18 14:43:27

Modified files:
	graphics/openexr: Makefile distinfo 
	graphics/openexr/pkg: PLIST-main 
Removed files:
	graphics/openexr/patches: patch-IlmImfExamples_Makefile_in 
	                          patch-IlmImfTest_testSampleImages_cpp 
	                          patch-IlmImf_ImfFastHuf_cpp 

Log message:
Update to OpenEXR-2.3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/18 14:43:47

Modified files:
	graphics/openexr-viewers: Makefile distinfo 

Log message:
Update to openexr-viewers-2.3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/18 14:44:12

Modified files:
	graphics/ctl   : Makefile 
Added files:
	graphics/ctl/patches: patch-lib_IlmCtlSimd_CtlSimdInst_cpp 

Log message:
Fix build with ilmbase >= 2.3.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/18 15:44:10

Modified files:
	lib/libcrypto/man: BIO_new_CMS.3 CMS_ContentInfo_new.3 
	                   CMS_add0_cert.3 CMS_add1_recipient_cert.3 
	                   CMS_add1_signer.3 CMS_compress.3 
	                   CMS_decrypt.3 CMS_encrypt.3 CMS_final.3 
	                   CMS_get0_RecipientInfos.3 
	                   CMS_get0_SignerInfos.3 CMS_get0_type.3 
	                   CMS_get1_ReceiptRequest.3 CMS_sign.3 
	                   CMS_sign_receipt.3 CMS_uncompress.3 
	                   CMS_verify.3 CMS_verify_receipt.3 
	                   PEM_write_bio_CMS_stream.3 SMIME_read_CMS.3 
	                   SMIME_write_CMS.3 d2i_CMS_ContentInfo.3 
	                   i2d_CMS_bio_stream.3 

Log message:
Tweak cross references, in particular making sure that
all CMS pages are linked to CMS_ContentInfo_new(3) both ways
and that closely related pages reference each other.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/18 17:58:24

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
Every "goto bad" in scsi_probedev() deserves a SC_DEBUG().


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/08/18 20:29:34

Modified files:
	java/gradle    : Makefile distinfo 
	java/gradle/pkg: PLIST 

Log message:
Update to Gradle 5.6

https://docs.gradle.org/5.6/release-notes.html

ok rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/19 00:00:40

Modified files:
	devel/kdevelop : Makefile distinfo 
	devel/kdevelop/patches: patch-plugins_clang_CMakeLists_txt 
	devel/kdevelop/pkg: PLIST 

Log message:
Update kdevelop to 5.4.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/19 00:04:23

Modified files:
	x11/vlc        : Makefile 
	multimedia/libtheora: Makefile 
	multimedia/mpv : Makefile 
	multimedia/x264: Makefile 
	multimedia/xine-lib: Makefile 
	multimedia/xvidcore: Makefile 

Log message:
Update compiler across some multimedia ports to be consistent in using
ports-gcc for non clang archs.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/19 00:11:41

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/pkg   : PLIST 

Log message:
Update to QGIS 3.8.2


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/19 00:13:44

Modified files:
	sys/dev/fdt    : sxiccmu_clocks.h 

Log message:
Add missing OHCI clocks for Allwinner R40.

tested by jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	jan@cvs.openbsd.org	2019/08/19 01:07:35

Modified files:
	sys/dev/pci    : if_ix.c 

Log message:
Enable TCP and UDP checksum offloading by default for ix(4).

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/19 01:27:11

Modified files:
	sys/arch/armv7/sunxi: sxiahci.c 

Log message:
match on r40 ahci

tested by and ok jsing@ ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/19 03:34:13

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_ib.c amdgpu_object.c 
	                            amdgpu_virt.h amdgpu_vm.c gmc_v7_0.c 
	                            gmc_v8_0.c gmc_v9_0.c 
	sys/dev/pci/drm/include/drm/ttm: ttm_set_memory.h 
	sys/dev/pci/drm/include/generated: autoconf.h 
	sys/dev/pci/drm/radeon: radeon_device.c radeon_gart.c 
	sys/dev/pci/drm/ttm: ttm_bo_util.c 

Log message:
define CONFIG_X86* in autoconf.h as needed and reduce diff to linux
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/19 04:08:37

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.9

- fix blame bug where lines were annotated with wrong commit
- man page spelling fixes (patch by Hiltjo Posthuma)
- fix uninitialized 'editor' variable (found by Hiltjo Posthuma)
- make 'got revert' ignore unversioned files instead of aborting (semarie@)
- fix "last commit cannot be folded" histedit check with reordered commits


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/19 06:09:07

Modified files:
	usr.sbin/pkg_add/OpenBSD: AddDelete.pm 

Log message:
add a special flag -DDONTLOG so that regress test won't spam /var/log/messages


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/19 06:11:04

Modified files:
	regress/usr.sbin/pkg_add: my 

Log message:
silently add -DDONTLOG


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/19 06:25:40

Modified files:
	usr.sbin/pkg_add: pkg_add.1 
	usr.sbin/pkg_add/OpenBSD: Add.pm PkgAdd.pm 

Log message:
-Pcdrom is nonsensical now, so error out properly on it.

Prompted and okay danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/19 07:08:26

Modified files:
	lib/libcrypto/man: DH_generate_key.3 EC_GROUP_new.3 EC_KEY_new.3 
	                   EC_POINT_new.3 X25519.3 crypto.3 Makefile 
Added files:
	lib/libcrypto/man: ECDH_compute_key.3 

Log message:
document ECDH_compute_key(3) and ECDH_size(3);
feedback and OK tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/19 07:22:23

Modified files:
	editors/libreoffice: Makefile distinfo 
	editors/libreoffice/patches: patch-configure 
Removed files:
	editors/libreoffice/patches: 
	                             patch-sw_qa_extras_odfexport_odfexport_cxx 

Log message:
update to 6.2.6.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/19 07:25:25

Modified files:
	x11/mate/themes: Makefile distinfo 
	x11/mate/themes/pkg: PLIST 

Log message:
update to 3.22.20


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/19 07:28:37

Modified files:
	x11/mate/marco : Makefile distinfo 
	x11/mate/marco/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/19 07:36:30

Modified files:
	net/zabbix     : Makefile distinfo 
	net/zabbix/patches: patch-conf_zabbix_server_conf 
	                    patch-configure 
	                    patch-src_libs_zbxcrypto_tls_c 
	                    patch-src_libs_zbxnix_daemon_c 
	                    patch-src_libs_zbxsysinfo_openbsd_net_c 
	net/zabbix/pkg : PLIST-web 

Log message:
update to 4.0.11

from Mark Patruck; thanks


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/19 07:43:21

Modified files:
	www/nginx      : Makefile 

Log message:
enable the http dav module;

from Mark Patruck


CVSROOT:	/cvs
Module name:	src
Changes by:	robert@cvs.openbsd.org	2019/08/19 07:50:38

Added files:
	etc/signify    : openbsd-67-syspatch.pub 

Log message:
add 6.7 syspatch key


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/19 07:52:53

Modified files:
	lib/libcrypto/man: X509_new.3 X509_CRL_new.3 Makefile 
Added files:
	lib/libcrypto/man: X509_INFO_new.3 

Log message:
document X509_INFO_new(3) and X509_INFO_free(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/19 08:37:53

Modified files:
	mail/kopano/core: Makefile 
	mail/kopano/core/patches: patch-Makefile_in 

Log message:
do not explicitly link libstdc++

found by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/19 09:13:07

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.7.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/19 09:13:28

Modified files:
	net/icinga/web2: Makefile distinfo 
	net/icinga/web2/pkg: PLIST 

Log message:
update to icinga-web2 2.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/19 09:13:55

Modified files:
	textproc/p5-PDF-API2: Makefile distinfo 

Log message:
update to p5-PDF-API2-2.035


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/19 09:21:34

Modified files:
	www/apache-httpd: Tag: OPENBSD_6_5 Makefile distinfo 
	www/apache-httpd/patches: Tag: OPENBSD_6_5 patch-Makefile_in 
	                          patch-config_layout patch-configure 
	                          patch-docs_conf_httpd_conf_in 
	                          patch-docs_man_htpasswd_1 
	                          patch-docs_man_httpd_8 
	                          patch-modules_ssl_ssl_engine_init_c 
	                          patch-modules_ssl_ssl_private_h 
	                          patch-server_mpm_unix_c 
	                          patch-support_apachectl_in 
	                          patch-support_apxs_in 
	                          patch-support_rotatelogs_c 
	www/apache-httpd/pkg: Tag: OPENBSD_6_5 PLIST 

Log message:
MFC update to apache-httpd 2.4.41;

CVE-2019-10081: mod_http2, memory corruption on early pushes
CVE-2019-10082: mod_http2, read-after-free in h2 connection shutdown
CVE-2019-10092: Limited cross-site scripting in mod_proxy
CVE-2019-10097: mod_remoteip stack buffer overflow and NULL pointer dereference
CVE-2019-10098: mod_rewrite configurations vulnerable to open redirect
CVE-2019-9517: mod_http2, DoS attack by exhausting h2 workers


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/19 09:27:10

Modified files:
	graphics/ImageMagick: Makefile distinfo 
	graphics/ImageMagick/patches: patch-wand_MagickWand_pc_in 

Log message:
update to ImageMagick 6.9.10-61


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/08/19 09:42:24

Modified files:
	usr.sbin/smtpd : mta.c 

Log message:
use a specific and more relevant status message for failed smarthost
resolution.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/08/19 11:06:21

Modified files:
	lang/jruby     : Makefile 

Log message:
Build jruby-launcher with c++ instead of g++

Problem reported by and help from naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/19 11:16:55

Modified files:
	sys/dev/ata    : atascsi.c atascsi.h 

Log message:
Remove some unused code left over from an ancient (i.e. 2007) attempt
to present wd disks as sd drives.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/19 12:12:31

Modified files:
	games/puzzles  : Makefile 
Added files:
	games/puzzles/patches: patch-palisade_c 

Log message:
puzzles: unbreak on archs where char is unsigned by default (ppc, arm)

OK landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/19 12:31:03

Modified files:
	sys/dev        : ipmivar.h ipmi.c 
	sys/dev/i2c    : files.i2c 
Added files:
	sys/dev/i2c    : ipmi_i2c.c 

Log message:
Add support for SMBus System Interface (SSIF).

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/19 12:56:23

Modified files:
	share/man/man4 : ipmi.4 

Log message:
Mention ipmi@acpi and ipmi@iic.  Add a short description for SSIF.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/19 13:55:55

Modified files:
	distrib/sets/lists/base: mi 
	distrib/sets/lists/comp: clang.amd64 clang.arm64 clang.armv7 
	                         clang.i386 clang.loongson clang.macppc 
	                         clang.octeon clang.sgi clang.sparc64 mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/08/19 14:59:14

Modified files:
	etc/etc.amd64  : login.conf 

Log message:
The piggies have outgrown their pen again: Firefox 69 will no longer
build in 5 GB of memory. Bump default datasize for pbuild to 6 GB.
ok landry@ ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2019/08/19 15:08:26

Modified files:
	sys/dev/pckbc  : pms.c 

Log message:
Accept more elantech-v4 models, and apply a test for external buttons.

Thanks to Alexander Cronheim.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/19 15:09:41

Modified files:
	devel          : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/arm-elf  : Makefile Makefile.inc 
	devel/arm-elf/binutils: Makefile distinfo 
	devel/arm-elf/binutils/patches: patch-bfd_doc_Makefile_in 
	                                patch-binutils_doc_Makefile_in 
	                                patch-etc_Makefile_in 
	                                patch-gas_doc_Makefile_in 
	                                patch-gprof_Makefile_in 
	                                patch-ld_Makefile_in 
	                                patch-libiberty_Makefile_in 
	                                patch-libiberty_testsuite_Makefile_in 
	devel/arm-elf/binutils/pkg: DESCR PLIST 
	devel/arm-elf/gcc: Makefile distinfo 
	devel/arm-elf/gcc/patches: patch-Makefile_in 
	                           patch-gcc_Makefile_in 
	                           patch-gcc_config_arm_elf_h 
	                           patch-gcc_config_arm_t-arm-elf 
	                           patch-gcc_config_arm_unknown-elf_h 
	                           patch-libgcc_Makefile_in 
	                           patch-libiberty_Makefile_in 
	devel/arm-elf/gcc/pkg: DESCR PLIST 
	devel/arm-elf/gdb: Makefile distinfo 
	devel/arm-elf/gdb/patches: patch-bfd_doc_Makefile_in 
	                           patch-etc_Makefile_in 
	                           patch-gdb_Makefile_in 
	                           patch-gdb_doc_Makefile_in 
	                           patch-libiberty_Makefile_in 
	                           patch-sim_arm_armsupp_c 
	devel/arm-elf/gdb/pkg: DESCR PLIST 
	devel/arm-elf/newlib: Makefile distinfo 
	devel/arm-elf/newlib/patches: patch-etc_Makefile_in 
	devel/arm-elf/newlib/pkg: DESCR PLIST 

Log message:
Remove obsolete arm-elf cross-tools.  No longer useful and partially
BROKEN for 4.5 years.
ok kn@ jsg@ bentley@


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2019/08/19 15:19:38

Modified files:
	sys/dev/wscons : wsconsio.h wsmouseinput.h wsmouse.c 

Log message:
Add a configuration option for reverse scrolling.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gilles@cvs.openbsd.org	2019/08/19 15:21:17

Log message:
    import mail/opensmtpd-filter-senderscore, an integration of SenderScore for OpenSMTPD
    
    ok landry@
    
    Status:
    
    Vendor Tag:	gilles
    Release Tags:	gilles_20190819
    
    N ports/mail/opensmtpd-filter-senderscore/Makefile
    N ports/mail/opensmtpd-filter-senderscore/distinfo
    N ports/mail/opensmtpd-filter-senderscore/pkg/DESCR
    N ports/mail/opensmtpd-filter-senderscore/pkg/PLIST
    N ports/mail/opensmtpd-filter-senderscore/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/19 15:22:26

Modified files:
	sys/arch/amd64/amd64: acpi_machdep.c 

Log message:
Restore msrs & pat on main cpu.  jcs observed a slow console on x1r7,
and kettenis identified missing pat restore.
Many other machines may be improved by this change.
ok kettenis jcs


CVSROOT:	/cvs
Module name:	ports
Changes by:	gilles@cvs.openbsd.org	2019/08/19 15:24:35

Modified files:
	mail           : Makefile 

Log message:
link mail/opensmtpd-filter-senderscore to the build


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2019/08/19 15:42:33

Modified files:
	sbin/wsconsctl : mouse.c mousecfg.c mousecfg.h 

Log message:
Add a field for enabling/disabling reverse scrolling.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/20 02:21:03

Modified files:
	share/man/man4 : tpmr.4 

Log message:
i broke the example slightly by making the driver more compliant with 802.1Q.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/20 02:34:08

Log message:
    Import libfakekey 0.1
    
    libfakekey is a simple library for converting UTF-8 characters into 'fake' X
    key-presses.
    
    OK rsadowski@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_20190820
    
    N ports/x11/libfakekey/Makefile
    N ports/x11/libfakekey/distinfo
    N ports/x11/libfakekey/pkg/PLIST
    N ports/x11/libfakekey/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/20 02:37:39

Modified files:
	x11            : Makefile 

Log message:
+libfakekey


CVSROOT:	/cvs
Module name:	ports
Changes by:	anton@cvs.openbsd.org	2019/08/20 02:47:41

Modified files:
	sysutils/yank  : Makefile distinfo 

Log message:
Update yank to 1.2.0.

ok rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/20 02:48:30

Log message:
    Import KDE Connect 1.3.5
    
    KDE Connect is a multi-platform app that allows your devices to communicate
    (eg: your phone and your computer).
    
    * Shared clipboard: Copy and paste between your phone and your computer.
    * Notification sync: Read and reply to your Android notifications from the PC.
    * Share files and URLs instantly from one device to another.
    * Multimedia remote control: Use your phone as a remote for media players.
    * Virtual touchpad: Use your phone screen as your PC's touchpad and keyboard.
    * Presentation remote: Advance your presentation slides from your phone.
    
    All this is done completely wirelessly, utilising TLS encryption.
    
    OK rsadowski@
    
    Status:
    
    Vendor Tag:	feinerer
    Release Tags:	feinerer_20190820
    
    N ports/net/kdeconnect-kde/Makefile
    N ports/net/kdeconnect-kde/distinfo
    N ports/net/kdeconnect-kde/patches/patch-plugins_mousepad_CMakeLists_txt
    N ports/net/kdeconnect-kde/patches/patch-core_backends_lan_lanlinkprovider_cpp
    N ports/net/kdeconnect-kde/patches/patch-plugins_sftp_mounter_cpp
    N ports/net/kdeconnect-kde/patches/patch-core_backends_lan_uploadjob_cpp
    N ports/net/kdeconnect-kde/pkg/PLIST
    N ports/net/kdeconnect-kde/pkg/DESCR
    N ports/net/kdeconnect-kde/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/20 02:51:21

Modified files:
	net            : Makefile 

Log message:
+kdeconnect-kde


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 03:24:46

Modified files:
	multimedia/dav1d: Makefile 

Log message:
unbreak i386, multimedia/dav1d now uses -Denable_asm=false not -Dbuild_asm=false


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/20 03:34:29

ports/x11/xfce4/xfce4-pulseaudio/patches

Update of /cvs/ports/x11/xfce4/xfce4-pulseaudio/patches
In directory cvs.openbsd.org:/tmp/cvs-serv3126/patches

Log Message:
Directory /cvs/ports/x11/xfce4/xfce4-pulseaudio/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/20 03:37:22

Added files:
	x11/xfce4/xfce4-pulseaudio/patches: 
	                                    patch-panel-plugin_pulseaudio-config_h 

Log message:
Remove useless inclusion of dbus-glib.h, its unneeded.

Build breakage reported by sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 03:59:59

Modified files:
	mail/s-nail    : Makefile distinfo 

Log message:
update to s-nail-14.9.15, from maintainer/upstream Steffen Nurpmeso


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/08/20 04:09:23

Modified files:
	www/sblg       : Makefile distinfo 
	www/sblg/pkg   : DESCR PLIST 

Log message:
Update to sblg-0.5.4.

Release notes: https://kristaps.bsd.lv/sblg/archive.html

From Bryan Vyhmeister (maintainer); thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/20 04:59:09

Modified files:
	lib/libcrypto/bn: bn_ctx.c 
	lib/libcrypto/man: BN_CTX_start.3 

Log message:
make BN_CTX_end(NULL) a NOOP for compatibility with documented behaviour
in OpenSSL 1.1.1 even though in general, letting random functions
accept NULL is not advisable because it can hide programming errors;

"yes please" tb@
"unfortunately I suspect you're right" jsing@
"oh well" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/20 05:02:28

Modified files:
	regress/usr.sbin/pkg_add/newcups/cups-2.2.8: +CONTENTS 
	regress/usr.sbin/pkg_add/newcups/cups-filters-1.20.3: +CONTENTS 
	regress/usr.sbin/pkg_add/newcups/cups-libs-2.2.8: +CONTENTS 
	regress/usr.sbin/pkg_add/newcups/ghostscript-9.07p7: +CONTENTS 
	regress/usr.sbin/pkg_add/oldcups/cups-2.2.7p1: +CONTENTS 
	regress/usr.sbin/pkg_add/oldcups/cups-filters-1.20.3: +CONTENTS 
	regress/usr.sbin/pkg_add/oldcups/cups-libs-2.2.7: +CONTENTS 
	regress/usr.sbin/pkg_add/oldcups/ghostscript-9.07p7: +CONTENTS 

Log message:
remove old cdrom=... property


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/20 05:03:05

Modified files:
	regress/usr.sbin/pkg_add: inject-order 

Log message:
use wrapper module instead of rolling our own


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/20 05:03:42

Added files:
	regress/usr.sbin/pkg_add: populate mkplist 

Log message:
two simple scripts to shrink package generation


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/20 05:05:43

Modified files:
	regress/usr.sbin/pkg_add: Makefile 

Log message:
shrink using new mechanisms


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 05:06:06

Modified files:
	infrastructure/bin: portcheck 

Log message:
complain if C++ libraries are found and COMPILER is left at the default.
ok kmos@ cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 05:07:07

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
portcheck now checks against the default COMPILER string; add a comment
to bsd.port.mk to keep it in-sync


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/20 05:11:53

Modified files:
	usr.sbin/pkg_add/OpenBSD: PackageRepository.pm 

Log message:
fix error reporting, specifically having two repos on the same site may
lead to one repo closing handles from the other to avoid DoS, as exemplified
by stable-packages.

okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/20 05:34:18

Modified files:
	usr.bin/less   : less.1 more.1 

Log message:
- more no longer accepts random less commands
- history trim
- sundry

diff from evan silberman;
tweaked/ok by schwarze and deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/20 05:47:33

Modified files:
	databases/py-sqlalchemy-migrate: Makefile distinfo 
	databases/py-sqlalchemy-migrate/pkg: PLIST 

Log message:
Update to py-sqlachemy-migrate 0.12.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/20 05:55:01

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.30.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/20 06:32:06

Modified files:
	databases/ports-readmes-dancer: Makefile distinfo 
	databases/ports-readmes-dancer/pkg: PLIST 

Log message:
new minor version


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/08/20 07:10:09

Modified files:
	lib/libcrypto/asn1: asn1t.h 

Log message:
Add static_ASN1_* macro

- Add static_ASN1_* macro. Patch was provided by steils AT gentoo.org


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/20 07:27:19

Modified files:
	lib/libcrypto/man: X509_CRL_new.3 X509_digest.3 X509_NAME_new.3 
	                   X509_new.3 Makefile 
Added files:
	lib/libcrypto/man: X509_cmp.3 

Log message:
New manual page X509_cmp(3) documenting the same public functions
as in OpenSSL 1.1.1.  I rewrote most of the text for clarity, precision,
and conciseness and added some additional information.  A few sentences
from Paul Yang remain.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/20 07:40:37

Modified files:
	sys/scsi       : scsiconf.c scsiconf.h 

Log message:
scsi_probe_bus() always returns 0. Nobody but scsi_probe() even
pretended to care. So just make in a void, and explicitly return 0 in
the appropriate case in scsi_probe().


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/08/20 08:11:01

Modified files:
	www/h2o        : Makefile 

Log message:
Bundled picotls makes the build fail on at least arm, so switch to libressl
unconditonally.  ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/20 09:22:57

Modified files:
	x11/spectrwm   : Makefile 
Added files:
	x11/spectrwm/patches: patch-spectrwm_1 

Log message:
Fix libswmhack example in spectrwm(1).

OK gonzalo@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 09:27:16

Modified files:
	graphics/digikam: Makefile 
Added files:
	graphics/digikam/patches: patch-core_tests_dimg_magickloader_cpp 

Log message:
cope with API change done in ImageMagick due to "module" becoming a reserved
word in C++20; build failure reported by naddy


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/20 09:41:37

Modified files:
	archivers/zstd : Makefile distinfo 

Log message:
Update to zstd-1.4.3.

Fixes an issue, which can degrade the effectiveness of dictionary
compression. Overview of changes can be found at
https://github.com/facebook/zstd/releases/tag/v1.4.3


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/20 10:01:52

Modified files:
	usr.sbin/rpki-client: extern.h main.c output-bgpd.c 

Log message:
Change the arguments to rpki-client a bit. Instead of listing all TAL files
as arguments rpki-client will now load the TAL installed in /etc/rpki by
default. For debug reasons an option -t tal is added to pass in TAL files
by hand. The argument is now instead the filename of the output file.
Now `rpki-client roa.conf` will do what you need which is a lot nicer.
Agreed by deraadt@ job@ to be a step in the right direction.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/20 10:02:57

Modified files:
	usr.sbin/rpki-client: rpki-client.8 

Log message:
Adjust manpage. Document -t tal and the new output argument. Also remove
some of the comments for sections that will never ever be used here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 10:05:24

Modified files:
	net/unifi/testing: Makefile distinfo 
	net/unifi/testing/pkg: PLIST 

Log message:
update unifi-testing to 5.11.39 release candidate


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/20 11:16:43

Modified files:
	sys/arch/arm64/conf: GENERIC 

Log message:
Enable ipmi(4).

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/08/20 12:53:14

Modified files:
	lang/scala     : Makefile distinfo 
	lang/scala/pkg : PLIST 

Log message:
Update to scala 2.12.9, the latest version on the 2.12 branch.
The major upgrade to 2.13 may cause difficulties with collections,
so this will be done in a second step (post 6.6).

ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 14:57:19

Modified files:
	net/arp-scan   : Makefile distinfo 

Log message:
update mac-vendor table


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 15:02:41

Modified files:
	multimedia/get_iplayer: Makefile distinfo 

Log message:
update to get_iplayer-3.22


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 15:27:59

Modified files:
	www/nghttp2    : Makefile distinfo 

Log message:
update to nghttp2-1.39.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/20 15:29:05

Modified files:
	net/nfdump     : Makefile distinfo 
Removed files:
	net/nfdump/patches: patch-bin_Makefile_am patch-bin_util_c 

Log message:
update to nfdump-1.6.18


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/20 16:31:28

Modified files:
	sys/dev/ic     : qla.c 
	sys/dev/pci    : qle.c 

Log message:
Use the defines DETACH_FORCE and DETACH_QUIET when constructing a value
that will end up in config_detach() flags via scsi_detach_target().

ok jmatthew@ dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/20 16:54:57

Modified files:
	editors/featherpad: Makefile distinfo 

Log message:
Update to featherpad-0.11.1
Changelog: https://github.com/tsujan/FeatherPad/releases/tag/V0.11.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/20 16:56:19

Modified files:
	sysutils/diffoscope: Makefile distinfo 

Log message:
Update to diffoscope-121


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/20 17:38:19

Modified files:
	sys/arch/amd64/stand/efi32: efipxe.c 
	sys/arch/amd64/stand/efi64: efipxe.c 
	sys/arch/amd64/stand/efiboot: efipxe.c 
	sys/arch/arm64/stand/efiboot: efipxe.c 
	sys/arch/armv7/stand/efiboot: efipxe.c 

Log message:
Network-based device paths use Messaging and not Media types.  Thus
in reality the depth was always -1 which made the compare function
a No-Op.  Properly check the device path depth value and look for
the Messaging type instead to find the correct NIC.  This check
never worked before and was uncovered by the last change.

Regression noticed by bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/20 17:55:41

Modified files:
	sys/dev/pci    : mfii.c mpii.c 

Log message:
Trailing whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/20 20:18:33

Modified files:
	sys/dev/pci    : vga_pci_common.c 
Added files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_devlist.h 

Log message:
Add simple amdgpu pci id devlist for the ramdisk to determine if
aperture is needed.  Skip SI/CIK ids as we don't build amdgpu with
SI/CIK support (radeondrm covers these) and skip VEGA20 ids we
don't match on as they are flagged AMD_EXP_HW_SUPPORT.


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/08/20 20:55:50

Modified files:
	devel/ocaml-menhir: Makefile 
	devel/ocaml-menhir/pkg: PFRAG.native PLIST 
Added files:
	devel/ocaml-menhir/pkg: PFRAG.dynlink-native 

Log message:
Fix packaging on !native archs.

As seen in landry@'s sparc64 bulk build report.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/20 23:47:33

Modified files:
	games/widelands: Makefile 
	games/widelands/patches: patch-CMakeLists_txt 

Log message:
Unbreak widelands build with cmake 3.15


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/20 23:47:41

Modified files:
	devel/cmake    : Makefile cmake.port.mk distinfo 
	devel/cmake/patches: patch-Modules_Compiler_GNU-Fortran_cmake 
	                     patch-Modules_Compiler_GNU_cmake 
	                     patch-Modules_FindJNI_cmake 
	                     patch-Modules_FindJava_cmake 
	                     patch-Modules_FindKDE3_cmake 
	                     patch-Modules_FindLua_cmake 
	                     patch-Modules_FindMPEG2_cmake 
	                     patch-Modules_FindMPEG_cmake 
	                     patch-Modules_FindPythonInterp_cmake 
	                     patch-Modules_FindPythonLibs_cmake 
	                     patch-Modules_FindQt3_cmake 
	                     patch-Modules_FindQt4_cmake 
	                     patch-Modules_FindQt_cmake 
	                     patch-Modules_FindRuby_cmake 
	                     patch-Modules_FindSDL_cmake 
	                     patch-Modules_FindTCL_cmake 
	                     patch-Modules_FindTclStub_cmake 
	                     patch-Modules_FindTclsh_cmake 
	                     patch-Modules_FindWish_cmake 
	                     patch-Modules_FindXMLRPC_cmake 
	                     patch-Modules_Qt4ConfigDependentSettings_cmake 
	                     patch-Source_cmArchiveWrite_cxx 
	                     patch-Source_cmComputeLinkInformation_cxx 
	                     patch-Source_cmComputeLinkInformation_h 
	                     patch-Source_cmGeneratorTarget_cxx 
	                     patch-Source_cmGlobalGenerator_cxx 
	                     patch-Source_cmInstallCommand_cxx 
	                     patch-Source_cmMessenger_cxx 
	                     patch-Source_cmSystemTools_cxx 
	                     patch-Source_cmTarget_cxx 
	                     patch-Source_kwsys_CMakeLists_txt 
	                     patch-Source_kwsys_SystemTools_cxx 
	devel/cmake/pkg: PLIST 
Added files:
	devel/cmake/files: FindLua.cmake 
	devel/cmake/patches: patch-Modules_FindOpenMP_cmake 
Removed files:
	devel/cmake/patches: patch-CMakeLists_txt 
	                     patch-Modules_CMakeCInformation_cmake 
	                     patch-Modules_CMakeCXXInformation_cmake 
	                     patch-Modules_CMakeFortranInformation_cmake 
	                     patch-Modules_Platform_OpenBSD_cmake 
	                     patch-Source_CMakeLists_txt 
	                     patch-Source_Modules_FindLibUV_cmake 
	                     patch-Source_cmake_cxx 
	                     patch-Tests_RunCMake_CMakeLists_txt 
	                     patch-Tests_RuntimePath_CMakeLists_txt 
	                     patch-Utilities_cmjsoncpp_include_json_value_h 
	                     patch-Utilities_cmjsoncpp_src_lib_json_json_value_cpp 
	                     patch-bootstrap 

Log message:
Update cmake to 3.15.2

Highlights:

- Stop building cmake itself with ninja. Upstream has decided not to
support this anymore. I see no benefit and it's getting harder and
harder to take care of.
- Use cmake's internel libuv, json-cpp etc. to build the bootstrap
cmake (only bootstrap).
- Fix SONAME in cmake ports

Notable port changes:

- Fix COMPILER, it's not possible to build the old and the new cmake
version with base-gcc, isn't.
- It doesn't make any sense to keep the m88k XXX tags. CMake don't build
under m88k.
- Tech cmake to detect/provide system JDK11, lua and new ruby version
(of course upcoming ruby 2.7)
- I took some pre-configure commands from the FreeBSDs port.
- Add --docdir to avoid warnings and sort CONFIGURE_ARGS

Bulk build by naddy@ on amd64. Thanks a lot!
Successful test by Martin Reindl on macppc and arm64. Thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/20 23:47:46

Modified files:
	math/plplot    : Makefile distinfo 
	math/plplot/patches: patch-cmake_modules_csiro_cmake 
	                     patch-examples_CMakeLists_txt 
	                     patch-examples_c++_CMakeLists_txt 
	                     patch-examples_c_CMakeLists_txt 
	                     patch-examples_fortran_CMakeLists_txt 
	                     patch-plplot_test_CMakeLists_txt 
	math/plplot/pkg: PLIST-main 

Log message:
Update plplot to 5.15.0

This version unbreak the build with upcoming cmake 3.15.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/21 00:18:57

Modified files:
	devel/kf5/kconfig: Makefile 
Added files:
	devel/kf5/kconfig/patches: patch-autotests_kconfigtest_cpp 
	                           patch-docs_options_md 
	                           patch-src_core_kconfig_cpp 

Log message:
Fix CVE-2019-14744 in KDE5 kconfig

Add patch from upstream KDE git.

Upstream description:
- https://kde.org/info/security/advisory-20190807-1.txt


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/21 00:22:01

Modified files:
	x11/kde4/libs  : Makefile 
Added files:
	x11/kde4/libs/patches: patch-kdecore_config_kconfig_cpp 
	                       patch-kdecore_doc_README_kiosk 
	                       patch-kdecore_tests_kconfigtest_cpp 

Log message:
Fix CVE-2019-14744 in KDE libs

Add patch from upstream KDE git.

Upstream description:
- https://kde.org/info/security/advisory-20190807-1.txt


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/21 00:37:57

Modified files:
	multimedia/gstreamer1/plugins-ugly: Makefile 
	multimedia/gstreamer1/plugins-ugly/pkg: PLIST 

Log message:
Remove the AC3 / MPEG2 decoders from the ugly plugins.
FFmpeg (gstreamer1-plugins-libav) provides much better decoders.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 01:16:46

Modified files:
	net/nfdump     : Makefile distinfo 

Log message:
nfdump distfile was rerolled (reported by espie) - rename in DISTFILES and bump REVISION


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/21 01:35:17

Modified files:
	multimedia/libass: Makefile 

Log message:
Use ports-gcc for non-clang archs.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/21 01:36:34

Modified files:
	x11/gnome/photos: Makefile distinfo 

Log message:
Update to gnome-photos-3.32.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/21 01:49:04

Modified files:
	textproc/ruby-rouge: Makefile distinfo 
	textproc/ruby-rouge/pkg: PLIST 

Log message:
Update ruby-rouge to 3.9.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/21 01:55:45

Modified files:
	graphics/shotwell: Makefile distinfo 

Log message:
Update to shotwell-0.30.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 02:31:25

Removed files:
	www/apache-httpd/patches: Tag: OPENBSD_6_5 
	                          patch-modules_filters_mod_reqtimeout_c 

Log message:
rm old patch to unbreak -stable; from Ian McWilliam


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 04:39:29

Modified files:
	sysutils/stow  : Makefile distinfo 

Log message:
update to stow-2.3.1, from maintainer Andreas Kahari


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 04:55:41

Modified files:
	archivers/lz4  : Makefile distinfo 
	archivers/lz4/patches: patch-lib_Makefile 

Log message:
update to lz4-1.9.2


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/08/21 05:08:58

Modified files:
	sbin/disklabel : disklabel.8 editor.c 

Log message:
Bump /usr on big auto-allocation table; ok krw@ sthen@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/21 05:13:35

Modified files:
	graphics/dibuja: Makefile 

Log message:
dibuja: fix the build on base-gcc archs.
LIBCXX_COMPILER is defined in WANTLIB, as such ports-gcc is needed.

OK jca@ bcallah@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/21 05:20:25

Modified files:
	devel/woboq_codebrowser: Makefile 

Log message:
woboq_codebrowser: requires ports-clang or ports-gcc on base-gcc archs.
Also remove the clang module and use devel/llvm as a
BUILD_DEPENDS (from jca@, thanks!).

OK kmos@ jca@ (who tested on sparc64)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 06:35:13

Modified files:
	net/smokeping  : Makefile distinfo 
	net/smokeping/patches: patch-bin_smokeping 
	                       patch-bin_smokeping_cgi patch-bin_tSmoke 
	                       patch-etc_config_dist_in 
	                       patch-lib_Smokeping_probes_Curl_pm 
	                       patch-lib_Smokeping_probes_DNS_pm 
	                       patch-lib_Smokeping_probes_EchoPing_pm 
	                       patch-lib_Smokeping_probes_FPing6_pm 
	                       patch-lib_Smokeping_probes_FPing_pm 
	                       patch-lib_Smokeping_probes_SipSak_pm 
	net/smokeping/pkg: PLIST 
Added files:
	net/smokeping/patches: patch-Makefile_am 
	                       patch-lib_Smokeping_probes_base_pm 

Log message:
update to smokeping-2.7.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/21 07:13:28

Modified files:
	net/librsync   : Makefile distinfo 
	net/librsync/pkg: PLIST 

Log message:
Update to librsync-2.1.0.

Overview of changes can be found at
https://github.com/librsync/librsync/releases/tag/v2.1.0.

Major of SHARED_LIBS has been bumped as symbols have been removed.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 07:18:32

Modified files:
	net/ntopng     : Makefile 
	net/ntopng/patches: patch-Makefile_in 

Log message:
fix "popen not supported" errors in ntopng; reported by dhill


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/08/21 07:26:01

Modified files:
	www/nextcloud  : Makefile distinfo 
	www/nextcloud/pkg: PLIST README 

Log message:
Update for Nextcloud to 16.0.4

Better example for httpd(8) and warnings.

OK bket@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/08/21 07:26:24

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_5 Makefile distinfo 
	www/nextcloud/pkg: Tag: OPENBSD_6_5 PLIST README 

Log message:
Update for Nextcloud to 16.0.4

Better example for httpd(8) and warnings.

OK bket@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 08:00:11

Modified files:
	net/smokeping  : Makefile 
	net/smokeping/patches: patch-lib_Smokeping_probes_FPing_pm 

Log message:
don't use "fping6 -6", current fping versions don't like it


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/21 08:21:51

Modified files:
	devel/py-babel : Makefile distinfo 
	devel/py-babel/pkg: PLIST 

Log message:
Update devel/py-babel 2.4.0 -> 2.7.0

All BUILD_DEPENDS consumers continue to build. consumers with working
tests maintained or improved the number of tests passed.

OK bket@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 08:26:56

Modified files:
	net/websockify : Makefile 

Log message:
drop maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 09:23:42

Modified files:
	net/mtr        : Makefile distinfo 
	net/mtr/patches: patch-packet_packet_c 
Added files:
	net/mtr/patches: patch-packet_probe_c patch-packet_probe_unix_c 
	                 patch-ui_dns_c 

Log message:
update to mtr-0.93 plus a few post-release patches


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/08/21 09:32:18

Modified files:
	lib/libc/sys   : sysctl.2 
	sbin/ifconfig  : ifconfig.8 
	sys/net        : if.c 
	sys/netinet6   : in6_ifattach.c in6_ifattach.h ip6_input.c 

Log message:
Remove support for semantically opace interface identifiers (RFC 7217)
for IPv6 link local addresses.

Some hosting and VM providers route customer IPv6 prefixes to link
local addresses derived from ethernet MAC addresses (RFC 2464). This
leads to hard to debug IPv6 connectivity problems and is probably not
worth the effort.

RFC 7721 lists 4 weaknesses:

3.1. Correlation of Activities over Time & 3.2. Location Tracking
These are still possible with RFC 7217 addresses for an adversary
connected to the same layer 2 network (think conference wifi). Since
the link local prefix stays the same (fe80::/64) the link local
addresses do not change between different networks.
An adversary on the same layer 2 network can probably track ethernet
MAC addresses via different means, too.

3.3. Address Scanning & 3.4. Device-Specific Vulnerability Exploitation
These now become possible, however, as noted above a layer 2 adversary
was probably able to do this via different means.

People concerned with these weaknesses are advised to use
ifconfig lladdr random.
OK benno
input & OK kn


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2019/08/21 09:44:31

Modified files:
	faq            : current.html 

Log message:
IPv6 link-local address change


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/08/21 10:14:34

Modified files:
	sys/arch/mips64/include: pmap.h 
	sys/arch/mips64/mips64: context.S pmap.c 

Log message:
Fix a race in invalidation of remote TLB entries.

If a CPU updates a pmap concurrently with the activation of that pmap
on another CPU, invalidation of TLB entries might be incomplete.
It is also possible that a CPU altogether stops updating its TLB.

Prevent the race by synchronizing pmap activations and logic that
determines where to send TLB invalidation IPIs.

To avoid mutex wait without ability to process IPIs, the context switch
code is adjusted to call pmap_activate() with interrupts enabled.
In practice, interrupts up to IPL_SCHED are still disabled on context
switch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/21 10:50:10

Modified files:
	www/py-beautifulsoup4: Makefile 

Log message:
drop maintainer as requested by danj


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/08/21 11:37:23

Modified files:
	devel/gmake    : Makefile 
Added files:
	devel/gmake/patches: patch-job_c patch-job_h 

Log message:
Keep SIGCHLD blocked when using pselect(2) so that pselect(2)
wont miss SIGCHLD signals and hang gmake.

okay naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/21 11:39:30

Modified files:
	distrib/miniroot: install.sub 

Log message:
Lower syspugrade timeout to 30 minutes

The previous mechanism used a single timeout for the entire upgrade which
was kept when introducing the per-set watchdog.

Half an hour now seems more sensible to safely catch the biggest sets on
slow hardware, so avoid needlessly stalling (failed) upgrades for too long.

OK sthen deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	danj@cvs.openbsd.org	2019/08/21 13:21:57

Modified files:
	usr.sbin/pkg_add: package.5 

Log message:
Remove cdrom mention

ok espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/21 13:30:52

Modified files:
	x11/ctwm       : Makefile distinfo 

Log message:
ctwm: update to 4.0.3
Changelog:
https://www.ctwm.org/CHANGES.html

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/21 13:36:47

Modified files:
	www/py-beautifulsoup4: Makefile 

Log message:
maintainer change requires revision bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/21 14:35:27

Modified files:
	x11/coma       : Makefile distinfo 
	x11/coma/pkg   : PLIST 

Log message:
Update coma to 1.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/08/21 14:44:10

Modified files:
	lib/libc/sys   : sysctl.2 
	share/man/man7 : securelevel.7 
	sys/arch/amd64/isa: clock.c 
	sys/arch/i386/isa: clock.c 
	sys/arch/macppc/macppc: clock.c 
	sys/conf       : param.c 
	sys/kern       : kern_sysctl.c 
	sys/sys        : kernel.h sysctl.h 

Log message:
sysctl(2): add kern.utc_offset: successor to the DST/TIMEZONE options(4)

The DST and TIMEZONE options(4) are incompatible with KARL, so we need
some other way to compensate for an RTC running with a known offset.

Enter kern.utc_offset, an offset in minutes East of UTC.  TIMEZONE has
always been minutes West, but this is inconsistent with how everyone
else talks about timezones, hence the flip.

TIMEZONE has the advantage of being compiled into the binary.  Our new
sysctl(2) has no such luck, so it needs to be set as early as possible
in boot, from sysctl.conf(5), so we can correct the kernel clock from
the RTC's local time to UTC before daemons like ntpd(8) and cron(8)
start.  To encourage this, kern.utc_offset is made immutable after the
securelevel(7) is raised to 1.

Prompted by yasuoka@.  Discussed with deraadt@, kettenis@, yasuoka@.
Additional testing by yasuoka@.

ok deraadt@, yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/21 15:06:48

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/21 15:19:47

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-8.0.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/21 15:39:38

Modified files:
	archivers/bzip2: Makefile distinfo 
Removed files:
	archivers/bzip2/patches: patch-bzgrep 

Log message:
Update to 1.0.8:
* relaxes the fix for CVE-2019-12900
* cleanup of bzdiff and bzgrep scripts so they don't use bash extensions
There's also a homepage again.

ok kmos@ cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/21 16:12:04

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.10:
- fix and simplify blame algorithm


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/21 19:11:19

Modified files:
	sys/arch/i386/isa: clock.c 

Log message:
unused variable, after previous commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/22 00:47:44

Modified files:
	x11/xfce4/xfce4-settings: Makefile distinfo 
Removed files:
	x11/xfce4/xfce4-settings/patches: 
	                                  patch-common_display-profiles_c 

Log message:
Update to xfce4-settings 4.14.1.

Remove patch, bug #15816 was fixed upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/22 01:17:06

Modified files:
	editors/le     : Makefile distinfo 
	editors/le/pkg : PLIST 

Log message:
Update le to 1.16.6. From Wen Heping, thanks!

Maintainer timeout.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/22 03:02:23

Modified files:
	infrastructure/lib/DPB/Job: Fetch.pm 

Log message:
refactoring code is great IF you finish doing it.
Sorry guys, no_sites, is the code on the next line actually.


CVSROOT:	/cvs
Module name:	src
Changes by:	miko@cvs.openbsd.org	2019/08/22 03:47:29

Modified files:
	sys/dev/pci    : auich.c 

Log message:
do pci_intr_disestablish() and bus_space_unmap() calls if auich_alloc_cdata() fails; ok ratchov@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/08/22 04:06:46

Modified files:
	games/tome4    : Makefile 

Log message:
Split do-configure into configure and post-patch, improve do-install

Copy GAMEDIR at once and avoid unwanted files in the first place instead of
removing them afterwards;  nit-pick WRKSRC into WRKBUILD while since the engine
executable is generated in build.

OK solene


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/22 09:15:35

Modified files:
	lib/libcrypto/man: BASIC_CONSTRAINTS_new.3 
	                   EXTENDED_KEY_USAGE_new.3 Makefile 
	                   X509V3_get_d2i.3 X509_new.3 
Added files:
	lib/libcrypto/man: X509_check_purpose.3 

Log message:
document X509_check_purpose(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/22 10:16:47

Modified files:
	net/isc-bind   : Makefile distinfo 
	net/isc-bind/patches: patch-bin_dig_dig_c patch-bin_dig_host_c 
	                      patch-bin_dig_nslookup_c 
	                      patch-bin_named_include_named_globals_h 
	                      patch-lib_isc_Makefile_in 
	                      patch-lib_isc_unix_net_c 
	                      patch-lib_isc_unix_socket_c 
	net/isc-bind/pkg: PLIST 

Log message:
update to bind-9.11.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/22 10:22:07

Modified files:
	security/clamav: Makefile distinfo 
	security/clamav/patches: patch-etc_clamd_conf_sample 

Log message:
update to clamav 0.101.4,
- out of bounds write in NSIS bzip2 library
- improvements to the zip bomb mitigations added in 0.101.3, there is now
a maximum scan time limit, defaulting to 2 minutes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/22 10:31:07

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: distinfo 
	security/letsencrypt/client/pkg: PLIST 
	security/letsencrypt/py-acme: distinfo 

Log message:
update to py-acme/certbot 0.37.2


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/22 10:32:26

Modified files:
	games/fortune/datfiles: fortunes-o.real fortunes2 

Log message:
spelling fix and zap a stray line while here;


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/22 11:14:21

Modified files:
	sys/arch/arm64/dev: acpipci.c 

Log message:
Don't check _TTP for io windows.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/22 12:19:34

Modified files:
	mail/kopano/core: Makefile 
	mail/kopano/core/pkg: PLIST-main 

Log message:
add missing dependency on rrdtool to enable kopano-statsd instead
of randomly picking up the rrd library in the pkg builds

found by sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/08/22 13:04:06

Modified files:
	.              : plus.html 

Log message:
plus for August 13 - 21
tweaks and OK florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/22 13:20:04

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-base_base_paths_posix_cc 
	                      patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_cc 
Added files:
	www/chromium/files: electron 
	www/chromium/patches: epatch-electron_BUILD_gn 
	                      epatch-electron_atom_app_atom_main_cc 
	                      epatch-electron_atom_app_atom_main_delegate_cc 
	                      epatch-electron_atom_browser_api_atom_api_app_cc 
	                      epatch-electron_atom_browser_api_atom_api_power_monitor_cc 
	                      epatch-electron_atom_browser_api_atom_api_power_monitor_h 
	                      epatch-electron_atom_browser_api_atom_api_web_contents_cc 
	                      epatch-electron_atom_browser_atom_browser_main_parts_cc 
	                      epatch-electron_atom_browser_atom_browser_main_parts_posix_cc 
	                      epatch-electron_atom_browser_atom_paths_h 
	                      epatch-electron_atom_browser_browser_h 
	                      epatch-electron_atom_browser_lib_power_observer_h 
	                      epatch-electron_atom_browser_lib_power_observer_linux_cc 
	                      epatch-electron_atom_browser_native_window_views_cc 
	                      epatch-electron_atom_browser_native_window_views_h 
	                      epatch-electron_atom_browser_relauncher_linux_cc 
	                      epatch-electron_atom_browser_ui_views_atom_views_delegate_cc 
	                      epatch-electron_atom_browser_ui_views_atom_views_delegate_h 
	                      epatch-electron_atom_browser_ui_views_submenu_button_cc 
	                      epatch-electron_atom_common_api_atom_api_crash_reporter_cc 
	                      epatch-electron_atom_common_api_electron_bindings_cc 
	                      epatch-electron_atom_common_atom_command_line_cc 
	                      epatch-electron_atom_common_atom_command_line_h 
	                      epatch-electron_atom_common_crash_reporter_crash_reporter_cc 
	                      epatch-electron_atom_common_node_bindings_cc 
	                      epatch-electron_atom_common_node_bindings_linux_cc 
	                      epatch-electron_atom_common_platform_util_h 
	                      epatch-electron_build_npm_gni 
	                      epatch-electron_chromium_src_chrome_browser_process_singleton_posix_cc 
	                      epatch-electron_default_app_default_app_ts 
	                      epatch-electron_lib_browser_api_dialog_js 
	                      epatch-electron_lib_browser_api_menu-item-roles_js 
	                      epatch-electron_lib_browser_api_power-monitor_js 
	                      epatch-electron_lib_common_api_clipboard_js 
	                      epatch-electron_node_modules_arch_index_js 
	                      epatch-electron_node_modules_dugite_build_lib_git-environment_js 
	                      epatch-electron_node_modules_fsevents_node_modules_os-homedir_index_js 
	                      epatch-electron_node_modules_fsevents_node_modules_signal-exit_signals_js 
	                      epatch-electron_node_modules_os-homedir_index_js 
	                      epatch-electron_node_modules_signal-exit_signals_js 
	                      epatch-electron_script_lib_utils_js 
	                      epatch-electron_script_spec-runner_js 
	                      epatch-electron_spec-main_api-app-spec_ts 
	                      epatch-electron_spec_api-auto-updater-spec_js 
	                      epatch-electron_spec_api-browser-window-spec_js 
	                      epatch-electron_spec_api-clipboard-spec_js 
	                      epatch-electron_spec_api-content-tracing-spec_js 
	                      epatch-electron_spec_api-crash-reporter-spec_js 
	                      epatch-electron_spec_api-net-log-spec_js 
	                      epatch-electron_spec_api-process-spec_js 
	                      epatch-electron_spec_api-screen-spec_js 
	                      epatch-electron_spec_api-shell-spec_js 
	                      epatch-electron_spec_chromium-spec_js 
	                      epatch-electron_spec_version-bump-spec_js 
	                      epatch-third_party_electron_node_BUILD_gn 
	                      epatch-third_party_electron_node_deps_cares_config_linux_ares_config_h 
	                      epatch-third_party_electron_node_deps_uv_BUILD_gn 
	www/chromium/pkg: DESCR-electron PLIST-electron 

Log message:
add an electronjs (https://electronjs.org/) port;

the electronjs port is going to live inside the chromium port,
as a separate flavor, which is called electron (obviously)
because it requires all of our chromium patches as well and
this way we can avoid having to maintain another subdirectory
with hundreds of patches; this is mostly unconventional but
for me this is the best solution (maintainence-wise)

a couple of patches for the actual electron source are shamelessly
stolen from freebsd

this commit also adds a --no-sandbox flag because electron
cannot use unveil and pledge just yet, i will work on that
in the future

basic stuff works, but don't expect anything fancy yet

--

initial versoin of electron-6.0.3:
Build cross platform desktop apps with JavaScript, HTML, and CSS.

It's easier than you think.

If you can build a website, you can build a desktop app. Electron is a
framework for creating native applications with web technologies like
JavaScript, HTML, and CSS. It takes care of the hard parts so you can
focus on the core of your application.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/22 13:33:42

Modified files:
	math/plplot    : Makefile 

Log message:
Remove BROKEN-powerpc

Looks like our cmake update fix the issue. Reported by Martin Reindl,
confirmed and OK by cwen@ Thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/22 13:33:57

Modified files:
	usr.sbin/ndp   : ndp.c 

Log message:
Replace hand-rolled errors with warn(3)

"Looks good" deraadt millert


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/22 13:37:30

Modified files:
	usr.bin/make   : make.1 pathnames.h 

Log message:
GC some old stuff
okay millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/22 15:31:48

Modified files:
	regress/usr.sbin/rpki-client: test-cert.c test-ip.c test-mft.c 
	                              test-roa.c test-tal.c 

Log message:
Define the new verbose variable also in the regression sources so
that the test programs link with the rpki-client object files again.
from Moritz Buhl


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/22 15:47:27

Modified files:
	regress/usr.bin/ssh/unittests/misc: Makefile 

Log message:
Test did not compile due to missing symbols.  Add source sshbuf-misc.c
to regress as it was done in ssh make file.
from Moritz Buhl


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/22 15:56:06

Modified files:
	sysutils/ruby-puppet/5: Makefile 
	sysutils/ruby-puppet/5/patches: 
	                                patch-lib_puppet_provider_package_openbsd_rb 

Log message:
Seems with update to 5.5.16 I broke package installation with ensure -> present
or installed, basically the default.

Since package providers now can be "targetable", they provide a command
function, so conflicting with the legacy command()


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/22 16:35:29

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
T10/BSR INCITS 503 (SPC-5) is apparently a thing. Update
version_to_spc() to map the formerly reserved value 0x07 in the
INQUIRY version field to 5 (a.k.a. SPC-5), instead of 0 (a.k.a. device
does not claim support for any SPC version).

Tweak comment for 0x03 mapping to note it means compliance to SPC, not
SPC-3. Tweak comment for 0x06 mappoing to specify the ANSI INCITS
513-2005 that documents SPC-4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/22 17:49:17

Modified files:
	multimedia/streamlink: Makefile distinfo 
	multimedia/streamlink/pkg: PLIST 

Log message:
Update to streamlink-1.2.0
Changelog: https://github.com/streamlink/streamlink/releases/tag/1.2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/22 19:18:08

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
add Intel 100 Series LP eMMC/SDXC from fkr
add Intel WHL-U Host ids


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/22 19:19:24

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/22 22:38:55

Modified files:
	libexec/tradcpp: config.h directive.c eval.c files.c macro.c 
	                 main.c place.c place.h version.h 

Log message:
update tradcpp to 0.5.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 00:02:07

Modified files:
	misc/m17n/lib  : Makefile 

Log message:
Missing BDEP on devel/gettext,-tools (xgettext).


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/23 01:01:22

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/08/23 01:09:52

Modified files:
	usr.sbin/smtpd : smtpd.h util.c 

Log message:
res_hnok() is too lenient wrt to acceptable domain name in mail addresses.
replace it with a valid_domainname() check that implements something closer
to RFC 5321, but still usable in real-life.

ok gilles@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/08/23 01:55:20

Modified files:
	usr.sbin/vmctl : main.c 

Log message:
vmctl(8): fix wrong output when using 'vmctl stop'

Fix a wrong output when using 'vmctl stop' without any further arguments.

Patch from Caspar Schutijser, thanks!

ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/23 02:12:38

Modified files:
	graphics/libansilove: Makefile distinfo 

Log message:
Update libansilove to 1.1.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 02:18:12

Modified files:
	sysutils/ruby-puppet/5: Makefile 
	sysutils/ruby-puppet/5/patches: 
	                                patch-lib_puppet_provider_package_openbsd_rb 

Log message:
fix package installation for real


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 02:20:37

Modified files:
	net/ruby-msgpack: Makefile distinfo 

Log message:
update  1.3.0 -> 1.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 02:40:47

Modified files:
	devel/ruby-opt_parse_validator: Makefile distinfo 

Log message:
simple update 1.7.3 -> 1.7.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 02:41:32

Modified files:
	security/ruby-cms_scanner: Makefile distinfo 

Log message:
Update 0.5.4 -> 0.5.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 02:42:13

Modified files:
	security/wpscan: Makefile distinfo 

Log message:
bugfix update 3.6.0 -> 3.6.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 02:48:13

Modified files:
	devel/leatherman: Makefile distinfo 

Log message:
simple update 1.7.0 -> 1.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 02:48:46

Modified files:
	sysutils/facter: Makefile distinfo 
	sysutils/facter/patches: patch-lib_CMakeLists_txt 

Log message:
simple update 3.14.1 -> 3.14.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 03:12:25

Modified files:
	devel/ruby-gettext-setup: Makefile distinfo 

Log message:
simple update 0.30 -> 0.31


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 03:13:06

Modified files:
	devel/ruby-puppet_forge: Makefile distinfo 
	devel/ruby-puppet_forge/pkg: PLIST 

Log message:
simple update 2.2.9 -> 2.3.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/08/23 03:13:43

Modified files:
	sysutils/ruby-r10k: Makefile distinfo 
	sysutils/ruby-r10k/pkg: PLIST 

Log message:
simple update 3.3.0 -> 3.3.1


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/23 03:41:49

Modified files:
	lib/libcrypto/man: X509_new.3 

Log message:
document X509_dup(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 03:48:44

Modified files:
	devel/harfbuzz : Makefile distinfo 

Log message:
Update to harfbuzz-2.6.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 03:59:23

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.25.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 04:01:46

Modified files:
	security/vault : Makefile distinfo 

Log message:
Update to vault-1.2.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 04:02:33

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 04:03:02

Modified files:
	sysutils/nomad : Makefile distinfo 

Log message:
Update to nomad-0.9.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 04:04:19

Modified files:
	security/vault : Makefile 

Log message:
Fix MASTER_SITES0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 05:05:26

Modified files:
	sysutils/consul: Makefile distinfo 

Log message:
Update to consul-1.5.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/23 05:11:18

Modified files:
	regress/sbin/disklabel: 12000.ok 18000.ok 20000.ok 300000.ok 
	                        40000.ok 90000.ok 900000.ok 

Log message:
Default layout for disklabel(8) has changed, /usr became larger.
Adjust expected values in test.
reminded by Moritz Buhl


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/23 05:14:05

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/08/23 06:09:41

Modified files:
	usr.sbin/smtpd : util.c 

Log message:
martijn@ found a regression so revert to the old behavior for now


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/23 06:23:39

Modified files:
	lib/libcrypto/man: OCSP_SERVICELOC_new.3 OCSP_sendreq_new.3 
	                   X509_check_host.3 X509_new.3 Makefile 
Added files:
	lib/libcrypto/man: X509_get1_email.3 

Log message:
document X509_get1_email(3), X509_get1_ocsp(3), X509_email_free(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/23 06:48:14

Modified files:
	usr.bin/find   : find.1 

Log message:
Use -delete in EXAMPLES

-delete is part of POSIX since 2001 and tedu added support for it in 2012,
-print0 however never made it into any standard, so replace this less
portable idiom with its more concise built-in counterpart.

Both -print0 as well as xargs(1) -0 explain and reference each other and
CAVEATS goes into detail with problematic file names, so no information
is lost by replacing this particular example.

While here, make the -exec example rm(1) multiple files at once.

Feedback from claudio tb
Input and OK millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/23 06:54:00

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.11
- add 'got tag' command
- add 'got cat' command
- support quick cancellation in 'tog blame' view
- fix search prompt location in split-screen tog views


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/23 07:05:42

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 

Log message:
explain in a simpler way when the default is -r and when it is -s;
triggered by a very different patch from Rashad Kanavath;
OK florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/23 09:07:20

Modified files:
	x11/i3         : Makefile distinfo 
	x11/i3/patches : patch-Makefile_in patch-configure 
	                 patch-etc_config patch-etc_config_keycodes 
	                 patch-i3-dmenu-desktop patch-i3-nagbar_main_c 
	                 patch-libi3_get_exe_path_c 
	                 patch-man_i3-config-wizard_man 
	                 patch-man_i3-dump-log_man 
	                 patch-man_i3-nagbar_man patch-man_i3_man 
	                 patch-parser-specs_config_spec 
	                 patch-src_bindings_c 
	                 patch-src_config_directives_c 
	                 patch-src_config_parser_c 
	                 patch-testcases_t_201-config-parser_t 
Removed files:
	x11/i3/patches : patch-src_manage_c 

Log message:
update to i3-4.17


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/23 09:18:13

Modified files:
	lib/libcrypto/man: RSA_new.3 

Log message:
document RSAPrivateKey_dup(3) and RSAPublicKey_dup(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/23 09:34:50

Modified files:
	www            : Makefile 

Log message:
hook electron up to the builds


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/08/23 09:39:12

Modified files:
	usr.sbin/smtpd : spfwalk.c 

Log message:
only process records of the expected type.
fix an issue where CNAME records generate bogus results.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/23 09:41:59

Modified files:
	usr.sbin/ndp   : ndp.8 ndp.c 

Log message:
Honour -n when setting entries

Just like avoiding reverse lookups when printing entries or not resolving
hostnames when deleting entries, make -n effect setting entries as well;
just like pfctl(8)'s -N from which the manual wording was copied verbatim.

OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/23 09:49:58

Modified files:
	benchmarks/speedtest-cli: Makefile distinfo 

Log message:
update to speedtest-cli-2.1.2


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/23 10:06:43

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/23 12:35:14

Modified files:
	devel/ocaml-biniou: Makefile 
	devel/ocaml-yojson: Makefile 

Log message:
Add correct RUN_DEPENDencies to devel/ocaml-{yojson,biniou}


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/23 13:05:02

Modified files:
	usr.sbin/smtpd : parse.y 

Log message:
Assign the filter name to the proc name in the case of proc_exec.
This gives a more intuitive log-entry for filter stderr output and gets rid
of the last_dynproc_id.

"nice" gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/23 14:18:04

Modified files:
	audio/chromaprint: Makefile distinfo 
	audio/chromaprint/patches: patch-cmake_modules_FindGTest_cmake 
	                           patch-tests_CMakeLists_txt 
	audio/chromaprint/pkg: DESCR 
Added files:
	audio/chromaprint/patches: patch-tests_test_utils_cpp 
	                           patch-tests_test_utils_h 
Removed files:
	audio/chromaprint/patches: patch-examples_fpcalc_c 

Log message:
chromaprint: update to 1.4.3, enable all tests again
Changelog:
https://github.com/acoustid/chromaprint/releases/tag/v1.4.3

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/23 14:18:13

Modified files:
	sysutils/freeipmi: Makefile distinfo 
	sysutils/freeipmi/patches: patch-common_miscutil_network_c 
	                           patch-common_portability_freeipmi-portability_h 
	                           patch-config_ac_lsh_gcc_attributes_m4 
	                           patch-etc_Makefile_in 
	                           patch-libfreeipmi_Makefile_in 
	                           patch-libfreeipmi_driver_ipmi-kcs-driver_c 
	                           patch-libfreeipmi_driver_ipmi-openipmi-driver_c 
	                           patch-libfreeipmi_driver_ipmi-semaphores_h 
	                           patch-libipmidetect_Makefile_in 
	                           patch-man_Makefile_in 

Log message:
update to freeipmi-1.6.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/23 14:20:03

Modified files:
	audio/py-acoustid: Makefile 
	audio/picard   : Makefile 

Log message:
Bump consumers REVISIONs following the audio/chromaprint update.

Hints and OK sthen@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/08/23 19:15:31

Modified files:
	xserver/hw/xfree86/dri2/pci_ids: radeonsi_pci_ids.h 

Log message:
remove duplicate ids added by patch in xserver 1.20.5 update
ok matthieu@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/08/23 19:20:16

Modified files:
	xserver/hw/xfree86/dri2/pci_ids: i965_pci_ids.h 

Log message:
sync i965 pci ids with xserver git master
ok matthieu@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/23 19:39:55

Modified files:
	sys/dev/pci/drm/i915: i915_pci.c 
	sys/dev/pci/drm/include/drm: i915_pciids.h 

Log message:
drm/i915/cml: Add CML PCI IDS

From Anusha Srivatsa
a7b4deeb02b978bc59808cb13c93ba84f01023a4 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/23 19:43:13

Modified files:
	sys/dev/pci/drm/i915: i915_drv.c i915_drv.h 

Log message:
drm/i915/cml: Introduce Comet Lake PCH

From Anusha Srivatsa
729ae330a0f2e270db2ca70c06a83d0aa2776288 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/23 19:45:59

Modified files:
	sys/dev/pci/drm/i915: i915_devlist.h 

Log message:
sync devlist


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/08/23 20:12:17

Modified files:
	lib/mesa/include/pci_ids: i965_pci_ids.h 
	lib/mesa/src/intel/dev: gen_device_info.c 

Log message:
intel: Add support for Comet Lake

From Anuj Phogat
82f6a746e8b47fb6e3f96d7f5f69973f50eec9ca in mesa master


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/23 20:13:55

Modified files:
	sys/scsi       : safte.c 

Log message:
KNF tweak.


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/08/23 23:11:26

Modified files:
	cad/qcad       : Makefile 
Added files:
	cad/qcad/patches: 
	                  patch-src_3rdparty_opennurbs_opennurbs_zlib_cpp 
	                  patch-src_3rdparty_opennurbs_opennurbs_zlib_h 
	                  patch-src_scripting_ecmaapi_ecmaapi_pro 

Log message:
Fix build on sparc64

OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/08/24 00:37:13

Modified files:
	net/nmap       : Makefile distinfo 
	net/nmap/patches: patch-Makefile_in patch-libnetutil_netutil_cc 
	                  patch-scan-engine_cc patch-zenmap_setup_py 
	net/nmap/pkg   : PLIST-main PLIST-zenmap 
Removed files:
	net/nmap/patches: patch-libpcap_pcap-bpf_c patch-service_scan_cc 

Log message:
Update to version 7.80
from David Carlier (maintainer) with tweaks by me


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/24 01:27:20

Modified files:
	net/bitcoin    : Makefile distinfo 
	net/bitcoin/patches: patch-configure_ac 
	net/bitcoin/pkg: PLIST 

Log message:
Update bitcion to 0.18.1

Release notes:
https://github.com/bitcoin/bitcoin/blob/master/doc/release-notes/release-notes-0.18.1.md


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/24 01:31:14

Modified files:
	fonts/font-awesome: Makefile distinfo 

Log message:
Update font-awesome to 5.10.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/08/24 01:46:57

Modified files:
	databases/sqlitebrowser: Makefile distinfo 

Log message:
Update sqlitebrowser to 3.11.2
from Caspar Schutijser (maintainer) with tweaks by me


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/24 01:56:34

Modified files:
	www/chromium   : Makefile 

Log message:
fix sqlports


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/24 02:44:05

Modified files:
	devel/py-tz    : Makefile distinfo 

Log message:
update to py-tz-2019.2, from wen heping


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/24 02:44:06

Modified files:
	multimedia/gstreamer1: Makefile.inc 
	multimedia/gstreamer1/core: Makefile 
	multimedia/gstreamer1/mm: Makefile 
	multimedia/gstreamer1/plugins-bad: Makefile 
	multimedia/gstreamer1/plugins-base: Makefile 
	multimedia/gstreamer1/plugins-good: Makefile 
	multimedia/gstreamer1/plugins-libav: Makefile 
	multimedia/gstreamer1/plugins-ugly: Makefile 
	multimedia/gstreamer1/py-gstreamer: Makefile 

Log message:
Remove the MODGCC4_ARCHS bit. PowerPC already uses ports-gcc even without it.
It is redundant.
Remove base-gcc from COMPILER.
from Brad

Bump to be on the safe side.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/24 02:46:35

Modified files:
	multimedia/gstreamer1/plugins-good: Makefile 
	multimedia/gstreamer1/plugins-good/pkg: PLIST-main 

Log message:
Disable the mpg123 MP3 decoder. FFmpeg provides a better decoder
(plugins-libav).
Also remove the theora / vorbis WANTLIB that no longer are used by
this GSt module

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/24 05:22:17

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-base_base_paths_posix_cc 

Log message:
unbreak by not calling kvm becuase pledge does not allow it


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/24 05:36:32

Modified files:
	www/chromium/patches: epatch-third_party_electron_node_BUILD_gn 

Log message:
unbreak build by not searching for libcares with pkg-config


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/24 07:09:39

Modified files:
	sbin/iked      : ikev2.c ikev2_pld.c 

Log message:
Fix conflict when IKE SA and Child SA rekeying happen at the same time.

If the IKE SA changes during an ongoing rekey exchange, messages may be
lost because they were inteded for the old SA. An iked instance that is
waiting for a rekey Child SA response will no longer reply to IKE SA
rekey requests until the ongoing Child SA exchange has completed or
timed out.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/24 07:24:49

Modified files:
	sbin/iked      : iked.conf.5 

Log message:
Clarify "protected-subnet" option.

Explain the use of the option (according to the RFC) and make clear it is
not usually needed for subnets specified in "from" and "to" options.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/24 07:41:06

Modified files:
	sys/scsi       : scsiconf.c scsiconf.h 

Log message:
Simply logic of detaching things. scsi_detach_bus() folded into
scsi_detach(), scsi_detach_target() and scsi_detach_lun() become
simple wrappers of scsi_detach() invocations.

No intentional functional change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/24 09:39:26

Modified files:
	www/chromium   : Makefile 

Log message:
add build dependency on libnotify


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/24 10:38:09

Modified files:
	lang/ocaml-camlp5: Makefile distinfo 
Removed files:
	lang/ocaml-camlp5/patches: patch-configure patch-etc_Makefile 

Log message:
Upgrade and take maintainership

ok bcallah@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/08/24 10:39:33

Modified files:
	.              : 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/08/24 10:50:27

Modified files:
	lang/compcert  : Makefile 
	lang/compcert/patches: patch-configure 

Log message:
Patch to configure against coq 8.10+beta2

ok daniel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/08/24 12:39:45

ports/security/keybase/files

Update of /cvs/ports/security/keybase/files
In directory cvs.openbsd.org:/tmp/cvs-serv29385/files

Log Message:
Directory /cvs/ports/security/keybase/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/08/24 12:40:59

Modified files:
	security/keybase: Makefile distinfo 
	security/keybase/patches: 
	                          patch-go_kbfs_libkbfs_disk_limits_unix_go 
	                          patch-go_vendor_gopkg_in_src_d_go_git_v4_worktree_bsd_go 
	security/keybase/pkg: PLIST 
Added files:
	security/keybase/files: run_keybase 
	security/keybase/patches: 
	                          patch-go_kbfs_libkbfs_disk_limits_openbsd_go 

Log message:
Bump keybase to 4.3.2.

- Fix readme.
- Add 'run_keybase' for easy startup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/08/24 14:13:01

Log message:
    py-rfc6555 implements the Happy Eyeballs algorithm
    
    inputs and patches from kmos@
    OK kmos@ sthen@
    
    Status:
    
    Vendor Tag:	remi
    Release Tags:	remi_20190824
    
    N ports/devel/py-rfc6555/Makefile
    N ports/devel/py-rfc6555/distinfo
    N ports/devel/py-rfc6555/pkg/DESCR
    N ports/devel/py-rfc6555/pkg/PLIST
    N ports/devel/py-rfc6555/patches/patch-rfc6555_py
    N ports/devel/py-rfc6555/patches/patch-setup_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/24 14:14:06

Modified files:
	mail/rss2email : Makefile distinfo 

Log message:
update to rss2email-2.71, from wen heping, plus add FIX_EXTRACT_PERMISSIONS=Yes


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/08/24 14:18:18

Modified files:
	devel          : Makefile 

Log message:
+py-rfc6555


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/08/24 14:40:05

Modified files:
	devel          : Makefile 

Log message:
put py-rfc6555 where it belogs


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/08/24 14:46:30

Modified files:
	plan9/drawterm : Makefile 
Added files:
	plan9/drawterm/patches: patch-posix-386_Makefile 

Log message:
Don't hardcode gcc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/24 17:16:25

Modified files:
	databases/sqlports/files: Var.pm 

Log message:
get things to work even if DESCR is not an absolute path.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/24 21:40:45

Modified files:
	usr.sbin/smtpd : parse.y 

Log message:
Allow for "port smtp" and "port smtps" on listen statement.
This was previously not allowed, because both smtp and smtps are keywords.
Since port's argument is non-optional and smtp and smtps are common enough
there is no chance for misinterpretation.

Problem reported by phatbuckett <at> gmail <dot> com
OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/25 00:20:22

Modified files:
	lib/libcrypto/man: Makefile 
Added files:
	lib/libcrypto/man: CRYPTO_memcmp.3 

Log message:
import the CRYPTO_memcmp(3) manual from OpenSSL 1.1.1,
still under a free license, tweaked by me


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/25 01:30:37

Modified files:
	devel/py-pip   : Makefile distinfo 
	devel/py-pip/pkg: DESCR PLIST 
Added files:
	devel/py-pip/patches: patch-docs_html_conf_py 
Removed files:
	devel/py-pip/patches: patch-docs_conf_py 

Log message:
Update devel/py-pip from 9.0.3 -> 19.1.1

This brings this up to a release from this year

OK bket@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	miko@cvs.openbsd.org	2019/08/25 03:16:04

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
avoid checking s->spf twice if it is above maximum in uaudio_adjspf(); ok ratchov@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/25 03:59:18

Modified files:
	print/cups     : Makefile distinfo 
	print/cups/patches: patch-Makedefs_in patch-backend_ipp_c 
	                    patch-config-scripts_cups-common_m4 
	                    patch-config-scripts_cups-compiler_m4 
	                    patch-config-scripts_cups-sharedlibs_m4 
	                    patch-cups_Makefile patch-notifier_Makefile 
	                    patch-scheduler_Makefile 
	                    patch-scheduler_auth_c patch-scheduler_ipp_c 
	                    patch-test_run-stp-tests_sh 
	print/cups/pkg : PLIST-main 
Added files:
	print/cups/patches: patch-cups_getifaddrs-internal_h 
Removed files:
	print/cups/patches: patch-cups-config_in patch-filter_Makefile 

Log message:
Update to cups-2.3.0.
- tested in a bulk
- print tested on Canon iR1435, Samsung SL-M2835DW, HP Officejet 7500 E910
and Canon iR-ADV C3320


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/25 06:00:03

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.701.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/25 06:02:10

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-lib_googlecloudsdk_core_docker_client_lib_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-259.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/25 06:02:59

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_debugfs.c 

Log message:
drm/amdgpu: fix a potential information leaking bug

From Wang Xiayang
68340db992f6704b86a27e3f9f91d44ce1c8cb31 in linux 4.19.y/4.19.68
929e571c04c285861e0bb049a396a2bdaea63282 in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/25 06:03:27

Log message:
    import of p5-FCGI-0.78:
    
    The FCGI module for perl5 which enables CGI scripts to take
    advantage of servers that are FastCGI-enabled.
    
    ok ajacoutot@, espie@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20190825
    
    N ports/www/p5-FCGI/Makefile
    N ports/www/p5-FCGI/distinfo
    N ports/www/p5-FCGI/pkg/DESCR
    N ports/www/p5-FCGI/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/25 06:04:05

Modified files:
	www            : Makefile 

Log message:
+p5-FCGI


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/25 06:05:12

Modified files:
	www/fcgi       : Makefile 
	www/fcgi/pkg   : PLIST 

Log message:
add run dependency on www/p5-FCGI and remove the internally shipped
perl FCGI module which is super old and unmaintained

ok ajacoutot@, espie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/25 06:06:28

Modified files:
	infrastructure/db: user.list 

Log message:
add a _rt user for www/rt


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/25 06:07:49

Modified files:
	www/rt         : Makefile 
	www/rt/pkg     : PLIST rt.rc 

Log message:
use the _rt user for the daemon and make sure that the rc script's pexp
catches both the standalone and fcgi mode


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/08/25 06:22:04

Modified files:
	www/nginx      : Makefile distinfo 
Added files:
	www/nginx/pkg  : PLIST-rtmp DESCR-rtmp 

Log message:
Add rtmp module for realtime rtmp/hls/mjpeg video streaming or relaying
ok robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/25 08:11:41

Modified files:
	lib/libcrypto/man: ECDSA_SIG_new.3 

Log message:
Correctly document the return values of i2d_ECDSA_SIG(3) and
d2i_ECDSA_SIG(3); triggered by OpenSSL commit da4ea0cf Aug 5 16:13:24
2019 +0100, but solved differently.  While here, adjust argument
placeholders and wording to our usual conventions, and don't try
to reiterate the complicated contents of ASN1_item_d2i(3) here.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/25 09:17:19

Modified files:
	lib/libcrypto/man: RIPEMD160.3 

Log message:
typo in function argument type;
from Jan Macku <jamacku at redhat dot com>
via OpenSSL commit a9b9d265 Jan 30 16:09:50 2019 +0100


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/25 09:39:10

Modified files:
	lib/libcrypto/man: X509_STORE_CTX_get_error.3 

Log message:
fix reversed meaning of error codes;
from Martin Ukrop <mukrop at mail dot muni dot cz>
via OpenSSL commit bb00b040 Aug 5 14:14:54 2019 +0200


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/25 09:50:21

Modified files:
	etc            : unbound.conf 

Log message:
space -> tabs

ok deraadt@ kn@


CVSROOT:	/cvs
Module name:	www
Changes by:	naddy@cvs.openbsd.org	2019/08/25 10:04:03

Modified files:
	faq            : current.html 

Log message:
typos in 20190821 entry


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/25 10:23:36

Modified files:
	usr.sbin/ndp   : ndp.c 

Log message:
Merge common parsing route into new parse_host() helper

This chops 18 lines off while unifying the code, now that set(), get()
as well as delete() all parse hostnames and honour -n the same way.

OK deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/25 11:08:20

Modified files:
	lib/libcrypto/man: EVP_DigestInit.3 Makefile evp.3 
Added files:
	lib/libcrypto/man: EVP_sm3.3 EVP_whirlpool.3 

Log message:
document EVP_sm3(3) and EVP_whirlpool(3), loosely based on the
OpenSSL 1.1.1 pages, which are still under a free license


CVSROOT:	/cvs
Module name:	src
Changes by:	pamela@cvs.openbsd.org	2019/08/25 12:46:40

Modified files:
	sys/kern       : kern_pledge.c 

Log message:
Add SIOCDIFADDR_IN6 to the wroute pledge to allow removal of IPv6 addresses
Needed for future slaacd(8) improvements

OK florian@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/25 13:06:36

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCheck.pm 

Log message:
synch with other changes. bug noticed by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/25 13:24:00

Modified files:
	lib/libcrypto/bn: bn.h 
	lib/libcrypto/man: BN_generate_prime.3 

Log message:
Change generating and checking of primes so that the error rate of
not being prime depends on the intended use based on the size of
the input.  For larger primes this will result in more rounds of
Miller-Rabin.  The maximal error rate for primes with more than
1080 bits is lowered to 2^-128.
Patch from Kurt Roeckx <kurt@roeckx.be> and Annie Yousar
via OpenSSL commit feac7a1c Jul 25 18:55:16 2018 +0200,
still under a free license.
OK tb@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/25 14:10:38

Modified files:
	x11/qt5/qt3d   : Makefile 
Added files:
	x11/qt5/qt3d/patches: 
	                      patch-src_3rdparty_assimp_code_glTFAsset_inl 

Log message:
qt3d: fix the build with ports-gcc. There was a namespace issue in
the bundled assimp.

OK jca@, "go ahead" rsadowski@


CVSROOT:	/cvs
Module name:	www
Changes by:	solene@cvs.openbsd.org	2019/08/25 14:21:39

Modified files:
	faq            : faq10.html 

Log message:
Add mention for aarch64 -stable packages

Thanks Alessandro Gallo for spotting it and the diff.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/25 14:29:40

Modified files:
	graphics/netpbm: Makefile distinfo 
	graphics/netpbm/patches: patch-common_mk patch-lib_Makefile 
	graphics/netpbm/pkg: PLIST 
Removed files:
	graphics/netpbm/patches: patch-generator_pamtris_input_c 

Log message:
Update to 10.87.01.
Adds pamfind, pambrighten, pamhue.  Numerous bug fixes.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/25 14:39:46

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/25 15:43:39

Modified files:
	x11/kde4/kopete: Makefile 
Added files:
	x11/kde4/kopete/patches: 
	                         patch-protocols_jabber_libiris_src_xmpp_base64_base64_cpp 

Log message:
kopete: fix the build on archs where char is unsigned by default (arm, ppc).
While here, move HOMEPAGE to https.

OK rsadowski@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/25 16:39:49

Modified files:
	faq            : faq10.html 

Log message:
use "arm64" like on the rest of the page


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 16:42:28

Log message:
    Import devel/p5-Exception-Class-TryCatch
    
    Exception::Class::TryCatch provides syntactic sugar for use with
    Exception::Class using the familiar keywords try and catch. Its
    primary objective is to allow users to avoid dealing directly with
    $@ by ensuring that any exceptions caught in an eval are captured
    as Exception::Class objects, whether they were thrown objects to
    begin with or whether the error resulted from die. This means that
    users may immediately use isa and various Exception::Class methods
    to process the exception.
    
    From Peter Ezetta <protocall7 () gmail ! com>
    OK cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190825
    
    N ports/devel/p5-Exception-Class-TryCatch/distinfo
    N ports/devel/p5-Exception-Class-TryCatch/Makefile
    N ports/devel/p5-Exception-Class-TryCatch/pkg/PLIST
    N ports/devel/p5-Exception-Class-TryCatch/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 16:43:23

Modified files:
	devel          : Makefile 

Log message:
+p5-Exception-Class-TryCatch


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 16:47:33

Modified files:
	textproc/p5-LaTeXML: Makefile distinfo 
	textproc/p5-LaTeXML/pkg: PLIST 

Log message:
Udate textproc/p5-LaTeXML to 0.8.4

Original patch from wen heping <wenheping2000 () hotmail ! com>
Dependency cleanup by me
Please go ahead pirofti@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 16:55:45

Log message:
    Import www/p5-HTTP-Entity-Parser
    
    HTTP::Entity::Parser is PSGI compliant HTTP Entity parser. This module
    also has compatibility with HTTP::Body. Unlike HTTP::Body, HTTP::Entity::Parser
    reads HTTP entity from PSGI's env $env->{'psgi.input'} and parse it.
    This module support application/x-www-form-urlencoded, multipart/form-data
    and application/json.
    
    From  wen heping <wenheping2000 () hotmail ! com>
    OK cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190825
    
    N ports/www/p5-HTTP-Entity-Parser/Makefile
    N ports/www/p5-HTTP-Entity-Parser/distinfo
    N ports/www/p5-HTTP-Entity-Parser/pkg/DESCR
    N ports/www/p5-HTTP-Entity-Parser/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 16:56:10

Modified files:
	www            : Makefile 

Log message:
+p5-HTTP-Entity-Parser


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 17:06:19

Log message:
    Imort p5-Test2-Plugin-NoWarnings
    
    Loading this plugin causes your tests to fail if there any
    warnings while they run. Each warning generates a new failing
    test and the warning content is outputted via diag.
    
    From wen heping <wenheping2000 () hotmail ! com>
    Cleanup and OK cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190825
    
    N ports/devel/p5-Test2-Plugin-NoWarnings/Makefile
    N ports/devel/p5-Test2-Plugin-NoWarnings/distinfo
    N ports/devel/p5-Test2-Plugin-NoWarnings/pkg/DESCR
    N ports/devel/p5-Test2-Plugin-NoWarnings/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 17:07:48

Log message:
    Import devel/p5-Specio
    
    The Specio distribution provides classes for representing type constraints and
    coercion, along with syntax sugar for declaring them.
    
    From wen heping <wenheping2000 () hotmail ! com>
    Cleanup and OK cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190825
    
    N ports/devel/p5-Specio/Makefile
    N ports/devel/p5-Specio/distinfo
    N ports/devel/p5-Specio/pkg/DESCR
    N ports/devel/p5-Specio/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 17:09:01

Log message:
    Import devel/p5-Params-ValidationCompiler
    
    Create a customized, optimized, non-lobotomized, uncompromised, and
    thoroughly specialized parameter checking subroutine.
    
    From wen heping <wenheping2000 () hotmail ! com>
    Cleanup and OK cwen@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190825
    
    N ports/devel/p5-Params-ValidationCompiler/Makefile
    N ports/devel/p5-Params-ValidationCompiler/distinfo
    N ports/devel/p5-Params-ValidationCompiler/pkg/DESCR
    N ports/devel/p5-Params-ValidationCompiler/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/25 17:10:03

Modified files:
	devel          : Makefile 

Log message:
+p5-Params-ValidationCompiler +p5-Specio +p5-Test2-Plugin-NoWarnings


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/08/26 00:52:51

Modified files:
	usr.sbin/pkg_add/OpenBSD: PkgCheck.pm 

Log message:
also pass the signature style


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/08/26 00:58:08

Modified files:
	www/nginx      : Makefile distinfo 

Log message:
rtmp module distfile was incorrectly renamed and was missing the version in its
filename.

Diff from Mikolaj Kucharski, thank you.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/26 01:59:02

Modified files:
	lib/libcrypto/man: ASN1_STRING_length.3 

Log message:
document ASN1_OCTET_STRING_cmp(3), ASN1_OCTET_STRING_dup(3), and
ASN1_OCTET_STRING_set(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/26 03:10:22

Modified files:
	sys/arch/arm64/arm64: machdep.c 
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amluart.c 

Log message:
Add amluart(4), a driver for the UARTs found on various Amlogic SoCs.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/26 03:16:39

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : amluart.4 

Log message:
amluart(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/08/26 03:19:12

Modified files:
	sys/net        : pf.c 

Log message:
pf.conf "set timeout interval 1" causes kernel crash
(bug reported and fix tested by Kor)

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/26 03:22:27

Modified files:
	sys/dev/ofw    : ofw_gpio.c 

Log message:
Implement GPIO hogging.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/26 03:42:31

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amlreset.c 

Log message:
Add amlreset(4), a driver to support reset signal controller blocks on
Amlogic SoCs.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/26 03:44:26

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : amlreset.4 

Log message:
amlreset(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/26 03:53:31

Modified files:
	sys/net80211   : ieee80211_node.c 

Log message:
remove redundant assignment to ic_curmode

This assignment to ic_curmode is redundant because it already occurs
inside ieee80211_setmode(), and channel information in selbs and ni
is equivalent after node_copy().

ok mpi@ kevlo@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/26 05:05:54

Modified files:
	sys/dev/pci    : if_msk.c 

Log message:
remove some debug cruft that i should have removed after the addr64 stuff


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/26 05:24:03

Modified files:
	sys/dev/fdt    : dwpcie.c 

Log message:
Remove unnecessary retrieval of the GPC regmap.  We don't need it since
the imxgpc(4)'s power domain framework will take care of the registers
and thus dwpcie(4) hasn't touched the registers itself anyway.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/26 05:41:31

Modified files:
	lib/libcrypto/man: Makefile ASN1_TYPE_get.3 
Added files:
	lib/libcrypto/man: ASN1_put_object.3 

Log message:
document ASN1_put_object(3) and ASN1_put_eoc(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ratchov@cvs.openbsd.org	2019/08/26 05:43:58

Modified files:
	audio/midish   : Makefile distinfo 

Log message:
update to 1.3.0

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	mpi@cvs.openbsd.org	2019/08/26 06:30:49

Log message:
    Import py-xlib-0.25, dependency for upcoming x11/gnome/accerciser
    
    The Python X Library is a complete X11R6 client-side implementation
    written in pure Python. It can be used to write low-level X client
    applications in Python.
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	mpi
    Release Tags:	mpi_20190826
    
    N ports/x11/py-xlib/Makefile
    N ports/x11/py-xlib/distinfo
    N ports/x11/py-xlib/pkg/DESCR
    N ports/x11/py-xlib/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	mpi@cvs.openbsd.org	2019/08/26 06:41:33

Modified files:
	x11            : Makefile 

Log message:
Enter py-xlib and its legacy python flavor


CVSROOT:	/cvs
Module name:	src
Changes by:	pirofti@cvs.openbsd.org	2019/08/26 06:41:47

Modified files:
	sys/arch/amd64/include: pctr.h 

Log message:
Remove rdtsc macro.

This is legacy code and was probably used instead of the desried
inline'd function in cpufunc.h.

OK deraadt@, kettenis@.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/26 06:45:27

Modified files:
	lib/libcrypto/man: ASN1_INTEGER_get.3 

Log message:
document i2a_ASN1_INTEGER(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	mpi@cvs.openbsd.org	2019/08/26 06:49:38

Log message:
    Import Accerciser 3.33.4
    
    Accerciser is an interactive Python accessibility explorer for the GNOME
    desktop. It uses AT-SPI2 to inspect and control widgets, allowing you to
    check if an application is providing correct information to assistive
    technologies and automated test frameworks. Accerciser has a simple
    plugin framework which you can use to create custom views of
    accessibility information.
    
    ok ajacoutot@
    
    Status:
    
    Vendor Tag:	mpi
    Release Tags:	mpi_20190826
    
    N ports/x11/gnome/accerciser/Makefile
    N ports/x11/gnome/accerciser/distinfo
    N ports/x11/gnome/accerciser/pkg/DESCR
    N ports/x11/gnome/accerciser/pkg/PLIST
    N ports/x11/gnome/accerciser/patches/patch-configure
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	mpi@cvs.openbsd.org	2019/08/26 06:51:05

Modified files:
	x11/gnome      : Makefile 

Log message:
+accerciser


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/26 07:26:47

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.12

- add support for path arguments to 'got cat'
- make 'got log -p path' display patches for the specified path only
- allow creating branches based on commit IDs
- prevent deletion of the work tree's current branch
- detect and ignore Git submodules
- indicate non-existent path arguments in 'got status'
- make 'got diff' error for non-existent path arguments
- make 'got tag -l' list tags by time stamp in descending order
- fix reading pack index files with large offsets (patch by Hiltjo Posthuma)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/26 07:37:32

ports/www/chromium/chromium

Update of /cvs/ports/www/chromium/chromium
In directory cvs.openbsd.org:/tmp/cvs-serv12318/chromium

Log Message:
Directory /cvs/ports/www/chromium/chromium added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/26 07:37:39

ports/www/chromium/chromium/pkg

Update of /cvs/ports/www/chromium/chromium/pkg
In directory cvs.openbsd.org:/tmp/cvs-serv40539/chromium/pkg

Log Message:
Directory /cvs/ports/www/chromium/chromium/pkg added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/26 07:37:45

ports/www/chromium/electron

Update of /cvs/ports/www/chromium/electron
In directory cvs.openbsd.org:/tmp/cvs-serv56091/electron

Log Message:
Directory /cvs/ports/www/chromium/electron added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/26 07:37:51

ports/www/chromium/electron/pkg

Update of /cvs/ports/www/chromium/electron/pkg
In directory cvs.openbsd.org:/tmp/cvs-serv77234/electron/pkg

Log Message:
Directory /cvs/ports/www/chromium/electron/pkg added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/26 09:23:02

Modified files:
	sys/dev/usb    : if_umb.c if_umb.h 

Log message:
Replace umb_ntop() with sockaddr_ntop() which does almost the same thing.
Also change the storage type for the DNS addresses to struct in_addr since
that is more convinient for userland. This includes some minor other cleanup.
OK gerhard@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/08/26 09:23:49

Modified files:
	sbin/ifconfig  : ifconfig.c 

Log message:
Adjust umb DNS printing code since the type of those addresses changed.
OK gerhard@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/26 10:35:41

Modified files:
	usr.bin/tmux   : cmd-swap-window.c 

Log message:
Fix swap-window -d to work as intended, GitHub issue 1879 from Sam Stuewe.


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/26 10:41:08

Modified files:
	sbin/iked      : parse.y 

Log message:
Fix file descriptor leak in config parser. Inspired by bgpd parse.y.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/26 10:51:38

Modified files:
	infrastructure/lib/DPB/Job: Port.pm 

Log message:
let junk log to each affected port
okay sthen@ for the version without a switch to turn it off.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/08/26 11:35:22

Modified files:
	sysutils/ansible: Makefile distinfo 
	sysutils/ansible/pkg: PLIST-main 

Log message:
update to ansible-2.8.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/08/26 11:39:02

Modified files:
	security/py-cryptodome: Makefile distinfo 
	security/py-cryptodome/pkg: PLIST 

Log message:
update to py-cryptodome-3.8.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	pamela@cvs.openbsd.org	2019/08/26 11:51:38

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Add removal of py2 port as obsolete package reason
suggestion danj, input juanfra
OK kn, espie, kmos


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/26 12:47:53

Modified files:
	sys/netinet6   : frag6.c ip6_var.h 

Log message:
Do not use the flow of the first fragment to store ECN information.
Handle the ECN in the fragment queue.
Reported-by: syzbot+0aa80b25e9041001cac8@syzkaller.appspotmail.com
fix from FreeBSD; OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	pamela@cvs.openbsd.org	2019/08/26 12:50:04

Modified files:
	sbin/slaacd    : engine.c 

Log message:
free(3) style functions should accept NULL and do nothing
OK florian


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/26 12:53:58

Modified files:
	sbin/pfctl     : parse.y 
	sbin/ipsecctl  : parse.y 

Log message:
Fix file descriptor leak due to popfile() never closing the main config file.

The fix is the same as for other parse.y files in the tree (see bgpd(8) or
unwind(8))

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/08/26 12:56:29

Modified files:
	sys/kern       : vfs_subr.c vfs_vnops.c vfs_vops.c 
	sys/sys        : vnode.h 

Log message:
When a thread tries to exclusively lock a vnode, the same thread must
ensure that any other thread currently trying to acquire the underlying
vnode lock has observed that the same vnode is about to be exclusively
locked. Such threads must then sleep until the exclusive lock has been
released and then try to acquire the lock again. Otherwise, exclusive
access to the vnode cannot be guaranteed.

Thanks to naddy@ and visa@ for testing; ok visa@

Reported-by: syzbot+374d0e7e2400004957f7@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/26 12:56:30

Modified files:
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/26 13:43:45

Modified files:
	x11/icewm      : Makefile distinfo 
	x11/icewm/patches: patch-lib_Makefile_in 
	                   patch-man_icewm-preferences_pod 
	                   patch-src_default_h patch-src_icesh_cc 
	                   patch-src_yapp_cc 
	x11/icewm/pkg  : PLIST 
Removed files:
	x11/icewm/patches: apm-patch-src_aapm_cc 

Log message:
Update to icewm-1.6.1
Changelog: https://github.com/ice-wm/icewm/releases
Drop myself as maintainer
macppc testing and ok cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/26 14:18:12

Modified files:
	audio/mpg123   : Makefile distinfo 

Log message:
update to 1.25.12: OSS Fuzz fixes for the ID3v2 parser


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/08/26 16:22:14

Modified files:
	usr.bin/rsync  : uploader.c 

Log message:
replace a mmap() with pread(). The mmap() is not needed, the file is
read sequentially anyway, (hash-sized) block by block. This avoids
counting potentially large files against the memory limits of the
process. Problem reported by Jan Stary, thanks.
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/26 16:43:01

Modified files:
	audio/mpg123   : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
security update to 1.25.12 for a number of OSS-Fuzz fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/08/26 17:35:24

Modified files:
	devel/git      : Makefile distinfo 
	devel/git/patches: patch-config_mak_uname 
	devel/git/pkg  : PLIST-main 

Log message:
Update to git 2.23.0

Lots of fixes and improvements, new git-switch(1) and git-restore(1):
https://raw.githubusercontent.com/git/git/master/Documentation/RelNotes/2.23.0.txt

`WANTLIB += charset' comes through `git fast-export/import' now "handl[ing]
commits with log messages in encoding other than UTF-8 better".

Add myself as second maintainer while here.

OK benoit


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/08/26 17:38:13

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
Assign and export variables at once

No need for separate lines as already done elsewhere;


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/26 18:33:57

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
make a start at reporting qsfp monitor values.

i have some qsfp DACs and a couple of optics, and they're all
terrible, so this is about as far as i can go for now. at least the
code will be robust in the face of terrible modules though.

the DACs are pretty dumb and basically report that they're DACs
with some strings. this code just prints that they're DACs with
strings now.

modules are supposed to be able to report overall temperature and
voltage, and optics can report tx and rx values for the 4 different
signal lanes they're supposed to provide. interestingly the current
values are always reported in the lower page, but thresholds are
reported in page 3, but not all modules support page switching.
devices are supposed to say whether they can switch pages, but i
have one that does say it can switch but then doesn't. anyway, the
take away is that it is therefore possible for a module to report
values without also
reporting thresholds.

this sets the code up to report the values on their own if we can't
query page 3 for any reason.

if the temp sensor value looks bogus (ie, 0x0000 or 0xffff), assume
the monitor values are bogus and bail early.

hopefully i can find a module soon that supports multiple signal
lanes and actually reports their values and thresholds for them.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/26 18:40:26

Modified files:
	sys/dev/pci    : if_ixl.c 

Log message:
make SIOCGIFSFFPAGE support QSFP modules better.

basically the "read phy register" admin op uses the "address" field
on SFP modules for the i2c address, but uses that same field for
the "sff page number" for QSFP. this wraps the calls to the admin
op with sfp and qsfp specific code, and chooses between them depending
on what type of phy the fw reports.

tested by me and jmatthew@ pretty hard


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/26 18:49:48

Modified files:
	sys/netmpls    : mpls_output.c 

Log message:
use m_getptr to get to the right mbuf and offset for the ttl in mpls_gettl.

problem found by and this fix was tested by groos at xiplink dot com
on bugs@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/08/26 20:03:32

Modified files:
	mail/p5-Email-Sender: Makefile distinfo 

Log message:
Update mail/p5-Email-Sender to 1.300031

From wen heping <wenheping2000 () hotmail ! com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	pamela@cvs.openbsd.org	2019/08/26 21:16:26

Modified files:
	www/py-mastodon.py: Makefile distinfo 

Log message:
update www/py-mastodon.py 1.3.1 -> 1.4.6
remove python2 flavor and update maintainer email

OK kn@ kmos@ tweak and OK phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pamela@cvs.openbsd.org	2019/08/26 21:18:29

Modified files:
	www            : Makefile 

Log message:
unhook py-mastodon.py,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/26 21:20:18

Modified files:
	www/tootstream : Makefile distinfo 
	www/tootstream/pkg: PLIST 

Log message:
Update www/tootstream 0.3.6 -> 0.3.7

toostream now supports the new py-mastodon.py

With the update of py-mastodon.py I need to commit this

Include a patch that relaxes the requirement on py-mastodon.py
from exact version match of 1.4.5 to <1.5.0. This patch has been
upstreamed and will be in the next release.

OK kn@ phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pamela@cvs.openbsd.org	2019/08/26 21:21:32

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Register py-mastodon.py python2 removal
OK danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/26 22:26:50

Modified files:
	sys/dev/pci    : if_ixl.c 

Log message:
don't check the page number was set correctly.

there are some extremely terrible modules out there that violate
specs badly. some SFP+ DACs i have don't support page switching,
and always report page 0xff. let userland look at them anyway.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/27 00:14:28

Modified files:
	usr.bin/snmp   : snmp.c 

Log message:
Better error reporting on malformed packets.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/27 00:55:06

Modified files:
	x11/xfce4      : xfce4.port.mk 

Log message:
Add -std=gnu99 to CFLAGS, fixes the build on non-clang archs.

Discussed with jca@ and cwen@, simpler than chasing the various
declarations inside code all around..


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/27 02:19:55

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amlclock.c 

Log message:
amclock(4), a driver for the Amlogic SoC clocks.  For now this implements
a tiny number of clocks for the G12A/B families only.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/27 02:24:37

Modified files:
	share/man/man4 : Makefile amlreset.4 

Log message:
amlclock(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/27 03:05:57

Added files:
	share/man/man4 : amlclock.4 

Log message:
amlclock(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/27 03:40:29

Modified files:
	lib/libcrypto/man: OCSP_response_status.3 

Log message:
document OCSP_response_status_str(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/27 04:00:41

Modified files:
	lib/libcrypto/man: OCSP_resp_find_status.3 

Log message:
document OCSP_cert_status_str(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/08/27 04:34:13

Modified files:
	databases/py-influxdb: Makefile distinfo 
Removed files:
	databases/py-influxdb/patches: 
	                               patch-influxdb_tests_dataframe_client_test_py 

Log message:
Update to py-influxdb-5.2.3.

Changelog can be found at
https://github.com/influxdata/influxdb-python/blob/v5.2.3/CHANGELOG.md


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/27 04:48:41

Modified files:
	lib/libcrypto/man: OCSP_sendreq_new.3 

Log message:
document OCSP_parse_url(3)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/27 05:08:55

Modified files:
	devel/meson    : Makefile distinfo meson.port.mk 

Log message:
Update to meson-0.51.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/27 05:24:15

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.216.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/27 05:24:29

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.216.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/27 05:24:47

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.226.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/27 05:29:24

Modified files:
	x11/py-xlib    : Makefile 

Log message:
Missing BDEP on py-setuptools_scm.

rpeorted by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/27 05:46:08

Modified files:
	sys/dev/pci/drm: drm_linux.c 

Log message:
Error paths in radeondrm(4) call unregister_acpi_notifier() unconditionally
so check whether a notifier is on the list before trying to remove it.
Fixes a crash found by semarie@.

ok semarie@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/27 05:53:36

Modified files:
	sysutils/terraform/provider-nomad: Makefile distinfo 
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/27 05:54:42

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
have a go at printing more monitoring information.

this is a bit rough, but a good start. apart from the media types
and length, qsfp support should be on par with sfp modules now.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/27 06:51:57

Modified files:
	sys/arch/arm64/conf: GENERIC 
	sys/dev/fdt    : files.fdt 
	share/man/man4 : Makefile 
Added files:
	sys/dev/fdt    : imxtmu.c 
	share/man/man4 : imxtmu.4 

Log message:
Add imxtmu(4), a driver to support the temperature sensors on
the i.MX8M SoCs.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/08/27 08:22:47

Modified files:
	audio/cmu-sphinx3: Makefile 

Log message:
Build with gfortran instead of g77

Last g77 consumer.  Thanks to daniel@ for spotting a local diff I had
missed, and for providing a similar diff.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/08/27 08:30:38

Modified files:
	infrastructure/mk: fortran.port.mk 

Log message:
Remove g77 as a valid fortran compiler

Last consumer was audio/cmu-sphinx3.  ok daniel@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/08/27 08:33:24

Modified files:
	share/man/man5 : port-modules.5 

Log message:
g77 is not a valid MODFORTRAN_COMPILER any more


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/27 08:41:45

Modified files:
	sys/scsi       : scsi_all.h scsiconf.c 

Log message:
Refactor probing logic to mirror detach logic. i.e. put smarts in
scsi_probe() and make scsi_probe_bus(), scsi_probe_target() and
scsi_probe_lun() simple wrappers around scsi_probe().

Abstract the determination of which luns to probe into a separate
function. Thus eliminating the need to remove/add lun 0 link while
probing devices modern enough to support REPORTLUNS. Which means the
lun 0 link is no longer in different positions in the scsi_link list
for such devices compared to older devices which are blindly probed
until an invalid LUN is encountered.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/27 08:57:48

Modified files:
	sys/dev/ic     : bwfm.c pgt.c 
	sys/dev/pci    : if_iwm.c if_iwn.c if_wpi.c 
	sys/dev/usb    : if_atu.c 
	sys/net80211   : ieee80211_node.c ieee80211_node.h 

Log message:
Keep ieee80211_node structures cached across scans, rather than
wiping the entire cache every time a scan is triggered.

This has benefits for userland programs trying to look at scan results,
and for drivers which don't get a full view from hardware on every scan.

Nodes will still be evicted from the cache in one of several ways:

Add a new way of timing out inactive nodes which don't send a beacon
within 10 scan iterations, for client mode only. This should get rid
of stale APs if we're scanning for some time in a changing environment.

If we fail to associate a few times, the corresponding node is removed.

If net80211 transitions back to INIT state (e.g. because of a
user-initiated configuration change) all nodes are removed.

When a background scan starts all nodes will be removed. This could be
revisited later but has been intentionally left as-is for now.

Tested by myself, jmc@, benno@, procter@ on iwm(4), athn(4) and ral(4).


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/27 09:30:09

Modified files:
	www/chromium   : Makefile 
	www/chromium/pkg: PLIST-electron 

Log message:
fix packaging by not hardcoding the architecture of the machine in the plist


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/27 09:32:33

Modified files:
	distrib/sets/lists/base: md.i386 
	distrib/sets/lists/comp: gcc.i386 md.i386 
	share/mk       : bsd.own.mk 

Log message:
disable base-gcc on i386, from daniel@, ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/27 09:35:55

Modified files:
	devel/py-buildbot: Makefile.inc 
	devel/py-buildbot/buildbot: Makefile distinfo 
	devel/py-buildbot/buildbot/pkg: PLIST 
	devel/py-buildbot/console-view: Makefile distinfo 
	devel/py-buildbot/console-view/pkg: PLIST 
	devel/py-buildbot/grid-view: Makefile distinfo 
	devel/py-buildbot/grid-view/pkg: PLIST 
	devel/py-buildbot/pkg: Makefile distinfo 
	devel/py-buildbot/waterfall-view: Makefile distinfo 
	devel/py-buildbot/waterfall-view/pkg: PLIST 
	devel/py-buildbot/www: Makefile distinfo 
	devel/py-buildbot/www/pkg: PLIST 
	devel/py-buildslave: Makefile distinfo 

Log message:
Update to buildbot/buildslave 2.4.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/27 10:02:47

Modified files:
	lang/flang/driver: Makefile distinfo 
	lang/flang/driver/patches: patch-lib_CodeGen_CGDebugInfo_cpp 
	lang/flang/flang: Makefile distinfo 
	lang/flang/flang/patches: patch-runtime_flang_CMakeLists_txt 
	                          patch-runtime_flangrti_trace_lin_c 
	lang/flang/flang/pkg: PLIST 
	lang/flang/libpgmath: Makefile distinfo 
Removed files:
	lang/flang/driver/patches: patch-include_clang_Frontend_Utils_h 

Log message:
Update to the latest flang. Note the major bump on libflang.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/27 10:58:38

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/27 11:03:02

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/08/27 11:59:58

Modified files:
	sys/dev/usb    : usbdevs 

Log message:
add ethernet found on Lenovo USB-C Dock


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/08/27 12:00:19

Modified files:
	sys/dev/usb    : usbdevs.h usbdevs_data.h 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/27 12:29:45

Modified files:
	sys/dev/fdt    : amlclock.c 

Log message:
Fix HSET4 and HCLR4 macros; I shouldn't make last-minute changes without
actually testing them.


CVSROOT:	/cvs
Module name:	ports
Changes by:	awolk@cvs.openbsd.org	2019/08/27 13:49:46

Modified files:
	databases/postgresql: Makefile 
	databases/postgresql/pkg: postgresql.rc 

Log message:
Add datadir to default databases/postgresql flags

While here, stop trying to remove postmaster.pid in rc_start as
pg_ctl already handles that.

OK sthen@, pea@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/27 13:57:19

Modified files:
	editors/nano   : Makefile distinfo 
	editors/nano/patches: patch-doc_nano_1 patch-src_Makefile_in 

Log message:
maintenance update to 4.4


CVSROOT:	/cvs
Module name:	www
Changes by:	awolk@cvs.openbsd.org	2019/08/27 13:57:57

Modified files:
	faq            : current.html 

Log message:
2019/08/27 - [ports] Datadir added to default postgres flags


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/27 13:59:38

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
update to 76.0.3809.132 and regen electron tarball to reflect the change


CVSROOT:	/cvs
Module name:	src
Changes by:	awolk@cvs.openbsd.org	2019/08/27 14:05:02

Modified files:
	share/man/man8 : rc.d.8 

Log message:
Sync example with current databases/postgresql flags

OK sthen@, pea@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/27 14:42:40

Modified files:
	usr.sbin/ndp   : ndp.c 

Log message:
Sync const correctness with arp(8)

Zap obsolete linter comments while here.

No object change;
OK bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/27 14:50:36

Modified files:
	usr.sbin/arp   : arp.8 arp.c 

Log message:
Honour -n when deleting entries, sync parse_host() from ndp(8)

arp(8) already has a common getinetaddr() but it ignores -n for delete() and
uses gethostbyname(3), so simply replace it with parse_host() from ndp.c
instead of changing behaviour around the old API.

In set(), make host[] and eaddr[] const since all functions receiving those
variables as parameters expect const anyway.

OK bluhm


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/27 16:21:52

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amlrng.c 

Log message:
Add amlrng(4), the simples random numer generator driver ever.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/27 16:27:08

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : amlrng.4 

Log message:
amlrng(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/27 16:39:53

Modified files:
	sys/arch/amd64/amd64: acpi_machdep.c cpu.c machdep.c 
	sys/arch/i386/i386: acpi_machdep.c 
	sys/arch/arm64/arm64: acpi_machdep.c 
	sys/dev/acpi   : acpi.c acpivar.h 

Log message:
On amd64 the bootup and resume paths for SP/BP/SP were not performing
msr/pat, clock-startup, firmware upgrade, fpu initialization, and cpu
soft-state initialization in the same order.  That kind of chaos is
crazy and fragile. Improve the acpi resume call sequence and unify order
of the operations.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/27 17:02:55

Modified files:
	devel/py-arrow : Makefile distinfo 
	devel/py-arrow/pkg: PLIST 

Log message:
Update devel/py-arrow 0.14.2 -> 0.14.5

From Paco Esteban. Thank you very much!


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/27 17:24:35

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
print more qsfp temperature information

this shows the maximum case temperature reported by the chip, and
the low and high alarm ranges for temp and vcc when page 3 is
available and working.

this will hopefully give deraadt@ a better idea about how much
headroom one of his 100g optics has.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/27 19:47:20

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
try to factor media information out and use it for qsfp as well as sfp.

qsfp and xfp have remarkably similar layouts, so we can use the
same code to print media for both. sfp and xfp/qsfp generally have
the same fields, just in different register locations and with some
different scales/factors for some values. this change provides a
map of these differences as structs for the sfp and qsfp/xfp layouts.

the big difference between sfp, xfp, and qsfp that still remains
is how they interpret the wavelength field. qsfp stores either optic
wavelength in units of 0.05nm, or a couple of copper cable attenuation
values in dB at different frequencies. sfp stores wavelength in nm
units, but has magic values to blacklist copper cables with. xfp
stores wavelength in 0.05 nm units, so more like like qsfp.  right
now the code uses the sfp behaviour, which means qsfp will show a
weird wavelength for copper cables when it shouldnt. i'm still
trying to figure out the least worst way to handle that, but at
least it looks right for optics now.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/27 19:50:48

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
remove some cruft


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/27 19:52:38

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
s/No separable connector/No connector/

shrinks some QSFP+ DAC output a bit.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/27 21:56:11

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/27 22:55:51

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
implement a DV_POWERDOWN handler to flush cache and shutdown the controller

this has been in snaps for the last week without issue, and has
been running in production on a bunch of my boxes for a week before
that, also without issue.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/08/28 00:11:36

Modified files:
	share/man/man4 : amlrng.4 

Log message:
typo


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/28 00:53:02

Modified files:
	geo/pdal       : Makefile distinfo 
	geo/pdal/patches: patch-cmake_macros_cmake 
	                  patch-test_unit_ProgramArgsTest_cpp 
	geo/pdal/pkg   : PLIST 

Log message:
Update to pdal 2.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/28 01:03:51

Modified files:
	sys/dev/ofw    : ofw_misc.c ofw_misc.h 

Log message:
Add a PHY "framework".

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/28 01:12:37

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amlpinctrl.c 

Log message:
Add amlpinctrl(4), a driver to configure pins and control GPIOs on Amlogic
SoCs.  For now only a limited set of GPIO pins on the G12A/G12B variants
are supported.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/28 01:34:32

Modified files:
	usr.bin/tmux   : server-client.c tmux.h window.c 

Log message:
The resize event was never deciding to actually resize the pane if there
was output in the pane faster than the timer would fire, so change how
it works to only defer the timer again if the pane was actually resized
within the last timer period. Reported by James Tai in GitHub issue
1880.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/08/28 02:01:48

Modified files:
	lib/mesa       : Makefile.bsd-wrapper 

Log message:
enable radeonsi and llvm on arm64
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/08/28 02:03:10

Modified files:
	driver         : Makefile 

Log message:
build xf86-video-amdgpu on arm64
ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	jsg@cvs.openbsd.org	2019/08/28 02:04:04

Modified files:
	distrib/sets/lists/xbase: md.arm64 
	distrib/sets/lists/xserv: md.arm64 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/28 03:46:32

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : amlpinctrl.4 

Log message:
amlpinctrl(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/28 04:17:59

Modified files:
	sys/arch/arm64/conf: GENERIC Makefile.arm64 
	sys/dev/pci/drm: files.drm 
	sys/dev/pci/drm/include/generated: autoconf.h 
	sys/dev/pci/drm/include/linux: pci.h 

Log message:
Build and enable amdgpu(4) on arm64.  The DCN1.0 support has been made
optional and will only be compiled for amd64/i386.  Apparently this is
only needed on Raven Ridge APUs.

ok jsg@, patrick@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/28 04:37:42

Modified files:
	lib/libcrypto/man: crypto.3 EVP_aes_128_cbc.3 Makefile 
Added files:
	lib/libcrypto/man: AES_encrypt.3 

Log message:
new manual page AES_encrypt(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/08/28 04:45:25

Modified files:
	share/man/man4 : drm.4 

Log message:
add config lines for amdgpu on arm64


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/28 05:59:29

Modified files:
	sysutils/terraform/provider-aws: Makefile 

Log message:
make with DPB_PROPERTIES=lonesome on i386, it uses too big to build
alongside anything else (approx 3GB RAM)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/28 06:24:21

Modified files:
	www/webkitgtk4 : Makefile distinfo 

Log message:
Update to webkitgtk4-2.24.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/28 07:38:14

Modified files:
	devel/nspr     : Makefile distinfo 
	devel/nspr/patches: patch-nspr_configure_in 
	                    patch-nspr_pr_src_linking_prlink_c 
	                    patch-nspr_pr_src_misc_prinit_c 
	                    patch-nspr_pr_src_misc_prnetdb_c 
	                    patch-nspr_pr_tests_nameshm1_c 
	                    patch-nspr_pr_tests_runtests_sh 
	                    patch-nspr_pr_tests_socket_c 
	devel/nspr/pkg : PLIST 
Added files:
	devel/nspr/patches: patch-nspr_pr_tests_attach_c 
	                    patch-nspr_pr_tests_nonblock_c 
	                    patch-nspr_pr_tests_stack_c 
	                    patch-nspr_pr_tests_testfile_c 
Removed files:
	devel/nspr/patches: patch-nspr_pr_tests_prpollml_c 

Log message:
Update to nspr 4.22.

add a bunch of patches from #1575821 to fix building tests (regressed by
#1535665)


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2019/08/28 07:48:40

Modified files:
	sys/arch/m88k/include: cpu.h 

Log message:
sys/arch/luna88k/luna88k/locore0.S:dummy_cpu assumes that
ci_mp_atomic_{begin,end} are 6th and 7th elements of cpu_info
structure.  Actually that is dummy structure used in early boot stage,
but for consistency, move ci_srp_hazards position in cpu_info.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/08/28 08:12:49

Modified files:
	games/widelands: Makefile 

Log message:
mark BROKEN: excessive warnings generate a 319 MB log file


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/28 09:17:23

Modified files:
	sys/scsi       : cd.c scsi_base.c scsiconf.c scsiconf.h sd.c 
	                 ses.c 

Log message:
Introduce SCSI0(), SCSI2() and SCSI3() defines to clarify (some) uses
of SCSISPC() when checking the values of the INQUIRY version field.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/28 09:37:28

Modified files:
	usr.sbin/smtpd : lka_filter.c lka_proc.c lka_report.c 

Log message:
Make filters more developer-friendly by giving more feedback on why a
message was rejected.

Feedback semarie@
OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/28 09:49:31

Modified files:
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/28 09:50:37

Modified files:
	usr.sbin/smtpd : lka.c lka_filter.c lka_report.c report_smtp.c 
	                 smtp_session.c smtpd.h 

Log message:
Add a link-greeting report. This allows us to get the active domain name
in use for the current request.

OK gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	anton@cvs.openbsd.org	2019/08/28 10:26:19

Modified files:
	mail/mdsort    : Makefile distinfo 

Log message:
Update to mdsort-4.1.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/08/28 12:34:56

Modified files:
	www/chromium   : Makefile distinfo 

Log message:
rename the electorn distfile to include the chromium version as well


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/28 13:37:56

Modified files:
	sys/dev/ofw    : ofw_thermal.c 

Log message:
This code calls task_add(9) from a timeout, so create the taskq with
IPL_SOFTCLOCK instead of IPL_NONE.

ok mpi@, deraadt@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/08/28 13:46:20

Modified files:
	usr.sbin/smtpd : util.c 

Log message:
change valid_domainname() to accept a trailing dot.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/28 14:02:42

Modified files:
	sys/scsi       : safte.c 

Log message:
Recast "SCSISPC() != 2" into "!SCSI2() || SCSI3()", i.e. "!= 2" into
"< 2 || > 2". Step towards allowing SCSISPC() to be updated to return
actual SPC values.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/28 14:03:51

Modified files:
	sbin/ping      : ping.c 
	usr.sbin/traceroute: traceroute.c 

Log message:
At startup, unveil entire filesystem to read-only. If after privdrop, some
implausible bug existed in the socket setup (mostly dns-related and
setsockopt) it would be largely neutered.  of course, a very restrictive
pledge is installed soon after that...
ok mestre brynet florian


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2019/08/28 14:12:02

Modified files:
	usr.sbin/bgpd  : bgpd.conf.5 

Log message:
Polish; also, document defaults for 'listen on' and 'rde rib'.
input and ok claudio@ jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/28 14:25:24

Modified files:
	lang/seed7     : Makefile distinfo 

Log message:
Update to seed7-20190819


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/28 14:54:24

Modified files:
	sys/net        : rtsock.c 

Log message:
In rev 1.273 RTM_LOCK has been removed from net/rtsock.c.  Since
then the big switch in rtm_output() has RTM_CHANGE as a unique case.
Remove redundant checks of rtm_type within this case.
OK kn@


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/08/28 14:54:26

Modified files:
	.              : ftp.html ftplist httpslist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
ftp.spline.de is temporarily out of service, as noted by stsp@


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/08/28 14:55:52

Modified files:
	build          : mirrors.dat 

Log message:
ftp.spline.de is temporarily out of service, as noted by stsp@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/28 15:50:47

Modified files:
	security/py-artifacts: Makefile 

Log message:
Fix test for py-artifacts by adding a MODPY_PYTEST line.

OK rpointel@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/28 16:02:07

Modified files:
	mail/dovecot   : Makefile distinfo 
	mail/dovecot-pigeonhole: Makefile distinfo 

Log message:
update to Dovecot 2.3.7.2 / Dovecot Pigeonhole 0.5.7.2, from Brad
CVE-2019-11500 https://dovecot.org/pipermail/dovecot/2019-August/116873.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/28 16:04:29

Modified files:
	mail/dovecot   : Tag: OPENBSD_6_5 Makefile distinfo 
	mail/dovecot/patches: Tag: OPENBSD_6_5 
	                      patch-doc_example-config_Makefile_in 
	                      patch-doc_example-config_conf_d_10-mail_conf 
	                      patch-doc_example-config_conf_d_10-master_conf 
	                      patch-doc_example-config_conf_d_10-ssl_conf 
	                      patch-doc_example-config_conf_d_Makefile_in 
	                      patch-doc_example-config_conf_d_auth-system_conf_ext 
	                      patch-doc_example-config_dovecot_conf 
	                      patch-doc_mkcert_sh 
	                      patch-src_auth_password-scheme-crypt_c 
	mail/dovecot/pkg: Tag: OPENBSD_6_5 PLIST-server 

Log message:
update to Dovecot 2.3.7.2 / Dovecot Pigeonhole 0.5.7.2, from Brad
CVE-2019-11500 https://dovecot.org/pipermail/dovecot/2019-August/116873.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/28 16:04:37

Modified files:
	mail/dovecot-pigeonhole: Tag: OPENBSD_6_5 Makefile distinfo 
	mail/dovecot-pigeonhole/patches: Tag: OPENBSD_6_5 
	                                 patch-doc_example-config_conf_d_20-managesieve_conf 
	                                 patch-doc_example-config_conf_d_90-sieve_conf 
	                                 patch-src_lib-sieve_sieve-common_h 
	                                 patch-src_managesieve-login_Makefile_in 

Log message:
update to Dovecot 2.3.7.2 / Dovecot Pigeonhole 0.5.7.2, from Brad
CVE-2019-11500 https://dovecot.org/pipermail/dovecot/2019-August/116873.html


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/28 16:22:43

Modified files:
	sys/kern       : subr_extent.c 

Log message:
If the EX_CONFLICTOK flag is given, allow operations that (partly)
free space that is already free.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/28 16:29:50

Modified files:
	devel/py-yapf  : Makefile distinfo 

Log message:
Update devel/py-yapf from 0.26.0 -> 0.28.0

From Paco Esteban. Thank you very much!


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/28 16:36:41

Modified files:
	sys/net        : rtsock.c 

Log message:
Fix white spaces and wrap long lines.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/28 16:39:09

Modified files:
	sys/arch/amd64/amd64: mainbus.c 
	sys/arch/amd64/conf: GENERIC RAMDISK RAMDISK_CD files.amd64 
	sys/arch/amd64/pci: acpipci.c pci_machdep.c 
	sys/dev/acpi   : acpi.c acpireg.h acpivar.h 

Log message:
Use ACPI information to attach PCI busses like we do on arm64.  There are a
few additional quirks though, and attaching the PCI busses is delayed to
replicate the existing code more closely.  That may be changed in the
future.  Also tweak how we handle MSI support and respect to ACPI flag
that says we shouldn't attempt to use MSIs.

Some fallout is expected.

ok patrick@


CVSROOT:	/cvs
Module name:	www
Changes by:	ians@cvs.openbsd.org	2019/08/28 19:37:22

Modified files:
	.              : armv7.html 

Log message:
Correct Texas Instruments SoC families

Noticed by freenode user zmatt.

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/28 20:05:58

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
make the list of OM fibre distances go OM1, OM2, OM3, not OM2, OM1, OM3


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/08/28 20:47:15

Modified files:
	net/snort      : Makefile distinfo 
	net/snort/patches: 
	                   patch-src_dynamic-plugins_sf_engine_Makefile_in 
	                   patch-src_dynamic-preprocessors_Makefile_in 
	                   patch-src_dynamic-preprocessors_appid_Makefile_in 
	                   patch-src_dynamic-preprocessors_dcerpc2_Makefile_in 
	                   patch-src_dynamic-preprocessors_dnp3_Makefile_in 
	                   patch-src_dynamic-preprocessors_dns_Makefile_in 
	                   patch-src_dynamic-preprocessors_ftptelnet_Makefile_in 
	                   patch-src_dynamic-preprocessors_gtp_Makefile_in 
	                   patch-src_dynamic-preprocessors_imap_Makefile_in 
	                   patch-src_dynamic-preprocessors_modbus_Makefile_in 
	                   patch-src_dynamic-preprocessors_pop_Makefile_in 
	                   patch-src_dynamic-preprocessors_reputation_Makefile_in 
	                   patch-src_dynamic-preprocessors_sdf_Makefile_in 
	                   patch-src_dynamic-preprocessors_sip_Makefile_in 
	                   patch-src_dynamic-preprocessors_smtp_Makefile_in 
	                   patch-src_dynamic-preprocessors_ssh_Makefile_in 
	                   patch-src_dynamic-preprocessors_ssl_Makefile_in 

Log message:
Update to Snort 2.9.14.1, from maintainer Markus Lude.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/08/28 21:08:50

Modified files:
	sbin/ifconfig  : sff.c 

Log message:
fix a comparison which generated a warning on sparc64.

found by deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	sashan@cvs.openbsd.org	2019/08/29 00:13:46

Modified files:
	sys/net        : pf.c 

Log message:
pf_state_insert() must grab state lock exclusively

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/29 01:05:47

Modified files:
	usr.bin/sndiod : siofile.c 

Log message:
Uniformize device-specific debug printfs


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/29 01:07:33

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Move code de disconnect all audio clients to its own routine.

This makes the routine reusable, no behavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/29 01:10:28

Modified files:
	usr.bin/sndiod : dev.c midi.c 

Log message:
Move code de disconnect all MIDI clients to its own routine.

This makes the routine reusable, no behavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/29 01:11:28

Modified files:
	usr.bin/sndiod : midi.h 

Log message:
Fix wrong comment about MIDI port hold flag


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/08/29 01:13:48

Modified files:
	usr.bin/tmux   : cmd.c 

Log message:
It is not longer necessary to double-escape ; in %%%, problem reported
by Theo Buehler.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/29 01:19:15

Modified files:
	usr.bin/sndiod : midi.c 

Log message:
Make debug printf in port_open() look as others


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/08/29 01:23:18

Modified files:
	usr.sbin/smtpd : lka_report.c 

Log message:
Comment out the registration of smtp-out events.
These are currently under development and allowing them to be registered
might give the wrong idea of them working.

OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/29 01:35:25

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Split dev_open() in two parts.

The first part resets audio parameters to the prefered ones, the
second part opens the device and allocates the audio buffers. No
behavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/08/29 01:38:15

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Split dev_close() routine in two parts.

The first part disconnects clients, the other closes the device
and frees audio buffers. No behavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/29 01:48:45

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
Don't write to mbuf length fields before mbuf is removed from iwm(4) Rx ring.
Based on Dragonfly 96eaecf93d9f731459a0df8efc72cfad034320bd by Imre Vadasz
ok mpi@ procter@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/29 01:49:15

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
fix iwm(4) frame length check to account for header in firmware rx packet
ok mpi@ procter@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/08/29 02:24:45

Modified files:
	net/seafile/client: Makefile distinfo 
	net/seafile/seafile: Makefile distinfo 

Log message:
update to seafile-7.0.2


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/29 02:49:55

Modified files:
	usr.sbin/smtpd : lka_filter.c 

Log message:
the builtin filters matching used to be reversed, as in "function must not
match", because it made code smaller, however it also made it harder to
understand so it was reworked to have a function must match logic.

the check_fcrdns function was not reversed, fix it

spotted by otto@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/08/29 02:55:06

Modified files:
	share/man/man4 : ure.4 usb.4 
	sys/dev/usb    : if_ure.c if_urereg.h 

Log message:
Add support for RTL8153B after study of Linux r8152 driver.

Tested by myself, jcs@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/08/29 03:13:56

Modified files:
	sys/net80211   : ieee80211_input.c 

Log message:
Always parse RSN/WPA IEs if the driver announces support for RSN.
Prevents WPA APs from appearing as non-WPA APs to the AP selection logic.

The decision whether or not to parse the IE was made as a side-effect
of a check for the highest mutually supported version of WPA.
We can safely assume that all our drivers support WPA versions <= 2
and parse the IE regardless of whether WPA is currently active or not.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/08/29 03:24:30

Modified files:
	usr.sbin/smtpd : lka_proc.c 

Log message:
the latest commit introduced a regression in DATA filters

ok martijn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/08/29 04:40:53

Modified files:
	net/go-ipfs    : Makefile distinfo 

Log message:
Update to go-ipfs-0.4.22

now DISTFILE includes version number (from jca)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/08/29 05:37:37

Removed files:
	geo/pdal/patches: patch-test_unit_filters_DelaunayFilterTest_cpp 

Log message:
Forgot to remove patch, reported by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/29 05:51:49

Modified files:
	sys/dev/fdt    : bcm2835_aux.c dwdog.c exrtc.c hidwusb.c 
	                 rkdwusb.c rsbvar.h sxirsb.c xhci_fdt.c 

Log message:
Capitalize my last name in copyright.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/08/29 07:22:20

Modified files:
	net/gssdp      : Makefile 
Added files:
	net/gssdp/patches: patch-libgssdp_gssdp-net-posix_c 

Log message:
Netmasks returned by getifaddrs may have a zero af_family

Spotted by landry@ using gssdp-discover, input (and ok?) claudio@, ok
jasper@ (maintainer)

While here move pointer NULL check before dereferencing it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/29 07:47:48

Modified files:
	fonts/spleen   : Makefile distinfo 

Log message:
Update spleen to 1.1.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jcs@cvs.openbsd.org	2019/08/29 08:04:48

Modified files:
	sys/dev/usb    : if_ure.c 

Log message:
ure: attach to RTL8153B device on Lenovo USB-C Dock


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/29 08:19:27

Modified files:
	sys/arch/armv7/exynos: exdwusb.c 

Log message:
Capitalize my last name in copyright.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/29 08:28:34

Modified files:
	sbin/route     : route.c 

Log message:
route(8) used inet/inet6 autodetection also for the link address
type.  Provide the address family AF_LINK and storage size of struct
sockaddr_dl to the kernel when creating an IFP routing address.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/08/29 08:56:23

Modified files:
	sbin/iked      : ikev2.c 

Log message:
Remove redundant ikev2_msg_valid_ike_sa() call.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/29 11:20:03

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amldwusb.c amlpciephy.c amlusbphy.c 

Log message:
Add amldwusb(4), amlusbphy(4) and amlpciephy(4), drivers for the USB
controller glue and USB PHYs found on the Amlogic G12A/B SoCs.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/29 11:40:57

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : amldwusb.4 amlpciephy.4 amlusbphy.4 

Log message:
amldwusb(4), amlpciephy(4) and amlusbphy(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/29 11:57:25

Modified files:
	usr.bin/mandoc : html.c html.h 

Log message:
In the HTML formatter, assert(3) that no HTML nesting violation occurs.
Tested on the complete manual page trees of Version 7 AT&T UNIX,
4.4BSD-Lite2, POSIX-2013, OpenBSD 2.2 to 6.5 and -current,
FreeBSD 10.0 to 12.0, NetBSD 6.1.5 to 8.1, DragonFly 3.8.2 to 5.6.1,
and Linux 4.05 to 5.02.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/29 12:58:49

Modified files:
	net/unifi/stable: Makefile 
	net/unifi/stable/pkg: README 
	net/unifi/lts  : Makefile 
	net/unifi/lts/pkg: README 
	net/unifi/testing: Makefile 
	net/unifi/testing/pkg: README 

Log message:
mention in README that you should connect to https://localhost:8443/ to
configure, suggested by kn@. (this saves a bit of time figuring out which
of the 5 listening TCP ports is needed for this..)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/29 13:11:15

Modified files:
	usr.sbin/arp   : arp.c 

Log message:
The IFP address in arp(8) used some bytes from a location depending
on sizeof(long) as sockaddr_dl.  We were lucky and it worked.  Use
the correct size and the algorithm from route(8) for arp(8).
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/08/29 14:18:11

Modified files:
	sys/dev/fdt    : xhci_fdt.c 

Log message:
Enable USB Vbus supply on i.MX 8M.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/29 14:36:16

Modified files:
	lang/unicon    : Makefile 

Log message:
use FIX_EXTRACT_PERMISSIONS=, honour CC, fixes build on i386 now that
base-gcc has been removed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/29 14:43:36

Modified files:
	lang/libv8     : Makefile 

Log message:
set CXX_host and CXX_target, without these an executable g++ binary was required
(build/common.gypi).


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/08/29 15:21:18

Modified files:
	share/man/man4 : ddb.4 

Log message:
Stop mentioning unsupported #number argument for break command

There is no code for addressing breakpoints by numbers at all.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/29 15:30:21

Modified files:
	graphics/makehuman: Makefile 
Added files:
	graphics/makehuman/patches: patch-src_FileTools_cpp 
	                            patch-src_util_h 

Log message:
makehuman: add missing headers to fix the build with ports-gcc

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/29 16:42:16

Modified files:
	sbin/route     : route.c 

Log message:
The kernel uses rtm_addrs as a bit field for addresses that are
included in the routing message.  The significance of the bits has
to be consistent with the order of the addresss.  In route(8) store
addresses in ascending order of RTA values.  This allows to use
MPLS routes together with route labels.
OK mpi@ claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/08/29 16:48:30

Modified files:
	lang/compcert  : Makefile 
	lang/compcert/patches: patch-configure 

Log message:
Make an effort to fix the build on powerpc.

As seen in landry@'s powerpc bulk build report.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/29 17:54:49

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/08/29 18:38:12

Modified files:
	sys/dev/pci    : mpii.c 

Log message:
On SAS3 and newer controllers (using the IEEE sgl layout), the chain offset
field is in units of 16 bytes, not 4, fixing some but not all problems
reported by Kor son of Rynar.

ok dlg@, who points out this is exactly the same fix as r1.10 of mfii


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/08/29 20:49:35

Modified files:
	usr.bin/locate/locate: updatedb.sh 

Log message:
locate.updatedb can't update the database unless it is run as root.

It will scan the entire disk before attempting to create the updated
database and then error out.

add a quick check to see if it as running as root and erroring out if
that is not the case.

"Makes sense" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/29 21:52:21

Modified files:
	sbin/ifconfig  : ifconfig.c sff.c 

Log message:
whitespace, found while pondering improvements to sffdump


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/29 21:57:56

Modified files:
	lib/libutil    : Makefile util.h 
Added files:
	lib/libutil    : uu_lock.3 
Removed files:
	lib/libutil    : uucplock.3 

Log message:
uucplock(3) is incorrectly named in some places, it is actually uu_lock(3)
(more unclear is if anything in ports uses this, as our base no longer does)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/29 22:00:34

Modified files:
	lib/libpcap    : Makefile 
Added files:
	lib/libpcap    : pcap_open_live.3 
Removed files:
	lib/libpcap    : pcap.3 

Log message:
there is no pcap(3) function, "man pcap" returns an incorrect result.
this page should be called by one of the functions, so i chose the first
one: pcap_open_live(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/08/29 23:08:28

Modified files:
	regress/usr.bin/ssh: hostkey-rotate.sh 

Log message:
Use ed25519 for most hostkey rotation tests since it's supported even when
built without OpenSSL.  Use RSA for the secondary type test if supported,
otherwise skip it.  Fixes this test for !OpenSSL builds.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/08/30 01:24:49

Modified files:
	net/irssi      : Makefile distinfo 
	net/irssi-icb  : Makefile 
	net/irssi-xmpp : Makefile 

Log message:
Update to irssi 1.2.2

https://irssi.org/security/html/irssi_sa_2019_08/

Tested by and OK bket


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/08/30 02:10:30

Modified files:
	net/vf1        : Makefile distinfo 

Log message:
Update to vf1-0.0.11

Patch from maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/08/30 02:31:57

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.13
- fix several possible leaks, use after frees, and NULL derefs (hiltjo)
- tog: mbs2ws: fix sizeof of element for memory allocation (hiltjo)
- fix deletion of branches stored in packed-refs
- fix 'got log path' in a work tree with a path prefix (with Evan Silberman)


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/08/30 05:19:00

Modified files:
	usr.bin/openssl: dgst.c 

Log message:
Convert openssl(1) dgst to the newer style of option handling

Adapt openssl(1) dgst command to new option handling.
Added dgst_options struct and option handlers, and replaced for-if-strcmp
handling with options_parse().

ok bcook@ jsing@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/08/30 05:43:34

Modified files:
	usr.bin/openssl: dgst.c 

Log message:
Simplify checking and more readable descriptions in openssl(1) dgst

suggested from jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/08/30 05:45:00

Modified files:
	www/webkitgtk4 : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
SECURITY update to webkitgtk4-2.24.4.
WebKitGTK Security Advisory WSA-2019-0004:
CVE-2019-8644, CVE-2019-8649, CVE-2019-8658, CVE-2019-8666, CVE-2019-8669,
CVE-2019-8671, CVE-2019-8672, CVE-2019-8673, CVE-2019-8676, CVE-2019-8677,
CVE-2019-8678, CVE-2019-8679, CVE-2019-8680, CVE-2019-8681, CVE-2019-8683,
CVE-2019-8684, CVE-2019-8686, CVE-2019-8687, CVE-2019-8688, CVE-2019-8689,
CVE-2019-8690


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 06:08:09

Modified files:
	mail/roundcubemail: Makefile distinfo 
	mail/roundcubemail/patches: 
	                            patch-program_lib_Roundcube_rcube_ldap_generic_php 
	mail/roundcubemail/pkg: PLIST 

Log message:
update to roundcubemail-1.3.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 06:08:38

Modified files:
	mail/roundcubemail: Tag: OPENBSD_6_5 Makefile distinfo 
	mail/roundcubemail/patches: Tag: OPENBSD_6_5 
	                            patch-program_lib_Roundcube_rcube_ldap_generic_php 
	mail/roundcubemail/pkg: Tag: OPENBSD_6_5 PLIST 

Log message:
update to roundcubemail-1.3.10


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/08/30 06:09:05

Modified files:
	usr.bin/openssl: dgst.c 

Log message:
Wrap lines over 80 cols and put space before goto label in openssl(1) dgst


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/30 06:24:00

Modified files:
	sysutils/exa   : Makefile distinfo 
	devel/cbindgen : Makefile distinfo 
	security/sn0int: Makefile distinfo 
	textproc/ripgrep: Makefile distinfo 

Log message:
update libc-rs for include sparc64 compatibility

ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/30 06:26:08

Modified files:
	x11/gnome/librsvg: Makefile 
Added files:
	x11/gnome/librsvg/patches: 
	                           patch-vendor_libc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs 

Log message:
update libc-rs for include sparc64 compatibility

ok aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	inoguchi@cvs.openbsd.org	2019/08/30 06:32:14

Modified files:
	usr.bin/openssl: dgst.c 

Log message:
Remove unnecessary NULL check before free function in openssl(1) dgst


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/08/30 06:47:55

Modified files:
	faq            : faq10.html 

Log message:
tweak how we list supported arches for syspatch & stable packages to
make it a little more obvious. mention how many releases we go back for
each. ok tb@ solene@


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/30 07:02:19

Modified files:
	www/webkitgtk4 : Makefile 
Added files:
	www/webkitgtk4/patches: 
	                        patch-Source_WebCore_Modules_indexeddb_server_SQLiteIDBBackingStore_cpp 

Log message:
webkitgtk4: fix linking error when built with ports-clang

OK jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 07:23:35

Modified files:
	net/dnsperf    : Makefile distinfo 

Log message:
update to dnsperf-2.3.2, includes dns-over-TCP/TLS support


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/30 07:31:24

src/usr.sbin/unbound/ipset

Update of /cvs/src/usr.sbin/unbound/ipset
In directory cvs.openbsd.org:/tmp/cvs-serv43951/ipset

Log Message:
Directory /cvs/src/usr.sbin/unbound/ipset added to the repository


CVSROOT:	/cvs
Module name:	www
Changes by:	kettenis@cvs.openbsd.org	2019/08/30 07:34:00

Modified files:
	.              : arm64.html 

Log message:
Update.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/30 08:26:43

Modified files:
	faq            : faq10.html 

Log message:
tweak previous; ok tb


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 08:47:20

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/08/30 09:56:31

Modified files:
	lang/ruby/2.4  : Makefile distinfo 
	lang/ruby/2.4/pkg: PLIST-main 
Added files:
	lang/ruby/2.4/patches: patch-file_c 

Log message:
Update to Ruby 2.4.7

Backport use of realpath(3) for File.realpath to allow unveil(2) to work.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/08/30 09:57:24

Modified files:
	lang/ruby/2.5  : Makefile distinfo 
	lang/ruby/2.5/patches: patch-compile_c patch-configure 
	                       patch-ext_openssl_extconf_rb 
	lang/ruby/2.5/pkg: PLIST-main 
Added files:
	lang/ruby/2.5/patches: patch-file_c 

Log message:
Update to Ruby 2.5.6

Backport use of realpath(3) for File.realpath to allow unveil(2) to work.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/08/30 09:58:26

Modified files:
	lang/ruby/2.6  : Makefile distinfo 
	lang/ruby/2.6/pkg: PLIST-main 
Added files:
	lang/ruby/2.6/patches: patch-file_c 

Log message:
Update to Ruby 2.6.4

Drop PATCHFILES as the patch is now included.

Backport use of realpath(3) for File.realpath to allow unveil(2) to work.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/30 10:48:05

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
Rectify error made in 2006. SPC-2 == SCSI-3, not SCSI-2!!

Some cd/sd/safte/ses devices will now be correctly identified as
SCSI-3 and gain all the advantages associated with that lofty
status. e.g. READ CAP 16, REPORT LUNS.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/08/30 10:54:20

Modified files:
	usr.sbin/relayd: relayd.c 

Log message:
revert r1.175 which added unveil to relayd; "check script" needs access to the
filesystem.

"Well the first step is to back the commit out" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 11:09:45

Modified files:
	lang/php/7.1   : Makefile distinfo 

Log message:
update to php-7.1.32; includes various crash/security fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 11:09:48

Modified files:
	lang/php/7.2   : Makefile distinfo 

Log message:
update to php-7.2.22; includes various crash/security fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 11:09:51

Modified files:
	lang/php/7.3   : Makefile distinfo 

Log message:
update to php-7.3.9; includes various crash/security fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 11:10:27

Modified files:
	lang/php/7.1   : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
update to php-7.1.32; includes various crash/security fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 11:10:30

Modified files:
	lang/php/7.2   : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
update to php-7.2.22; includes various crash/security fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/30 11:10:33

Modified files:
	lang/php/7.3   : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
update to php-7.3.9; includes various crash/security fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	pamela@cvs.openbsd.org	2019/08/30 11:25:37

Modified files:
	sbin/slaacd    : engine.c slaacd.c slaacd.h 

Log message:
Remove configured IPv6 addresses remaining when slaacd(8) detects a
link-state change and no new router advertisement is obtained (in accordance
with RFC 6059).

This should improve IPv6 -> legacy-IP-only transitions, preventing
applications from believing IPv6 connectivity is available when it is
not, potentially resulting in long timeouts.

suggestion, input and OK florian@ phessler@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 11:34:36

Modified files:
	lib/libc/uuid  : Makefile.inc 
Added files:
	lib/libc/uuid  : uuid_compare.3 
Removed files:
	lib/libc/uuid  : uuid.3 

Log message:
there is no function called uuid(3), so this should be installed as
uuid_compare(3)
ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/08/30 11:41:18

Modified files:
	sys/dev/pv     : hvs.c 

Log message:
Don't use misleadingly named SCSISPC() which returns SCSI version not
SPC version. Use raw data in version field to check the SPC level
until SCSISPC() is straightened out. Actually a bit clearer to read as
the raw data is what is manipulated in adjacent code.


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/08/30 11:46:12

Modified files:
	.              : plus.html 

Log message:
plus for August 21 - 28

tweaks and OK florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/30 11:51:47

Modified files:
	sbin/isakmpd   : isakmpd.8 
	sbin/pflogd    : pflogd.8 
	share/man/man3 : intro.3 
	share/man/man5 : pf.conf.5 
	usr.sbin/tcpdump: tcpdump.8 

Log message:
mop up for the pcap.3 rename;
help/ok deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/08/30 11:56:55

Modified files:
	infrastructure/lib/DPB/Job: Port.pm 

Log message:
turns out it's quite possible for junking to start/end not matching some
other ports! so show the path on junking end as well...


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/30 11:59:22

Modified files:
	faq            : faq10.html 

Log message:
add a missing <br> tag


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/30 12:17:22

Modified files:
	.              : arm64.html 

Log message:
fix incomplete sentence


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 12:33:17

Modified files:
	lib/libc/net   : Makefile.inc inet_addr.3 
	games/fortune/strfile: strfile.8 
	share/man/man3 : Makefile 
	share/man/man9 : bemtoh32.9 
Added files:
	lib/libc/net   : ether_aton.3 htobe64.3 inet_net_ntop.3 
	                 res_init.3 
	share/man/man3 : bit_alloc.3 va_start.3 
Removed files:
	lib/libc/net   : byteorder.3 ethers.3 inet_net.3 resolver.3 
	share/man/man3 : bitstring.3 stdarg.3 

Log message:
Move 4 manual pages from not-a-function filenames to a correct filename,
and correct Xr.
ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 12:35:03

Modified files:
	lib/libc/string: ffs.3 

Log message:
adapt to bitstring(3) renaming, and look at that bit_ffs(3) is the actual
name we want to Xr...
ok jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/08/30 12:41:31

Modified files:
	net/powerdns   : Makefile distinfo 
	net/powerdns/pkg: PLIST-main PLIST-mysql PLIST-pgsql 
Removed files:
	net/powerdns/patches: patch-pdns_iputils_hh patch-pdns_logger_cc 
	                      patch-pdns_logger_hh 
	                      patch-pdns_nameserver_cc 

Log message:
Update to PowerDNS Authoritative Server 4.2.0.  Some new features
like lua records and ixfrdist are not (yet) enabled, will look into
those later.  With help and ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 12:53:26

Modified files:
	share/man/man3 : Makefile 

Log message:
stdarg.3 -> va_start.3, because there is no stdarg(3)


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 13:12:57

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 13:34:04

Modified files:
	share/man/man5 : ethers.5 
	usr.sbin/tcpdump: tcpdump.8 
	usr.sbin/ypserv/ypinit: Makefile.yp.8 

Log message:
catch up to ethers(3)->ether_aton(3) renaming


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/30 13:35:55

Modified files:
	sys/dev/fdt    : if_dwge_fdt.c 

Log message:
Add "amlogic,meson-axg-dwmac" compatible.


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/08/30 13:54:47

Modified files:
	databases/p5-Mojo-Pg: Makefile distinfo 

Log message:
p5-Mojo-Pg: update to 4.15
Changelog:
https://metacpan.org/source/SRI/Mojo-Pg-4.15/Changes

OK maintainer


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/30 14:06:07

Modified files:
	lib/libc/net   : inet_ntop.3 inet_addr.3 inet_lnaof.3 
	share/man/man4 : inet.4 

Log message:
mop up for inet_net rename; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/30 14:20:51

Modified files:
	lib/libc/net   : getaddrinfo.3 gethostbyname.3 getnameinfo.3 
	                 getnetent.3 getrrsetbyname.3 
	share/man/man5 : hostname.if.5 resolv.conf.5 

Log message:
mop up resolver.3 rename; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/30 14:27:25

Modified files:
	lib/libc/gen   : syslog.3 
	lib/libc/stdio : printf.3 scanf.3 wprintf.3 wscanf.3 

Log message:
mop up stdarg rename; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/30 14:33:35

Modified files:
	usr.sbin/tcpdump: tcpdump.8 

Log message:
one more ethers.3 -> ether_aton.3;


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/08/30 15:51:47

Modified files:
	fonts/spleen   : Makefile 

Log message:
Add missing HOMEPAGE.

From Mikolaj Kucharski, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 16:20:44

Modified files:
	lib/libc/hash  : Makefile.inc 
	usr.sbin/mtree : mtree.8 
Added files:
	lib/libc/hash  : MD5Init.3 RMD160Init.3 SHA1Init.3 SHA256Init.3 
	                 SipHash24_Init.3 
Removed files:
	lib/libc/hash  : SipHash24.3 md5.3 rmd160.3 sha1.3 sha2.3 

Log message:
name these manual pages by the primary function, for instance there
is no function called md5()
as discussed with jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 16:20:50

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 16:41:51

Modified files:
	lib/libc/yp    : Makefile.inc 
Added files:
	lib/libc/yp    : yp_bind.3 
Removed files:
	lib/libc/yp    : ypclnt.3 

Log message:
there is no function called ypclnt(3), but yp_bind(3) exists...


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/30 17:15:49

Modified files:
	usr.sbin/mtree : mtree.8 

Log message:
fix SEE ALSO;


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 17:31:36

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/08/30 17:33:45

Modified files:
	lib/libc/stdio : tmpnam.3 

Log message:
.Dt same as filename


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/08/30 17:35:40

Modified files:
	lib/libc/gen   : getgrent.3 
	share/man/man8 : yp.8 

Log message:
ypclnt -> yp_bind;


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/08/30 18:58:02

Modified files:
	mail/dma       : Makefile distinfo 

Log message:
Update to dma-0.12. This is the same as what we had before; upstream just
cranked the version number. While here, move a pair of variables from the
port Makefile to the dma Makefile.


CVSROOT:	/cvs
Module name:	src
Changes by:	aoyama@cvs.openbsd.org	2019/08/30 22:22:12

Modified files:
	libexec/ld.so/m88k: rtld_machine.c 

Log message:
Delete the last argument to fit recent _dl_find_symbol change.

ok guenther@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/08/31 00:58:11

Modified files:
	textproc/ripgrep: Makefile distinfo 

Log message:
update ripgrep to 11.0.2

patch from Paco Esteban paco _ onna be

few changes by me for keeping libc update version to compatible one with sparc64


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2019/08/31 01:21:30

Modified files:
	build          : support.dat 

Log message:
add Muhammad Muntaza


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2019/08/31 01:21:45

Modified files:
	.              : support.html 

Log message:
regen


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/08/31 02:20:01

Modified files:
	mail/roundcubemail: Tag: OPENBSD_6_5 Makefile 

Log message:
Fix port building since last stable update
PERMIT_PACKAGE => PERMIT_PACKAGE_CDROM


CVSROOT:	/cvs
Module name:	www
Changes by:	otto@cvs.openbsd.org	2019/08/31 02:54:23

Modified files:
	.              : 66.html 

Log message:
ntpd improvements.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/31 07:44:29

Modified files:
	usr.bin/less   : charset.c funcs.h line.c 

Log message:
New utility function mbtowc_left() because this functionality -
decoding a UTF-8 multibyte character to the left of a given byte -
is already needed at three places in line.c and will also be needed
for cleanup work in cmdbuf.c in the future.
OK millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/31 07:46:14

Modified files:
	sbin/route     : route.c show.h 
	usr.sbin/arp   : arp.c 
	usr.sbin/ndp   : ndp.c 

Log message:
The algorithm creating the routing addresses in route(8) and arp(6)
were still not correct.  While the values written to the kernel are
fine, the bytes for padding were taken from memory after the sockaddr
structs.
In route(8) the union of sockaddrs can be made larger, so that the
padding is taken from there.
In arp(8) the size of the struct is known.  Copy only the struct
and advance over the padding.  The memory has been zeroed before.
Merge all address size fixes from arp(8) into ndp(8).
OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2019/08/31 07:48:45

Modified files:
	sys/dev/wscons : wstpad.c 

Log message:
Fix a bug of the tap-detection code.

Do not switch from the DETECT state to IGNORE when the last (active) touch
has been released.  Otherwise, depending on how events are reported and
synchronized, it may happen that the handler does not switch back to DETECT
when necessary.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 07:55:45

Modified files:
	x11/i3         : Makefile distinfo 
	x11/i3/patches : patch-etc_config patch-etc_config_keycodes 

Log message:
update to i3-4.17.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 08:01:20

Modified files:
	security/sslsplit: Makefile distinfo 
	security/sslsplit/patches: patch-sslsplit_1_in 
	security/sslsplit/pkg: PLIST 

Log message:
update to sslsplit-0.5.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 08:09:13

Added files:
	plan9/plan9port/patches: patch-src_libsec_386_mkfile 

Log message:
don't hardcode gcc


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/08/31 08:44:44

Modified files:
	faq            : faq1.html 

Log message:
add ftp to the list of useful commands for new users, with the hope that we
will get fewer "where's wget?" questions


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 08:45:04

Modified files:
	net/libunbound : Makefile distinfo 
	net/libunbound/patches: patch-Makefile_in 

Log message:
update to libunbound-1.9.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 09:07:56

Modified files:
	www/trac       : Makefile distinfo 
	www/trac/pkg   : PLIST 

Log message:
update to trac 1.4

This is a major version update; as usual for these you will need to
upgrade your trac environments, also note that some plugins are now
obsolete and should be removed.

Trac now uses Jinja2 instead of Genshi as its template engine - Genshi
is still supported in 1.4.x for plugin templates but is now optional.

See https://trac.edgewall.org/wiki/1.3/TracUpgrade#to1.4 and
https://trac.edgewall.org/wiki/TracChangeLog for more details.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 09:19:44

Modified files:
	databases/pecl-redis: Makefile distinfo 

Log message:
update to pecl-redis-5.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 09:20:15

Modified files:
	graphics/ImageMagick: Makefile distinfo 
	graphics/ImageMagick/patches: 
	                              patch-Magick++_lib_ImageMagick++_pc_in 
	                              patch-Magick++_lib_Magick++_pc_in 
	                              patch-config_policy_xml 
	                              patch-configure_ac 
	                              patch-magick_ImageMagick_pc_in 
	                              patch-magick_MagickCore_pc_in 
	                              patch-wand_MagickWand_pc_in 
	                              patch-wand_Wand_pc_in 

Log message:
update to ImageMagick-6.9.10-62


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 09:26:39

Modified files:
	devel/cvs-fast-export: Makefile distinfo 

Log message:
update to cvs-fast-export-1.48


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 09:36:56

Modified files:
	lang/nim       : Makefile 

Log message:
mark BROKEN-i386; hardcodes gcc


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 09:55:55

Modified files:
	mail/postgrey  : Makefile distinfo 
	mail/postgrey/patches: patch-postgrey 
	mail/postgrey/pkg: PLIST 

Log message:
update to postgrey-1.37


CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/08/31 10:03:28

Modified files:
	usr.bin/locate/locate: updatedb.sh 

Log message:
Previous change prevented non-root uses of locate by users.

Issue pointed out by Raf Czlonka, espie, and aja

Check write permissions on containing directory before beginning a
potential long scan.

Input from kn@

ok millert@ aja@ kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/08/31 10:26:24

Modified files:
	share/man/man4 : null.4 

Log message:
correct HISTORY of /dev/null

facts researched from:
https://minnie.tuhs.org/cgi-bin/utree.pl?file=V4/man/man1/sh.1
https://minnie.tuhs.org/cgi-bin/utree.pl?file=V4/nsys/ken/mem.c
https://minnie.tuhs.org/cgi-bin/utree.pl?file=V5/usr/sys/dmr/mem.c
https://minnie.tuhs.org/cgi-bin/utree.pl?file=V6/usr/man/man4/mem.4

error reported by Sevan Janiyan <venture37 at geeklan dot co dot uk>
wording proposed by jmc@
OK jmc@ sobrado@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/08/31 11:21:33

Modified files:
	devel/libev    : Makefile distinfo 
	devel/libev/patches: patch-Makefile_in patch-configure 
	devel/p5-EV    : Makefile distinfo 

Log message:
update to libev/p5-EV 4.27


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/08/31 11:59:33

Modified files:
	sys/kern       : vfs_syscalls.c 

Log message:
Make readlink require UNVEIL_READ instead of UNVEIL_INSPECT only
since realpath() is now a system call
ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/08/31 12:28:08

Modified files:
	databases/xapian-bindings: Makefile 
	databases/xapian-bindings/pkg: PLIST-ruby 

Log message:
Fix xapian ruby binding after recent ruby update

Problem found the hard way by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/31 13:20:29

Modified files:
	sys/dev/fdt    : amlclock.c 

Log message:
Add SD/MMC clocks.  Generalize the clock gating code for this purpose.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/31 14:59:17

Modified files:
	sys/dev/fdt    : amlclock.c 

Log message:
More SD/MMC clock stuff.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/08/31 15:00:17

Modified files:
	sys/dev/fdt    : amlpinctrl.c 

Log message:
Add code to configure SD/MMC pins.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/31 17:51:23

Modified files:
	sys/arch/amd64/amd64: Tag: OPENBSD_6_5 acpi_machdep.c 

Log message:
Restore msrs & pat on main cpu.  jcs observed a slow console on x1r7,
and kettenis identified missing pat restore.
Many other machines may be improved by this change.
from deraadt; ok kettenis jcs

OpenBSD 6.5 errata 009


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/31 17:51:52

Modified files:
	sys/arch/amd64/amd64: Tag: OPENBSD_6_4 acpi_machdep.c 

Log message:
Restore msrs & pat on main cpu.  jcs observed a slow console on x1r7,
and kettenis identified missing pat restore.
Many other machines may be improved by this change.
from deraadt; ok kettenis jcs

OpenBSD 6.4 errata 022


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/31 17:55:51

Modified files:
	sys/netinet6   : Tag: OPENBSD_6_5 frag6.c ip6_var.h 

Log message:
Do not use the flow of the first fragment to store ECN information.
Handle the ECN in the fragment queue.
Reported-by: syzbot+0aa80b25e9041001cac8@syzkaller.appspotmail.com
fix from FreeBSD; OK claudio@

OpenBSD 6.5 errata 010


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/08/31 17:56:33

Modified files:
	sys/netinet6   : Tag: OPENBSD_6_4 frag6.c ip6_var.h 

Log message:
Do not use the flow of the first fragment to store ECN information.
Handle the ECN in the fragment queue.
Reported-by: syzbot+0aa80b25e9041001cac8@syzkaller.appspotmail.com
fix from FreeBSD; OK claudio@

OpenBSD 6.4 errata 023


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/31 21:17:28

Modified files:
	devel/py-configargparse: Makefile distinfo 

Log message:
Update devel/py-configargparse 0.12.0 -> 0.14.0

Original diff from maintainer Timo Myyra

Updated by myself to go to latest version and use MODPY_PYTEST


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/08/31 23:00:23

Modified files:
	devel/py-configargparse/pkg: PLIST 

Log message:
Fix the missed 1 line change to PLIST in last commit

Bump REVISION


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/01 00:14:27

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/01 03:04:33

Modified files:
	multimedia/gstreamer1: Makefile.inc 

Log message:
Fix comment.

mostly from Brad


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/01 03:10:09

Modified files:
	lib/libcrypto/man: EVP_PKEY_asn1_new.3 EVP_PKEY_set1_RSA.3 

Log message:
Document EVP_PKEY_get0(3), EVP_PKEY_assign_GOST(3), EVP_PKEY_assign(3),
and EVP_PKEY_set_type(3).  While here, clarify a few points regarding
reference count and type checking.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 03:51:37

Modified files:
	devel/py-ioflo : Makefile distinfo 
	devel/py-ioflo/pkg: PLIST 

Log message:
update to py-ioflo-1.7.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 03:54:36

Modified files:
	math/py-graphviz: Makefile distinfo 
	math/py-graphviz/pkg: PLIST 

Log message:
update to py-graphviz-0.12


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 04:58:44

Modified files:
	www/qutebrowser: Makefile 

Log message:
mark BROKEN; there is no point shipping a browser we cannot keep up-to-date.
newer versions require QtWebEngine from QT5 for which we don't have a working port


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 05:10:23

Modified files:
	devel/ruby-xdg : Makefile distinfo 
	devel/ruby-xdg/pkg: PLIST 

Log message:
update to xdg-2.2.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 05:10:36

Modified files:
	sysutils/tmuxinator: Makefile distinfo 
	sysutils/tmuxinator/patches: patch-lib_tmuxinator_config_rb 

Log message:
update to tmuxinator-1.1.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 05:44:13

Modified files:
	net/cppzmq     : Makefile distinfo 
Removed files:
	net/cppzmq/patches: patch-libzmq-pkg-config_FindZeroMQ_cmake 

Log message:
- update to cppzmq-4.4.1
- remove now-unneeded patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 06:07:57

Modified files:
	net/zeromq     : Makefile distinfo 
	net/zeromq/pkg : PLIST 

Log message:
update to zeromq-4.3.2, includes a fix for CVE-2019-13132


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 06:08:05

Modified files:
	net/zeromq     : Tag: OPENBSD_6_5 Makefile 
Added files:
	net/zeromq/patches: Tag: OPENBSD_6_5 patch-src_curve_server_cpp 

Log message:
apply fix from upstream for CVE-2019-13132


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/01 06:16:01

Modified files:
	sys/arch/octeon/dev: octcib.c octcit.c octciu.c 

Log message:
Make it clearer where message "spurious interrupt" comes from.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 06:34:08

Modified files:
	security/py-M2Crypto: Makefile distinfo 

Log message:
update to py-M2Crypto-0.35.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 07:18:13

Modified files:
	net/wireguard-tools: Makefile distinfo 

Log message:
update to wireguard-tools-0.0.20190702


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 07:18:14

Modified files:
	net/wireguard-go: Makefile distinfo 

Log message:
update to wireguard-go-0.0.20190805


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 08:01:08

Modified files:
	x11/sxhkd      : Makefile distinfo 
	x11/sxhkd/patches: patch-Makefile 

Log message:
update to sxhkd-0.6.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/01 08:01:24

Modified files:
	x11/bspwm      : Makefile distinfo 
	x11/bspwm/patches: patch-Makefile 
	x11/bspwm/pkg  : PLIST 

Log message:
update to bspwm-0.9.9


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/01 09:03:32

Modified files:
	sys/dev/ic     : aic7xxx_cam.h 
	sys/dev/pv     : hvs.c 
	sys/scsi       : cd.c safte.c scsi_base.c scsiconf.c scsiconf.h 
	                 sd.c ses.c 

Log message:
Adopt the SCSI versioning #define's from FreeBSD. Eliminate the
now unneeded version_to_spc() mapping array, a duplicate #define
and a couple of magic numbers. Toss in some comments for future
generations of spelunkers.

Makes it possible to check for specific SPC versions when new
features or eliminated features require such a check.

No intentional functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/01 09:12:03

Modified files:
	usr.bin/mandoc : html.c html.h mdoc_html.c 

Log message:
delete the TAG_IDIV crutch, which is no longer used


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/01 09:34:15

Modified files:
	sys/arch/arm64/arm64: cpu.c 
	sys/arch/arm64/include: armreg.h 

Log message:
Newer ARMv8 processors now include a new CSV2 field in their processor
feature register that can indicate that a processor is not vulnarable to
Spectre v2 attacks.  Use this field in favour of adding specific processors
to a whitelist.  Continue to whitelist the few processors that are known
not to be vulnerable but don't set the appropriate value in the CSV2 field.

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/01 09:49:20

Modified files:
	fonts/lohit-fonts: Makefile 

Log message:
Remove myself as maintainer as I have neither used nor actually maintained
this port in years.  Updates to this port will require some thought as
upstream now separately versions the individual fonts.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/01 10:01:43

Modified files:
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amlmmc.c 

Log message:
Add amlmmc(4), a driver for the SD/MMC controller found on various
Amlogic SoCs.  Still work in progress.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/01 10:28:50

Log message:
    Import LLVM 8.0.1 release including clang, lld and lldb.
    
    Status:
    
    Vendor Tag:	LLVM
    Release Tags:	LLVM_8_0_1
    
    U src/gnu/llvm/.clang-format
    U src/gnu/llvm/CREDITS.TXT
    U src/gnu/llvm/CMakeLists.txt
    U src/gnu/llvm/RELEASE_TESTERS.TXT
    U src/gnu/llvm/configure
    U src/gnu/llvm/LICENSE.TXT
    U src/gnu/llvm/.clang-tidy
    U src/gnu/llvm/LLVMBuild.txt
    U src/gnu/llvm/README.txt
    U src/gnu/llvm/llvm.spec.in
    U src/gnu/llvm/.arcconfig
    U src/gnu/llvm/CODE_OWNERS.TXT
    U src/gnu/llvm/examples/CMakeLists.txt
    U src/gnu/llvm/examples/LLVMBuild.txt
    U src/gnu/llvm/examples/Kaleidoscope/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter6/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter6/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/initial/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/split-lib.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/toy-jit.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/cached/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/toy-jit.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/lazy/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/genk-timing.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/split-lib.py
    U src/gnu/llvm/examples/Kaleidoscope/MCJIT/complete/README.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter2/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter2/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter3/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/RemoteJITUtils.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server/server.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/Chapter5/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter5/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/include/KaleidoscopeJIT.h
    U src/gnu/llvm/examples/Kaleidoscope/Chapter4/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter4/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter7/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter9/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter9/CMakeLists.txt
    U src/gnu/llvm/examples/Kaleidoscope/Chapter8/toy.cpp
    U src/gnu/llvm/examples/Kaleidoscope/Chapter8/CMakeLists.txt
    U src/gnu/llvm/examples/BrainF/CMakeLists.txt
    U src/gnu/llvm/examples/BrainF/BrainFDriver.cpp
    U src/gnu/llvm/examples/BrainF/BrainF.h
    U src/gnu/llvm/examples/BrainF/BrainF.cpp
    U src/gnu/llvm/examples/Fibonacci/CMakeLists.txt
    U src/gnu/llvm/examples/Fibonacci/fibonacci.cpp
    U src/gnu/llvm/examples/HowToUseJIT/HowToUseJIT.cpp
    U src/gnu/llvm/examples/HowToUseJIT/CMakeLists.txt
    U src/gnu/llvm/examples/ParallelJIT/CMakeLists.txt
    U src/gnu/llvm/examples/ParallelJIT/ParallelJIT.cpp
    U src/gnu/llvm/examples/ExceptionDemo/ExceptionDemo.cpp
    U src/gnu/llvm/examples/ExceptionDemo/CMakeLists.txt
    U src/gnu/llvm/examples/ModuleMaker/ModuleMaker.cpp
    U src/gnu/llvm/examples/ModuleMaker/CMakeLists.txt
    U src/gnu/llvm/examples/ModuleMaker/README.txt
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter6/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter2/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter3/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter5/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter4/codegen.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/myocamlbuild.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/toplevel.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/toy.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/token.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/bindings.c
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/_tags
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/parser.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/ast.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/lexer.ml
    U src/gnu/llvm/examples/OCaml-Kaleidoscope/Chapter7/codegen.ml
    U src/gnu/llvm/lib/CMakeLists.txt
    U src/gnu/llvm/lib/LLVMBuild.txt
    U src/gnu/llvm/lib/IR/PassRegistry.cpp
    U src/gnu/llvm/lib/IR/Type.cpp
    U src/gnu/llvm/lib/IR/MDBuilder.cpp
    U src/gnu/llvm/lib/IR/PassManager.cpp
    U src/gnu/llvm/lib/IR/LLVMContext.cpp
    U src/gnu/llvm/lib/IR/LegacyPassManager.cpp
    U src/gnu/llvm/lib/IR/OptBisect.cpp
    U src/gnu/llvm/lib/IR/ConstantFold.h
    U src/gnu/llvm/lib/IR/PassInstrumentation.cpp
    U src/gnu/llvm/lib/IR/Core.cpp
    U src/gnu/llvm/lib/IR/DiagnosticPrinter.cpp
    U src/gnu/llvm/lib/IR/DebugInfoMetadata.cpp
    U src/gnu/llvm/lib/IR/Globals.cpp
    U src/gnu/llvm/lib/IR/Dominators.cpp
    U src/gnu/llvm/lib/IR/User.cpp
    U src/gnu/llvm/lib/IR/IRBuilder.cpp
    U src/gnu/llvm/lib/IR/PassTimingInfo.cpp
    U src/gnu/llvm/lib/IR/ValueSymbolTable.cpp
    U src/gnu/llvm/lib/IR/Mangler.cpp
    U src/gnu/llvm/lib/IR/ConstantRange.cpp
    U src/gnu/llvm/lib/IR/Pass.cpp
    U src/gnu/llvm/lib/IR/Operator.cpp
    U src/gnu/llvm/lib/IR/DataLayout.cpp
    U src/gnu/llvm/lib/IR/CMakeLists.txt
    U src/gnu/llvm/lib/IR/Module.cpp
    U src/gnu/llvm/lib/IR/ProfileSummary.cpp
    U src/gnu/llvm/lib/IR/Metadata.cpp
    U src/gnu/llvm/lib/IR/GVMaterializer.cpp
    U src/gnu/llvm/lib/IR/DiagnosticHandler.cpp
    U src/gnu/llvm/lib/IR/TypeFinder.cpp
    U src/gnu/llvm/lib/IR/Comdat.cpp
    U src/gnu/llvm/lib/IR/DebugLoc.cpp
    U src/gnu/llvm/lib/IR/IRPrintingPasses.cpp
    U src/gnu/llvm/lib/IR/ConstantFold.cpp
    U src/gnu/llvm/lib/IR/LLVMBuild.txt
    U src/gnu/llvm/lib/IR/DebugInfo.cpp
    U src/gnu/llvm/lib/IR/AutoUpgrade.cpp
    U src/gnu/llvm/lib/IR/AttributesCompatFunc.td
    U src/gnu/llvm/lib/IR/Instruction.cpp
    U src/gnu/llvm/lib/IR/DomTreeUpdater.cpp
    U src/gnu/llvm/lib/IR/ModuleSummaryIndex.cpp
    U src/gnu/llvm/lib/IR/Use.cpp
    U src/gnu/llvm/lib/IR/Verifier.cpp
    U src/gnu/llvm/lib/IR/DiagnosticInfo.cpp
    U src/gnu/llvm/lib/IR/IntrinsicInst.cpp
    U src/gnu/llvm/lib/IR/AttributeImpl.h
    U src/gnu/llvm/lib/IR/SafepointIRVerifier.cpp
    U src/gnu/llvm/lib/IR/Statepoint.cpp
    U src/gnu/llvm/lib/IR/InlineAsm.cpp
    U src/gnu/llvm/lib/IR/ConstantsContext.h
    U src/gnu/llvm/lib/IR/AsmWriter.cpp
    U src/gnu/llvm/lib/IR/LLVMContextImpl.h
    U src/gnu/llvm/lib/IR/LLVMContextImpl.cpp
    U src/gnu/llvm/lib/IR/Value.cpp
    U src/gnu/llvm/lib/IR/Instructions.cpp
    U src/gnu/llvm/lib/IR/Function.cpp
    U src/gnu/llvm/lib/IR/Attributes.cpp
    U src/gnu/llvm/lib/IR/BasicBlock.cpp
    U src/gnu/llvm/lib/IR/MetadataImpl.h
    U src/gnu/llvm/lib/IR/Constants.cpp
    U src/gnu/llvm/lib/IR/SymbolTableListTraitsImpl.h
    U src/gnu/llvm/lib/IR/DIBuilder.cpp
    U src/gnu/llvm/lib/TextAPI/CMakeLists.txt
    U src/gnu/llvm/lib/TextAPI/LLVMBuild.txt
    U src/gnu/llvm/lib/TextAPI/ELF/ELFStub.cpp
    U src/gnu/llvm/lib/TextAPI/ELF/TBEHandler.cpp
    U src/gnu/llvm/lib/Linker/LinkDiagnosticInfo.h
    U src/gnu/llvm/lib/Linker/CMakeLists.txt
    U src/gnu/llvm/lib/Linker/LLVMBuild.txt
    U src/gnu/llvm/lib/Linker/LinkModules.cpp
    U src/gnu/llvm/lib/Linker/IRMover.cpp
    U src/gnu/llvm/lib/TableGen/TGParser.h
    U src/gnu/llvm/lib/TableGen/JSONBackend.cpp
    U src/gnu/llvm/lib/TableGen/SetTheory.cpp
    U src/gnu/llvm/lib/TableGen/TGParser.cpp
    U src/gnu/llvm/lib/TableGen/CMakeLists.txt
    U src/gnu/llvm/lib/TableGen/LLVMBuild.txt
    U src/gnu/llvm/lib/TableGen/TableGenBackend.cpp
    U src/gnu/llvm/lib/TableGen/Record.cpp
    U src/gnu/llvm/lib/TableGen/Main.cpp
    U src/gnu/llvm/lib/TableGen/Error.cpp
    U src/gnu/llvm/lib/TableGen/TGLexer.h
    U src/gnu/llvm/lib/TableGen/TGLexer.cpp
    U src/gnu/llvm/lib/TableGen/StringMatcher.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/MachineScheduler.cpp
    U src/gnu/llvm/lib/CodeGen/MachineSink.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGInstrs.cpp
    U src/gnu/llvm/lib/CodeGen/MachinePostDominators.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominators.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLICM.cpp
    U src/gnu/llvm/lib/CodeGen/ScheduleDAG.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocPBQP.cpp
    U src/gnu/llvm/lib/CodeGen/FaultMaps.cpp
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.cpp
    U src/gnu/llvm/lib/CodeGen/LLVMTargetMachine.cpp
    U src/gnu/llvm/lib/CodeGen/LoopTraversal.cpp
    U src/gnu/llvm/lib/CodeGen/FEntryInserter.cpp
    U src/gnu/llvm/lib/CodeGen/ProcessImplicitDefs.cpp
    U src/gnu/llvm/lib/CodeGen/DFAPacketizer.cpp
    U src/gnu/llvm/lib/CodeGen/TargetLoweringBase.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCSE.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.h
    U src/gnu/llvm/lib/CodeGen/InterleavedLoadCombinePass.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalMerge.cpp
    U src/gnu/llvm/lib/CodeGen/Analysis.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/LocalStackSlotAllocation.cpp
    U src/gnu/llvm/lib/CodeGen/GCStrategy.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStack.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.h
    U src/gnu/llvm/lib/CodeGen/PHIElimination.cpp
    U src/gnu/llvm/lib/CodeGen/InterleavedAccessPass.cpp
    U src/gnu/llvm/lib/CodeGen/MachineCopyPropagation.cpp
    U src/gnu/llvm/lib/CodeGen/LiveInterval.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.h
    U src/gnu/llvm/lib/CodeGen/ExpandReductions.cpp
    U src/gnu/llvm/lib/CodeGen/XRayInstrumentation.cpp
    U src/gnu/llvm/lib/CodeGen/MachineOperand.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRegMatrix.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunction.cpp
    U src/gnu/llvm/lib/CodeGen/PseudoSourceValue.cpp
    U src/gnu/llvm/lib/CodeGen/PostRAHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/ParallelCG.cpp
    U src/gnu/llvm/lib/CodeGen/GCRootLowering.cpp
    U src/gnu/llvm/lib/CodeGen/LexicalScopes.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.h
    U src/gnu/llvm/lib/CodeGen/TargetInstrInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.cpp
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfoImpls.cpp
    U src/gnu/llvm/lib/CodeGen/PreISelIntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/Spiller.h
    U src/gnu/llvm/lib/CodeGen/TargetLoweringObjectFileImpl.cpp
    U src/gnu/llvm/lib/CodeGen/MIRCanonicalizerPass.cpp
    U src/gnu/llvm/lib/CodeGen/MachineInstrBundle.cpp
    U src/gnu/llvm/lib/CodeGen/TargetSubtargetInfo.cpp
    U src/gnu/llvm/lib/CodeGen/TwoAddressInstructionPass.cpp
    U src/gnu/llvm/lib/CodeGen/LazyMachineBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/CodeGen/StackProtector.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterScavenging.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.cpp
    U src/gnu/llvm/lib/CodeGen/PrologEpilogInserter.cpp
    U src/gnu/llvm/lib/CodeGen/TargetSchedule.cpp
    U src/gnu/llvm/lib/CodeGen/TargetOptionsImpl.cpp
    U src/gnu/llvm/lib/CodeGen/ExpandPostRAPseudos.cpp
    U src/gnu/llvm/lib/CodeGen/TargetPassConfig.cpp
    U src/gnu/llvm/lib/CodeGen/MachineLoopInfo.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervalUnion.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeEdit.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocFast.cpp
    U src/gnu/llvm/lib/CodeGen/GCMetadata.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeUtils.h
    U src/gnu/llvm/lib/CodeGen/RegUsageInfoCollector.cpp
    U src/gnu/llvm/lib/CodeGen/ImplicitNullChecks.cpp
    U src/gnu/llvm/lib/CodeGen/ExecutionDomainFix.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.h
    U src/gnu/llvm/lib/CodeGen/LiveRegUnits.cpp
    U src/gnu/llvm/lib/CodeGen/BuiltinGCs.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SjLjEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/ValueTypes.cpp
    U src/gnu/llvm/lib/CodeGen/CFIInstrInserter.cpp
    U src/gnu/llvm/lib/CodeGen/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/MachineInstr.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.h
    U src/gnu/llvm/lib/CodeGen/RenameIndependentSubregs.cpp
    U src/gnu/llvm/lib/CodeGen/StackSlotColoring.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterPressure.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugVariables.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/ShadowStackGCLowering.cpp
    U src/gnu/llvm/lib/CodeGen/IntrinsicLowering.cpp
    U src/gnu/llvm/lib/CodeGen/BranchFolding.cpp
    U src/gnu/llvm/lib/CodeGen/LiveVariables.cpp
    U src/gnu/llvm/lib/CodeGen/AggressiveAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/ScheduleDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AllocationOrder.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocGreedy.cpp
    U src/gnu/llvm/lib/CodeGen/MachineModuleInfo.cpp
    U src/gnu/llvm/lib/CodeGen/ResetMachineFunctionPass.cpp
    U src/gnu/llvm/lib/CodeGen/CalcSpillWeights.cpp
    U src/gnu/llvm/lib/CodeGen/EarlyIfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/UnreachableBlockElim.cpp
    U src/gnu/llvm/lib/CodeGen/MachineDominanceFrontier.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrintingPass.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplicator.cpp
    U src/gnu/llvm/lib/CodeGen/PostRASchedulerList.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegionInfo.cpp
    U src/gnu/llvm/lib/CodeGen/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/PatchableFunction.cpp
    U src/gnu/llvm/lib/CodeGen/WinEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/DetectDeadLanes.cpp
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterUsageInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SpillPlacement.h
    U src/gnu/llvm/lib/CodeGen/ReachingDefAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFrameInfo.cpp
    U src/gnu/llvm/lib/CodeGen/ExpandISelPseudos.cpp
    U src/gnu/llvm/lib/CodeGen/CodeGenPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/RegUsageInfoPropagate.cpp
    U src/gnu/llvm/lib/CodeGen/MachineTraceMetrics.cpp
    U src/gnu/llvm/lib/CodeGen/MachinePipeliner.cpp
    U src/gnu/llvm/lib/CodeGen/LowLevelType.cpp
    U src/gnu/llvm/lib/CodeGen/OptimizePHIs.cpp
    U src/gnu/llvm/lib/CodeGen/InlineSpiller.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackLayout.cpp
    U src/gnu/llvm/lib/CodeGen/CallingConvLower.cpp
    U src/gnu/llvm/lib/CodeGen/FuncletLayout.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackColoring.h
    U src/gnu/llvm/lib/CodeGen/MachineSSAUpdater.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeShrink.cpp
    U src/gnu/llvm/lib/CodeGen/LiveIntervals.cpp
    U src/gnu/llvm/lib/CodeGen/VirtRegMap.cpp
    U src/gnu/llvm/lib/CodeGen/README.txt
    U src/gnu/llvm/lib/CodeGen/DwarfEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/TailDuplication.cpp
    U src/gnu/llvm/lib/CodeGen/TargetRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/CodeGen.cpp
    U src/gnu/llvm/lib/CodeGen/EdgeBundles.cpp
    U src/gnu/llvm/lib/CodeGen/MachineBasicBlock.cpp
    U src/gnu/llvm/lib/CodeGen/LiveStacks.cpp
    U src/gnu/llvm/lib/CodeGen/MachineOptimizationRemarkEmitter.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPrinterPass.cpp
    U src/gnu/llvm/lib/CodeGen/ScoreboardHazardRecognizer.cpp
    U src/gnu/llvm/lib/CodeGen/BranchRelaxation.cpp
    U src/gnu/llvm/lib/CodeGen/SplitKit.cpp
    U src/gnu/llvm/lib/CodeGen/TargetFrameLoweringImpl.cpp
    U src/gnu/llvm/lib/CodeGen/MachineFunctionPass.cpp
    U src/gnu/llvm/lib/CodeGen/ShrinkWrap.cpp
    U src/gnu/llvm/lib/CodeGen/AtomicExpandPass.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterClassInfo.cpp
    U src/gnu/llvm/lib/CodeGen/LowerEmuTLS.cpp
    U src/gnu/llvm/lib/CodeGen/SlotIndexes.cpp
    U src/gnu/llvm/lib/CodeGen/SafeStackLayout.h
    U src/gnu/llvm/lib/CodeGen/GCMetadataPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/MIRPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/CriticalAntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/MachineCombiner.cpp
    U src/gnu/llvm/lib/CodeGen/StackMapLivenessAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/LiveDebugValues.cpp
    U src/gnu/llvm/lib/CodeGen/BreakFalseDeps.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBasic.cpp
    U src/gnu/llvm/lib/CodeGen/BasicTargetTransformInfo.cpp
    U src/gnu/llvm/lib/CodeGen/DeadMachineInstructionElim.cpp
    U src/gnu/llvm/lib/CodeGen/StackMaps.cpp
    U src/gnu/llvm/lib/CodeGen/PHIEliminationUtils.h
    U src/gnu/llvm/lib/CodeGen/StackColoring.cpp
    U src/gnu/llvm/lib/CodeGen/ScalarizeMaskedMemIntrin.cpp
    U src/gnu/llvm/lib/CodeGen/WasmEHPrepare.cpp
    U src/gnu/llvm/lib/CodeGen/IndirectBrExpandPass.cpp
    U src/gnu/llvm/lib/CodeGen/LivePhysRegs.cpp
    U src/gnu/llvm/lib/CodeGen/IfConversion.cpp
    U src/gnu/llvm/lib/CodeGen/PeepholeOptimizer.cpp
    U src/gnu/llvm/lib/CodeGen/AntiDepBreaker.h
    U src/gnu/llvm/lib/CodeGen/MachineOutliner.cpp
    U src/gnu/llvm/lib/CodeGen/LatencyPriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/RegAllocBase.h
    U src/gnu/llvm/lib/CodeGen/ExpandMemCmp.cpp
    U src/gnu/llvm/lib/CodeGen/LiveRangeCalc.cpp
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.h
    U src/gnu/llvm/lib/CodeGen/InterferenceCache.cpp
    U src/gnu/llvm/lib/CodeGen/MacroFusion.cpp
    U src/gnu/llvm/lib/CodeGen/RegisterCoalescer.cpp
    U src/gnu/llvm/lib/CodeGen/MachineRegisterInfo.cpp
    U src/gnu/llvm/lib/CodeGen/MachineVerifier.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGTargetInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypes.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FastISel.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGRRList.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeDAG.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/StatepointLowering.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGAddressAnalysis.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SDNodeDbgValue.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ResourcePriorityQueue.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeFloatTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGSDNodes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeVectorOps.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/FunctionLoweringInfo.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGFast.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeIntegerTypes.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/LegalizeTypesGeneric.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/InstrEmitter.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
    U src/gnu/llvm/lib/CodeGen/SelectionDAG/ScheduleDAGVLIW.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/EHStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterDwarf.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinterInlineAsm.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHashAttributes.def
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinCFGuard.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WasmException.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfExpression.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ErlangGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/OcamlGCPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ByteStreamer.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfUnit.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DbgEntityHistoryCalculator.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugHandlerBase.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfFile.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCFIException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WasmException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocEntry.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DwarfStringPool.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIE.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AccelTable.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/WinException.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/EHStreamer.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DebugLocStream.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/AddressPool.h
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/DIEHash.cpp
    U src/gnu/llvm/lib/CodeGen/AsmPrinter/ARMException.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/MIParser.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/MILexer.h
    U src/gnu/llvm/lib/CodeGen/MIRParser/MIParser.h
    U src/gnu/llvm/lib/CodeGen/MIRParser/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/MIRParser/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/MIRParser/MIRParser.cpp
    U src/gnu/llvm/lib/CodeGen/MIRParser/MILexer.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Utils.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/IRTranslator.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizeMutations.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CallLowering.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/GISelChangeObserver.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/GlobalISel.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/InstructionSelect.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CMakeLists.txt
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CSEInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LLVMBuild.txt
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Combiner.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegisterBank.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Legalizer.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/Localizer.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/RegBankSelect.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/CombinerHelper.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/MachineIRBuilder.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/InstructionSelector.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalizerInfo.cpp
    U src/gnu/llvm/lib/CodeGen/GlobalISel/LegalityPredicates.cpp
    U src/gnu/llvm/lib/FuzzMutate/OpDescriptor.cpp
    U src/gnu/llvm/lib/FuzzMutate/RandomIRBuilder.cpp
    U src/gnu/llvm/lib/FuzzMutate/CMakeLists.txt
    U src/gnu/llvm/lib/FuzzMutate/FuzzerCLI.cpp
    U src/gnu/llvm/lib/FuzzMutate/LLVMBuild.txt
    U src/gnu/llvm/lib/FuzzMutate/Operations.cpp
    U src/gnu/llvm/lib/FuzzMutate/IRMutator.cpp
    U src/gnu/llvm/lib/Fuzzer/README.txt
    U src/gnu/llvm/lib/Bitcode/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/Reader/MetadataLoader.h
    U src/gnu/llvm/lib/Bitcode/Reader/BitcodeReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/ValueList.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Reader/BitReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/ValueList.h
    U src/gnu/llvm/lib/Bitcode/Reader/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/Reader/BitstreamReader.cpp
    U src/gnu/llvm/lib/Bitcode/Reader/MetadataLoader.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/BitWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/CMakeLists.txt
    U src/gnu/llvm/lib/Bitcode/Writer/LLVMBuild.txt
    U src/gnu/llvm/lib/Bitcode/Writer/BitcodeWriterPass.cpp
    U src/gnu/llvm/lib/Bitcode/Writer/ValueEnumerator.h
    U src/gnu/llvm/lib/Passes/StandardInstrumentations.cpp
    U src/gnu/llvm/lib/Passes/CMakeLists.txt
    U src/gnu/llvm/lib/Passes/PassRegistry.def
    U src/gnu/llvm/lib/Passes/LLVMBuild.txt
    U src/gnu/llvm/lib/Passes/PassPlugin.cpp
    U src/gnu/llvm/lib/Passes/PassBuilder.cpp
    U src/gnu/llvm/lib/ObjectYAML/DWARFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/CodeViewYAMLDebugSections.cpp
    U src/gnu/llvm/lib/ObjectYAML/YAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/WasmYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/CMakeLists.txt
    U src/gnu/llvm/lib/ObjectYAML/ObjectYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/DWARFVisitor.cpp
    U src/gnu/llvm/lib/ObjectYAML/LLVMBuild.txt
    U src/gnu/llvm/lib/ObjectYAML/DWARFEmitter.cpp
    U src/gnu/llvm/lib/ObjectYAML/MachOYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/ELFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/DWARFVisitor.h
    U src/gnu/llvm/lib/ObjectYAML/CodeViewYAMLTypeHashing.cpp
    U src/gnu/llvm/lib/ObjectYAML/COFFYAML.cpp
    U src/gnu/llvm/lib/ObjectYAML/CodeViewYAMLTypes.cpp
    U src/gnu/llvm/lib/ObjectYAML/CodeViewYAMLSymbols.cpp
    U src/gnu/llvm/lib/Option/Arg.cpp
    U src/gnu/llvm/lib/Option/CMakeLists.txt
    U src/gnu/llvm/lib/Option/LLVMBuild.txt
    U src/gnu/llvm/lib/Option/OptTable.cpp
    U src/gnu/llvm/lib/Option/ArgList.cpp
    U src/gnu/llvm/lib/Option/Option.cpp
    U src/gnu/llvm/lib/LTO/ThinLTOCodeGenerator.cpp
    U src/gnu/llvm/lib/LTO/SummaryBasedOptimizations.cpp
    U src/gnu/llvm/lib/LTO/CMakeLists.txt
    U src/gnu/llvm/lib/LTO/UpdateCompilerUsed.cpp
    U src/gnu/llvm/lib/LTO/LTO.cpp
    U src/gnu/llvm/lib/LTO/LLVMBuild.txt
    U src/gnu/llvm/lib/LTO/LTOCodeGenerator.cpp
    U src/gnu/llvm/lib/LTO/LTOModule.cpp
    U src/gnu/llvm/lib/LTO/LTOBackend.cpp
    U src/gnu/llvm/lib/LTO/Caching.cpp
    U src/gnu/llvm/lib/ToolDrivers/CMakeLists.txt
    U src/gnu/llvm/lib/ToolDrivers/LLVMBuild.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-dlltool/DlltoolDriver.cpp
    U src/gnu/llvm/lib/ToolDrivers/llvm-dlltool/CMakeLists.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-dlltool/Options.td
    U src/gnu/llvm/lib/ToolDrivers/llvm-dlltool/LLVMBuild.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-lib/CMakeLists.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-lib/Options.td
    U src/gnu/llvm/lib/ToolDrivers/llvm-lib/LLVMBuild.txt
    U src/gnu/llvm/lib/ToolDrivers/llvm-lib/LibDriver.cpp
    U src/gnu/llvm/lib/Support/UnicodeCaseFold.cpp
    U src/gnu/llvm/lib/Support/SystemUtils.cpp
    U src/gnu/llvm/lib/Support/Locale.cpp
    U src/gnu/llvm/lib/Support/raw_ostream.cpp
    U src/gnu/llvm/lib/Support/PluginLoader.cpp
    U src/gnu/llvm/lib/Support/JSON.cpp
    U src/gnu/llvm/lib/Support/Hashing.cpp
    U src/gnu/llvm/lib/Support/ScaledNumber.cpp
    U src/gnu/llvm/lib/Support/CommandLine.cpp
    U src/gnu/llvm/lib/Support/StringExtras.cpp
    U src/gnu/llvm/lib/Support/StringRef.cpp
    U src/gnu/llvm/lib/Support/BranchProbability.cpp
    U src/gnu/llvm/lib/Support/SHA1.cpp
    U src/gnu/llvm/lib/Support/NativeFormatting.cpp
    U src/gnu/llvm/lib/Support/StringMap.cpp
    U src/gnu/llvm/lib/Support/RWMutex.cpp
    U src/gnu/llvm/lib/Support/GlobPattern.cpp
    U src/gnu/llvm/lib/Support/LEB128.cpp
    U src/gnu/llvm/lib/Support/ARMWinEH.cpp
    U src/gnu/llvm/lib/Support/BuryPointer.cpp
    U src/gnu/llvm/lib/Support/ConvertUTF.cpp
    U src/gnu/llvm/lib/Support/AArch64TargetParser.cpp
    U src/gnu/llvm/lib/Support/IntervalMap.cpp
    U src/gnu/llvm/lib/Support/APFloat.cpp
    U src/gnu/llvm/lib/Support/ScopedPrinter.cpp
    U src/gnu/llvm/lib/Support/MD5.cpp
    U src/gnu/llvm/lib/Support/DeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/TargetRegistry.cpp
    U src/gnu/llvm/lib/Support/FormatVariadic.cpp
    U src/gnu/llvm/lib/Support/ARMBuildAttrs.cpp
    U src/gnu/llvm/lib/Support/Atomic.cpp
    U src/gnu/llvm/lib/Support/Path.cpp
    U src/gnu/llvm/lib/Support/StringPool.cpp
    U src/gnu/llvm/lib/Support/regstrlcpy.c
    U src/gnu/llvm/lib/Support/BinaryStreamError.cpp
    U src/gnu/llvm/lib/Support/APSInt.cpp
    U src/gnu/llvm/lib/Support/TarWriter.cpp
    U src/gnu/llvm/lib/Support/regex2.h
    U src/gnu/llvm/lib/Support/SourceMgr.cpp
    U src/gnu/llvm/lib/Support/InitLLVM.cpp
    U src/gnu/llvm/lib/Support/regerror.c
    U src/gnu/llvm/lib/Support/VersionTuple.cpp
    U src/gnu/llvm/lib/Support/LockFileManager.cpp
    U src/gnu/llvm/lib/Support/raw_os_ostream.cpp
    U src/gnu/llvm/lib/Support/Valgrind.cpp
    U src/gnu/llvm/lib/Support/ToolOutputFile.cpp
    U src/gnu/llvm/lib/Support/Compression.cpp
    U src/gnu/llvm/lib/Support/Host.cpp
    U src/gnu/llvm/lib/Support/VirtualFileSystem.cpp
    U src/gnu/llvm/lib/Support/RandomNumberGenerator.cpp
    U src/gnu/llvm/lib/Support/CodeGenCoverage.cpp
    U src/gnu/llvm/lib/Support/GraphWriter.cpp
    U src/gnu/llvm/lib/Support/Options.cpp
    U src/gnu/llvm/lib/Support/SmallPtrSet.cpp
    U src/gnu/llvm/lib/Support/Unicode.cpp
    U src/gnu/llvm/lib/Support/regexec.c
    U src/gnu/llvm/lib/Support/Triple.cpp
    U src/gnu/llvm/lib/Support/Regex.cpp
    U src/gnu/llvm/lib/Support/AMDGPUMetadata.cpp
    U src/gnu/llvm/lib/Support/DataExtractor.cpp
    U src/gnu/llvm/lib/Support/LineIterator.cpp
    U src/gnu/llvm/lib/Support/ErrorHandling.cpp
    U src/gnu/llvm/lib/Support/regutils.h
    U src/gnu/llvm/lib/Support/CMakeLists.txt
    U src/gnu/llvm/lib/Support/Twine.cpp
    U src/gnu/llvm/lib/Support/Program.cpp
    U src/gnu/llvm/lib/Support/Parallel.cpp
    U src/gnu/llvm/lib/Support/Watchdog.cpp
    U src/gnu/llvm/lib/Support/Memory.cpp
    U src/gnu/llvm/lib/Support/Threading.cpp
    U src/gnu/llvm/lib/Support/FoldingSet.cpp
    U src/gnu/llvm/lib/Support/Statistic.cpp
    U src/gnu/llvm/lib/Support/Timer.cpp
    U src/gnu/llvm/lib/Support/ARMTargetParser.cpp
    U src/gnu/llvm/lib/Support/xxhash.cpp
    U src/gnu/llvm/lib/Support/Allocator.cpp
    U src/gnu/llvm/lib/Support/FileCheck.cpp
    U src/gnu/llvm/lib/Support/KnownBits.cpp
    U src/gnu/llvm/lib/Support/regex_impl.h
    U src/gnu/llvm/lib/Support/StringSaver.cpp
    U src/gnu/llvm/lib/Support/LLVMBuild.txt
    U src/gnu/llvm/lib/Support/DJB.cpp
    U src/gnu/llvm/lib/Support/JamCRC.cpp
    U src/gnu/llvm/lib/Support/TargetParser.cpp
    U src/gnu/llvm/lib/Support/ConvertUTFWrapper.cpp
    U src/gnu/llvm/lib/Support/DynamicLibrary.cpp
    U src/gnu/llvm/lib/Support/SmallVector.cpp
    U src/gnu/llvm/lib/Support/ThreadLocal.cpp
    U src/gnu/llvm/lib/Support/BinaryStreamRef.cpp
    U src/gnu/llvm/lib/Support/CrashRecoveryContext.cpp
    U src/gnu/llvm/lib/Support/TrigramIndex.cpp
    U src/gnu/llvm/lib/Support/README.txt.system
    U src/gnu/llvm/lib/Support/PrettyStackTrace.cpp
    U src/gnu/llvm/lib/Support/LowLevelType.cpp
    U src/gnu/llvm/lib/Support/Signals.cpp
    U src/gnu/llvm/lib/Support/Error.cpp
    U src/gnu/llvm/lib/Support/DAGDeltaAlgorithm.cpp
    U src/gnu/llvm/lib/Support/DebugCounter.cpp
    U src/gnu/llvm/lib/Support/BlockFrequency.cpp
    U src/gnu/llvm/lib/Support/IntEqClasses.cpp
    U src/gnu/llvm/lib/Support/regfree.c
    U src/gnu/llvm/lib/Support/YAMLTraits.cpp
    U src/gnu/llvm/lib/Support/CachePruning.cpp
    U src/gnu/llvm/lib/Support/COPYRIGHT.regex
    U src/gnu/llvm/lib/Support/BinaryStreamReader.cpp
    U src/gnu/llvm/lib/Support/ItaniumManglingCanonicalizer.cpp
    U src/gnu/llvm/lib/Support/MemoryBuffer.cpp
    U src/gnu/llvm/lib/Support/Debug.cpp
    U src/gnu/llvm/lib/Support/regcomp.c
    U src/gnu/llvm/lib/Support/regengine.inc
    U src/gnu/llvm/lib/Support/ManagedStatic.cpp
    U src/gnu/llvm/lib/Support/ARMAttributeParser.cpp
    U src/gnu/llvm/lib/Support/circular_raw_ostream.cpp
    U src/gnu/llvm/lib/Support/FileUtilities.cpp
    U src/gnu/llvm/lib/Support/COM.cpp
    U src/gnu/llvm/lib/Support/YAMLParser.cpp
    U src/gnu/llvm/lib/Support/Chrono.cpp
    U src/gnu/llvm/lib/Support/Mutex.cpp
    U src/gnu/llvm/lib/Support/Process.cpp
    U src/gnu/llvm/lib/Support/SpecialCaseList.cpp
    U src/gnu/llvm/lib/Support/ThreadPool.cpp
    U src/gnu/llvm/lib/Support/MathExtras.cpp
    U src/gnu/llvm/lib/Support/BinaryStreamWriter.cpp
    U src/gnu/llvm/lib/Support/WithColor.cpp
    U src/gnu/llvm/lib/Support/SymbolRemappingReader.cpp
    U src/gnu/llvm/lib/Support/Errno.cpp
    U src/gnu/llvm/lib/Support/FormattedStream.cpp
    U src/gnu/llvm/lib/Support/FileOutputBuffer.cpp
    U src/gnu/llvm/lib/Support/APInt.cpp
    U src/gnu/llvm/lib/Support/Windows/DynamicLibrary.inc
    U src/gnu/llvm/lib/Support/Windows/ThreadLocal.inc
    U src/gnu/llvm/lib/Support/Windows/Threading.inc
    U src/gnu/llvm/lib/Support/Windows/Process.inc
    U src/gnu/llvm/lib/Support/Windows/Mutex.inc
    U src/gnu/llvm/lib/Support/Windows/Program.inc
    U src/gnu/llvm/lib/Support/Windows/Host.inc
    U src/gnu/llvm/lib/Support/Windows/Memory.inc
    U src/gnu/llvm/lib/Support/Windows/RWMutex.inc
    U src/gnu/llvm/lib/Support/Windows/COM.inc
    U src/gnu/llvm/lib/Support/Windows/Signals.inc
    U src/gnu/llvm/lib/Support/Windows/Watchdog.inc
    U src/gnu/llvm/lib/Support/Windows/Path.inc
    U src/gnu/llvm/lib/Support/Windows/WindowsSupport.h
    U src/gnu/llvm/lib/Support/Windows/explicit_symbols.inc
    U src/gnu/llvm/lib/Support/Unix/DynamicLibrary.inc
    U src/gnu/llvm/lib/Support/Unix/ThreadLocal.inc
    U src/gnu/llvm/lib/Support/Unix/Threading.inc
    U src/gnu/llvm/lib/Support/Unix/Process.inc
    U src/gnu/llvm/lib/Support/Unix/Mutex.inc
    U src/gnu/llvm/lib/Support/Unix/Program.inc
    U src/gnu/llvm/lib/Support/Unix/Host.inc
    U src/gnu/llvm/lib/Support/Unix/Memory.inc
    U src/gnu/llvm/lib/Support/Unix/Unix.h
    U src/gnu/llvm/lib/Support/Unix/RWMutex.inc
    U src/gnu/llvm/lib/Support/Unix/COM.inc
    U src/gnu/llvm/lib/Support/Unix/Signals.inc
    U src/gnu/llvm/lib/Support/Unix/README.txt
    U src/gnu/llvm/lib/Support/Unix/Watchdog.inc
    U src/gnu/llvm/lib/Support/Unix/Path.inc
    U src/gnu/llvm/lib/DebugInfo/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/Symbolize/Symbolize.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.h
    U src/gnu/llvm/lib/DebugInfo/Symbolize/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/Symbolize/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
    U src/gnu/llvm/lib/DebugInfo/Symbolize/DIPrinter.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDataExtractor.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFVerifier.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAddr.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugFrame.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAranges.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAddressRange.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugPubTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugInfoEntry.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDie.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFGdbIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugRangeList.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnitIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAbbreviationDeclaration.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugArangeSet.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFAcceleratorTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFFormValue.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFCompileUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFTypeUnit.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugMacro.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLoc.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugAbbrev.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFContext.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFListTable.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugRnglists.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFDebugLine.cpp
    U src/gnu/llvm/lib/DebugInfo/DWARF/DWARFExpression.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBExtras.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeArray.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolExe.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeUDT.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTableShape.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolBlock.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugStart.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBContext.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeVTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBaseClass.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDB.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCustom.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolAnnotation.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandEnv.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompiland.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/UDTLayout.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBInterfaceAnchors.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypePointer.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUsingNamespace.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolUnknown.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolCompilandDetails.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/IPDBSourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionSig.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFunctionArg.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeEnum.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolThunk.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolPublicSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeFriend.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/GenericError.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFunc.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeDimension.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolLabel.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolData.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolFuncDebugEnd.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeCustom.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeTypedef.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeManaged.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbolTypeBuiltin.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/PDBSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PDBStringTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/TpiStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/RawError.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/SymbolCache.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeBuiltin.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/GlobalsStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PDBFileBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiModuleList.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/EnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeSymbolEnumerator.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/ModuleDebugStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeEnumModules.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeTypedef.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NamedStreamMap.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypePointer.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PDBFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/InfoStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeFunctionSig.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/HashTable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeVTShape.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeEnumGlobals.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeArray.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeSession.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/TpiHashing.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/GSIStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/SymbolStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PDBStringTableBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/PublicsStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeExeSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeRawSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeEnumTypes.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/Hash.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/NativeCompilandSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptor.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/InfoStreamBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/Native/TpiStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumFrameData.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASession.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIARawSymbol.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIADataStream.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAInjectedSource.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIATable.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumInjectedSources.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSourceFiles.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSectionContribs.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumLineNumbers.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAError.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumSymbols.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASectionContrib.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumDebugStreams.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIASourceFile.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAEnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIALineNumber.cpp
    U src/gnu/llvm/lib/DebugInfo/PDB/DIA/DIAFrameData.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/AppendingTypeTableBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecordHelpers.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugChecksumsSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/LazyRandomTypeCollection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/RecordSerialization.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/ContinuationRecordBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSymbolsSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/MergingTypeTableBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/EnumTables.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeStreamMerger.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugStringTableSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugInlineeLinesSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeIndex.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/RecordName.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeRecordMapping.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeIndexDiscovery.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/CodeView/CVTypeVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CodeViewError.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSymbolRVASubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeHashing.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/TypeTableCollection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/Line.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/Formatters.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugLinesSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugCrossImpSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolDumper.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSubsectionVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SimpleTypeSerializer.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugSubsectionRecord.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugFrameDataSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/DebugCrossExSubsection.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/StringsAndChecksums.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/GlobalTypeTableBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFError.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/MappedBlockStream.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/CMakeLists.txt
    U src/gnu/llvm/lib/DebugInfo/MSF/LLVMBuild.txt
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFBuilder.cpp
    U src/gnu/llvm/lib/DebugInfo/MSF/MSFCommon.cpp
    U src/gnu/llvm/lib/WindowsManifest/CMakeLists.txt
    U src/gnu/llvm/lib/WindowsManifest/LLVMBuild.txt
    U src/gnu/llvm/lib/WindowsManifest/WindowsManifestMerger.cpp
    U src/gnu/llvm/lib/IRReader/CMakeLists.txt
    U src/gnu/llvm/lib/IRReader/IRReader.cpp
    U src/gnu/llvm/lib/IRReader/LLVMBuild.txt
    U src/gnu/llvm/lib/XRay/RecordInitializer.cpp
    U src/gnu/llvm/lib/XRay/Trace.cpp
    U src/gnu/llvm/lib/XRay/BlockPrinter.cpp
    U src/gnu/llvm/lib/XRay/FileHeaderReader.cpp
    U src/gnu/llvm/lib/XRay/FDRRecordProducer.cpp
    U src/gnu/llvm/lib/XRay/BlockIndexer.cpp
    U src/gnu/llvm/lib/XRay/CMakeLists.txt
    U src/gnu/llvm/lib/XRay/FDRTraceExpander.cpp
    U src/gnu/llvm/lib/XRay/Profile.cpp
    U src/gnu/llvm/lib/XRay/LLVMBuild.txt
    U src/gnu/llvm/lib/XRay/FDRRecords.cpp
    U src/gnu/llvm/lib/XRay/LogBuilderConsumer.cpp
    U src/gnu/llvm/lib/XRay/InstrumentationMap.cpp
    U src/gnu/llvm/lib/XRay/BlockVerifier.cpp
    U src/gnu/llvm/lib/XRay/RecordPrinter.cpp
    U src/gnu/llvm/lib/XRay/FDRTraceWriter.cpp
    U src/gnu/llvm/lib/MC/MCELFObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/MCInstrDesc.cpp
    U src/gnu/llvm/lib/MC/MCAssembler.cpp
    U src/gnu/llvm/lib/MC/MCMachOStreamer.cpp
    U src/gnu/llvm/lib/MC/SubtargetFeature.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoCOFF.cpp
    U src/gnu/llvm/lib/MC/MCCodePadder.cpp
    U src/gnu/llvm/lib/MC/WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCFragment.cpp
    U src/gnu/llvm/lib/MC/MCELFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCAsmStreamer.cpp
    U src/gnu/llvm/lib/MC/MCRegisterInfo.cpp
    U src/gnu/llvm/lib/MC/MCSectionWasm.cpp
    U src/gnu/llvm/lib/MC/ELFObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCSymbolELF.cpp
    U src/gnu/llvm/lib/MC/MCWasmStreamer.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoELF.cpp
    U src/gnu/llvm/lib/MC/MCWin64EH.cpp
    U src/gnu/llvm/lib/MC/MCAsmBackend.cpp
    U src/gnu/llvm/lib/MC/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCSection.cpp
    U src/gnu/llvm/lib/MC/MCLinkerOptimizationHint.cpp
    U src/gnu/llvm/lib/MC/MCContext.cpp
    U src/gnu/llvm/lib/MC/MCObjectFileInfo.cpp
    U src/gnu/llvm/lib/MC/ConstantPools.cpp
    U src/gnu/llvm/lib/MC/MCSchedule.cpp
    U src/gnu/llvm/lib/MC/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCSectionMachO.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoDarwin.cpp
    U src/gnu/llvm/lib/MC/MCDwarf.cpp
    U src/gnu/llvm/lib/MC/MCInstrAnalysis.cpp
    U src/gnu/llvm/lib/MC/MCSectionELF.cpp
    U src/gnu/llvm/lib/MC/MCTargetOptions.cpp
    U src/gnu/llvm/lib/MC/MCStreamer.cpp
    U src/gnu/llvm/lib/MC/MCAsmMacro.cpp
    U src/gnu/llvm/lib/MC/MCMachObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/MCObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCInstPrinter.cpp
    U src/gnu/llvm/lib/MC/MCInst.cpp
    U src/gnu/llvm/lib/MC/MCSectionCOFF.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfo.cpp
    U src/gnu/llvm/lib/MC/MCNullStreamer.cpp
    U src/gnu/llvm/lib/MC/MCCodeEmitter.cpp
    U src/gnu/llvm/lib/MC/MCLabel.cpp
    U src/gnu/llvm/lib/MC/MCWasmObjectTargetWriter.cpp
    U src/gnu/llvm/lib/MC/StringTableBuilder.cpp
    U src/gnu/llvm/lib/MC/MCSymbol.cpp
    U src/gnu/llvm/lib/MC/MCAsmInfoWasm.cpp
    U src/gnu/llvm/lib/MC/MCWinEH.cpp
    U src/gnu/llvm/lib/MC/MCExpr.cpp
    U src/gnu/llvm/lib/MC/MCWinCOFFStreamer.cpp
    U src/gnu/llvm/lib/MC/MCCodeView.cpp
    U src/gnu/llvm/lib/MC/MCValue.cpp
    U src/gnu/llvm/lib/MC/MCSubtargetInfo.cpp
    U src/gnu/llvm/lib/MC/MachObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCObjectStreamer.cpp
    U src/gnu/llvm/lib/MC/WasmObjectWriter.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCTargetAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/AsmLexer.cpp
    U src/gnu/llvm/lib/MC/MCParser/WasmAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/ELFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCParser/AsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/LLVMBuild.txt
    U src/gnu/llvm/lib/MC/MCParser/COFFAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/DarwinAsmParser.cpp
    U src/gnu/llvm/lib/MC/MCParser/MCAsmParserExtension.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCRelocationInfo.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCSymbolizer.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/Disassembler.h
    U src/gnu/llvm/lib/MC/MCDisassembler/CMakeLists.txt
    U src/gnu/llvm/lib/MC/MCDisassembler/MCExternalSymbolizer.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/MCDisassembler.cpp
    U src/gnu/llvm/lib/MC/MCDisassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Demangle/CMakeLists.txt
    U src/gnu/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp
    U src/gnu/llvm/lib/Demangle/LLVMBuild.txt
    U src/gnu/llvm/lib/Demangle/MicrosoftDemangle.cpp
    U src/gnu/llvm/lib/Demangle/ItaniumDemangle.cpp
    U src/gnu/llvm/lib/BinaryFormat/MsgPackReader.cpp
    U src/gnu/llvm/lib/BinaryFormat/Magic.cpp
    U src/gnu/llvm/lib/BinaryFormat/AMDGPUMetadataVerifier.cpp
    U src/gnu/llvm/lib/BinaryFormat/CMakeLists.txt
    U src/gnu/llvm/lib/BinaryFormat/Dwarf.cpp
    U src/gnu/llvm/lib/BinaryFormat/MsgPackWriter.cpp
    U src/gnu/llvm/lib/BinaryFormat/Wasm.cpp
    U src/gnu/llvm/lib/BinaryFormat/LLVMBuild.txt
    U src/gnu/llvm/lib/BinaryFormat/MsgPackTypes.cpp
    U src/gnu/llvm/lib/LineEditor/CMakeLists.txt
    U src/gnu/llvm/lib/LineEditor/LLVMBuild.txt
    U src/gnu/llvm/lib/LineEditor/LineEditor.cpp
    U src/gnu/llvm/lib/AsmParser/LLToken.h
    U src/gnu/llvm/lib/AsmParser/Parser.cpp
    U src/gnu/llvm/lib/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/AsmParser/LLLexer.h
    U src/gnu/llvm/lib/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/AsmParser/LLParser.h
    U src/gnu/llvm/lib/AsmParser/LLParser.cpp
    U src/gnu/llvm/lib/AsmParser/LLLexer.cpp
    U src/gnu/llvm/lib/Transforms/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.h
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorizationPlanner.h
    U src/gnu/llvm/lib/Transforms/Vectorize/SLPVectorizer.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlan.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanHCFGBuilder.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorizationLegality.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/LoadStoreVectorizer.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanValue.h
    U src/gnu/llvm/lib/Transforms/Vectorize/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanHCFGTransforms.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanLoopInfo.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanVerifier.h
    U src/gnu/llvm/lib/Transforms/Vectorize/LoopVectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/Vectorize.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanDominatorTree.h
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlan.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPlanSLP.cpp
    U src/gnu/llvm/lib/Transforms/Vectorize/VPRecipeBuilder.h
    U src/gnu/llvm/lib/Transforms/Hello/Hello.cpp
    U src/gnu/llvm/lib/Transforms/Hello/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Hello/Hello.exports
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombinePHI.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineVectorOps.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSimplifyDemanded.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineLoadStoreAlloca.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineTables.td
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCompares.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineCasts.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAddSub.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineInternal.h
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineShifts.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstructionCombining.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineSelect.cpp
    U src/gnu/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/TruncInstCombine.cpp
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombineInternal.h
    U src/gnu/llvm/lib/Transforms/AggressiveInstCombine/AggressiveInstCombine.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ThinLTOBitcodeWriter.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPO.cpp
    U src/gnu/llvm/lib/Transforms/IPO/InlineSimple.cpp
    U src/gnu/llvm/lib/Transforms/IPO/BlockExtractor.cpp
    U src/gnu/llvm/lib/Transforms/IPO/IPConstantPropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/FunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/HotColdSplitting.cpp
    U src/gnu/llvm/lib/Transforms/IPO/BarrierNoopPass.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripSymbols.cpp
    U src/gnu/llvm/lib/Transforms/IPO/Internalize.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SampleProfile.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/IPO/ArgumentPromotion.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LowerTypeTests.cpp
    U src/gnu/llvm/lib/Transforms/IPO/FunctionImport.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SCCP.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CrossDSOCFI.cpp
    U src/gnu/llvm/lib/Transforms/IPO/Inliner.cpp
    U src/gnu/llvm/lib/Transforms/IPO/InferFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/AlwaysInliner.cpp
    U src/gnu/llvm/lib/Transforms/IPO/CalledValuePropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalDCE.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PassManagerBuilder.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/IPO/DeadArgumentElimination.cpp
    U src/gnu/llvm/lib/Transforms/IPO/MergeFunctions.cpp
    U src/gnu/llvm/lib/Transforms/IPO/SyntheticCountsPropagation.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalSplit.cpp
    U src/gnu/llvm/lib/Transforms/IPO/WholeProgramDevirt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/GlobalOpt.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ConstantMerge.cpp
    U src/gnu/llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ForceFunctionAttrs.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ElimAvailExtern.cpp
    U src/gnu/llvm/lib/Transforms/IPO/LoopExtractor.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PruneEH.cpp
    U src/gnu/llvm/lib/Transforms/IPO/PartialInlining.cpp
    U src/gnu/llvm/lib/Transforms/IPO/ExtractGV.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCContract.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/BlotMapVector.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARC.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCExpand.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysis.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/PtrState.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/ObjCARCAPElim.cpp
    U src/gnu/llvm/lib/Transforms/ObjCARC/DependencyAnalysis.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ARCRuntimeEntryPoints.h
    U src/gnu/llvm/lib/Transforms/ObjCARC/ProvenanceAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Local.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyIndVar.cpp
    U src/gnu/llvm/lib/Transforms/Utils/AddDiscriminators.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Utils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/InlineFunction.cpp
    U src/gnu/llvm/lib/Transforms/Utils/GuardUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/StripGCRelocates.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FlattenCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BuildLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LibCallsShrinkWrap.cpp
    U src/gnu/llvm/lib/Transforms/Utils/DemoteRegToStack.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ASanStackFrameLayout.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerInvoke.cpp
    U src/gnu/llvm/lib/Transforms/Utils/IntegerDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/MetaRenamer.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Mem2Reg.cpp
    U src/gnu/llvm/lib/Transforms/Utils/PredicateInfo.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CallPromotionUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BypassSlowDivision.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnroll.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Utils/PromoteMemoryToRegister.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CodeExtractor.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Utils/UnifyFunctionExitNodes.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ValueMapper.cpp
    U src/gnu/llvm/lib/Transforms/Utils/GlobalStatus.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SanitizerStats.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopVersioning.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerMemIntrinsics.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Utils/InstructionNamer.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneFunction.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SymbolRewriter.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CtorUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/NameAnonGlobals.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollAndJam.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CanonicalizeAliases.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FunctionImportUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/VNCoercion.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LCSSA.cpp
    U src/gnu/llvm/lib/Transforms/Utils/Evaluator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollPeel.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LowerSwitch.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SSAUpdaterBulk.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ImportedFunctionsInliningStatistics.cpp
    U src/gnu/llvm/lib/Transforms/Utils/EntryExitInstrumenter.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Utils/EscapeEnumerator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopRotationUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/CloneModule.cpp
    U src/gnu/llvm/lib/Transforms/Utils/FunctionComparator.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/LoopUnrollRuntime.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BasicBlockUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SplitModule.cpp
    U src/gnu/llvm/lib/Transforms/Utils/BreakCriticalEdges.cpp
    U src/gnu/llvm/lib/Transforms/Utils/SSAUpdater.cpp
    U src/gnu/llvm/lib/Transforms/Utils/ModuleUtils.cpp
    U src/gnu/llvm/lib/Transforms/Utils/StripNonLineTableDebugInfo.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroCleanup.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/Coroutines.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroElide.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroInstr.h
    U src/gnu/llvm/lib/Transforms/Coroutines/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroSplit.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroEarly.cpp
    U src/gnu/llvm/lib/Transforms/Coroutines/CoroInternal.h
    U src/gnu/llvm/lib/Transforms/Scalar/LoopLoadElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnswitch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DivRemPairs.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CallSiteSplitting.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SpeculateAroundPHIs.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SpeculativeExecution.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerGuardIntrinsic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GuardWidening.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopPredication.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRerollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopAccessAnalysisPrinter.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DeadStoreElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CorrelatedValuePropagation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/JumpThreading.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/NewGVN.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Reg2Mem.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDataPrefetch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopRotation.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MergeICmps.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Float2Int.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InductiveRangeCheckElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/FlattenCFGPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerAtomic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StraightLineStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Scalar/SimpleLoopUnswitch.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnrollAndJamPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInterchange.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopUnrollPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopIdiomRecognize.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SCCP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InferAddressSpaces.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalar.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/DCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDeletion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Reassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Sink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/StructurizeCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopSink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/NaryReassociate.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SeparateConstOffsetFromGEP.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/InstSimplifyPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/Scalarizer.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Scalar/PartiallyInlineLibCalls.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopStrengthReduce.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MergedLoadStoreMotion.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/EarlyCSE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MakeGuardsExplicit.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/PlaceSafepoints.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/WarnMissedTransforms.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVN.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantHoisting.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/IndVarSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopSimplifyCFG.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/TailRecursionElimination.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopInstSimplify.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SimplifyCFGPass.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopDistribute.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ConstantProp.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LowerExpectIntrinsic.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/SROA.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVNHoist.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/IVUsersPrinter.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/ADCE.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/GVNSink.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopPassManager.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/MemCpyOptimizer.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/LoopVersioningLICM.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/AlignmentFromAssumptions.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/RewriteStatepointsForGC.cpp
    U src/gnu/llvm/lib/Transforms/Scalar/BDCE.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/CFGMST.h
    U src/gnu/llvm/lib/Transforms/Instrumentation/ControlHeightReduction.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/GCOVProfiling.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/ThreadSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/IndirectCallPromotion.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/EfficiencySanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/Instrumentation.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/SanitizerCoverage.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/CMakeLists.txt
    U src/gnu/llvm/lib/Transforms/Instrumentation/HWAddressSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/MaximumSpanningTree.h
    U src/gnu/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/LLVMBuild.txt
    U src/gnu/llvm/lib/Transforms/Instrumentation/DataFlowSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/PGOMemOPSizeOpt.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/MemorySanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/CGProfile.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/InstrProfiling.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/AddressSanitizer.cpp
    U src/gnu/llvm/lib/Transforms/Instrumentation/BoundsChecking.cpp
    U src/gnu/llvm/lib/MCA/Pipeline.cpp
    U src/gnu/llvm/lib/MCA/CMakeLists.txt
    U src/gnu/llvm/lib/MCA/HWEventListener.cpp
    U src/gnu/llvm/lib/MCA/InstrBuilder.cpp
    U src/gnu/llvm/lib/MCA/LLVMBuild.txt
    U src/gnu/llvm/lib/MCA/Instruction.cpp
    U src/gnu/llvm/lib/MCA/Support.cpp
    U src/gnu/llvm/lib/MCA/Context.cpp
    U src/gnu/llvm/lib/MCA/Stages/Stage.cpp
    U src/gnu/llvm/lib/MCA/Stages/RetireStage.cpp
    U src/gnu/llvm/lib/MCA/Stages/DispatchStage.cpp
    U src/gnu/llvm/lib/MCA/Stages/ExecuteStage.cpp
    U src/gnu/llvm/lib/MCA/Stages/EntryStage.cpp
    U src/gnu/llvm/lib/MCA/Stages/InstructionTables.cpp
    U src/gnu/llvm/lib/MCA/HardwareUnits/LSUnit.cpp
    U src/gnu/llvm/lib/MCA/HardwareUnits/RetireControlUnit.cpp
    U src/gnu/llvm/lib/MCA/HardwareUnits/Scheduler.cpp
    U src/gnu/llvm/lib/MCA/HardwareUnits/ResourceManager.cpp
    U src/gnu/llvm/lib/MCA/HardwareUnits/HardwareUnit.cpp
    U src/gnu/llvm/lib/MCA/HardwareUnits/RegisterFile.cpp
    U src/gnu/llvm/lib/Object/SymbolicFile.cpp
    U src/gnu/llvm/lib/Object/ELF.cpp
    U src/gnu/llvm/lib/Object/Archive.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.cpp
    U src/gnu/llvm/lib/Object/COFFModuleDefinition.cpp
    U src/gnu/llvm/lib/Object/Binary.cpp
    U src/gnu/llvm/lib/Object/WindowsResource.cpp
    U src/gnu/llvm/lib/Object/MachOObjectFile.cpp
    U src/gnu/llvm/lib/Object/MachOUniversal.cpp
    U src/gnu/llvm/lib/Object/Object.cpp
    U src/gnu/llvm/lib/Object/CMakeLists.txt
    U src/gnu/llvm/lib/Object/COFFObjectFile.cpp
    U src/gnu/llvm/lib/Object/WasmObjectFile.cpp
    U src/gnu/llvm/lib/Object/Decompressor.cpp
    U src/gnu/llvm/lib/Object/SymbolSize.cpp
    U src/gnu/llvm/lib/Object/LLVMBuild.txt
    U src/gnu/llvm/lib/Object/COFFImportFile.cpp
    U src/gnu/llvm/lib/Object/RecordStreamer.h
    U src/gnu/llvm/lib/Object/Error.cpp
    U src/gnu/llvm/lib/Object/IRObjectFile.cpp
    U src/gnu/llvm/lib/Object/IRSymtab.cpp
    U src/gnu/llvm/lib/Object/ObjectFile.cpp
    U src/gnu/llvm/lib/Object/ELFObjectFile.cpp
    U src/gnu/llvm/lib/Object/ArchiveWriter.cpp
    U src/gnu/llvm/lib/Object/ModuleSymbolTable.cpp
    U src/gnu/llvm/lib/Testing/CMakeLists.txt
    U src/gnu/llvm/lib/Testing/LLVMBuild.txt
    U src/gnu/llvm/lib/Testing/Support/CMakeLists.txt
    U src/gnu/llvm/lib/Testing/Support/LLVMBuild.txt
    U src/gnu/llvm/lib/Testing/Support/Error.cpp
    U src/gnu/llvm/lib/Testing/Support/SupportHelpers.cpp
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngine.cpp
    U src/gnu/llvm/lib/ExecutionEngine/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/ExecutionEngineBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/TargetSelect.cpp
    U src/gnu/llvm/lib/ExecutionEngine/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/SectionMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.cpp
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/MCJIT/MCJIT.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCheckerImpl.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldImpl.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RTDyldMemoryManager.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/JITSymbol.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyld.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldChecker.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldCOFF.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldMachO.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/RuntimeDyldELF.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFX86_64.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOI386.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldELFMips.cpp
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOARM.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFThumb.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldCOFFI386.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOX86_64.h
    U src/gnu/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.c
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_config.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/jitprofiling.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/ittnotify_types.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventsWrapper.h
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/IntelJITEvents/IntelJITEventListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/PerfJITEvents/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/PerfJITEvents/PerfJITEventListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/PerfJITEvents/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/Layer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/Core.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/ThreadSafeModule.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindings.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/LazyReexports.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/LLJIT.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcABISupport.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcError.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/CompileOnDemandLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/Legacy.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/JITTargetMachineBuilder.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcCBindingsStack.h
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.h
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IRTransformLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/RPCUtils.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/OrcMCJITReplacement.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/ObjectTransformLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/ExecutionUtils.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IndirectionUtils.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/NullResolver.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Orc/IRCompileLayer.cpp
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/OProfileJITEventListener.cpp
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/OProfileWrapper.cpp
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/OProfileJIT/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/CMakeLists.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Interpreter.h
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/Execution.cpp
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/LLVMBuild.txt
    U src/gnu/llvm/lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
    U src/gnu/llvm/lib/Target/TargetLoweringObjectFile.cpp
    U src/gnu/llvm/lib/Target/Target.cpp
    U src/gnu/llvm/lib/Target/TargetMachine.cpp
    U src/gnu/llvm/lib/Target/CMakeLists.txt
    U src/gnu/llvm/lib/Target/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/TargetMachineC.cpp
    U src/gnu/llvm/lib/Target/README.txt
    U src/gnu/llvm/lib/Target/TargetIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86ScheduleBtVer2.td
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrVMX.td
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86EvexToVex.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrVecCompiler.td
    U src/gnu/llvm/lib/Target/X86/X86FloatingPoint.cpp
    U src/gnu/llvm/lib/Target/X86/X86VZeroUpper.cpp
    U src/gnu/llvm/lib/Target/X86/X86RegisterBankInfo.h
    U src/gnu/llvm/lib/Target/X86/X86DiscriminateMemOps.cpp
    U src/gnu/llvm/lib/Target/X86/X86GenRegisterBankInfo.def
    U src/gnu/llvm/lib/Target/X86/X86Subtarget.cpp
    U src/gnu/llvm/lib/Target/X86/X86LegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86PadShortFunction.cpp
    U src/gnu/llvm/lib/Target/X86/X86OptimizeLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.h
    U src/gnu/llvm/lib/Target/X86/X86InstrExtension.td
    U src/gnu/llvm/lib/Target/X86/X86ScheduleAtom.td
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.h
    U src/gnu/llvm/lib/Target/X86/X86InstrAVX512.td
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.h
    U src/gnu/llvm/lib/Target/X86/README-FPStack.txt
    U src/gnu/llvm/lib/Target/X86/X86SchedSandyBridge.td
    U src/gnu/llvm/lib/Target/X86/X86InterleavedAccess.cpp
    U src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/X86/X86ExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/X86/X86FlagsCopyLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFPStack.td
    U src/gnu/llvm/lib/Target/X86/X86InstrControl.td
    U src/gnu/llvm/lib/Target/X86/X86.td
    U src/gnu/llvm/lib/Target/X86/X86MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86MCInstLower.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSVM.td
    U src/gnu/llvm/lib/Target/X86/X86CondBrFolding.cpp
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86CmovConversion.cpp
    U src/gnu/llvm/lib/Target/X86/X86IndirectBranchTracking.cpp
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.td
    U src/gnu/llvm/lib/Target/X86/X86FixupSetCC.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFoldTables.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrXOP.td
    U src/gnu/llvm/lib/Target/X86/X86Instr3DNow.td
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.h
    U src/gnu/llvm/lib/Target/X86/X86SchedBroadwell.td
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.td
    U src/gnu/llvm/lib/Target/X86/X86FrameLowering.h
    U src/gnu/llvm/lib/Target/X86/X86InsertPrefetch.cpp
    U src/gnu/llvm/lib/Target/X86/X86Schedule.td
    U src/gnu/llvm/lib/Target/X86/X86FixupBWInsts.cpp
    U src/gnu/llvm/lib/Target/X86/X86CallLowering.h
    U src/gnu/llvm/lib/Target/X86/X86InstrInfo.cpp
    U src/gnu/llvm/lib/Target/X86/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/X86RegisterBanks.td
    U src/gnu/llvm/lib/Target/X86/X86ISelLowering.h
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA3Info.h
    U src/gnu/llvm/lib/Target/X86/X86MacroFusion.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrShiftRotate.td
    U src/gnu/llvm/lib/Target/X86/X86InstrCompiler.td
    U src/gnu/llvm/lib/Target/X86/X86ScheduleSLM.td
    U src/gnu/llvm/lib/Target/X86/X86CallLowering.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFragmentsSIMD.td
    U src/gnu/llvm/lib/Target/X86/X86RegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86IntrinsicsInfo.h
    U src/gnu/llvm/lib/Target/X86/X86LegalizerInfo.h
    U src/gnu/llvm/lib/Target/X86/X86FastISel.cpp
    U src/gnu/llvm/lib/Target/X86/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/X86.h
    U src/gnu/llvm/lib/Target/X86/X86WinEHState.cpp
    U src/gnu/llvm/lib/Target/X86/X86SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/X86/X86SchedSkylakeServer.td
    U src/gnu/llvm/lib/Target/X86/X86MacroFusion.h
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.h
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.h
    U src/gnu/llvm/lib/Target/X86/X86InstrSGX.td
    U src/gnu/llvm/lib/Target/X86/X86InstrMPX.td
    U src/gnu/llvm/lib/Target/X86/X86ScheduleZnver1.td
    U src/gnu/llvm/lib/Target/X86/X86InstrArithmetic.td
    U src/gnu/llvm/lib/Target/X86/X86RetpolineThunks.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrSSE.td
    U src/gnu/llvm/lib/Target/X86/X86InstrFormats.td
    U src/gnu/llvm/lib/Target/X86/X86DomainReassignment.cpp
    U src/gnu/llvm/lib/Target/X86/X86FixupLEAs.cpp
    U src/gnu/llvm/lib/Target/X86/README-SSE.txt
    U src/gnu/llvm/lib/Target/X86/X86CallFrameOptimization.cpp
    U src/gnu/llvm/lib/Target/X86/X86Subtarget.h
    U src/gnu/llvm/lib/Target/X86/README.txt
    U src/gnu/llvm/lib/Target/X86/X86InstrSystem.td
    U src/gnu/llvm/lib/Target/X86/X86CallingConv.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA3Info.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetMachine.h
    U src/gnu/llvm/lib/Target/X86/X86InstrCMovSetCC.td
    U src/gnu/llvm/lib/Target/X86/README-X86-64.txt
    U src/gnu/llvm/lib/Target/X86/X86SpeculativeLoadHardening.cpp
    U src/gnu/llvm/lib/Target/X86/X86PfmCounters.td
    U src/gnu/llvm/lib/Target/X86/X86InstructionSelector.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedHaswell.td
    U src/gnu/llvm/lib/Target/X86/X86ScheduleBdVer2.td
    U src/gnu/llvm/lib/Target/X86/X86RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86ShuffleDecodeConstantPool.cpp
    U src/gnu/llvm/lib/Target/X86/X86SchedSkylakeClient.td
    U src/gnu/llvm/lib/Target/X86/X86InstrMMX.td
    U src/gnu/llvm/lib/Target/X86/ShadowCallStack.cpp
    U src/gnu/llvm/lib/Target/X86/X86AvoidStoreForwardingBlocks.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrBuilder.h
    U src/gnu/llvm/lib/Target/X86/X86InstrFoldTables.h
    U src/gnu/llvm/lib/Target/X86/X86TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrFMA.td
    U src/gnu/llvm/lib/Target/X86/X86SchedPredicates.td
    C src/gnu/llvm/lib/Target/X86/X86TargetMachine.cpp
    U src/gnu/llvm/lib/Target/X86/X86TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/X86/X86AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/X86InstrTSX.td
    U src/gnu/llvm/lib/Target/X86/X86ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/X86/X86WinAllocaExpander.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstPrinterCommon.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstComments.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86IntelInstPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.cpp
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86InstComments.h
    U src/gnu/llvm/lib/Target/X86/InstPrinter/X86ATTInstPrinter.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86BaseInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86ELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCAsmInfo.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86AsmBackend.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86TargetStreamer.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86FixupKinds.h
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/X86/MCTargetDesc/X86MCExpr.h
    U src/gnu/llvm/lib/Target/X86/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/TargetInfo/X86TargetInfo.cpp
    U src/gnu/llvm/lib/Target/X86/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.h
    U src/gnu/llvm/lib/Target/X86/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86DisassemblerDecoder.cpp
    U src/gnu/llvm/lib/Target/X86/Disassembler/X86Disassembler.cpp
    U src/gnu/llvm/lib/Target/X86/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/Utils/X86ShuffleDecode.cpp
    U src/gnu/llvm/lib/Target/X86/Utils/X86ShuffleDecode.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.cpp
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86Operand.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmInstrumentation.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParserCommon.h
    U src/gnu/llvm/lib/Target/X86/AsmParser/X86AsmParser.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPrologEpilogPass.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVVMIntrRange.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAssignValidGlobalNames.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXPeephole.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAggrCopies.cpp
    U src/gnu/llvm/lib/Target/NVPTX/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTX.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXImageOptimizer.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVVMReflect.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/NVPTX/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXReplaceImageHandles.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetMachine.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMCExpr.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXGenericToNVVM.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXFrameLowering.cpp
    U src/gnu/llvm/lib/Target/NVPTX/cl_common_defines.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerAlloca.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXSubtarget.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXRegisterInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXISelLowering.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXLowerArgs.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTX.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXTargetObjectFile.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXIntrinsics.td
    U src/gnu/llvm/lib/Target/NVPTX/ManagedStringPool.h
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrInfo.td
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXUtilities.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXAllocaHoisting.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXProxyRegErasure.cpp
    U src/gnu/llvm/lib/Target/NVPTX/NVPTXInstrFormats.td
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.cpp
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/InstPrinter/NVPTXInstPrinter.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCAsmInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXBaseInfo.h
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/NVPTX/MCTargetDesc/NVPTXTargetStreamer.h
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/NVPTXTargetInfo.cpp
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/NVPTX/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE500mc.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG3.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP9.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE5500.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleA2.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrBuilder.h
    U src/gnu/llvm/lib/Target/PowerPC/README_P9.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCCTRLoops.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrQPX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP7.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4Plus.td
    U src/gnu/llvm/lib/Target/PowerPC/PPC.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrSPE.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetStreamer.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrVSX.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCBranchCoalescing.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCEarlyReturn.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCReduceCRLogicals.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCBoolRetToInt.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCMCInstLower.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCRegisterInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCLoopPreIncPrep.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXCopy.cpp
    U src/gnu/llvm/lib/Target/PowerPC/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleE500.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetMachine.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXSwapRemoval.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCQPXLoadSplat.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCCState.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstr64Bit.td
    U src/gnu/llvm/lib/Target/PowerPC/README_ALTIVEC.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCCallingConv.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPC.h
    U src/gnu/llvm/lib/Target/PowerPC/P9InstrResources.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrFormats.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCPerfectShuffle.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCCCState.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleP8.td
    U src/gnu/llvm/lib/Target/PowerPC/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule440.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCHazardRecognizers.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCExpandISEL.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCSubtarget.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrHTM.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCPfmCounters.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCSchedule.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCTOCRegDeps.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetObjectFile.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/README.txt
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG4.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCMIPeephole.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTLSDynamicCall.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCPreEmitPeephole.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrInfo.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCISelLowering.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCBranchSelector.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCFrameLowering.h
    U src/gnu/llvm/lib/Target/PowerPC/PPCMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCInstrAltivec.td
    U src/gnu/llvm/lib/Target/PowerPC/PPCFastISel.cpp
    U src/gnu/llvm/lib/Target/PowerPC/PPCScheduleG5.td
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/InstPrinter/PPCInstPrinter.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCTargetDesc.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCAsmBackend.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCMCExpr.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCFixupKinds.h
    U src/gnu/llvm/lib/Target/PowerPC/MCTargetDesc/PPCPredicates.h
    U src/gnu/llvm/lib/Target/PowerPC/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/TargetInfo/PowerPCTargetInfo.cpp
    U src/gnu/llvm/lib/Target/PowerPC/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp
    U src/gnu/llvm/lib/Target/PowerPC/AsmParser/PPCAsmParser.cpp
    U src/gnu/llvm/lib/Target/PowerPC/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/PowerPC/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetStreamer.h
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCore.h
    U src/gnu/llvm/lib/Target/XCore/XCoreISelLowering.h
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameToArgsOffsetElim.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreLowerThreadLocal.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreCallingConv.td
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/XCore/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.td
    U src/gnu/llvm/lib/Target/XCore/XCoreISelLowering.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrFormats.td
    U src/gnu/llvm/lib/Target/XCore/XCoreInstrInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/XCore/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.h
    U src/gnu/llvm/lib/Target/XCore/XCoreFrameLowering.h
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetObjectFile.h
    U src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.cpp
    U src/gnu/llvm/lib/Target/XCore/README.txt
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.h
    U src/gnu/llvm/lib/Target/XCore/XCore.td
    U src/gnu/llvm/lib/Target/XCore/XCoreISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreSubtarget.cpp
    U src/gnu/llvm/lib/Target/XCore/XCoreMCInstLower.h
    U src/gnu/llvm/lib/Target/XCore/XCoreTargetMachine.h
    U src/gnu/llvm/lib/Target/XCore/XCoreRegisterInfo.td
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.cpp
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/XCoreInstPrinter.h
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.h
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/MCTargetDesc/XCoreMCTargetDesc.h
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/XCoreTargetInfo.cpp
    U src/gnu/llvm/lib/Target/XCore/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/XCore/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/XCore/Disassembler/XCoreDisassembler.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/A15SDOptimizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMPerfectShuffle.h
    U src/gnu/llvm/lib/Target/ARM/ARMBaseInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.h
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARMCallLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMCallLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrNEON.td
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/ARM/README-Thumb2.txt
    U src/gnu/llvm/lib/Target/ARM/ARMLegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMISelLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMFastISel.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrFormats.td
    U src/gnu/llvm/lib/Target/ARM/Thumb2InstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMBasicBlockInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA9.td
    U src/gnu/llvm/lib/Target/ARM/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetObjectFile.h
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.cpp
    U src/gnu/llvm/lib/Target/ARM/ARM.td
    U src/gnu/llvm/lib/Target/ARM/ThumbRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMLegalizerInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMFeatures.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrInfo.td
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMTargetMachine.h
    U src/gnu/llvm/lib/Target/ARM/ARMComputeBlockSize.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/ARM/LICENSE.TXT
    U src/gnu/llvm/lib/Target/ARM/ARMSchedule.td
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleR52.td
    U src/gnu/llvm/lib/Target/ARM/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.h
    U src/gnu/llvm/lib/Target/ARM/ARMHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMacroFusion.h
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterBankInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA8.td
    U src/gnu/llvm/lib/Target/ARM/ARMMacroFusion.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSystemRegister.td
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.td
    U src/gnu/llvm/lib/Target/ARM/ARMParallelDSP.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMCallingConv.h
    U src/gnu/llvm/lib/Target/ARM/ARMLoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMOptimizeBarriersPass.cpp
    U src/gnu/llvm/lib/Target/ARM/README.txt
    U src/gnu/llvm/lib/Target/ARM/Thumb2ITBlockPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb.td
    U src/gnu/llvm/lib/Target/ARM/ARMSubtarget.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMInstructionSelector.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMBaseRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb2SizeReduction.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMSubtarget.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA57.td
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleSwift.td
    U src/gnu/llvm/lib/Target/ARM/Thumb1InstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleM3.td
    U src/gnu/llvm/lib/Target/ARM/ARMConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMMCInstLower.cpp
    U src/gnu/llvm/lib/Target/ARM/MLxExpansionPass.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/ARM.h
    U src/gnu/llvm/lib/Target/ARM/ARMFrameLowering.h
    U src/gnu/llvm/lib/Target/ARM/ARMInstrThumb2.td
    U src/gnu/llvm/lib/Target/ARM/ARMCodeGenPrepare.cpp
    U src/gnu/llvm/lib/Target/ARM/Thumb1FrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleA57WriteRes.td
    U src/gnu/llvm/lib/Target/ARM/README-Thumb.txt
    U src/gnu/llvm/lib/Target/ARM/ARMInstrVFP.td
    U src/gnu/llvm/lib/Target/ARM/ARMScheduleV6.td
    U src/gnu/llvm/lib/Target/ARM/ARMRegisterBanks.td
    U src/gnu/llvm/lib/Target/ARM/ARMAsmPrinter.h
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.cpp
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/InstPrinter/ARMInstPrinter.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCAsmInfo.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachORelocationInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMFixupKinds.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCExpr.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendELF.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendDarwin.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMUnwindOpAsm.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMELFStreamer.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMBaseInfo.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackend.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAddressingModes.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMWinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMAsmBackendWinCOFF.h
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/ARM/MCTargetDesc/ARMMCTargetDesc.h
    U src/gnu/llvm/lib/Target/ARM/TargetInfo/ARMTargetInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp
    U src/gnu/llvm/lib/Target/ARM/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARM/Utils/ARMBaseInfo.h
    U src/gnu/llvm/lib/Target/ARM/Utils/ARMBaseInfo.cpp
    U src/gnu/llvm/lib/Target/ARM/AsmParser/ARMAsmParser.cpp
    U src/gnu/llvm/lib/Target/ARM/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARM/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/ARCISelLowering.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCInstrInfo.td
    U src/gnu/llvm/lib/Target/ARC/ARCFrameLowering.h
    U src/gnu/llvm/lib/Target/ARC/ARCCallingConv.td
    U src/gnu/llvm/lib/Target/ARC/ARCInstrInfo.h
    U src/gnu/llvm/lib/Target/ARC/ARCInstrFormats.td
    U src/gnu/llvm/lib/Target/ARC/ARCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCSubtarget.cpp
    U src/gnu/llvm/lib/Target/ARC/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/ARCISelLowering.h
    U src/gnu/llvm/lib/Target/ARC/ARCTargetStreamer.h
    U src/gnu/llvm/lib/Target/ARC/ARCRegisterInfo.td
    U src/gnu/llvm/lib/Target/ARC/ARCBranchFinalize.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/ARC.td
    U src/gnu/llvm/lib/Target/ARC/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/ARCTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/ARC/ARCTargetMachine.h
    U src/gnu/llvm/lib/Target/ARC/ARCMCInstLower.h
    U src/gnu/llvm/lib/Target/ARC/ARCSubtarget.h
    U src/gnu/llvm/lib/Target/ARC/ARCISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCExpandPseudos.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCMCInstLower.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCTargetMachine.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCRegisterInfo.h
    U src/gnu/llvm/lib/Target/ARC/ARCMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/ARC/ARCMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCFrameLowering.cpp
    U src/gnu/llvm/lib/Target/ARC/ARCAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/ARC/ARC.h
    U src/gnu/llvm/lib/Target/ARC/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.h
    U src/gnu/llvm/lib/Target/ARC/InstPrinter/ARCInstPrinter.cpp
    U src/gnu/llvm/lib/Target/ARC/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCInfo.h
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCMCTargetDesc.h
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/MCTargetDesc/ARCMCAsmInfo.h
    U src/gnu/llvm/lib/Target/ARC/TargetInfo/ARCTargetInfo.cpp
    U src/gnu/llvm/lib/Target/ARC/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/ARC/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/ARC/Disassembler/ARCDisassembler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrVector.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrHFP.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ13.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZLongBranch.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrSystem.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTDC.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZShortenInst.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFP.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZElimCompare.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetMachine.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZ.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZLDCleanup.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZOperators.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrInfo.td
    U src/gnu/llvm/lib/Target/SystemZ/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZEC12.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMCInstLower.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZCallingConv.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ14.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZProcessors.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFeatures.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineScheduler.h
    U src/gnu/llvm/lib/Target/SystemZ/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZHazardRecognizer.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZScheduleZ196.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZAsmPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZFrameLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSchedule.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZOperands.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrBuilder.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZConstantPoolValue.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSubtarget.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZPatterns.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/README.txt
    U src/gnu/llvm/lib/Target/SystemZ/SystemZ.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/SystemZRegisterInfo.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrDFP.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZInstrFormats.td
    U src/gnu/llvm/lib/Target/SystemZ/SystemZTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/SystemZISelLowering.cpp
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.h
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/InstPrinter/SystemZInstPrinter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCObjectWriter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCTargetDesc.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCFixups.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmBackend.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/TargetInfo/SystemZTargetInfo.cpp
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/SystemZDisassembler.cpp
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/SystemZ/AsmParser/SystemZAsmParser.cpp
    U src/gnu/llvm/lib/Target/SystemZ/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/SystemZ/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiCallingConv.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiCondCode.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiSchedule.td
    U src/gnu/llvm/lib/Target/Lanai/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Lanai/Lanai.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMCInstLower.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/LanaiAluCode.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrFormats.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/Lanai.td
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelLowering.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiMemAluCombiner.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiRegisterInfo.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiSubtarget.cpp
    U src/gnu/llvm/lib/Target/Lanai/LanaiISelLowering.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiTargetMachine.h
    U src/gnu/llvm/lib/Target/Lanai/LanaiInstrInfo.h
    U src/gnu/llvm/lib/Target/Lanai/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Lanai/InstPrinter/LanaiInstPrinter.h
    U src/gnu/llvm/lib/Target/Lanai/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiBaseInfo.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCExpr.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiFixupKinds.h
    U src/gnu/llvm/lib/Target/Lanai/MCTargetDesc/LanaiMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/TargetInfo/LanaiTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.h
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/LanaiDisassembler.cpp
    U src/gnu/llvm/lib/Target/Lanai/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Lanai/AsmParser/LanaiAsmParser.cpp
    U src/gnu/llvm/lib/Target/Lanai/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Lanai/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/AVRMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AVR/README.md
    U src/gnu/llvm/lib/Target/AVR/AVRMCInstLower.h
    U src/gnu/llvm/lib/Target/AVR/TODO.md
    U src/gnu/llvm/lib/Target/AVR/AVRCallingConv.td
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.h
    U src/gnu/llvm/lib/Target/AVR/AVRInstrFormats.td
    U src/gnu/llvm/lib/Target/AVR/AVRMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AVR/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRSubtarget.h
    U src/gnu/llvm/lib/Target/AVR/AVRTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRISelLowering.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRFrameLowering.h
    U src/gnu/llvm/lib/Target/AVR/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/AVRISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRSubtarget.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRISelLowering.h
    U src/gnu/llvm/lib/Target/AVR/AVR.td
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.td
    U src/gnu/llvm/lib/Target/AVR/AVRSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AVR/AVRRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRDevices.td
    U src/gnu/llvm/lib/Target/AVR/AVRRelaxMemOperations.cpp
    U src/gnu/llvm/lib/Target/AVR/AVRInstrInfo.td
    U src/gnu/llvm/lib/Target/AVR/AVRExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/AVR/AVR.h
    U src/gnu/llvm/lib/Target/AVR/AVRTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.cpp
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/InstPrinter/AVRInstPrinter.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCTargetDesc.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCELFStreamer.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCAsmInfo.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCExpr.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRAsmBackend.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRFixupKinds.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.h
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AVR/MCTargetDesc/AVRMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/AVRTargetInfo.cpp
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/AsmParser/AVRAsmParser.cpp
    U src/gnu/llvm/lib/Target/AVR/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AVR/Disassembler/AVRDisassembler.cpp
    U src/gnu/llvm/lib/Target/AVR/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AVR/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetMachine.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVSubtarget.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrFormats.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVMCInstLower.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoA.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoF.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVFrameLowering.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoD.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVCallingConv.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/RISCV/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/RISCV.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVFrameLowering.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetObjectFile.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVRegisterInfo.h
    U src/gnu/llvm/lib/Target/RISCV/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/RISCVSubtarget.h
    U src/gnu/llvm/lib/Target/RISCV/RISCV.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVRegisterInfo.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVISelLowering.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfo.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVMergeBaseOffset.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVISelLowering.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfo.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVSystemOperands.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVTargetMachine.h
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoM.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfoC.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrFormatsC.td
    U src/gnu/llvm/lib/Target/RISCV/RISCVAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/RISCV/RISCVInstrInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.cpp
    U src/gnu/llvm/lib/Target/RISCV/InstPrinter/RISCVInstPrinter.h
    U src/gnu/llvm/lib/Target/RISCV/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFStreamer.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVAsmBackend.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVTargetStreamer.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.cpp
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCExpr.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVFixupKinds.h
    U src/gnu/llvm/lib/Target/RISCV/MCTargetDesc/RISCVMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/RISCV/TargetInfo/RISCVTargetInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/Disassembler/RISCVDisassembler.cpp
    U src/gnu/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.cpp
    U src/gnu/llvm/lib/Target/RISCV/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/Utils/RISCVBaseInfo.h
    U src/gnu/llvm/lib/Target/RISCV/Utils/RISCVMatInt.h
    U src/gnu/llvm/lib/Target/RISCV/Utils/RISCVMatInt.cpp
    U src/gnu/llvm/lib/Target/RISCV/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/RISCV/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/RISCV/AsmParser/RISCVAsmParser.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUUnifyMetadata.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIAddIMGInit.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFoldOperands.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600AsmPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIPeepholeSDWA.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULowerIntrinsics.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFeatures.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPromoteAlloca.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/SISchedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULibFunc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.h
    U src/gnu/llvm/lib/Target/AMDGPU/VOP1Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMCInstLower.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPTNote.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600Defines.h
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerI1Copies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/EvergreenInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/VOP3Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.h
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineCFGStructurizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNRegPressure.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ControlFlowFinalizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNSchedStrategy.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNProcessors.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegAsmNames.inc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Packetizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURewriteOutArguments.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VOPInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/FLATInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600ExpandSpecialInstrs.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SMInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUFixFunctionBitcasts.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNILPSched.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VOP2Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterBankInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMacroFusion.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULowerKernelAttributes.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNDPPCombine.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/R600EmitClauseMarkers.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateUniformValues.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/GCNSchedStrategy.h
    U src/gnu/llvm/lib/Target/AMDGPU/VOP3PInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetMachine.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixupVectorISel.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixSGPRCopies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIDefines.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIWholeQuadMode.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCallingConv.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUUnifyDivergentExitNodes.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIProgramInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600OpenCLImageTypeLoweringPass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULowerKernelArguments.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixWWMLiveness.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIDebuggerInsertNops.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSubtarget.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAtomicOptimizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineFunction.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInline.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterInfo.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIFormMemoryClauses.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIRegisterInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600InstrFormats.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600OptimizeVectorRegisters.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/BUFInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R700Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUSearchableTables.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIOptimizeExecMaskingPreRA.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAlwaysInlinePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMemoryLegalizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULegalizerInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIFixVGPRCopies.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/VIInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUOpenCLEnqueuedBlockLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SILowerControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ClauseMergePass.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULibCalls.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDILCFGStructurizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600MachineScheduler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetObjectFile.h
    U src/gnu/llvm/lib/Target/AMDGPU/SIIntrinsics.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUMachineModuleInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUGISel.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDKernelCodeT.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPURegisterBanks.td
    U src/gnu/llvm/lib/Target/AMDGPU/VOPCInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600FrameLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/MIMGInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPU.td
    U src/gnu/llvm/lib/Target/AMDGPU/SILoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIInsertSkips.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIISelLowering.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNIterativeScheduler.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNMinRegStrategy.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUCodeGenPrepare.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIAnnotateControlFlow.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPULibFunc.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUPerfHintAnalysis.h
    U src/gnu/llvm/lib/Target/AMDGPU/GCNRegPressure.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUHSAMetadataStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/DSInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SOPInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/CaymanInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/SIModeRegister.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUIntrinsicInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIShrinkInstructions.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Schedule.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUGenRegisterBankInfo.def
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAnnotateKernelFeatures.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/SIOptimizeExecMasking.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/R600Instructions.td
    U src/gnu/llvm/lib/Target/AMDGPU/R600Processors.td
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUAliasAnalysis.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AMDGPUInstrInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.h
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/AMDGPUInstPrinter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUAsmBackend.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/R600MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUFixupKinds.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/SIMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUELFStreamer.h
    U src/gnu/llvm/lib/Target/AMDGPU/MCTargetDesc/AMDGPUMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/TargetInfo/AMDGPUTargetInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.h
    U src/gnu/llvm/lib/Target/AMDGPU/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Disassembler/AMDGPUDisassembler.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUAsmUtils.h
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDGPUBaseInfo.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/Utils/AMDKernelCodeTUtils.h
    U src/gnu/llvm/lib/Target/AMDGPU/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AMDGPU/AsmParser/AMDGPUAsmParser.cpp
    U src/gnu/llvm/lib/Target/AMDGPU/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPrepareForLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyArgumentMove.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegColoring.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrConv.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrMemory.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyEHRestoreStackPointer.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySetP2AlignOperands.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrCall.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeReturned.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFastISel.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAddMissingPrototypes.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyOptimizeLiveIntervals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISelLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCallIndirectFixup.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrControl.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerGlobalDtors.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrAtomics.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInteger.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyISD.def
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLateEHPrepare.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyDebugValueManager.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMemIntrinsicResults.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssembly.td
    U src/gnu/llvm/lib/Target/WebAssembly/known_gcc_test_failures.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetMachine.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyExplicitLocals.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySubtarget.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.h
    U src/gnu/llvm/lib/Target/WebAssembly/README.txt
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyAsmPrinter.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRuntimeLibcallSignatures.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyLowerBrUnless.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrSIMD.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblySelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrFormats.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCFGStackify.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixIrreducibleControlFlow.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyExceptionInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyCFGSort.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFixFunctionBitcasts.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyReplacePhysRegs.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyPeephole.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyFrameLowering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyUtilities.h
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyMCInstLower.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyInstrExceptRef.td
    U src/gnu/llvm/lib/Target/WebAssembly/WebAssemblyRegNumbering.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/InstPrinter/WebAssemblyInstPrinter.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyWasmObjectWriter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyFixupKinds.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.h
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyAsmBackend.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/WebAssemblyTargetInfo.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/WebAssembly/Disassembler/WebAssemblyDisassembler.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/AsmParser/WebAssemblyAsmParser.cpp
    U src/gnu/llvm/lib/Target/WebAssembly/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/WebAssembly/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/LeonPasses.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.td
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrFormats.td
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.h
    U src/gnu/llvm/lib/Target/Sparc/Sparc.h
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/LeonPasses.h
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.h
    U src/gnu/llvm/lib/Target/Sparc/SparcCallingConv.td
    U src/gnu/llvm/lib/Target/Sparc/SparcInstr64Bit.td
    U src/gnu/llvm/lib/Target/Sparc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/LeonFeatures.td
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.h
    U src/gnu/llvm/lib/Target/Sparc/DelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.h
    U src/gnu/llvm/lib/Target/Sparc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrInfo.td
    U src/gnu/llvm/lib/Target/Sparc/Sparc.td
    U src/gnu/llvm/lib/Target/Sparc/SparcMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcSchedule.td
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrAliases.td
    U src/gnu/llvm/lib/Target/Sparc/README.txt
    U src/gnu/llvm/lib/Target/Sparc/SparcInstrVIS.td
    U src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.h
    U src/gnu/llvm/lib/Target/Sparc/SparcSubtarget.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcISelLowering.cpp
    U src/gnu/llvm/lib/Target/Sparc/SparcRegisterInfo.h
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/InstPrinter/SparcInstPrinter.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcTargetStreamer.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcFixupKinds.h
    U src/gnu/llvm/lib/Target/Sparc/MCTargetDesc/SparcMCExpr.h
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/SparcTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/SparcDisassembler.cpp
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Sparc/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Sparc/AsmParser/SparcAsmParser.cpp
    U src/gnu/llvm/lib/Target/Sparc/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CondBrTuning.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBanks.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.cpp
    U src/gnu/llvm/lib/Target/AArch64/SVEInstrFormats.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ConditionOptimizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedFalkor.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64MCInstLower.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedFalkorDetails.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64FrameLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedThunderX2T99.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64PromoteConstant.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedCyclone.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA53.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedPredExynos.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64MacroFusion.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64ConditionalCompares.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallLowering.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedPredicates.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64StorePairSuppress.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64GenRegisterBankInfo.def
    U src/gnu/llvm/lib/Target/AArch64/AArch64MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.h
    U src/gnu/llvm/lib/Target/AArch64/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrAtomics.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SystemOperands.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedExynosM4.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstructionSelector.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64LegalizerInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CollectLOH.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RedundantCopyElimination.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64A57FPLoadBalancing.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SIMDInstrOpt.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64LoadStoreOptimizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/AArch64Subtarget.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedThunderX.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64ISelLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64FalkorHWPFFix.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64A53Fix835769.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedExynosM1.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryoDetails.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64PfmCounters.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedExynosM3.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64CompressJumpTables.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedKryo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetObjectFile.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64CleanupLocalDynamicTLSPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SVEInstrInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64RegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64BranchTargets.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64LegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PerfectShuffle.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64DeadRegisterDefinitionsPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64TargetMachine.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64MacroFusion.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64PBQPRegAlloc.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrFormats.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64AdvSIMDScalarPass.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64SchedA57WriteRes.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64Schedule.td
    U src/gnu/llvm/lib/Target/AArch64/AArch64FastISel.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64InstrInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallLowering.h
    U src/gnu/llvm/lib/Target/AArch64/AArch64ExpandPseudoInsts.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64SpeculationHardening.cpp
    U src/gnu/llvm/lib/Target/AArch64/AArch64CallingConvention.h
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.h
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/AArch64InstPrinter.cpp
    U src/gnu/llvm/lib/Target/AArch64/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCExpr.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MachObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64FixupKinds.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AsmBackend.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64ELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/AArch64/MCTargetDesc/AArch64TargetStreamer.h
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/AArch64TargetInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.h
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.h
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64Disassembler.cpp
    U src/gnu/llvm/lib/Target/AArch64/Disassembler/AArch64ExternalSymbolizer.cpp
    U src/gnu/llvm/lib/Target/AArch64/Utils/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.h
    U src/gnu/llvm/lib/Target/AArch64/Utils/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/AArch64/Utils/AArch64BaseInfo.cpp
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/AArch64AsmParser.cpp
    U src/gnu/llvm/lib/Target/AArch64/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonLoopIdiomRecognition.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV65.gen.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptimizeSZextends.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFRegisters.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepInstrFormats.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenPredicate.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCFGOptimizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRDFOpt.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFCopy.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVectorLoopCarriedReuse.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV66.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitSimplify.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSchedule.td
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonStoreWidening.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFRegisters.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsicsV5.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHardwareLoops.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineScheduler.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFCopy.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonConstPropagation.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFixupHwLoops.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV62.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMapAsm2IntrinV62.gen.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIICHVX.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetTransformInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPatternsV65.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.h
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepArch.td
    U src/gnu/llvm/lib/Target/Hexagon/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPatternsHVX.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepITypes.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepIICScalar.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFDeadCode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIICScalar.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV65.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLoweringHVX.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVExtract.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPatterns.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPeephole.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepITypes.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOperands.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV5.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSubtarget.h
    U src/gnu/llvm/lib/Target/Hexagon/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepArch.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCopyToCombine.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCommonGEP.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSplitConst32AndConst64.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonRegisterInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV55.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSplitDouble.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepTimingClasses.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepInstrInfo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepMappings.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenMux.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonOptAddrMode.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormats.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonCallingConv.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepOperands.td
    U src/gnu/llvm/lib/Target/Hexagon/Hexagon.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonScheduleV60.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV65.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepMapAsm2Intrin.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonConstExtenders.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonFrameLowering.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonIntrinsics.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelLowering.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Hexagon/BitTracker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonISelDAGToDAGHVX.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFLiveness.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepDecoders.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonInstrFormatsV5.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonDepIICHVX.td
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVectorPrint.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonVLIWPacketizer.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonAsmPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBranchRelaxation.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBitTracker.h
    U src/gnu/llvm/lib/Target/Hexagon/HexagonNewValueJump.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonHazardRecognizer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenExtract.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonPseudo.td
    U src/gnu/llvm/lib/Target/Hexagon/HexagonBlockRanges.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonEarlyIfConv.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonGenInsert.cpp
    U src/gnu/llvm/lib/Target/Hexagon/HexagonExpandCondsets.cpp
    U src/gnu/llvm/lib/Target/Hexagon/RDFGraph.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonBaseInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonShuffler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCompound.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCShuffler.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCChecker.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCDuplexInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCExpr.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonFixupKinds.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonMCELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonInstPrinter.h
    U src/gnu/llvm/lib/Target/Hexagon/MCTargetDesc/HexagonELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Hexagon/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/TargetInfo/HexagonTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Disassembler/HexagonDisassembler.cpp
    U src/gnu/llvm/lib/Target/Hexagon/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Hexagon/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Hexagon/AsmParser/HexagonAsmParser.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsTargetStreamer.h
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsScheduleGeneric.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsModuleISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.h
    U src/gnu/llvm/lib/Target/Mips/MipsCallLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.h
    U src/gnu/llvm/lib/Target/Mips/Mips64InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterBankInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips.h
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsCCState.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsCallingConv.td
    U src/gnu/llvm/lib/Target/Mips/MipsFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsConstantIslandPass.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterBanks.td
    U src/gnu/llvm/lib/Target/Mips/MipsExpandPseudo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.h
    U src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.h
    U src/gnu/llvm/lib/Target/Mips/MipsCallLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterBankInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.h
    U src/gnu/llvm/lib/Target/Mips/MipsOptimizePICCall.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsDelaySlotFiller.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsLegalizerInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMSAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips16FrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetMachine.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMTInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloatInfo.h
    U src/gnu/llvm/lib/Target/Mips/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/MipsEVAInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsSizeReduction.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.h
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsSERegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsOptionRecord.h
    U src/gnu/llvm/lib/Target/Mips/MipsISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstructionSelector.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.h
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/MipsCondMov.td
    U src/gnu/llvm/lib/Target/Mips/Mips.td
    C src/gnu/llvm/lib/Target/Mips/MipsAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsTargetObjectFile.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsSchedule.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.cpp
    U src/gnu/llvm/lib/Target/Mips/Relocation.txt
    U src/gnu/llvm/lib/Target/Mips/MipsAnalyzeImmediate.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSubtarget.h
    U src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MicroMips32r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsRegisterInfo.h
    U src/gnu/llvm/lib/Target/Mips/MipsBranchExpansion.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsFastISel.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsMachineFunction.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEFrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsInstrFPU.td
    U src/gnu/llvm/lib/Target/Mips/MipsScheduleP5600.td
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/Mips16HardFloat.cpp
    U src/gnu/llvm/lib/Target/Mips/MicroMipsInstrFPU.td
    U src/gnu/llvm/lib/Target/Mips/MipsPreLegalizerCombiner.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsOs16.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsSEISelLowering.h
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips32r6InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MipsMTInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MicroMipsDSPInstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/Mips16InstrFormats.td
    U src/gnu/llvm/lib/Target/Mips/MSA.txt
    U src/gnu/llvm/lib/Target/Mips/MipsMCInstLower.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsEVAInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/Mips16ISelDAGToDAG.h
    U src/gnu/llvm/lib/Target/Mips/Mips64r6InstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MipsDSPInstrInfo.td
    U src/gnu/llvm/lib/Target/Mips/MipsLegalizerInfo.h
    U src/gnu/llvm/lib/Target/Mips/Mips16FrameLowering.h
    U src/gnu/llvm/lib/Target/Mips/Mips16RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.h
    U src/gnu/llvm/lib/Target/Mips/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/InstPrinter/MipsInstPrinter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFStreamer.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsNaClELFStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsBaseInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCNaCl.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsABIFlagsSection.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsFixupKinds.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCExpr.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/LLVMBuild.txt
    C src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsTargetStreamer.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsOptionRecord.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCCodeEmitter.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.h
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsAsmBackend.cpp
    U src/gnu/llvm/lib/Target/Mips/MCTargetDesc/MipsMCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/TargetInfo/MipsTargetInfo.cpp
    U src/gnu/llvm/lib/Target/Mips/Disassembler/MipsDisassembler.cpp
    U src/gnu/llvm/lib/Target/Mips/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/Mips/AsmParser/MipsAsmParser.cpp
    U src/gnu/llvm/lib/Target/Mips/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/Mips/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFSelectionDAGInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFSubtarget.h
    U src/gnu/llvm/lib/Target/BPF/BPF.td
    U src/gnu/llvm/lib/Target/BPF/BPFAsmPrinter.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/BTF.def
    U src/gnu/llvm/lib/Target/BPF/BPFCallingConv.td
    U src/gnu/llvm/lib/Target/BPF/BTF.h
    U src/gnu/llvm/lib/Target/BPF/BTFDebug.h
    U src/gnu/llvm/lib/Target/BPF/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFMIChecking.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/BPF/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/BPFMIPeephole.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFInstrFormats.td
    U src/gnu/llvm/lib/Target/BPF/BPFTargetMachine.h
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/BPFMCInstLower.h
    U src/gnu/llvm/lib/Target/BPF/BTFDebug.cpp
    U src/gnu/llvm/lib/Target/BPF/BPF.h
    U src/gnu/llvm/lib/Target/BPF/BPFISelLowering.h
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFRegisterInfo.td
    U src/gnu/llvm/lib/Target/BPF/BPFInstrInfo.td
    U src/gnu/llvm/lib/Target/BPF/BPFSelectionDAGInfo.h
    U src/gnu/llvm/lib/Target/BPF/BPFFrameLowering.h
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.cpp
    U src/gnu/llvm/lib/Target/BPF/InstPrinter/BPFInstPrinter.h
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.h
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCAsmInfo.h
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFAsmBackend.cpp
    U src/gnu/llvm/lib/Target/BPF/MCTargetDesc/BPFMCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/BPF/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/TargetInfo/BPFTargetInfo.cpp
    U src/gnu/llvm/lib/Target/BPF/AsmParser/BPFAsmParser.cpp
    U src/gnu/llvm/lib/Target/BPF/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/BPF/Disassembler/BPFDisassembler.cpp
    U src/gnu/llvm/lib/Target/BPF/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/BPF/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelLowering.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430ISelDAGToDAG.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430CallingConv.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrFormats.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430Subtarget.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430TargetMachine.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430RegisterInfo.td
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.cpp
    U src/gnu/llvm/lib/Target/MSP430/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430InstrInfo.td
    U src/gnu/llvm/lib/Target/MSP430/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430.h
    U src/gnu/llvm/lib/Target/MSP430/MSP430MCInstLower.h
    U src/gnu/llvm/lib/Target/MSP430/README.txt
    U src/gnu/llvm/lib/Target/MSP430/MSP430AsmPrinter.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430FrameLowering.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430BranchSelector.cpp
    U src/gnu/llvm/lib/Target/MSP430/MSP430MachineFunctionInfo.h
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.h
    U src/gnu/llvm/lib/Target/MSP430/InstPrinter/MSP430InstPrinter.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430FixupKinds.h
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFStreamer.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCAsmInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCCodeEmitter.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430AsmBackend.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430MCTargetDesc.cpp
    U src/gnu/llvm/lib/Target/MSP430/MCTargetDesc/MSP430ELFObjectWriter.cpp
    U src/gnu/llvm/lib/Target/MSP430/TargetInfo/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/TargetInfo/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/TargetInfo/MSP430TargetInfo.cpp
    U src/gnu/llvm/lib/Target/MSP430/Disassembler/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/Disassembler/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/Disassembler/MSP430Disassembler.cpp
    U src/gnu/llvm/lib/Target/MSP430/AsmParser/CMakeLists.txt
    U src/gnu/llvm/lib/Target/MSP430/AsmParser/LLVMBuild.txt
    U src/gnu/llvm/lib/Target/MSP430/AsmParser/MSP430AsmParser.cpp
    U src/gnu/llvm/lib/Analysis/LegacyDivergenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/OrderedBasicBlock.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.cpp
    U src/gnu/llvm/lib/Analysis/DemandedBits.cpp
    U src/gnu/llvm/lib/Analysis/CallGraphSCCPass.cpp
    U src/gnu/llvm/lib/Analysis/VectorUtils.cpp
    U src/gnu/llvm/lib/Analysis/ValueLatticeUtils.cpp
    U src/gnu/llvm/lib/Analysis/TypeMetadataUtils.cpp
    U src/gnu/llvm/lib/Analysis/Analysis.cpp
    U src/gnu/llvm/lib/Analysis/IVDescriptors.cpp
    U src/gnu/llvm/lib/Analysis/Lint.cpp
    U src/gnu/llvm/lib/Analysis/GuardUtils.cpp
    U src/gnu/llvm/lib/Analysis/LazyCallGraph.cpp
    U src/gnu/llvm/lib/Analysis/PHITransAddr.cpp
    U src/gnu/llvm/lib/Analysis/LoopInfo.cpp
    U src/gnu/llvm/lib/Analysis/Trace.cpp
    U src/gnu/llvm/lib/Analysis/DominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/IndirectCallPromotionAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/MemDepPrinter.cpp
    U src/gnu/llvm/lib/Analysis/StratifiedSets.h
    U src/gnu/llvm/lib/Analysis/ScalarEvolution.cpp
    U src/gnu/llvm/lib/Analysis/MemorySSA.cpp
    U src/gnu/llvm/lib/Analysis/PtrUseVisitor.cpp
    U src/gnu/llvm/lib/Analysis/LoopAccessAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/InstructionPrecedenceTracking.cpp
    U src/gnu/llvm/lib/Analysis/ValueTracking.cpp
    U src/gnu/llvm/lib/Analysis/CmpInstAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CFGPrinter.cpp
    U src/gnu/llvm/lib/Analysis/ProfileSummaryInfo.cpp
    U src/gnu/llvm/lib/Analysis/MemoryLocation.cpp
    U src/gnu/llvm/lib/Analysis/CodeMetrics.cpp
    U src/gnu/llvm/lib/Analysis/InlineCost.cpp
    U src/gnu/llvm/lib/Analysis/CFG.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCAnalysisUtils.cpp
    U src/gnu/llvm/lib/Analysis/TargetLibraryInfo.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfoImpl.cpp
    U src/gnu/llvm/lib/Analysis/AliasSetTracker.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisSummary.h
    U src/gnu/llvm/lib/Analysis/DependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/Delinearization.cpp
    U src/gnu/llvm/lib/Analysis/EHPersonalities.cpp
    U src/gnu/llvm/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/lib/Analysis/LazyBlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/IteratedDominanceFrontier.cpp
    U src/gnu/llvm/lib/Analysis/PostDominators.cpp
    U src/gnu/llvm/lib/Analysis/BranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/DivergenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/MemoryBuiltins.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysisEvaluator.cpp
    U src/gnu/llvm/lib/Analysis/BlockFrequencyInfo.cpp
    U src/gnu/llvm/lib/Analysis/RegionPass.cpp
    U src/gnu/llvm/lib/Analysis/ConstantFolding.cpp
    U src/gnu/llvm/lib/Analysis/OptimizationRemarkEmitter.cpp
    U src/gnu/llvm/lib/Analysis/MemoryDependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/LLVMBuild.txt
    U src/gnu/llvm/lib/Analysis/CostModel.cpp
    U src/gnu/llvm/lib/Analysis/IntervalPartition.cpp
    U src/gnu/llvm/lib/Analysis/SyncDependenceAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/RegionPrinter.cpp
    U src/gnu/llvm/lib/Analysis/ObjCARCInstKind.cpp
    U src/gnu/llvm/lib/Analysis/CFLGraph.h
    U src/gnu/llvm/lib/Analysis/InstructionSimplify.cpp
    U src/gnu/llvm/lib/Analysis/AssumptionCache.cpp
    U src/gnu/llvm/lib/Analysis/OrderedInstructions.cpp
    U src/gnu/llvm/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/lib/Analysis/CaptureTracking.cpp
    U src/gnu/llvm/lib/Analysis/DomPrinter.cpp
    U src/gnu/llvm/lib/Analysis/LazyValueInfo.cpp
    U src/gnu/llvm/lib/Analysis/SyntheticCountsUtils.cpp
    U src/gnu/llvm/lib/Analysis/ValueLattice.cpp
    U src/gnu/llvm/lib/Analysis/InstCount.cpp
    U src/gnu/llvm/lib/Analysis/README.txt
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionExpander.cpp
    U src/gnu/llvm/lib/Analysis/AliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/ModuleDebugInfoPrinter.cpp
    U src/gnu/llvm/lib/Analysis/CGSCCPassManager.cpp
    U src/gnu/llvm/lib/Analysis/MustExecute.cpp
    U src/gnu/llvm/lib/Analysis/LoopPass.cpp
    U src/gnu/llvm/lib/Analysis/IVUsers.cpp
    U src/gnu/llvm/lib/Analysis/LazyBranchProbabilityInfo.cpp
    U src/gnu/llvm/lib/Analysis/RegionInfo.cpp
    U src/gnu/llvm/lib/Analysis/BasicAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/GlobalsModRef.cpp
    U src/gnu/llvm/lib/Analysis/ModuleSummaryAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/StackSafetyAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/LoopAnalysisManager.cpp
    U src/gnu/llvm/lib/Analysis/PhiValues.cpp
    U src/gnu/llvm/lib/Analysis/LoopUnrollAnalyzer.cpp
    U src/gnu/llvm/lib/Analysis/CFLAndersAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/TargetTransformInfo.cpp
    U src/gnu/llvm/lib/Analysis/TypeBasedAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/CallPrinter.cpp
    U src/gnu/llvm/lib/Analysis/CFLSteensAliasAnalysis.cpp
    U src/gnu/llvm/lib/Analysis/Interval.cpp
    U src/gnu/llvm/lib/Analysis/MemDerefPrinter.cpp
    U src/gnu/llvm/lib/Analysis/ScopedNoAliasAA.cpp
    U src/gnu/llvm/lib/Analysis/Loads.cpp
    U src/gnu/llvm/lib/Analysis/ScalarEvolutionNormalization.cpp
    U src/gnu/llvm/lib/Analysis/MemorySSAUpdater.cpp
    U src/gnu/llvm/lib/OptRemarks/OptRemarksParser.cpp
    U src/gnu/llvm/lib/OptRemarks/CMakeLists.txt
    U src/gnu/llvm/lib/OptRemarks/LLVMBuild.txt
    U src/gnu/llvm/lib/ProfileData/InstrProf.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProf.cpp
    U src/gnu/llvm/lib/ProfileData/GCOV.cpp
    U src/gnu/llvm/lib/ProfileData/CMakeLists.txt
    U src/gnu/llvm/lib/ProfileData/SampleProfWriter.cpp
    U src/gnu/llvm/lib/ProfileData/LLVMBuild.txt
    U src/gnu/llvm/lib/ProfileData/ProfileSummaryBuilder.cpp
    U src/gnu/llvm/lib/ProfileData/InstrProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/SampleProfReader.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMapping.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingReader.cpp
    U src/gnu/llvm/lib/ProfileData/Coverage/CMakeLists.txt
    U src/gnu/llvm/lib/ProfileData/Coverage/LLVMBuild.txt
    U src/gnu/llvm/lib/ProfileData/Coverage/CoverageMappingWriter.cpp
    U src/gnu/llvm/utils/update_llc_test_checks.py
    U src/gnu/llvm/utils/create_ladder_graph.py
    U src/gnu/llvm/utils/countloc.sh
    U src/gnu/llvm/utils/shuffle_fuzz.py
    U src/gnu/llvm/utils/unicode-case-fold.py
    U src/gnu/llvm/utils/wciia.py
    U src/gnu/llvm/utils/extract_symbols.py
    U src/gnu/llvm/utils/schedcover.py
    U src/gnu/llvm/utils/update_mir_test_checks.py
    U src/gnu/llvm/utils/demangle_tree.py
    U src/gnu/llvm/utils/llvmgrep
    U src/gnu/llvm/utils/clang-parse-diagnostics-file
    U src/gnu/llvm/utils/getsrcs.sh
    U src/gnu/llvm/utils/GenLibDeps.pl
    U src/gnu/llvm/utils/abtest.py
    U src/gnu/llvm/utils/llvmdo
    U src/gnu/llvm/utils/findoptdiff
    U src/gnu/llvm/utils/DSAclean.py
    U src/gnu/llvm/utils/extract_vplan.py
    U src/gnu/llvm/utils/UpdateCMakeLists.pl
    U src/gnu/llvm/utils/update_test_checks.py
    U src/gnu/llvm/utils/sort_includes.py
    U src/gnu/llvm/utils/LLVMBuild.txt
    U src/gnu/llvm/utils/shuffle_select_fuzz_tester.py
    U src/gnu/llvm/utils/prepare-code-coverage-artifact.py
    U src/gnu/llvm/utils/findmisopt
    U src/gnu/llvm/utils/bugpoint_gisel_reducer.py
    U src/gnu/llvm/utils/GetRepositoryPath
    U src/gnu/llvm/utils/update_mca_test_checks.py
    U src/gnu/llvm/utils/collect_and_build_with_pgo.py
    U src/gnu/llvm/utils/indirect_calls.py
    U src/gnu/llvm/utils/bisect-skip-count
    U src/gnu/llvm/utils/lldbDataFormatters.py
    U src/gnu/llvm/utils/llvm-native-gxx
    U src/gnu/llvm/utils/bisect
    U src/gnu/llvm/utils/llvm-gisel-cov.py
    U src/gnu/llvm/utils/check-each-file
    U src/gnu/llvm/utils/findsym.pl
    U src/gnu/llvm/utils/update_analyze_test_checks.py
    U src/gnu/llvm/utils/GetSourceVersion
    U src/gnu/llvm/utils/codegen-diff
    U src/gnu/llvm/utils/DSAextract.py
    U src/gnu/llvm/utils/llvm.grm
    U src/gnu/llvm/utils/update_cc_test_checks.py
    U src/gnu/llvm/utils/llvm-compilers-check
    U src/gnu/llvm/utils/testgen/mc-bundling-x86-gen.py
    U src/gnu/llvm/utils/textmate/README
    U src/gnu/llvm/utils/textmate/TableGen.tmbundle/info.plist
    U src/gnu/llvm/utils/textmate/TableGen.tmbundle/Syntaxes/TableGen.tmLanguage
    U src/gnu/llvm/utils/TableGen/SubtargetFeatureInfo.h
    U src/gnu/llvm/utils/TableGen/FixedLenDecoderEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.h
    U src/gnu/llvm/utils/TableGen/DFAPacketizerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenIntrinsics.h
    U src/gnu/llvm/utils/TableGen/InstrDocsEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SDNodeProperties.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.h
    U src/gnu/llvm/utils/TableGen/X86EVEX2VEXTablesEmitter.cpp
    U src/gnu/llvm/utils/TableGen/PredicateExpander.h
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.cpp
    U src/gnu/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenSchedule.cpp
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.h
    U src/gnu/llvm/utils/TableGen/AsmWriterEmitter.cpp
    U src/gnu/llvm/utils/TableGen/tdtags
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.h
    U src/gnu/llvm/utils/TableGen/DisassemblerEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenRegisters.h
    U src/gnu/llvm/utils/TableGen/InfoByHwMode.cpp
    U src/gnu/llvm/utils/TableGen/RegisterInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.h
    U src/gnu/llvm/utils/TableGen/CodeGenHwModes.h
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherGen.cpp
    U src/gnu/llvm/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/utils/TableGen/CallingConvEmitter.cpp
    U src/gnu/llvm/utils/TableGen/X86DisassemblerShared.h
    U src/gnu/llvm/utils/TableGen/CMakeLists.txt
    U src/gnu/llvm/utils/TableGen/SequenceToOffsetTable.h
    U src/gnu/llvm/utils/TableGen/Types.h
    U src/gnu/llvm/utils/TableGen/WebAssemblyDisassemblerEmitter.h
    U src/gnu/llvm/utils/TableGen/InfoByHwMode.h
    U src/gnu/llvm/utils/TableGen/FastISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenTarget.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcher.cpp
    U src/gnu/llvm/utils/TableGen/X86FoldTablesEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SDNodeProperties.h
    U src/gnu/llvm/utils/TableGen/DAGISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/LLVMBuild.txt
    U src/gnu/llvm/utils/TableGen/CodeGenHwModes.cpp
    U src/gnu/llvm/utils/TableGen/SearchableTableEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherOpt.cpp
    U src/gnu/llvm/utils/TableGen/X86RecognizableInstr.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenMapTable.cpp
    U src/gnu/llvm/utils/TableGen/RISCVCompressInstEmitter.cpp
    U src/gnu/llvm/utils/TableGen/GlobalISelEmitter.cpp
    U src/gnu/llvm/utils/TableGen/Types.cpp
    U src/gnu/llvm/utils/TableGen/IntrinsicEmitter.cpp
    U src/gnu/llvm/utils/TableGen/DAGISelMatcherEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CTagsEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmMatcherEmitter.cpp
    U src/gnu/llvm/utils/TableGen/ExegesisEmitter.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.h
    U src/gnu/llvm/utils/TableGen/SubtargetEmitter.cpp
    U src/gnu/llvm/utils/TableGen/SubtargetFeatureInfo.cpp
    U src/gnu/llvm/utils/TableGen/AsmWriterInst.cpp
    U src/gnu/llvm/utils/TableGen/PseudoLoweringEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenDAGPatterns.h
    U src/gnu/llvm/utils/TableGen/OptParserEmitter.cpp
    U src/gnu/llvm/utils/TableGen/CodeEmitterGen.cpp
    U src/gnu/llvm/utils/TableGen/CodeGenInstruction.h
    U src/gnu/llvm/utils/TableGen/InstrInfoEmitter.cpp
    U src/gnu/llvm/utils/TableGen/Attributes.cpp
    U src/gnu/llvm/utils/TableGen/X86ModRMFilters.cpp
    U src/gnu/llvm/utils/TableGen/PredicateExpander.cpp
    U src/gnu/llvm/utils/TableGen/RegisterBankEmitter.cpp
    U src/gnu/llvm/utils/TableGen/TableGen.cpp
    U src/gnu/llvm/utils/TableGen/X86DisassemblerTables.h
    U src/gnu/llvm/utils/benchmark/CONTRIBUTING.md
    U src/gnu/llvm/utils/benchmark/releasing.md
    U src/gnu/llvm/utils/benchmark/CONTRIBUTORS
    U src/gnu/llvm/utils/benchmark/README.md
    U src/gnu/llvm/utils/benchmark/mingw.py
    U src/gnu/llvm/utils/benchmark/README.LLVM
    U src/gnu/llvm/utils/benchmark/CMakeLists.txt
    U src/gnu/llvm/utils/benchmark/appveyor.yml
    U src/gnu/llvm/utils/benchmark/LICENSE
    U src/gnu/llvm/utils/benchmark/AUTHORS
    U src/gnu/llvm/utils/benchmark/WORKSPACE
    U src/gnu/llvm/utils/benchmark/src/benchmark.cc
    U src/gnu/llvm/utils/benchmark/src/complexity.cc
    U src/gnu/llvm/utils/benchmark/src/counter.cc
    U src/gnu/llvm/utils/benchmark/src/json_reporter.cc
    U src/gnu/llvm/utils/benchmark/src/string_util.h
    U src/gnu/llvm/utils/benchmark/src/thread_manager.h
    U src/gnu/llvm/utils/benchmark/src/colorprint.cc
    U src/gnu/llvm/utils/benchmark/src/sleep.h
    U src/gnu/llvm/utils/benchmark/src/benchmark_register.h
    U src/gnu/llvm/utils/benchmark/src/statistics.h
    U src/gnu/llvm/utils/benchmark/src/timers.h
    U src/gnu/llvm/utils/benchmark/src/statistics.cc
    U src/gnu/llvm/utils/benchmark/src/benchmark_register.cc
    U src/gnu/llvm/utils/benchmark/src/CMakeLists.txt
    U src/gnu/llvm/utils/benchmark/src/mutex.h
    U src/gnu/llvm/utils/benchmark/src/complexity.h
    U src/gnu/llvm/utils/benchmark/src/thread_timer.h
    U src/gnu/llvm/utils/benchmark/src/cycleclock.h
    U src/gnu/llvm/utils/benchmark/src/console_reporter.cc
    U src/gnu/llvm/utils/benchmark/src/re.h
    U src/gnu/llvm/utils/benchmark/src/commandlineflags.h
    U src/gnu/llvm/utils/benchmark/src/check.h
    U src/gnu/llvm/utils/benchmark/src/internal_macros.h
    U src/gnu/llvm/utils/benchmark/src/string_util.cc
    U src/gnu/llvm/utils/benchmark/src/counter.h
    U src/gnu/llvm/utils/benchmark/src/benchmark_api_internal.h
    U src/gnu/llvm/utils/benchmark/src/colorprint.h
    U src/gnu/llvm/utils/benchmark/src/timers.cc
    U src/gnu/llvm/utils/benchmark/src/reporter.cc
    U src/gnu/llvm/utils/benchmark/src/arraysize.h
    U src/gnu/llvm/utils/benchmark/src/benchmark_main.cc
    U src/gnu/llvm/utils/benchmark/src/csv_reporter.cc
    U src/gnu/llvm/utils/benchmark/src/sysinfo.cc
    U src/gnu/llvm/utils/benchmark/src/commandlineflags.cc
    U src/gnu/llvm/utils/benchmark/src/log.h
    U src/gnu/llvm/utils/benchmark/src/sleep.cc
    U src/gnu/llvm/utils/benchmark/cmake/GetGitVersion.cmake
    U src/gnu/llvm/utils/benchmark/cmake/CXXFeatureCheck.cmake
    U src/gnu/llvm/utils/benchmark/cmake/Config.cmake.in
    U src/gnu/llvm/utils/benchmark/cmake/benchmark.pc.in
    U src/gnu/llvm/utils/benchmark/cmake/std_regex.cpp
    U src/gnu/llvm/utils/benchmark/cmake/llvm-toolchain.cmake
    U src/gnu/llvm/utils/benchmark/cmake/steady_clock.cpp
    U src/gnu/llvm/utils/benchmark/cmake/HandleGTest.cmake
    U src/gnu/llvm/utils/benchmark/cmake/posix_regex.cpp
    U src/gnu/llvm/utils/benchmark/cmake/gnu_posix_regex.cpp
    U src/gnu/llvm/utils/benchmark/cmake/thread_safety_attributes.cpp
    U src/gnu/llvm/utils/benchmark/cmake/AddCXXCompilerFlag.cmake
    U src/gnu/llvm/utils/benchmark/cmake/split_list.cmake
    U src/gnu/llvm/utils/benchmark/cmake/Modules/FindLLVMNm.cmake
    U src/gnu/llvm/utils/benchmark/cmake/Modules/FindLLVMAr.cmake
    U src/gnu/llvm/utils/benchmark/cmake/Modules/FindLLVMRanLib.cmake
    U src/gnu/llvm/utils/benchmark/docs/tools.md
    U src/gnu/llvm/utils/benchmark/docs/AssemblyTests.md
    U src/gnu/llvm/utils/benchmark/tools/strip_asm.py
    U src/gnu/llvm/utils/benchmark/tools/compare.py
    U src/gnu/llvm/utils/benchmark/tools/gbench/util.py
    U src/gnu/llvm/utils/benchmark/tools/gbench/report.py
    U src/gnu/llvm/utils/benchmark/tools/gbench/__init__.py
    U src/gnu/llvm/utils/benchmark/tools/gbench/Inputs/test2_run.json
    U src/gnu/llvm/utils/benchmark/tools/gbench/Inputs/test1_run2.json
    U src/gnu/llvm/utils/benchmark/tools/gbench/Inputs/test1_run1.json
    U src/gnu/llvm/utils/benchmark/include/benchmark/benchmark.h
    U src/gnu/llvm/utils/benchmark/test/clobber_memory_assembly_test.cc
    U src/gnu/llvm/utils/benchmark/test/link_main_test.cc
    U src/gnu/llvm/utils/benchmark/test/map_test.cc
    U src/gnu/llvm/utils/benchmark/test/donotoptimize_assembly_test.cc
    U src/gnu/llvm/utils/benchmark/test/fixture_test.cc
    U src/gnu/llvm/utils/benchmark/test/complexity_test.cc
    U src/gnu/llvm/utils/benchmark/test/options_test.cc
    U src/gnu/llvm/utils/benchmark/test/reporter_output_test.cc
    U src/gnu/llvm/utils/benchmark/test/templated_fixture_test.cc
    U src/gnu/llvm/utils/benchmark/test/benchmark_gtest.cc
    U src/gnu/llvm/utils/benchmark/test/user_counters_test.cc
    U src/gnu/llvm/utils/benchmark/test/skip_with_error_test.cc
    U src/gnu/llvm/utils/benchmark/test/CMakeLists.txt
    U src/gnu/llvm/utils/benchmark/test/AssemblyTests.cmake
    U src/gnu/llvm/utils/benchmark/test/register_benchmark_test.cc
    U src/gnu/llvm/utils/benchmark/test/output_test.h
    U src/gnu/llvm/utils/benchmark/test/benchmark_test.cc
    U src/gnu/llvm/utils/benchmark/test/diagnostics_test.cc
    U src/gnu/llvm/utils/benchmark/test/multiple_ranges_test.cc
    U src/gnu/llvm/utils/benchmark/test/output_test_helper.cc
    U src/gnu/llvm/utils/benchmark/test/state_assembly_test.cc
    U src/gnu/llvm/utils/benchmark/test/statistics_gtest.cc
    U src/gnu/llvm/utils/benchmark/test/user_counters_tabular_test.cc
    U src/gnu/llvm/utils/benchmark/test/donotoptimize_test.cc
    U src/gnu/llvm/utils/benchmark/test/basic_test.cc
    U src/gnu/llvm/utils/benchmark/test/filter_test.cc
    U src/gnu/llvm/utils/benchmark/test/cxx03_test.cc
    U src/gnu/llvm/utils/kate/llvm-tablegen.xml
    U src/gnu/llvm/utils/kate/llvm.xml
    U src/gnu/llvm/utils/kate/README
    U src/gnu/llvm/utils/docker/README
    U src/gnu/llvm/utils/docker/build_docker_image.sh
    U src/gnu/llvm/utils/docker/example/Dockerfile
    U src/gnu/llvm/utils/docker/scripts/checkout.sh
    U src/gnu/llvm/utils/docker/scripts/build_install_llvm.sh
    U src/gnu/llvm/utils/docker/scripts/llvm_checksum/llvm_checksum.py
    U src/gnu/llvm/utils/docker/scripts/llvm_checksum/project_tree.py
    U src/gnu/llvm/utils/docker/debian8/Dockerfile
    U src/gnu/llvm/utils/docker/nvidia-cuda/Dockerfile
    U src/gnu/llvm/utils/release/test-release.sh
    U src/gnu/llvm/utils/release/findRegressions-nightly.py
    U src/gnu/llvm/utils/release/findRegressions-simple.py
    U src/gnu/llvm/utils/release/build_llvm_package.bat
    U src/gnu/llvm/utils/release/merge.sh
    U src/gnu/llvm/utils/release/tag.sh
    U src/gnu/llvm/utils/release/merge-git.sh
    U src/gnu/llvm/utils/release/merge-request.sh
    U src/gnu/llvm/utils/release/export.sh
    U src/gnu/llvm/utils/Misc/zkill
    U src/gnu/llvm/utils/vscode/README
    U src/gnu/llvm/utils/vscode/tablegen/README.md
    U src/gnu/llvm/utils/vscode/tablegen/language-configuration.json
    U src/gnu/llvm/utils/vscode/tablegen/package.json
    U src/gnu/llvm/utils/vscode/tablegen/CHANGELOG.md
    U src/gnu/llvm/utils/vscode/tablegen/vsc-extension-quickstart.md
    U src/gnu/llvm/utils/vscode/tablegen/.vscode/launch.json
    U src/gnu/llvm/utils/vscode/tablegen/syntaxes/TableGen.tmLanguage
    U src/gnu/llvm/utils/git-svn/git-llvm
    U src/gnu/llvm/utils/git-svn/git-svnup
    U src/gnu/llvm/utils/git-svn/git-svnrevert
    U src/gnu/llvm/utils/llvm-lit/CMakeLists.txt
    U src/gnu/llvm/utils/llvm-lit/llvm-lit.in
    U src/gnu/llvm/utils/valgrind/i386-pc-linux-gnu.supp
    U src/gnu/llvm/utils/valgrind/x86_64-pc-linux-gnu.supp
    U src/gnu/llvm/utils/PerfectShuffle/CMakeLists.txt
    U src/gnu/llvm/utils/PerfectShuffle/PerfectShuffle.cpp
    U src/gnu/llvm/utils/unittest/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/LLVMBuild.txt
    U src/gnu/llvm/utils/unittest/googlemock/README.LLVM
    U src/gnu/llvm/utils/unittest/googlemock/LICENSE.txt
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-matchers.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-all.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-spec-builders.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-cardinalities.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock.cc
    U src/gnu/llvm/utils/unittest/googlemock/src/gmock-internal-utils.cc
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-more-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-matchers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-more-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-spec-builders.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-nice-strict.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-cardinalities.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/gmock-generated-function-mockers.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-port.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-generated-internal-utils.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/gmock-internal-utils.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-port.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-generated-actions.h
    U src/gnu/llvm/utils/unittest/googlemock/include/gmock/internal/custom/gmock-matchers.h
    U src/gnu/llvm/utils/unittest/UnitTestMain/TestMain.cpp
    U src/gnu/llvm/utils/unittest/UnitTestMain/CMakeLists.txt
    U src/gnu/llvm/utils/unittest/googletest/README.LLVM
    U src/gnu/llvm/utils/unittest/googletest/LICENSE.TXT
    U src/gnu/llvm/utils/unittest/googletest/src/gtest.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-death-test.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-typed-test.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-internal-inl.h
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-test-part.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-all.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-filepath.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-printers.cc
    U src/gnu/llvm/utils/unittest/googletest/src/gtest-port.cc
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-printers.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-message.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-test-part.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_pred_impl.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-typed-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-death-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-param-test.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest-spi.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest_prod.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/gtest.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-tuple.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-linked_ptr.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-death-test-internal.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-filepath.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-internal.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-type-util.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-port-arch.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-string.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-param-util-generated.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/gtest-port.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest-printers.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest-port.h
    U src/gnu/llvm/utils/unittest/googletest/include/gtest/internal/custom/gtest.h
    U src/gnu/llvm/utils/bugpoint/RemoteRunSafely.sh
    U src/gnu/llvm/utils/count/count.c
    U src/gnu/llvm/utils/count/CMakeLists.txt
    U src/gnu/llvm/utils/UpdateTestChecks/common.py
    U src/gnu/llvm/utils/UpdateTestChecks/__init__.py
    U src/gnu/llvm/utils/UpdateTestChecks/asm.py
    U src/gnu/llvm/utils/emacs/tablegen-mode.el
    U src/gnu/llvm/utils/emacs/llvm-mode.el
    U src/gnu/llvm/utils/emacs/emacs.el
    U src/gnu/llvm/utils/emacs/README
    U src/gnu/llvm/utils/fpcmp/fpcmp.cpp
    U src/gnu/llvm/utils/not/not.cpp
    U src/gnu/llvm/utils/not/CMakeLists.txt
    U src/gnu/llvm/utils/FileCheck/CMakeLists.txt
    U src/gnu/llvm/utils/FileCheck/FileCheck.cpp
    U src/gnu/llvm/utils/crosstool/create-snapshots.sh
    U src/gnu/llvm/utils/crosstool/ARM/build-install-linux.sh
    U src/gnu/llvm/utils/crosstool/ARM/README
    U src/gnu/llvm/utils/jedit/tablegen.xml
    U src/gnu/llvm/utils/jedit/README
    U src/gnu/llvm/utils/yaml-bench/YAMLBench.cpp
    U src/gnu/llvm/utils/yaml-bench/CMakeLists.txt
    U src/gnu/llvm/utils/KillTheDoctor/CMakeLists.txt
    U src/gnu/llvm/utils/KillTheDoctor/KillTheDoctor.cpp
    U src/gnu/llvm/utils/gdb-scripts/prettyprinters.py
    U src/gnu/llvm/utils/lint/cpp_lint.py
    U src/gnu/llvm/utils/lint/generic_lint.py
    U src/gnu/llvm/utils/lint/common_lint.py
    U src/gnu/llvm/utils/lint/remove_trailing_whitespace.sh
    U src/gnu/llvm/utils/git/find-rev
    U src/gnu/llvm/utils/sanitizers/ubsan_blacklist.txt
    U src/gnu/llvm/utils/lit/lit.py
    U src/gnu/llvm/utils/lit/CMakeLists.txt
    U src/gnu/llvm/utils/lit/setup.py
    U src/gnu/llvm/utils/lit/README.txt
    U src/gnu/llvm/utils/lit/MANIFEST.in
    U src/gnu/llvm/utils/lit/examples/README.txt
    U src/gnu/llvm/utils/lit/examples/many-tests/lit.cfg
    U src/gnu/llvm/utils/lit/examples/many-tests/ManyTests.py
    U src/gnu/llvm/utils/lit/examples/many-tests/README.txt
    U src/gnu/llvm/utils/lit/utils/README.txt
    U src/gnu/llvm/utils/lit/utils/check-sdist
    U src/gnu/llvm/utils/lit/utils/check-coverage
    U src/gnu/llvm/utils/lit/tests/googletest-upstream-format.py
    U src/gnu/llvm/utils/lit/tests/shtest-timeout.py
    U src/gnu/llvm/utils/lit/tests/googletest-timeout.py
    U src/gnu/llvm/utils/lit/tests/shtest-encoding.py
    U src/gnu/llvm/utils/lit/tests/lit.site.cfg.in
    U src/gnu/llvm/utils/lit/tests/lit.cfg
    U src/gnu/llvm/utils/lit/tests/test-data-micro.py
    U src/gnu/llvm/utils/lit/tests/test-output.py
    U src/gnu/llvm/utils/lit/tests/max-failures.py
    U src/gnu/llvm/utils/lit/tests/usage.py
    U src/gnu/llvm/utils/lit/tests/shtest-format.py
    U src/gnu/llvm/utils/lit/tests/boolean-parsing.py
    U src/gnu/llvm/utils/lit/tests/progress-bar.py
    U src/gnu/llvm/utils/lit/tests/shtest-run-at-line.py
    U src/gnu/llvm/utils/lit/tests/shell-parsing.py
    U src/gnu/llvm/utils/lit/tests/shtest-shell.py
    U src/gnu/llvm/utils/lit/tests/test-data.py
    U src/gnu/llvm/utils/lit/tests/googletest-format.py
    U src/gnu/llvm/utils/lit/tests/.coveragerc
    U src/gnu/llvm/utils/lit/tests/test-output-micro.py
    U src/gnu/llvm/utils/lit/tests/selecting.py
    U src/gnu/llvm/utils/lit/tests/discovery.py
    U src/gnu/llvm/utils/lit/tests/xunit-output.py
    U src/gnu/llvm/utils/lit/tests/unittest-adaptor.py
    U src/gnu/llvm/utils/lit/tests/shtest-output-printing.py
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-4.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/progress-bar/test-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-two.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/test-one.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subdir/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subdir/test-three.py
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/test-two.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/discovery/subsuite/test-one.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/short.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-timeout/infinite_loop.py
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-two.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/unittest-adaptor/test-one.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-output-printing/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-output-printing/basic.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/testrunner-custom-parsers/test.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/testrunner-custom-parsers/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data-micro/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data-micro/micro-tests.ini
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data-micro/dummy_format.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-6.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-6.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/rm-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/mkdir-error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/rm-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-5.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stderr.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/mkdir-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-5.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/redirects.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/colon-error.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/check_args.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/valid-shell.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/rm-error-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-3.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/check_path.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/dev-null.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/sequencing-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/write-to-stdout-and-stderr.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/mkdir-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-4.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-r-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/cat-error-1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/cat-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-4.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/cat_nonprinting.bin
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/diff-error-0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-shell/rm-error-2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/dummy_format.py
    U src/gnu/llvm/utils/lit/tests/Inputs/test-data/metrics.ini
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/internal-shell/basic.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/internal-shell/line-continuation.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/internal-shell/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/external-shell/basic.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/external-shell/line-continuation.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-run-at-line/external-shell/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/argv0.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xpass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-expr-false.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-target.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-expr-true.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/fail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-star.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/pass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-present.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/no-test-line.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-any-present.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported-expr-false.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/xfail-feature.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported-expr-true.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported-star.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-any-missing.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-triple.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/requires-missing.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/fail_with_bad_encoding.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/fail.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/pass.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/write-bad-encoding.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/external_shell/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported_dir/some-test.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-format/unsupported_dir/lit.local.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/xunit-output/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/xunit-output/bad&name.ini
    U src/gnu/llvm/utils/lit/tests/Inputs/xunit-output/dummy_format.py
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-timeout/DummySubDir/OneTest.py
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/invalid-test.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/driver.py
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/lit.alt.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/tests/test1.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/tests/test2.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/config-map-discovery/main-config/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/max-failures/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-upstream-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-upstream-format/DummySubDir/OneTest.py
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/googletest-format/DummySubDir/OneTest.py
    U src/gnu/llvm/utils/lit/tests/Inputs/py-config-discovery/lit.site.cfg.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/shtest-env.py
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/env-u.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/env.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/mixed.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/shtest-env/print_environment.py
    U src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/lit.cfg
    U src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery-in-tree/test-one.txt
    U src/gnu/llvm/utils/lit/tests/Inputs/exec-discovery/lit.site.cfg
    U src/gnu/llvm/utils/lit/tests/unit/TestRunner.py
    U src/gnu/llvm/utils/lit/tests/unit/ShUtil.py
    U src/gnu/llvm/utils/lit/lit/TestRunner.py
    U src/gnu/llvm/utils/lit/lit/run.py
    U src/gnu/llvm/utils/lit/lit/util.py
    U src/gnu/llvm/utils/lit/lit/LitTestCase.py
    U src/gnu/llvm/utils/lit/lit/ProgressBar.py
    U src/gnu/llvm/utils/lit/lit/BooleanExpression.py
    U src/gnu/llvm/utils/lit/lit/TestingConfig.py
    U src/gnu/llvm/utils/lit/lit/ShUtil.py
    U src/gnu/llvm/utils/lit/lit/__init__.py
    U src/gnu/llvm/utils/lit/lit/LitConfig.py
    U src/gnu/llvm/utils/lit/lit/discovery.py
    U src/gnu/llvm/utils/lit/lit/Test.py
    U src/gnu/llvm/utils/lit/lit/main.py
    U src/gnu/llvm/utils/lit/lit/ShCommands.py
    U src/gnu/llvm/utils/lit/lit/builtin_commands/cat.py
    U src/gnu/llvm/utils/lit/lit/builtin_commands/__init__.py
    U src/gnu/llvm/utils/lit/lit/ExampleTests.ObjDir/lit.site.cfg
    U src/gnu/llvm/utils/lit/lit/formats/base.py
    U src/gnu/llvm/utils/lit/lit/formats/googletest.py
    U src/gnu/llvm/utils/lit/lit/formats/shtest.py
    U src/gnu/llvm/utils/lit/lit/formats/__init__.py
    U src/gnu/llvm/utils/lit/lit/llvm/config.py
    U src/gnu/llvm/utils/lit/lit/llvm/__init__.py
    U src/gnu/llvm/utils/lit/lit/llvm/subst.py
    U src/gnu/llvm/utils/Target/ARM/analyze-match-table.py
    U src/gnu/llvm/utils/llvm-build/README.txt
    U src/gnu/llvm/utils/llvm-build/llvm-build
    U src/gnu/llvm/utils/llvm-build/llvmbuild/componentinfo.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/util.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/__init__.py
    U src/gnu/llvm/utils/llvm-build/llvmbuild/main.py
    U src/gnu/llvm/utils/vim/vimrc
    U src/gnu/llvm/utils/vim/README
    U src/gnu/llvm/utils/vim/indent/llvm.vim
    U src/gnu/llvm/utils/vim/ftplugin/llvm.vim
    U src/gnu/llvm/utils/vim/ftplugin/tablegen.vim
    U src/gnu/llvm/utils/vim/ftdetect/llvm.vim
    U src/gnu/llvm/utils/vim/ftdetect/tablegen.vim
    U src/gnu/llvm/utils/vim/ftdetect/llvm-lit.vim
    U src/gnu/llvm/utils/vim/syntax/llvm.vim
    U src/gnu/llvm/utils/vim/syntax/tablegen.vim
    U src/gnu/llvm/utils/gn/README.rst
    U src/gnu/llvm/utils/gn/gn.py
    U src/gnu/llvm/utils/gn/.gn
    U src/gnu/llvm/utils/gn/TODO.txt
    U src/gnu/llvm/utils/gn/build/write_cmake_config.py
    U src/gnu/llvm/utils/gn/build/BUILDCONFIG.gn
    U src/gnu/llvm/utils/gn/build/fuzzer.gni
    U src/gnu/llvm/utils/gn/build/mac_sdk.gni
    U src/gnu/llvm/utils/gn/build/symlink_or_copy.py
    U src/gnu/llvm/utils/gn/build/BUILD.gn
    U src/gnu/llvm/utils/gn/build/symlink_or_copy.gni
    U src/gnu/llvm/utils/gn/build/sync_source_lists_from_cmake.py
    U src/gnu/llvm/utils/gn/build/run_tablegen.py
    U src/gnu/llvm/utils/gn/build/buildflags.gni
    U src/gnu/llvm/utils/gn/build/write_cmake_config.gni
    U src/gnu/llvm/utils/gn/build/write_vcsrevision.py
    U src/gnu/llvm/utils/gn/build/toolchain/compiler.gni
    U src/gnu/llvm/utils/gn/build/toolchain/target_flags.gni
    U src/gnu/llvm/utils/gn/build/toolchain/BUILD.gn
    U src/gnu/llvm/utils/gn/build/libs/terminfo/enable.gni
    U src/gnu/llvm/utils/gn/build/libs/terminfo/BUILD.gn
    U src/gnu/llvm/utils/gn/build/libs/pthread/enable.gni
    U src/gnu/llvm/utils/gn/build/libs/pthread/BUILD.gn
    U src/gnu/llvm/utils/gn/build/libs/xar/enable.gni
    U src/gnu/llvm/utils/gn/build/libs/xar/BUILD.gn
    U src/gnu/llvm/utils/gn/build/libs/xml/enable.gni
    U src/gnu/llvm/utils/gn/build/libs/xml/BUILD.gn
    U src/gnu/llvm/utils/gn/build/libs/edit/enable.gni
    U src/gnu/llvm/utils/gn/build/libs/edit/BUILD.gn
    U src/gnu/llvm/utils/gn/build/libs/zlib/enable.gni
    U src/gnu/llvm/utils/gn/build/libs/zlib/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/resource_dir.gni
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Serialization/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/FrontendTool/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/ARCMigrate/enable.gni
    U src/gnu/llvm/utils/gn/secondary/clang/lib/ARCMigrate/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/CodeGen/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Frontend/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Frontend/Rewrite/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Basic/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Lex/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Sema/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Parse/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/Inclusions/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/Core/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/ASTDiff/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Tooling/Refactoring/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Format/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Rewrite/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/CrossTU/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Headers/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Index/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Driver/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Analysis/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/Edit/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/ASTMatchers/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/ASTMatchers/Dynamic/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Frontend/enable.gni
    U src/gnu/llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Frontend/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Checkers/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/StaticAnalyzer/Core/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/lib/AST/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/utils/TableGen/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/utils/TableGen/clang_tablegen.gni
    U src/gnu/llvm/utils/gn/secondary/clang/utils/hmaptool/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/clang-refactor/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/diagtool/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/clang-extdef-mapping/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/clang-diff/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/libclang/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/clang-rename/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/arcmt-test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/c-index-test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/clang-check/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/clang-offload-bundler/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/c-arcmt-test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/clang-import-test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/driver/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/tools/clang-format/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/include/clang/Serialization/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/include/clang/Config/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/include/clang/Basic/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/include/clang/Sema/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/include/clang/Parse/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/include/clang/Driver/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/include/clang/StaticAnalyzer/Checkers/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/include/clang/AST/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/test/clang_lit_site_cfg_files.gni
    U src/gnu/llvm/utils/gn/secondary/clang/test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/CodeGen/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Frontend/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Basic/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Lex/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/libclang/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Sema/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Tooling/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Format/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Rewrite/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/CrossTU/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Rename/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Index/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Driver/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/Analysis/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/ASTMatchers/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/ASTMatchers/Dynamic/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/StaticAnalyzer/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/clang/unittests/AST/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/lib/ReaderWriter/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/lib/ReaderWriter/MachO/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/lib/ReaderWriter/YAML/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/lib/Core/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/lib/Driver/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/MinGW/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/ELF/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/Common/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/wasm/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/COFF/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/tools/lld/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/include/lld/Common/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/test/lld_lit_site_cfg_files.gni
    U src/gnu/llvm/utils/gn/secondary/lld/unittests/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/unittests/DriverTests/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/lld/unittests/MachOTests/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/target.gni
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/ubsan/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/cfi/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/interception/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/sanitizer_common/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/lib/hwasan/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/include/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/test/test.gni
    U src/gnu/llvm/utils/gn/secondary/compiler-rt/test/hwasan/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/version.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/triples.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/IR/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/TextAPI/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Linker/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/TableGen/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/SelectionDAG/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/AsmPrinter/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/MIRParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/CodeGen/GlobalISel/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/FuzzMutate/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Bitcode/Reader/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Bitcode/Writer/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Passes/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ObjectYAML/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Option/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/LTO/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ToolDrivers/llvm-dlltool/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ToolDrivers/llvm-lib/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Support/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/Symbolize/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/DWARF/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/PDB/enable_dia.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/PDB/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/CodeView/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/DebugInfo/MSF/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/WindowsManifest/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/IRReader/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/XRay/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/MC/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/MC/MCParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/MC/MCDisassembler/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Demangle/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/BinaryFormat/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/LineEditor/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/AsmParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Vectorize/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Hello/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/InstCombine/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/AggressiveInstCombine/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/IPO/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/ObjCARC/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Utils/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Coroutines/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Scalar/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Transforms/Instrumentation/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Object/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Testing/Support/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/MCJIT/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/RuntimeDyld/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Orc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ExecutionEngine/Interpreter/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/MCA/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/targets_string.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/targets.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/InstPrinter/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/MCTargetDesc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/TargetInfo/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/Disassembler/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/Utils/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/X86/AsmParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/InstPrinter/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/MCTargetDesc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/TargetInfo/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/Disassembler/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/PowerPC/AsmParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/InstPrinter/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/MCTargetDesc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/TargetInfo/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/Disassembler/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/Utils/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/ARM/AsmParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/InstPrinter/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/MCTargetDesc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/TargetInfo/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/Disassembler/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/WebAssembly/AsmParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/InstPrinter/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/MCTargetDesc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/TargetInfo/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Disassembler/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/Utils/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Target/AArch64/AsmParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/Analysis/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/OptRemarks/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ProfileData/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/lib/ProfileData/Coverage/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/TableGen/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/TableGen/tablegen.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/llvm-lit/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/unittest/unittest.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/unittest/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/unittest/UnitTestMain/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/count/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/FileCheck/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/yaml-bench/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/utils/not/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/binutils_symlinks.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-lto/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-dis/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-opt-fuzzer/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-symbolizer/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/verify-uselistorder/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-bcanalyzer/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-dwp/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-link/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-elfabi/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-profdata/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-dwarfdump/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-undname/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-mc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-rc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-modextract/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-pdbutil/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cat/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cxxmap/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/obj2yaml/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/opt/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/bugpoint/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-size/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-split/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-ar/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-rtdyld/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-as/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-mt/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cov/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-objcopy/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/lto/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/yaml2obj/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-strings/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-nm/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/dsymutil/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/sanstats/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/X86/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/PowerPC/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-exegesis/lib/AArch64/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-mca/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/lli/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/lli/ChildTarget/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cfi-verify/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cfi-verify/lib/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cxxfilt/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-diff/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-xray/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-extract/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cxxdump/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-isel-fuzzer/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-config/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/bugpoint-passes/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-readobj/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-opt-report/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-objdump/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-cvtres/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-c-test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/sancov/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/tools/llvm-lto2/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/include/llvm/IR/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/include/llvm/Config/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/include/llvm/Support/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/test/llvm_lit_site_cfg_files.gni
    U src/gnu/llvm/utils/gn/secondary/llvm/test/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/IR/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/TextAPI/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Linker/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/MI/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/CodeGen/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/CodeGen/GlobalISel/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/FuzzMutate/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Bitcode/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Passes/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/ObjectYAML/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Option/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/ADT/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Support/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Support/DynamicLibrary/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/DWARF/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/PDB/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/CodeView/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/DebugInfo/MSF/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/XRay/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/MC/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Demangle/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/BinaryFormat/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/LineEditor/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/X86/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/PowerPC/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/ARM/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-exegesis/AArch64/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/tools/llvm-cfi-verify/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/AsmParser/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Transforms/Vectorize/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Transforms/IPO/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Transforms/Utils/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Transforms/Scalar/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Object/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/ExecutionEngine/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/ExecutionEngine/MCJIT/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/ExecutionEngine/Orc/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Target/WebAssembly/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Target/AArch64/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/Analysis/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/OptRemarks/BUILD.gn
    U src/gnu/llvm/utils/gn/secondary/llvm/unittests/ProfileData/BUILD.gn
    U src/gnu/llvm/utils/Reviewing/find_interesting_reviews.py
    U src/gnu/llvm/utils/LLVMVisualizers/CMakeLists.txt
    U src/gnu/llvm/utils/LLVMVisualizers/llvm.natvis
    U src/gnu/llvm/cmake/nsis_icon.ico
    U src/gnu/llvm/cmake/config-ix.cmake
    U src/gnu/llvm/cmake/nsis_logo.bmp
    U src/gnu/llvm/cmake/dummy.cpp
    U src/gnu/llvm/cmake/README
    U src/gnu/llvm/cmake/config.guess
    U src/gnu/llvm/cmake/platforms/WinMsvc.cmake
    U src/gnu/llvm/cmake/platforms/Android.cmake
    U src/gnu/llvm/cmake/platforms/ClangClCMakeCompileRules.cmake
    U src/gnu/llvm/cmake/platforms/iOS.cmake
    U src/gnu/llvm/cmake/modules/FindOCaml.cmake
    U src/gnu/llvm/cmake/modules/LLVMConfigVersion.cmake.in
    U src/gnu/llvm/cmake/modules/GetHostTriple.cmake
    U src/gnu/llvm/cmake/modules/LLVMProcessSources.cmake
    U src/gnu/llvm/cmake/modules/GenerateVersionFromCVS.cmake
    U src/gnu/llvm/cmake/modules/ChooseMSVCCRT.cmake
    U src/gnu/llvm/cmake/modules/AddOCaml.cmake
    U src/gnu/llvm/cmake/modules/CheckAtomic.cmake
    U src/gnu/llvm/cmake/modules/CheckLinkerFlag.cmake
    U src/gnu/llvm/cmake/modules/CMakeLists.txt
    U src/gnu/llvm/cmake/modules/LLVMConfig.cmake.in
    U src/gnu/llvm/cmake/modules/CheckCompilerVersion.cmake
    U src/gnu/llvm/cmake/modules/AddLLVM.cmake
    U src/gnu/llvm/cmake/modules/FindSphinx.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMStdlib.cmake
    U src/gnu/llvm/cmake/modules/CrossCompile.cmake
    U src/gnu/llvm/cmake/modules/VersionFromVCS.cmake
    U src/gnu/llvm/cmake/modules/LLVMExternalProjectUtils.cmake
    U src/gnu/llvm/cmake/modules/TableGen.cmake
    U src/gnu/llvm/cmake/modules/FindLibpfm.cmake
    U src/gnu/llvm/cmake/modules/LLVM-Config.cmake
    U src/gnu/llvm/cmake/modules/HandleLLVMOptions.cmake
    U src/gnu/llvm/cmake/modules/GetSVN.cmake
    U src/gnu/llvm/cmake/modules/LLVMInstallSymlink.cmake
    U src/gnu/llvm/cmake/modules/DetermineGCCCompatible.cmake
    U src/gnu/llvm/cmake/modules/AddSphinxTarget.cmake
    U src/gnu/llvm/cmake/modules/AddLLVMDefinitions.cmake
    U src/gnu/llvm/docs/Passes.rst
    U src/gnu/llvm/docs/StackSafetyAnalysis.rst
    U src/gnu/llvm/docs/FAQ.rst
    U src/gnu/llvm/docs/doxygen.cfg.in
    U src/gnu/llvm/docs/gcc-loops.png
    U src/gnu/llvm/docs/Projects.rst
    U src/gnu/llvm/docs/GlobalISel.rst
    U src/gnu/llvm/docs/SupportLibrary.rst
    U src/gnu/llvm/docs/index.rst
    U src/gnu/llvm/docs/MCJIT-dyld-load.png
    U src/gnu/llvm/docs/Packaging.rst
    U src/gnu/llvm/docs/BitCodeFormat.rst
    U src/gnu/llvm/docs/CompileCudaWithLLVM.rst
    U src/gnu/llvm/docs/GarbageCollection.rst
    U src/gnu/llvm/docs/CodingStandards.rst
    U src/gnu/llvm/docs/AMDGPUModifierSyntax.rst
    U src/gnu/llvm/docs/LLVMBuild.rst
    U src/gnu/llvm/docs/SegmentedStacks.rst
    U src/gnu/llvm/docs/MIRLangRef.rst
    U src/gnu/llvm/docs/AMDGPUOperandSyntax.rst
    U src/gnu/llvm/docs/GettingStarted.rst
    U src/gnu/llvm/docs/MCJIT-load-object.png
    U src/gnu/llvm/docs/GetElementPtr.rst
    U src/gnu/llvm/docs/Statepoints.rst
    U src/gnu/llvm/docs/XRay.rst
    U src/gnu/llvm/docs/SystemLibrary.rst
    U src/gnu/llvm/docs/Atomics.rst
    U src/gnu/llvm/docs/Coroutines.rst
    U src/gnu/llvm/docs/BigEndianNEON.rst
    U src/gnu/llvm/docs/HowToBuildOnARM.rst
    U src/gnu/llvm/docs/Contributing.rst
    U src/gnu/llvm/docs/InAlloca.rst
    U src/gnu/llvm/docs/ExtendedIntegerResults.txt
    U src/gnu/llvm/docs/GettingStartedVS.rst
    U src/gnu/llvm/docs/AMDGPUInstructionNotation.rst
    U src/gnu/llvm/docs/CoverageMappingFormat.rst
    U src/gnu/llvm/docs/TestSuiteMakefileGuide.rst
    U src/gnu/llvm/docs/FuzzingLLVM.rst
    U src/gnu/llvm/docs/LinkTimeOptimization.rst
    U src/gnu/llvm/docs/HowToUseAttributes.rst
    U src/gnu/llvm/docs/LibFuzzer.rst
    U src/gnu/llvm/docs/WritingAnLLVMBackend.rst
    U src/gnu/llvm/docs/Vectorizers.rst
    U src/gnu/llvm/docs/HowToBuildWithPGO.rst
    U src/gnu/llvm/docs/BugLifeCycle.rst
    U src/gnu/llvm/docs/Makefile.sphinx
    U src/gnu/llvm/docs/yaml2obj.rst
    U src/gnu/llvm/docs/MergeFunctions.rst
    U src/gnu/llvm/docs/CMake.rst
    U src/gnu/llvm/docs/MCJITDesignAndImplementation.rst
    U src/gnu/llvm/docs/XRayExample.rst
    U src/gnu/llvm/docs/re_format.7
    U src/gnu/llvm/docs/CFIVerify.rst
    U src/gnu/llvm/docs/ReleaseNotes.rst
    U src/gnu/llvm/docs/HowToReleaseLLVM.rst
    U src/gnu/llvm/docs/AMDGPUUsage.rst
    U src/gnu/llvm/docs/ARM-BE-ldr.png
    U src/gnu/llvm/docs/StackMaps.rst
    U src/gnu/llvm/docs/CMakeLists.txt
    U src/gnu/llvm/docs/Lexicon.rst
    U src/gnu/llvm/docs/TransformMetadata.rst
    U src/gnu/llvm/docs/CompilerWriterInfo.rst
    U src/gnu/llvm/docs/DebuggingJITedCode.rst
    U src/gnu/llvm/docs/MarkdownQuickstartTemplate.md
    U src/gnu/llvm/docs/make.bat
    U src/gnu/llvm/docs/HowToAddABuilder.rst
    U src/gnu/llvm/docs/SpeculativeLoadHardening.md
    U src/gnu/llvm/docs/MemorySSA.rst
    U src/gnu/llvm/docs/TableGenFundamentals.rst
    U src/gnu/llvm/docs/llvm-objdump.1
    U src/gnu/llvm/docs/TestSuiteGuide.md
    U src/gnu/llvm/docs/BranchWeightMetadata.rst
    U src/gnu/llvm/docs/Phabricator.rst
    U src/gnu/llvm/docs/ReleaseProcess.rst
    U src/gnu/llvm/docs/SphinxQuickstartTemplate.rst
    U src/gnu/llvm/docs/CodeGenerator.rst
    U src/gnu/llvm/docs/DeveloperPolicy.rst
    U src/gnu/llvm/docs/ProgrammersManual.rst
    U src/gnu/llvm/docs/LLVMBuild.txt
    U src/gnu/llvm/docs/AdvancedBuilds.rst
    U src/gnu/llvm/docs/MCJIT-engine-builder.png
    U src/gnu/llvm/docs/MCJIT-load.png
    U src/gnu/llvm/docs/OptBisect.rst
    U src/gnu/llvm/docs/XRayFDRFormat.rst
    U src/gnu/llvm/docs/ARM-BE-bitcastsuccess.png
    U src/gnu/llvm/docs/HowToSetUpLLVMStyleRTTI.rst
    U src/gnu/llvm/docs/CommandLine.rst
    U src/gnu/llvm/docs/CodeOfConduct.rst
    U src/gnu/llvm/docs/GoldPlugin.rst
    U src/gnu/llvm/docs/doxygen-mainpage.dox
    U src/gnu/llvm/docs/HowToCrossCompileLLVM.rst
    U src/gnu/llvm/docs/HowToUseInstrMappings.rst
    U src/gnu/llvm/docs/ARM-BE-ld1.png
    U src/gnu/llvm/docs/AliasAnalysis.rst
    U src/gnu/llvm/docs/HowToCrossCompileBuiltinsOnArm.rst
    U src/gnu/llvm/docs/CMakePrimer.rst
    U src/gnu/llvm/docs/README.txt
    U src/gnu/llvm/docs/YamlIO.rst
    U src/gnu/llvm/docs/LangRef.rst
    U src/gnu/llvm/docs/conf.py
    U src/gnu/llvm/docs/linpack-pc.png
    U src/gnu/llvm/docs/ARM-BE-bitcastfail.png
    U src/gnu/llvm/docs/TestingGuide.rst
    U src/gnu/llvm/docs/TypeMetadata.rst
    U src/gnu/llvm/docs/NVPTXUsage.rst
    U src/gnu/llvm/docs/ExceptionHandling.rst
    U src/gnu/llvm/docs/SourceLevelDebugging.rst
    U src/gnu/llvm/docs/Extensions.rst
    U src/gnu/llvm/docs/Docker.rst
    U src/gnu/llvm/docs/speculative_load_hardening_microbenchmarks.png
    U src/gnu/llvm/docs/HowToSubmitABug.rst
    U src/gnu/llvm/docs/Benchmarking.rst
    U src/gnu/llvm/docs/BlockFrequencyTerminology.rst
    U src/gnu/llvm/docs/AMDGPUInstructionSyntax.rst
    U src/gnu/llvm/docs/FaultMaps.rst
    U src/gnu/llvm/docs/ExtendingLLVM.rst
    U src/gnu/llvm/docs/WritingAnLLVMPass.rst
    U src/gnu/llvm/docs/MCJIT-resolve-relocations.png
    U src/gnu/llvm/docs/ReportingGuide.rst
    U src/gnu/llvm/docs/MCJIT-creation.png
    U src/gnu/llvm/docs/ScudoHardenedAllocator.rst
    U src/gnu/llvm/docs/MarkedUpDisassembly.rst
    U src/gnu/llvm/docs/Bugpoint.rst
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp4.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-MeetingSummary.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-12-06-EncodingIdea.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-05-18-ExceptionHandling.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-01-23-CygwinNotes.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-07-06-LoweringIRForCodeGen.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-06-26-Reoptimizer2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeasResp.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-Memory.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-20-.NET-Differences.txt
    U src/gnu/llvm/docs/HistoricalNotes/2002-05-12-InstListChange.txt
    U src/gnu/llvm/docs/HistoricalNotes/2002-06-25-MegaPatchInfo.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebate.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-06-01-GCCOptimizations.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-01-31-UniversalIRIdea.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-13-Reference-MemoryResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2007-OriginalClangReadme.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-05-19-ExceptionResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveCommentsResponse.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-04-16-DynamicCompilation.txt
    U src/gnu/llvm/docs/HistoricalNotes/2003-06-25-Reoptimizer1.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-06-TypeNotationDebateResp2.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-09-18-OptimizeExceptions.txt
    U src/gnu/llvm/docs/HistoricalNotes/2000-11-18-EarlyDesignIdeas.txt
    U src/gnu/llvm/docs/HistoricalNotes/2001-02-09-AdveComments.txt
    U src/gnu/llvm/docs/TableGen/index.rst
    U src/gnu/llvm/docs/TableGen/Deficiencies.rst
    U src/gnu/llvm/docs/TableGen/BackEnds.rst
    U src/gnu/llvm/docs/TableGen/LangIntro.rst
    U src/gnu/llvm/docs/TableGen/LangRef.rst
    U src/gnu/llvm/docs/_themes/llvm-theme/theme.conf
    U src/gnu/llvm/docs/_themes/llvm-theme/layout.html
    U src/gnu/llvm/docs/_themes/llvm-theme/static/logo.png
    U src/gnu/llvm/docs/_themes/llvm-theme/static/navigation.png
    U src/gnu/llvm/docs/_themes/llvm-theme/static/contents.png
    U src/gnu/llvm/docs/_themes/llvm-theme/static/llvm-theme.css
    U src/gnu/llvm/docs/Frontend/PerformanceTips.rst
    U src/gnu/llvm/docs/_templates/layout.html
    U src/gnu/llvm/docs/_templates/indexsidebar.html
    U src/gnu/llvm/docs/PDB/index.rst
    U src/gnu/llvm/docs/PDB/HashStream.rst
    U src/gnu/llvm/docs/PDB/MsfFile.rst
    U src/gnu/llvm/docs/PDB/PublicStream.rst
    U src/gnu/llvm/docs/PDB/DbiStream.rst
    U src/gnu/llvm/docs/PDB/CodeViewTypes.rst
    U src/gnu/llvm/docs/PDB/CodeViewSymbols.rst
    U src/gnu/llvm/docs/PDB/ModiStream.rst
    U src/gnu/llvm/docs/PDB/GlobalStream.rst
    U src/gnu/llvm/docs/PDB/TpiStream.rst
    U src/gnu/llvm/docs/PDB/PdbStream.rst
    U src/gnu/llvm/docs/_ocamldoc/style.css
    U src/gnu/llvm/docs/_static/llvm.css
    U src/gnu/llvm/docs/_static/lines.gif
    U src/gnu/llvm/docs/Proposals/VectorizationPlan.rst
    U src/gnu/llvm/docs/Proposals/GitHubMove.rst
    U src/gnu/llvm/docs/Proposals/TestSuite.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl2.rst
    U src/gnu/llvm/docs/tutorial/index.rst
    U src/gnu/llvm/docs/tutorial/LangImpl03.rst
    U src/gnu/llvm/docs/tutorial/LangImpl04.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT2.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl7.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl3.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT5.rst
    U src/gnu/llvm/docs/tutorial/LangImpl08.rst
    U src/gnu/llvm/docs/tutorial/LangImpl01.rst
    U src/gnu/llvm/docs/tutorial/LangImpl05-cfg.png
    U src/gnu/llvm/docs/tutorial/LangImpl10.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT3.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl5.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT4.rst
    U src/gnu/llvm/docs/tutorial/BuildingAJIT1.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl8.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl4.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl1.rst
    U src/gnu/llvm/docs/tutorial/LangImpl06.rst
    U src/gnu/llvm/docs/tutorial/LangImpl07.rst
    U src/gnu/llvm/docs/tutorial/OCamlLangImpl6.rst
    U src/gnu/llvm/docs/tutorial/LangImpl05.rst
    U src/gnu/llvm/docs/tutorial/LangImpl09.rst
    U src/gnu/llvm/docs/tutorial/LangImpl02.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vdata64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vdst32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_buf_atomic64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_sdst32_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vsrc32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_d16_96.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_mod_dpp_sdwa_abs_neg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_dst_buf_128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_tgt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_type_dev.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_offset_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_bimm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vdata64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_data_mimg_store.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdata128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_fimm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vsrc64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_sdst256_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_d16_32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_src64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_d16_32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_sdst128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_base_smem_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_d16_128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_rsrc_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_type_dev.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_imm4.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_waitcnt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_offset_smem.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_mimg_atomic_cmp.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_d16_64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_hwreg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vdst128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_offset_smem_load.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdst32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdst32_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_fimm32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_samp_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_addr_flat.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_rsrc_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_hwreg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_flat_atomic64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_src32_3.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_src32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdst64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vaddr_flat_scratch.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vcc_64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdst64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vdata128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vsrc128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdata64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_dst_mimg_regular.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_src64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_3.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc64_3.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_addr_ds.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vdst32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_src64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdst32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdata128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_dst_flat_atomic32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_data_buf_atomic64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdst64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc64_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_3.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc64_3.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_attr.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_d16_96.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_96.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_simm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_simm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_bimm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_addr_flat.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vdata32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_4.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_src32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_waitcnt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdata32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_mimg_store.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_param.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_src64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_mimg_gather4.rst
    U src/gnu/llvm/docs/AMDGPU/AMDGPUAsmGFX7.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_uimm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_bimm32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdst32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_flat_atomic32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_label.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_addr_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_tgt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vcc_64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_label.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc64_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_mimg_regular.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_atomic128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_msg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdst512_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vdata128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_flat_atomic32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdst64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ret.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_d16_64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vsrc128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_96.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vsrc32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_4.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_saddr_flat_scratch.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vdst64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_data_mimg_atomic_cmp.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_base_smem_addr.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_src_exp.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_msg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_label.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_offset_smem_plain.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_perm_smem.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_src64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_mod.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_waitcnt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_addr_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_mimg_regular_d16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_mimg_atomic_reg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_msg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_fimm32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vdata32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_4.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_rsrc_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_src32_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_addr_ds.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_buf_atomic32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_fimm32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_src_exp.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_addr_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_base_smem_scratch.rst
    U src/gnu/llvm/docs/AMDGPU/AMDGPUAsmGFX8.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_addr_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_atomic32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_simm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vdst32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_param.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vdst128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_mod_vop3_abs_neg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_mimg_regular_d16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_addr_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_offset_smem_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdst128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_src_exp.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_mimg_store_d16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_data_mimg_atomic_reg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vsrc64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vdst96_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ret.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc64_2.rst
    U src/gnu/llvm/docs/AMDGPU/AMDGPUAsmGFX9.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vcc_64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_base_smem_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_param.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_mod_dpp_sdwa_abs_neg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_smem_atomic128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vdata128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vdata64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdst512_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdst32_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_bimm32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdst256_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_rsrc_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_samp_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_src32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_src64_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_imm4.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_smem_atomic64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_base_smem_addr.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_offset_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_ssrc32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_sdst128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_flat_atomic64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_mimg_gather4.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vdata96_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_bimm32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vdst128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_mod_sdwa_sext.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_base_smem_addr.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vdst64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_mimg_atomic_cmp.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_sdst512_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_src32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_fimm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_saddr_flat_global.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vdata96_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ret.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_rsrc_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_src64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_sdst32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_offset_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_mimg_store_d16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_opt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vdst64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vdst96_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_sdst64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_bimm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_dst_flat_atomic64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc64_3.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vdata96_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_lds.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_mod_vop3_abs_neg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_rsrc_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_samp_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_dst_buf_96.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_addr_flat.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_hwreg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_offset_smem_store.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_dst_buf_lds.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_sdst32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_data_buf_atomic128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_mimg_store.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_2.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_dst_mimg_gather4.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_data_buf_atomic64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vdata32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_src32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdata32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_vsrc128_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_addr_ds.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdata64_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_lds.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_uimm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_dst_buf_64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_sdst64_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_64.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_ssrc32_3.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_ssrc32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_attr.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_uimm16.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_type_dev.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vsrc32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_mad_type_dev.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_mimg_atomic_reg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_mod_sdwa_sext.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdst256_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_mimg_regular.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_buf_atomic128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_sdst32_1.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vaddr_flat_global.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_dst_buf_32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_opt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_data_smem_atomic32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_perm_smem.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_src32_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_opt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx7_data_buf_atomic32.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_dst_buf_d16_128.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_tgt.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_vdst96_0.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_base_smem_buf.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_addr_mimg.rst
    U src/gnu/llvm/docs/AMDGPU/gfx8_attr.rst
    U src/gnu/llvm/docs/AMDGPU/gfx9_vsrc64_0.rst
    U src/gnu/llvm/docs/CommandGuide/opt.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-mca.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-objdump.rst
    U src/gnu/llvm/docs/CommandGuide/index.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-exegesis.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-cxxmap.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-profdata.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-ar.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-symbolizer.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-config.rst
    U src/gnu/llvm/docs/CommandGuide/llc.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-exegesis-analysis.png
    U src/gnu/llvm/docs/CommandGuide/bugpoint.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-as.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-extract.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-stress.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-lib.rst
    U src/gnu/llvm/docs/CommandGuide/FileCheck.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dwarfdump.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-nm.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-link.rst
    U src/gnu/llvm/docs/CommandGuide/dsymutil.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-dis.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-diff.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-readobj.rst
    U src/gnu/llvm/docs/CommandGuide/lli.rst
    U src/gnu/llvm/docs/CommandGuide/tblgen.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-pdbutil.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-bcanalyzer.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-cov.rst
    U src/gnu/llvm/docs/CommandGuide/llvm-build.rst
    U src/gnu/llvm/docs/CommandGuide/lit.rst
    U src/gnu/llvm/bindings/LLVMBuild.txt
    U src/gnu/llvm/bindings/README.txt
    U src/gnu/llvm/bindings/ocaml/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/README.txt
    U src/gnu/llvm/bindings/ocaml/target/llvm_target.ml
    U src/gnu/llvm/bindings/ocaml/target/target_ocaml.c
    U src/gnu/llvm/bindings/ocaml/target/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/target/llvm_target.mli
    U src/gnu/llvm/bindings/ocaml/linker/llvm_linker.ml
    U src/gnu/llvm/bindings/ocaml/linker/linker_ocaml.c
    U src/gnu/llvm/bindings/ocaml/linker/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/linker/llvm_linker.mli
    U src/gnu/llvm/bindings/ocaml/all_backends/all_backends_ocaml.c
    U src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.ml
    U src/gnu/llvm/bindings/ocaml/all_backends/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/all_backends/llvm_all_backends.mli
    U src/gnu/llvm/bindings/ocaml/bitreader/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/bitreader/llvm_bitreader.mli
    U src/gnu/llvm/bindings/ocaml/bitreader/bitreader_ocaml.c
    U src/gnu/llvm/bindings/ocaml/bitreader/llvm_bitreader.ml
    U src/gnu/llvm/bindings/ocaml/backends/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/backends/llvm_backend.mli.in
    U src/gnu/llvm/bindings/ocaml/backends/backend_ocaml.c
    U src/gnu/llvm/bindings/ocaml/backends/llvm_backend.ml.in
    U src/gnu/llvm/bindings/ocaml/backends/META.llvm_backend.in
    U src/gnu/llvm/bindings/ocaml/transforms/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/scalar_opts_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/llvm_scalar_opts.mli
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/scalar_opts/llvm_scalar_opts.ml
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/passmgr_builder_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/llvm_passmgr_builder.mli
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/passmgr_builder/llvm_passmgr_builder.ml
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/llvm_ipo.mli
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/llvm_ipo.ml
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/ipo/ipo_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/utils/llvm_transform_utils.mli
    U src/gnu/llvm/bindings/ocaml/transforms/utils/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/utils/transform_utils_ocaml.c
    U src/gnu/llvm/bindings/ocaml/transforms/utils/llvm_transform_utils.ml
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.mli
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/llvm_vectorize.ml
    U src/gnu/llvm/bindings/ocaml/transforms/vectorize/vectorize_ocaml.c
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.mli
    U src/gnu/llvm/bindings/ocaml/analysis/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/analysis/analysis_ocaml.c
    U src/gnu/llvm/bindings/ocaml/analysis/llvm_analysis.ml
    U src/gnu/llvm/bindings/ocaml/executionengine/executionengine_ocaml.c
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.ml
    U src/gnu/llvm/bindings/ocaml/executionengine/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/executionengine/llvm_executionengine.mli
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.mli
    U src/gnu/llvm/bindings/ocaml/llvm/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/llvm/llvm.ml
    U src/gnu/llvm/bindings/ocaml/llvm/llvm_ocaml.c
    U src/gnu/llvm/bindings/ocaml/llvm/META.llvm.in
    U src/gnu/llvm/bindings/ocaml/bitwriter/llvm_bitwriter.ml
    U src/gnu/llvm/bindings/ocaml/bitwriter/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/bitwriter/llvm_bitwriter.mli
    U src/gnu/llvm/bindings/ocaml/bitwriter/bitwriter_ocaml.c
    U src/gnu/llvm/bindings/ocaml/irreader/irreader_ocaml.c
    U src/gnu/llvm/bindings/ocaml/irreader/CMakeLists.txt
    U src/gnu/llvm/bindings/ocaml/irreader/llvm_irreader.mli
    U src/gnu/llvm/bindings/ocaml/irreader/llvm_irreader.ml
    U src/gnu/llvm/bindings/go/build.sh
    U src/gnu/llvm/bindings/go/conftest.go
    U src/gnu/llvm/bindings/go/README.txt
    U src/gnu/llvm/bindings/go/llvm/transforms_pmbuilder.go
    U src/gnu/llvm/bindings/go/llvm/ir.go
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.h
    U src/gnu/llvm/bindings/go/llvm/version.go
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/analysis.go
    U src/gnu/llvm/bindings/go/llvm/executionengine_test.go
    U src/gnu/llvm/bindings/go/llvm/ir_test.go
    U src/gnu/llvm/bindings/go/llvm/string.go
    U src/gnu/llvm/bindings/go/llvm/executionengine.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/transforms_scalar.go
    U src/gnu/llvm/bindings/go/llvm/IRBindings.h
    U src/gnu/llvm/bindings/go/llvm/string_test.go
    U src/gnu/llvm/bindings/go/llvm/dibuilder.go
    U src/gnu/llvm/bindings/go/llvm/llvm_config.go.in
    U src/gnu/llvm/bindings/go/llvm/bitwriter.go
    U src/gnu/llvm/bindings/go/llvm/transforms_ipo.go
    U src/gnu/llvm/bindings/go/llvm/llvm_dep.go
    U src/gnu/llvm/bindings/go/llvm/target.go
    U src/gnu/llvm/bindings/go/llvm/InstrumentationBindings.h
    U src/gnu/llvm/bindings/go/llvm/transforms_instrumentation.go
    U src/gnu/llvm/bindings/go/llvm/transforms_coroutines.go
    U src/gnu/llvm/bindings/go/llvm/linker.go
    U src/gnu/llvm/bindings/go/llvm/SupportBindings.cpp
    U src/gnu/llvm/bindings/go/llvm/bitreader.go
    U src/gnu/llvm/bindings/go/llvm/support.go
    U src/gnu/llvm/bindings/python/README.txt
    U src/gnu/llvm/bindings/python/llvm/common.py
    U src/gnu/llvm/bindings/python/llvm/__init__.py
    U src/gnu/llvm/bindings/python/llvm/enumerations.py
    U src/gnu/llvm/bindings/python/llvm/core.py
    U src/gnu/llvm/bindings/python/llvm/object.py
    U src/gnu/llvm/bindings/python/llvm/bit_reader.py
    U src/gnu/llvm/bindings/python/llvm/disassembler.py
    U src/gnu/llvm/bindings/python/llvm/tests/base.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_disassembler.py
    U src/gnu/llvm/bindings/python/llvm/tests/__init__.py
    U src/gnu/llvm/bindings/python/llvm/tests/test.bc
    U src/gnu/llvm/bindings/python/llvm/tests/test_object.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_bitreader.py
    U src/gnu/llvm/bindings/python/llvm/tests/test_file
    U src/gnu/llvm/bindings/python/llvm/tests/test_core.py
    U src/gnu/llvm/tools/CMakeLists.txt
    U src/gnu/llvm/tools/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-lto/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-lto/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-lto/llvm-lto.cpp
    U src/gnu/llvm/tools/opt-remarks/CMakeLists.txt
    U src/gnu/llvm/tools/opt-remarks/liboptremarks.cpp
    U src/gnu/llvm/tools/opt-remarks/OptRemarks.exports
    U src/gnu/llvm/tools/llvm-dis/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dis/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dis/llvm-dis.cpp
    U src/gnu/llvm/tools/llvm-opt-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-opt-fuzzer/llvm-opt-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-opt-fuzzer/DummyOptFuzzer.cpp
    U src/gnu/llvm/tools/llvm-symbolizer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-symbolizer/llvm-symbolizer.cpp
    U src/gnu/llvm/tools/xcode-toolchain/CMakeLists.txt
    U src/gnu/llvm/tools/verify-uselistorder/verify-uselistorder.cpp
    U src/gnu/llvm/tools/verify-uselistorder/CMakeLists.txt
    U src/gnu/llvm/tools/verify-uselistorder/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-bcanalyzer/llvm-bcanalyzer.cpp
    U src/gnu/llvm/tools/llvm-bcanalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-bcanalyzer/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwp/DWPStringPool.h
    U src/gnu/llvm/tools/llvm-dwp/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwp/DWPError.cpp
    U src/gnu/llvm/tools/llvm-dwp/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwp/DWPError.h
    U src/gnu/llvm/tools/llvm-dwp/llvm-dwp.cpp
    U src/gnu/llvm/tools/llvm-link/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-link/llvm-link.cpp
    U src/gnu/llvm/tools/llvm-link/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-elfabi/ErrorCollector.cpp
    U src/gnu/llvm/tools/llvm-elfabi/ELFObjHandler.cpp
    U src/gnu/llvm/tools/llvm-elfabi/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-elfabi/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-elfabi/llvm-elfabi.cpp
    U src/gnu/llvm/tools/llvm-elfabi/ELFObjHandler.h
    U src/gnu/llvm/tools/llvm-elfabi/ErrorCollector.h
    U src/gnu/llvm/tools/llvm-profdata/llvm-profdata.cpp
    U src/gnu/llvm/tools/llvm-profdata/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-profdata/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/llvm-dwarfdump.cpp
    U src/gnu/llvm/tools/llvm-dwarfdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/Statistics.cpp
    U src/gnu/llvm/tools/llvm-dwarfdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-dwarfdump/fuzzer/llvm-dwarfdump-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-dwarfdump/fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-undname/llvm-undname.cpp
    U src/gnu/llvm/tools/llvm-undname/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-undname/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-mc/Disassembler.cpp
    U src/gnu/llvm/tools/llvm-mc/Disassembler.h
    U src/gnu/llvm/tools/llvm-mc/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mc/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-mc/llvm-mc.cpp
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptToken.cpp
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptToken.h
    U src/gnu/llvm/tools/llvm-rc/ResourceFileWriter.h
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptParser.h
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptStmt.h
    U src/gnu/llvm/tools/llvm-rc/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptParser.cpp
    U src/gnu/llvm/tools/llvm-rc/ResourceFileWriter.cpp
    U src/gnu/llvm/tools/llvm-rc/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptCppFilter.cpp
    U src/gnu/llvm/tools/llvm-rc/Opts.td
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptStmt.cpp
    U src/gnu/llvm/tools/llvm-rc/llvm-rc.cpp
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptTokenList.def
    U src/gnu/llvm/tools/llvm-rc/ResourceVisitor.h
    U src/gnu/llvm/tools/llvm-rc/ResourceScriptCppFilter.h
    U src/gnu/llvm/tools/llvm-modextract/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-modextract/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-modextract/llvm-modextract.cpp
    U src/gnu/llvm/tools/llvm-special-case-list-fuzzer/DummySpecialCaseListFuzzer.cpp
    U src/gnu/llvm/tools/llvm-special-case-list-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-special-case-list-fuzzer/special-case-list-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-itanium-demangle-fuzzer/llvm-itanium-demangle-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-itanium-demangle-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-itanium-demangle-fuzzer/DummyDemanglerFuzzer.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/BytesOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyTypeDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyEnumDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/YAMLOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/ExplainOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyTypedefDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/llvm-pdbutil.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/InputFile.h
    U src/gnu/llvm/tools/llvm-pdbutil/YAMLOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/FormatUtil.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/llvm-pdbutil.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyVariableDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyEnumDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/DumpOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyBuiltinDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyExternalSymbolDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyTypeDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyVariableDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-pdbutil/MinimalTypeDumper.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/FormatUtil.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyCompilandDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/DumpOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyFunctionDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/MinimalTypeDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PrettyClassDefinitionDumper.h
    U src/gnu/llvm/tools/llvm-pdbutil/PdbYaml.h
    U src/gnu/llvm/tools/llvm-pdbutil/StreamUtil.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/ExplainOutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/InputFile.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/OutputStyle.h
    U src/gnu/llvm/tools/llvm-pdbutil/StreamUtil.h
    U src/gnu/llvm/tools/llvm-pdbutil/PdbYaml.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/BytesOutputStyle.cpp
    U src/gnu/llvm/tools/llvm-pdbutil/LinePrinter.h
    U src/gnu/llvm/tools/llvm-pdbutil/LinePrinter.cpp
    U src/gnu/llvm/tools/opt/BreakpointPrinter.cpp
    U src/gnu/llvm/tools/opt/PassPrinters.cpp
    U src/gnu/llvm/tools/opt/BreakpointPrinter.h
    U src/gnu/llvm/tools/opt/Debugify.h
    U src/gnu/llvm/tools/opt/GraphPrinters.cpp
    U src/gnu/llvm/tools/opt/CMakeLists.txt
    U src/gnu/llvm/tools/opt/PrintSCC.cpp
    U src/gnu/llvm/tools/opt/AnalysisWrappers.cpp
    U src/gnu/llvm/tools/opt/LLVMBuild.txt
    U src/gnu/llvm/tools/opt/Debugify.cpp
    U src/gnu/llvm/tools/opt/NewPMDriver.cpp
    U src/gnu/llvm/tools/opt/opt.cpp
    U src/gnu/llvm/tools/opt/PassPrinters.h
    U src/gnu/llvm/tools/opt/NewPMDriver.h
    U src/gnu/llvm/tools/llvm-yaml-numeric-parser-fuzzer/DummyYAMLNumericParserFuzzer.cpp
    U src/gnu/llvm/tools/llvm-yaml-numeric-parser-fuzzer/yaml-numeric-parser-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-yaml-numeric-parser-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-shlib/libllvm.cpp
    U src/gnu/llvm/tools/llvm-shlib/gen-msvc-exports.py
    U src/gnu/llvm/tools/llvm-shlib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-shlib/simple_version_script.map.in
    U src/gnu/llvm/tools/llvm-cat/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cat/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cat/llvm-cat.cpp
    U src/gnu/llvm/tools/llvm-cxxmap/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cxxmap/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cxxmap/llvm-cxxmap.cpp
    U src/gnu/llvm/tools/obj2yaml/Error.h
    U src/gnu/llvm/tools/obj2yaml/dwarf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/wasm2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/macho2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.h
    U src/gnu/llvm/tools/obj2yaml/obj2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/elf2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/coff2yaml.cpp
    U src/gnu/llvm/tools/obj2yaml/CMakeLists.txt
    U src/gnu/llvm/tools/obj2yaml/Error.cpp
    U src/gnu/llvm/tools/bugpoint/FindBugs.cpp
    U src/gnu/llvm/tools/bugpoint/ExtractFunction.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.h
    U src/gnu/llvm/tools/bugpoint/bugpoint.cpp
    U src/gnu/llvm/tools/bugpoint/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint/ExecutionDriver.cpp
    U src/gnu/llvm/tools/bugpoint/LLVMBuild.txt
    U src/gnu/llvm/tools/bugpoint/BugDriver.h
    U src/gnu/llvm/tools/bugpoint/BugDriver.cpp
    U src/gnu/llvm/tools/bugpoint/ListReducer.h
    U src/gnu/llvm/tools/bugpoint/CrashDebugger.cpp
    U src/gnu/llvm/tools/bugpoint/OptimizerDriver.cpp
    U src/gnu/llvm/tools/bugpoint/ToolRunner.cpp
    U src/gnu/llvm/tools/bugpoint/Miscompilation.cpp
    U src/gnu/llvm/tools/llvm-size/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-size/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-size/llvm-size.cpp
    U src/gnu/llvm/tools/llvm-split/llvm-split.cpp
    U src/gnu/llvm/tools/llvm-split/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-split/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-as-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-as-fuzzer/llvm-as-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-ar/llvm-ar.cpp
    U src/gnu/llvm/tools/llvm-ar/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-ar/LLVMBuild.txt
    U src/gnu/llvm/tools/opt-viewer/optrecord.py
    U src/gnu/llvm/tools/opt-viewer/opt-viewer.py
    U src/gnu/llvm/tools/opt-viewer/style.css
    U src/gnu/llvm/tools/opt-viewer/opt-diff.py
    U src/gnu/llvm/tools/opt-viewer/optpmap.py
    U src/gnu/llvm/tools/opt-viewer/CMakeLists.txt
    U src/gnu/llvm/tools/opt-viewer/opt-stats.py
    U src/gnu/llvm/tools/llvm-rtdyld/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-rtdyld/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-rtdyld/llvm-rtdyld.cpp
    U src/gnu/llvm/tools/llvm-as/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-as/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-as/llvm-as.cpp
    U src/gnu/llvm/tools/llvm-mt/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mt/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-mt/llvm-mt.cpp
    U src/gnu/llvm/tools/llvm-mt/Opts.td
    U src/gnu/llvm/tools/llvm-cov/CoverageExporterJson.h
    U src/gnu/llvm/tools/llvm-cov/llvm-cov.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewHTML.cpp
    U src/gnu/llvm/tools/llvm-cov/RenderingSupport.h
    U src/gnu/llvm/tools/llvm-cov/gcov.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.h
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.h
    U src/gnu/llvm/tools/llvm-cov/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewHTML.h
    U src/gnu/llvm/tools/llvm-cov/TestingSupport.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageViewOptions.h
    U src/gnu/llvm/tools/llvm-cov/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cov/CodeCoverage.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageFilters.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.cpp
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageViewText.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageExporterLcov.h
    U src/gnu/llvm/tools/llvm-cov/CoverageExporter.h
    U src/gnu/llvm/tools/llvm-cov/SourceCoverageView.h
    U src/gnu/llvm/tools/llvm-cov/CoverageExporterJson.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageExporterLcov.cpp
    U src/gnu/llvm/tools/llvm-cov/CoverageSummaryInfo.h
    U src/gnu/llvm/tools/llvm-cov/CoverageReport.cpp
    U src/gnu/llvm/tools/llvm-objcopy/StripOpts.td
    U src/gnu/llvm/tools/llvm-objcopy/llvm-objcopy.h
    U src/gnu/llvm/tools/llvm-objcopy/Buffer.cpp
    U src/gnu/llvm/tools/llvm-objcopy/CopyConfig.cpp
    U src/gnu/llvm/tools/llvm-objcopy/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-objcopy/llvm-objcopy.cpp
    U src/gnu/llvm/tools/llvm-objcopy/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-objcopy/CopyConfig.h
    U src/gnu/llvm/tools/llvm-objcopy/ObjcopyOpts.td
    U src/gnu/llvm/tools/llvm-objcopy/Buffer.h
    U src/gnu/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.cpp
    U src/gnu/llvm/tools/llvm-objcopy/ELF/Object.cpp
    U src/gnu/llvm/tools/llvm-objcopy/ELF/ELFObjcopy.h
    U src/gnu/llvm/tools/llvm-objcopy/ELF/Object.h
    U src/gnu/llvm/tools/llvm-objcopy/COFF/Writer.cpp
    U src/gnu/llvm/tools/llvm-objcopy/COFF/Object.cpp
    U src/gnu/llvm/tools/llvm-objcopy/COFF/Reader.cpp
    U src/gnu/llvm/tools/llvm-objcopy/COFF/Writer.h
    U src/gnu/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.cpp
    U src/gnu/llvm/tools/llvm-objcopy/COFF/COFFObjcopy.h
    U src/gnu/llvm/tools/llvm-objcopy/COFF/Object.h
    U src/gnu/llvm/tools/llvm-objcopy/COFF/Reader.h
    U src/gnu/llvm/tools/lto/lto.cpp
    U src/gnu/llvm/tools/lto/CMakeLists.txt
    U src/gnu/llvm/tools/lto/lto.exports
    U src/gnu/llvm/tools/lto/LTODisassembler.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2macho.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2coff.cpp
    U src/gnu/llvm/tools/yaml2obj/CMakeLists.txt
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.h
    U src/gnu/llvm/tools/yaml2obj/yaml2obj.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2wasm.cpp
    U src/gnu/llvm/tools/yaml2obj/yaml2elf.cpp
    U src/gnu/llvm/tools/llvm-strings/llvm-strings.cpp
    U src/gnu/llvm/tools/llvm-strings/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-strings/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-nm/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-nm/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-nm/llvm-nm.cpp
    U src/gnu/llvm/tools/llvm-mc-assemble-fuzzer/llvm-mc-assemble-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-mc-assemble-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-go/llvm-go.go
    U src/gnu/llvm/tools/llvm-go/CMakeLists.txt
    U src/gnu/llvm/tools/dsymutil/MachODebugMapParser.cpp
    U src/gnu/llvm/tools/dsymutil/CFBundle.h
    U src/gnu/llvm/tools/dsymutil/dsymutil.h
    U src/gnu/llvm/tools/dsymutil/DebugMap.h
    U src/gnu/llvm/tools/dsymutil/DwarfStreamer.h
    U src/gnu/llvm/tools/dsymutil/LinkUtils.h
    U src/gnu/llvm/tools/dsymutil/NonRelocatableStringpool.cpp
    U src/gnu/llvm/tools/dsymutil/DwarfLinker.cpp
    U src/gnu/llvm/tools/dsymutil/DwarfLinker.h
    U src/gnu/llvm/tools/dsymutil/DebugMap.cpp
    U src/gnu/llvm/tools/dsymutil/DeclContext.cpp
    U src/gnu/llvm/tools/dsymutil/CMakeLists.txt
    U src/gnu/llvm/tools/dsymutil/LLVMBuild.txt
    U src/gnu/llvm/tools/dsymutil/SymbolMap.cpp
    U src/gnu/llvm/tools/dsymutil/CompileUnit.h
    U src/gnu/llvm/tools/dsymutil/MachOUtils.h
    U src/gnu/llvm/tools/dsymutil/CFBundle.cpp
    U src/gnu/llvm/tools/dsymutil/MachOUtils.cpp
    U src/gnu/llvm/tools/dsymutil/dsymutil.cpp
    U src/gnu/llvm/tools/dsymutil/CompileUnit.cpp
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.h
    U src/gnu/llvm/tools/dsymutil/SymbolMap.h
    U src/gnu/llvm/tools/dsymutil/NonRelocatableStringpool.h
    U src/gnu/llvm/tools/dsymutil/DeclContext.h
    U src/gnu/llvm/tools/dsymutil/DwarfStreamer.cpp
    U src/gnu/llvm/tools/dsymutil/BinaryHolder.cpp
    U src/gnu/llvm/tools/sanstats/sanstats.cpp
    U src/gnu/llvm/tools/sanstats/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/llvm-exegesis.cpp
    U src/gnu/llvm/tools/llvm-exegesis/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/Assembler.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkResult.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Analysis.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Clustering.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Analysis.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/SnippetGenerator.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/PerfHelper.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Assembler.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/RegisterValue.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Target.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Latency.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/RegisterAliasing.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Uops.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkCode.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/MCInstrDescView.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Latency.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/CodeTemplate.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/LlvmState.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/CodeTemplate.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Uops.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/LlvmState.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/Target.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/RegisterValue.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/RegisterAliasing.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/MCInstrDescView.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/SnippetGenerator.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/PerfHelper.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.h
    U src/gnu/llvm/tools/llvm-exegesis/lib/Clustering.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/X86/Target.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/X86/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/X86/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/PowerPC/Target.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/PowerPC/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/PowerPC/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/AArch64/Target.cpp
    U src/gnu/llvm/tools/llvm-exegesis/lib/AArch64/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-exegesis/lib/AArch64/LLVMBuild.txt
    U src/gnu/llvm/tools/msbuild/llvm.csproj
    U src/gnu/llvm/tools/msbuild/uninstall.bat
    U src/gnu/llvm/tools/msbuild/.gitignore
    U src/gnu/llvm/tools/msbuild/install.bat
    U src/gnu/llvm/tools/msbuild/LLVM.Cpp.Common.targets
    U src/gnu/llvm/tools/msbuild/license.txt
    U src/gnu/llvm/tools/msbuild/source.extension.vsixmanifest
    U src/gnu/llvm/tools/msbuild/LLVM.Cpp.Common.props
    U src/gnu/llvm/tools/msbuild/llvm-general.xml
    U src/gnu/llvm/tools/msbuild/llvm.sln
    U src/gnu/llvm/tools/msbuild/Platformx86/Toolset.targets
    U src/gnu/llvm/tools/msbuild/Platformx86/Toolset.props
    U src/gnu/llvm/tools/msbuild/Platformx64/Toolset.targets
    U src/gnu/llvm/tools/msbuild/Platformx64/Toolset.props
    U src/gnu/llvm/tools/llvm-stress/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-stress/llvm-stress.cpp
    U src/gnu/llvm/tools/llvm-stress/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-microsoft-demangle-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-microsoft-demangle-fuzzer/DummyDemanglerFuzzer.cpp
    U src/gnu/llvm/tools/llvm-microsoft-demangle-fuzzer/llvm-microsoft-demangle-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-mca/PipelinePrinter.h
    U src/gnu/llvm/tools/llvm-mca/CodeRegion.h
    U src/gnu/llvm/tools/llvm-mca/CodeRegion.cpp
    U src/gnu/llvm/tools/llvm-mca/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-mca/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-mca/CodeRegionGenerator.cpp
    U src/gnu/llvm/tools/llvm-mca/llvm-mca.cpp
    U src/gnu/llvm/tools/llvm-mca/PipelinePrinter.cpp
    U src/gnu/llvm/tools/llvm-mca/CodeRegionGenerator.h
    U src/gnu/llvm/tools/llvm-mca/Views/SchedulerStatistics.h
    U src/gnu/llvm/tools/llvm-mca/Views/ResourcePressureView.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/SchedulerStatistics.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/TimelineView.h
    U src/gnu/llvm/tools/llvm-mca/Views/InstructionInfoView.h
    U src/gnu/llvm/tools/llvm-mca/Views/SummaryView.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/TimelineView.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/ResourcePressureView.h
    U src/gnu/llvm/tools/llvm-mca/Views/DispatchStatistics.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/RegisterFileStatistics.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/View.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/RetireControlUnitStatistics.h
    U src/gnu/llvm/tools/llvm-mca/Views/RegisterFileStatistics.h
    U src/gnu/llvm/tools/llvm-mca/Views/InstructionInfoView.cpp
    U src/gnu/llvm/tools/llvm-mca/Views/SummaryView.h
    U src/gnu/llvm/tools/llvm-mca/Views/DispatchStatistics.h
    U src/gnu/llvm/tools/llvm-mca/Views/View.h
    U src/gnu/llvm/tools/lli/CMakeLists.txt
    U src/gnu/llvm/tools/lli/LLVMBuild.txt
    U src/gnu/llvm/tools/lli/lli.cpp
    U src/gnu/llvm/tools/lli/RemoteJITUtils.h
    U src/gnu/llvm/tools/lli/ChildTarget/ChildTarget.cpp
    U src/gnu/llvm/tools/lli/ChildTarget/CMakeLists.txt
    U src/gnu/llvm/tools/lli/ChildTarget/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/llvm-cfi-verify.cpp
    U src/gnu/llvm/tools/llvm-cfi-verify/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/FileAnalysis.h
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/GraphBuilder.cpp
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/FileAnalysis.cpp
    U src/gnu/llvm/tools/llvm-cfi-verify/lib/GraphBuilder.h
    U src/gnu/llvm/tools/llvm-cxxfilt/llvm-cxxfilt.cpp
    U src/gnu/llvm/tools/llvm-cxxfilt/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.cpp
    U src/gnu/llvm/tools/llvm-diff/llvm-diff.cpp
    U src/gnu/llvm/tools/llvm-diff/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.h
    U src/gnu/llvm/tools/llvm-diff/DiffLog.h
    U src/gnu/llvm/tools/llvm-diff/DifferenceEngine.cpp
    U src/gnu/llvm/tools/llvm-diff/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-diff/DiffLog.cpp
    U src/gnu/llvm/tools/llvm-diff/DiffConsumer.h
    U src/gnu/llvm/tools/llvm-xray/func-id-helper.h
    U src/gnu/llvm/tools/llvm-xray/llvm-xray.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-registry.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-account.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-registry.h
    U src/gnu/llvm/tools/llvm-xray/trie-node.h
    U src/gnu/llvm/tools/llvm-xray/xray-graph.h
    U src/gnu/llvm/tools/llvm-xray/xray-fdr-dump.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-account.h
    U src/gnu/llvm/tools/llvm-xray/xray-color-helper.cpp
    U src/gnu/llvm/tools/llvm-xray/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-xray/xray-stacks.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-extract.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-graph.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-graph-diff.h
    U src/gnu/llvm/tools/llvm-xray/xray-converter.h
    U src/gnu/llvm/tools/llvm-xray/xray-graph-diff.cpp
    U src/gnu/llvm/tools/llvm-xray/func-id-helper.cpp
    U src/gnu/llvm/tools/llvm-xray/xray-color-helper.h
    U src/gnu/llvm/tools/llvm-xray/xray-converter.cpp
    U src/gnu/llvm/tools/llvm-extract/llvm-extract.cpp
    U src/gnu/llvm/tools/llvm-extract/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-extract/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cxxdump/Error.h
    U src/gnu/llvm/tools/llvm-cxxdump/llvm-cxxdump.cpp
    U src/gnu/llvm/tools/llvm-cxxdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cxxdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cxxdump/Error.cpp
    U src/gnu/llvm/tools/llvm-cxxdump/llvm-cxxdump.h
    U src/gnu/llvm/tools/llvm-isel-fuzzer/llvm-isel-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-isel-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-isel-fuzzer/DummyISelFuzzer.cpp
    U src/gnu/llvm/tools/llvm-config/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-config/BuildVariables.inc.in
    U src/gnu/llvm/tools/llvm-config/llvm-config.cpp
    U src/gnu/llvm/tools/gold/gold-plugin.cpp
    U src/gnu/llvm/tools/gold/CMakeLists.txt
    U src/gnu/llvm/tools/gold/gold.exports
    U src/gnu/llvm/tools/gold/README.txt
    U src/gnu/llvm/tools/bugpoint-passes/TestPasses.cpp
    U src/gnu/llvm/tools/bugpoint-passes/CMakeLists.txt
    U src/gnu/llvm/tools/bugpoint-passes/bugpoint.exports
    U src/gnu/llvm/tools/llvm-jitlistener/llvm-jitlistener.cpp
    U src/gnu/llvm/tools/llvm-jitlistener/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-jitlistener/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-readobj/Error.h
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.cpp
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.cpp
    U src/gnu/llvm/tools/llvm-readobj/StackMapPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/DwarfCFIEHPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/COFFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/Win64EHDumper.h
    U src/gnu/llvm/tools/llvm-readobj/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-readobj/ARMWinEHPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.h
    U src/gnu/llvm/tools/llvm-readobj/llvm-readobj.h
    U src/gnu/llvm/tools/llvm-readobj/WasmDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-readobj/ARMEHABIPrinter.h
    U src/gnu/llvm/tools/llvm-readobj/Error.cpp
    U src/gnu/llvm/tools/llvm-readobj/ObjDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/WindowsResourceDumper.h
    U src/gnu/llvm/tools/llvm-readobj/COFFImportDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/MachODumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/ELFDumper.cpp
    U src/gnu/llvm/tools/llvm-readobj/WindowsResourceDumper.cpp
    U src/gnu/llvm/tools/llvm-opt-report/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-opt-report/OptReport.cpp
    U src/gnu/llvm/tools/llvm-objdump/MachODump.cpp
    U src/gnu/llvm/tools/llvm-objdump/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-objdump/llvm-objdump.cpp
    U src/gnu/llvm/tools/llvm-objdump/WasmDump.cpp
    U src/gnu/llvm/tools/llvm-objdump/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-objdump/COFFDump.cpp
    U src/gnu/llvm/tools/llvm-objdump/llvm-objdump.h
    U src/gnu/llvm/tools/llvm-objdump/ELFDump.cpp
    U src/gnu/llvm/tools/llc/llc.cpp
    U src/gnu/llvm/tools/llc/CMakeLists.txt
    U src/gnu/llvm/tools/llc/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cvtres/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-cvtres/llvm-cvtres.cpp
    U src/gnu/llvm/tools/llvm-cvtres/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-cvtres/Opts.td
    U src/gnu/llvm/tools/llvm-c-test/llvm-c-test.h
    U src/gnu/llvm/tools/llvm-c-test/disassemble.c
    U src/gnu/llvm/tools/llvm-c-test/helpers.c
    U src/gnu/llvm/tools/llvm-c-test/diagnostic.c
    U src/gnu/llvm/tools/llvm-c-test/include-all.c
    U src/gnu/llvm/tools/llvm-c-test/echo.cpp
    U src/gnu/llvm/tools/llvm-c-test/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-c-test/debuginfo.c
    U src/gnu/llvm/tools/llvm-c-test/targets.c
    U src/gnu/llvm/tools/llvm-c-test/main.c
    U src/gnu/llvm/tools/llvm-c-test/calc.c
    U src/gnu/llvm/tools/llvm-c-test/attributes.c
    U src/gnu/llvm/tools/llvm-c-test/object.c
    U src/gnu/llvm/tools/llvm-c-test/module.c
    U src/gnu/llvm/tools/llvm-c-test/metadata.c
    U src/gnu/llvm/tools/sancov/sancov.cpp
    U src/gnu/llvm/tools/sancov/CMakeLists.txt
    U src/gnu/llvm/tools/sancov/coverage-report-server.py
    U src/gnu/llvm/tools/llvm-mc-disassemble-fuzzer/llvm-mc-disassemble-fuzzer.cpp
    U src/gnu/llvm/tools/llvm-mc-disassemble-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-lto2/CMakeLists.txt
    U src/gnu/llvm/tools/llvm-lto2/LLVMBuild.txt
    U src/gnu/llvm/tools/llvm-lto2/llvm-lto2.cpp
    U src/gnu/llvm/tools/lldb/.clang-format
    U src/gnu/llvm/tools/lldb/.gitignore
    U src/gnu/llvm/tools/lldb/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/LICENSE.TXT
    U src/gnu/llvm/tools/lldb/.arcconfig
    U src/gnu/llvm/tools/lldb/INSTALL.txt
    U src/gnu/llvm/tools/lldb/use_lldb_suite_root.py
    U src/gnu/llvm/tools/lldb/CODE_OWNERS.txt
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/INSTALL
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/pexpect.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/PKG-INFO
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/ANSI.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/fdpexpect.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/pxssh.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/setup.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/LICENSE
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/FSM.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/README
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/screen.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/fix_cvs_files.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/rippy.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/cgishell.cgi
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/bd_serv.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/python.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/chess.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/passmass.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/chess2.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/sshls.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/ssh_tunnel.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/ssh_session.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/chess3.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/topip.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/bd_client.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/astat.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/table_test.html
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/script.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/monitor.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/ftp.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/README
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/hive.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/uptime.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/examples/df.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/examples.html
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/email.png
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/clean.css
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/index.template.html
    U src/gnu/llvm/tools/lldb/third_party/Python/module/pexpect-2.4/doc/index.html
    U src/gnu/llvm/tools/lldb/third_party/Python/module/six/six.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/six/LICENSE
    U src/gnu/llvm/tools/lldb/third_party/Python/module/progress/progress.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/case.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/loader.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/util.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/suite.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/result.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/__init__.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/__main__.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/main.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/compatibility.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/signals.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/collector.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/runner.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_discovery.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_skipping.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_result.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/dummy.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_assertions.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_functiontestcase.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_unittest2_with.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_new_tests.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_suite.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_runner.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/support.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_case.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/__init__.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_break.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_setups.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_program.py
    U src/gnu/llvm/tools/lldb/third_party/Python/module/unittest2/unittest2/test/test_loader.py
    U src/gnu/llvm/tools/lldb/examples/customization/bin-utils/binutils.py
    U src/gnu/llvm/tools/lldb/examples/customization/bin-utils/README
    U src/gnu/llvm/tools/lldb/examples/customization/bin-utils/.lldbinit
    U src/gnu/llvm/tools/lldb/examples/customization/import-python/README
    U src/gnu/llvm/tools/lldb/examples/customization/import-python/importcmd.py
    U src/gnu/llvm/tools/lldb/examples/customization/pwd-cd-and-system/utils.py
    U src/gnu/llvm/tools/lldb/examples/customization/pwd-cd-and-system/README
    U src/gnu/llvm/tools/lldb/examples/customization/pwd-cd-and-system/.lldbinit
    U src/gnu/llvm/tools/lldb/examples/python/dict_utils.py
    U src/gnu/llvm/tools/lldb/examples/python/gdb_disassemble.py
    U src/gnu/llvm/tools/lldb/examples/python/sources.py
    U src/gnu/llvm/tools/lldb/examples/python/x86_64_target_definition.py
    U src/gnu/llvm/tools/lldb/examples/python/shadow.py
    U src/gnu/llvm/tools/lldb/examples/python/lldb_module_utils.py
    U src/gnu/llvm/tools/lldb/examples/python/diagnose_unwind.py
    U src/gnu/llvm/tools/lldb/examples/python/stacks.py
    U src/gnu/llvm/tools/lldb/examples/python/operating_system.py
    U src/gnu/llvm/tools/lldb/examples/python/scripted_step.py
    U src/gnu/llvm/tools/lldb/examples/python/disassembly_mode.py
    U src/gnu/llvm/tools/lldb/examples/python/x86_64_linux_target_definition.py
    U src/gnu/llvm/tools/lldb/examples/python/cmdtemplate.py
    U src/gnu/llvm/tools/lldb/examples/python/pytracer.py
    U src/gnu/llvm/tools/lldb/examples/python/bsd.py
    U src/gnu/llvm/tools/lldb/examples/python/lldbtk.py
    U src/gnu/llvm/tools/lldb/examples/python/disasm.py
    U src/gnu/llvm/tools/lldb/examples/python/memory.py
    U src/gnu/llvm/tools/lldb/examples/python/performance.py
    U src/gnu/llvm/tools/lldb/examples/python/step_and_print.py
    U src/gnu/llvm/tools/lldb/examples/python/disasm-stress-test.py
    U src/gnu/llvm/tools/lldb/examples/python/sbvalue.py
    U src/gnu/llvm/tools/lldb/examples/python/x86_64_qemu_target_definition.py
    U src/gnu/llvm/tools/lldb/examples/python/globals.py
    U src/gnu/llvm/tools/lldb/examples/python/file_extract.py
    U src/gnu/llvm/tools/lldb/examples/python/symbolication.py
    U src/gnu/llvm/tools/lldb/examples/python/crashlog.py
    U src/gnu/llvm/tools/lldb/examples/python/types.py
    U src/gnu/llvm/tools/lldb/examples/python/delta.py
    U src/gnu/llvm/tools/lldb/examples/python/process_events.py
    U src/gnu/llvm/tools/lldb/examples/python/jump.py
    U src/gnu/llvm/tools/lldb/examples/python/gdbremote.py
    U src/gnu/llvm/tools/lldb/examples/python/diagnose_nsstring.py
    U src/gnu/llvm/tools/lldb/examples/python/mach_o.py
    U src/gnu/llvm/tools/lldb/examples/lookup/Makefile
    U src/gnu/llvm/tools/lldb/examples/lookup/main.cpp
    U src/gnu/llvm/tools/lldb/examples/plugins/commands/fooplugin.cpp
    U src/gnu/llvm/tools/lldb/examples/synthetic/libcxx.py
    U src/gnu/llvm/tools/lldb/examples/synthetic/unordered_multi.py
    U src/gnu/llvm/tools/lldb/examples/synthetic/gnu_libstdcpp.py
    U src/gnu/llvm/tools/lldb/examples/synthetic/bitfield/program.cpp
    U src/gnu/llvm/tools/lldb/examples/synthetic/bitfield/example.py
    U src/gnu/llvm/tools/lldb/examples/summaries/essentials
    U src/gnu/llvm/tools/lldb/examples/summaries/sp_cp.py
    U src/gnu/llvm/tools/lldb/examples/summaries/lldb
    U src/gnu/llvm/tools/lldb/examples/summaries/objc.py
    U src/gnu/llvm/tools/lldb/examples/summaries/synth.py
    U src/gnu/llvm/tools/lldb/examples/summaries/pysummary.py
    U src/gnu/llvm/tools/lldb/examples/summaries/unicode_strings.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFBag.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFBinaryHeap.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSException.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSNotification.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/cache.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFDictionary.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFBitVector.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFString.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSURL.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/Class.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSSet.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSData.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/objc_runtime.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/CFArray.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/Selector.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSMachPort.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/attrib_fromdict.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSIndexSet.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/metrics.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/Logger.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSNumber.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSBundle.py
    U src/gnu/llvm/tools/lldb/examples/summaries/cocoa/NSDate.py
    U src/gnu/llvm/tools/lldb/examples/darwin/heap_find/heap.py
    U src/gnu/llvm/tools/lldb/examples/darwin/heap_find/heap/heap_find.cpp
    U src/gnu/llvm/tools/lldb/examples/darwin/heap_find/heap/Makefile
    U src/gnu/llvm/tools/lldb/examples/scripting/tree_utils.py
    U src/gnu/llvm/tools/lldb/examples/scripting/dictionary.c
    U src/gnu/llvm/tools/lldb/examples/test/.lldb-loggings
    U src/gnu/llvm/tools/lldb/examples/test/lldbtest-stdout
    U src/gnu/llvm/tools/lldb/examples/test/.lldbtest-config
    U src/gnu/llvm/tools/lldb/examples/test/.lldbtest-config2
    U src/gnu/llvm/tools/lldb/examples/test/.lldb-pre-post-flight
    U src/gnu/llvm/tools/lldb/examples/test/usage-config
    U src/gnu/llvm/tools/lldb/examples/test/usage-lldb-loggings
    U src/gnu/llvm/tools/lldb/examples/test/usage-pre-post-flight
    U src/gnu/llvm/tools/lldb/examples/test/lldbtest-stderr
    U src/gnu/llvm/tools/lldb/examples/test/.lldb-pre-post-flight.bad
    U src/gnu/llvm/tools/lldb/examples/test/tmp/lldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dwarf.txt
    U src/gnu/llvm/tools/lldb/examples/test/tmp/lldb_log-x86_64-clang-TestBreakpointCommand.BreakpointCommandTestCase.test_with_dsym.txt
    U src/gnu/llvm/tools/lldb/examples/interposing/darwin/fd_interposing/Makefile
    U src/gnu/llvm/tools/lldb/examples/interposing/darwin/fd_interposing/FDInterposing.cpp
    U src/gnu/llvm/tools/lldb/examples/functions/Makefile
    U src/gnu/llvm/tools/lldb/examples/functions/main.cpp
    U src/gnu/llvm/tools/lldb/www/build.html
    U src/gnu/llvm/tools/lldb/www/docs.html
    U src/gnu/llvm/tools/lldb/www/style.css
    U src/gnu/llvm/tools/lldb/www/lldb-gdb.html
    U src/gnu/llvm/tools/lldb/www/varformats.html
    U src/gnu/llvm/tools/lldb/www/features.html
    U src/gnu/llvm/tools/lldb/www/test.html
    U src/gnu/llvm/tools/lldb/www/SB-api-coding-rules.html
    U src/gnu/llvm/tools/lldb/www/status.html
    U src/gnu/llvm/tools/lldb/www/download.html
    U src/gnu/llvm/tools/lldb/www/sidebar.incl
    U src/gnu/llvm/tools/lldb/www/goals.html
    U src/gnu/llvm/tools/lldb/www/python-reference.html
    U src/gnu/llvm/tools/lldb/www/symbols.html
    U src/gnu/llvm/tools/lldb/www/scripting.html
    U src/gnu/llvm/tools/lldb/www/formats.html
    U src/gnu/llvm/tools/lldb/www/symbolication.html
    U src/gnu/llvm/tools/lldb/www/tutorial.html
    U src/gnu/llvm/tools/lldb/www/adding-language-support.html
    U src/gnu/llvm/tools/lldb/www/troubleshooting.html
    U src/gnu/llvm/tools/lldb/www/projects.html
    U src/gnu/llvm/tools/lldb/www/source.html
    U src/gnu/llvm/tools/lldb/www/faq.html
    U src/gnu/llvm/tools/lldb/www/index.html
    U src/gnu/llvm/tools/lldb/www/customization.html
    U src/gnu/llvm/tools/lldb/www/remote.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_77.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_42333c9da4438c4e48b6683e9ba44a59_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_79.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_112.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_130.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/doxygen.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_59.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_115.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBVariablesOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_31.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_146.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_12f13744187bc9a56c439d0a57f95644_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_64.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_100.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBMemoryRegionInfoList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_vars.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_85.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_130.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_41.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandInterpreterRunOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBEvent.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_81.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_f.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classSystemInitializerCommon.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_45.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/hierarchy.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_136.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_133.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_71.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2cl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_63.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_5.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_140.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_119.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/nav_h.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_j.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x73.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x7e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBData.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_29.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_137.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_55.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_g.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_6.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_82.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_20.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_139.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandInterpreter-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_47.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2ns.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_7.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_103.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_i.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_53.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_136.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_96.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_144.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_29.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x65.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_rela_s.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFileSpecList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_93.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_139.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_r.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_44.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_121.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBVariablesOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_66.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_118.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAddress-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_126.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_54.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_72.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_115.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_k.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_142.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_145.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/open.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x64.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2pnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCompileUnit.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_108.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_119.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_144.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_119.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_35.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThreadCollection-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBError-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_30e71e610673c7b74c5ccda0fc334ee9_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2folderclosed.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_217b186c19a2bb8bc0ee0f71fb72d4e8_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbolContextList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/sync_off.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommand-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpointList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_26.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_23.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_7.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_6.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFunction-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_134.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_22.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_140.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_73.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_5.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_25.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_102.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModuleSpec-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpointList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_107.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_56.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__inherit__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x72.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStructuredData.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_105.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBDebugger-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2node.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_12f13744187bc9a56c439d0a57f95644.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_112.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommunication.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_129.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpoint-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_64.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_111.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_92.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_57.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBValue.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_89.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_2.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_109.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_eval.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_7.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInstruction.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_122.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_q.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBroadcaster.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_14.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespacemembers_vars.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_32.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classSystemInitializerCommon__inherit__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSection.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2splitbar.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandReturnObject.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMemberList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_143.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummaryOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_0.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespaces.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBEvent-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_65cab015c1f428073772d528e6a1b53d_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2vertline.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_130.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_62.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_60.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThreadPlan-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_99.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/doxygen.css
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_36ad4ea5df2b352cce0512435d34c8a4_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_9.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBValueList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_26.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_84.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStream.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_6b47ac86da6aee9115280ffa56155f66_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_120.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2doc.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_109.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_w.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_6b47ac86da6aee9115280ffa56155f66_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_217b186c19a2bb8bc0ee0f71fb72d4e8_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_126.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_~.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_138.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_37.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_b8cffa74dcb91bca0da221349fa85523_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tabs.css
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_p.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_44.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_50.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBValueList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x72.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_l.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_42333c9da4438c4e48b6683e9ba44a59.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBDeclaration-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_66.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_15.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_142.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_125.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_142.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_17.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_38.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_c02e3ff158c3064d7b78c6aa6fc411e6_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_107.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2blank.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_33.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTarget.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_48.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_46.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_124.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBDebugger.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBListener.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x67.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_b8cffa74dcb91bca0da221349fa85523.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_w.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBError.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_100.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_86.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBQueue.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_49.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x63.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_t.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandInterpreterRunOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_39.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_91.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_144.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_o.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_20.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBData-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_12.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_65.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_4.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_5.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_27.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_113.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/sync_on.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_72.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFileSpec-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SystemInitializerFull_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_47.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_128.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_60.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_15.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_6.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_132.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_73.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherits.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_bdcf59bf838c999fcfc3dde87d35c9f0.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6b.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_28.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classSystemInitializerCommon__inherit__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x64.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_40.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_fa64c3fa8a988674a1a867b97ca9a790_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_8b321541f691a81675dae4ec7a1864bb_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_90.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2mo.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBlock.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_124.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_67.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6f.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_20.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_97.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBHostOS-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/doxygen_8intro.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_41.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_77.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBDeclaration.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2folderopen.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_32.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_132.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_11.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_131.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x74.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_42.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_126.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFileSpec.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSection-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tab_a.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/doxygen_8intro_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_1.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_103.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_51.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_51.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_57.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_c02e3ff158c3064d7b78c6aa6fc411e6_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_q.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_95.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_106.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbolContext.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_40.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_34.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2mlastnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_143.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_88.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_52.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_c02e3ff158c3064d7b78c6aa6fc411e6.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_62.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_42333c9da4438c4e48b6683e9ba44a59_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_64.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_4.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBUnixSignals-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_78.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_68.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_125.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_128.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/graph_legend.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_82.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_68.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_113.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_95.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModule.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x76.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_43.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBHostOS.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_72.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_117.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_97.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_78.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_131.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_36ad4ea5df2b352cce0512435d34c8a4_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_6b47ac86da6aee9115280ffa56155f66_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_49.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_36.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_30.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_113.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbolContextList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_60.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classSystemInitializerCommon__inherit__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2link.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_105.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_134.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStringList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_76.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_10.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_92.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_1.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_145.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBMemoryRegionInfoList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_62.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_19.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_111.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_9.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_bdcf59bf838c999fcfc3dde87d35c9f0_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_124.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_74.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_43.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_58.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_69.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_f.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_10.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_123.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_s.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_120.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_101.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_45.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBUnixSignals.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_125.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_100.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_c.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_11.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_122.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_3.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBWatchpoint.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_137.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_54.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_m.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_103.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInstructionList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_53.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_35.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_37.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_88.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_s.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModuleSpecList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_84.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_87.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_37.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_26.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_bdcf59bf838c999fcfc3dde87d35c9f0_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_25.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_44.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFileSpecList-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_12.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_i.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/bdwn.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbol-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_13.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_143.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x69.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_85.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_19.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_99.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_12f13744187bc9a56c439d0a57f95644_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_47.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSourceManager.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_14.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_58.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_17.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_3.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStream-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_87.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x77.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_131.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_75.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_52.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbolContext-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_104.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_96.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_k.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_106.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_63.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_31.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_110.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBroadcaster-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classes.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x66.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_91.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_18.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_15.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_25.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMemberList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_u.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_2.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_51.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_104.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_83.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_36.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x68.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_43.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_22.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_46.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_87.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_53.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_32.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_30.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFunction.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_118.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_9d4b8469db156c557ab1d649b027ec2e_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_80.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x62.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespacelldb.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_70.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_129.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_75.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_b.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_111.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_24.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_rela_0x76.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_88.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_o.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_55.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_69.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_61.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tab_h.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_108.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_114.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAttachInfo.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_30.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_42333c9da4438c4e48b6683e9ba44a59_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_105.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_104.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_69.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_38.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSymbol.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_136.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_140.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_76.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_89.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_121.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_p.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_42.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSection_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInstructionList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStringList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_bdcf59bf838c999fcfc3dde87d35c9f0_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_41.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_18.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_8b321541f691a81675dae4ec7a1864bb.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x62.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x65.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_16.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThreadPlan.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_92.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6c.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x74.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_91.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_94.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSynthetic__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_132.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModuleSpecList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_137.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_96.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThread-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_21.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_13.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tab_s.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_135.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/tab_b.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/bc_s.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_57.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_59.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_34.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/nav_f.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBQueueItem-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_23.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpoint.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLaunchInfo.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBWatchpoint-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6c.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_b.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_86.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandInterpreter.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_2.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_27.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_114.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_65.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_8.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_16.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_81.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x70.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_118.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_46.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_fa64c3fa8a988674a1a867b97ca9a790_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_120.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_84.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_146.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_75.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_112.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_24.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_83.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_t.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_28.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_34.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_78.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_83.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_108.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBlock-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_123.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_74.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_11.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2plastnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/graph_legend.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_138.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_117.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBSourceManager-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLineEntry.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_54.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_85.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_g.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_1.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/files.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_117.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandPluginInterface-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBExecutionContext.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x77.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModule-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_101.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_22.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLineEntry_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_89.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x73.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_49.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBHostOS_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_101.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBFrame.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBListener-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_146.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_10.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpointLocation.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_35.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_9d4b8469db156c557ab1d649b027ec2e_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBType_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInputReader.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x75.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatform__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_80.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBBreakpointLocation-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBValue-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeCategory__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_39.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_31.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_134.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_98.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_29.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_79.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpointLocation_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_8.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_74.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_c.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeList.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLanguageRuntime-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_~.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/LLDB_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_30e71e610673c7b74c5ccda0fc334ee9_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_u.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_55.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_rela_0x73.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStructuredData_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCompileUnit-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_24.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_enum.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_86.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_12.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBQueue-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBAddress.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfoList_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_4.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_9d4b8469db156c557ab1d649b027ec2e_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_61.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_18.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_type.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_17.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_94.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_133.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_90.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_73.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x70.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_30e71e610673c7b74c5ccda0fc334ee9.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBPlatform_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_56.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_94.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/closed.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_3.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_76.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_fa64c3fa8a988674a1a867b97ca9a790.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_8.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_123.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_217b186c19a2bb8bc0ee0f71fb72d4e8_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueue_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_m.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBlock_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_71.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_106.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommand.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInputReader_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeEnumMember-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSummary_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModule_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_135.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommunication-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_33.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespacelldb__private.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBProcess_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x67.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_50.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpecList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_129.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__inherit__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_rela.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_115.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/index.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAttachInfo_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_63.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_79.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_38.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/annotated.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBModuleSpec_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLaunchInfo_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_8b321541f691a81675dae4ec7a1864bb_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_30e71e610673c7b74c5ccda0fc334ee9_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_70.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTarget_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommunication_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_93.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_13.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_36.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_102.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFilter_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x6e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThreadCollection.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_138.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_27.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeNameSpecifier_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBExpressionOptions-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x75.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_109.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6f.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6b.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBAddress_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2lastnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_12f13744187bc9a56c439d0a57f95644_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_23.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_j.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_81.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_116.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBQueueItem.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_77.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_141.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_135.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_67.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_21.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_65.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_36ad4ea5df2b352cce0512435d34c8a4_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_110.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbol_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBExpressionOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_217b186c19a2bb8bc0ee0f71fb72d4e8.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBreakpoint_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_61.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExecutionContext_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_42.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMember__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadPlan_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_9.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_36ad4ea5df2b352cce0512435d34c8a4.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBUnixSignals_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_48.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstruction_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_82.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_127.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/graph_legend.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_0.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x6d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFileSpec_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_6b47ac86da6aee9115280ffa56155f66.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_139.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x7e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeCategory_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContext_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_48.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_133.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_127.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeFormat_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_68.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeEnumMember_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_110.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_98.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandReturnObject_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummaryOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_70.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_122.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_0.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBListener_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBModuleSpec.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_65cab015c1f428073772d528e6a1b53d.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_66.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_50.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandPluginInterface.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_95.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_97.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x66.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBExecutionContext-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThread_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBProcess-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x63.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_28.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_45.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_116.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLineEntry-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTarget-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_40.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_99.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_l.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBExpressionOptions_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_102.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_90.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDefines_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_c02e3ff158c3064d7b78c6aa6fc411e6_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBThreadCollection_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_16.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/nav_g.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_b8cffa74dcb91bca0da221349fa85523_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_127.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCommandInterpreter_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformConnectOptions.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_67.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBType-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBStructuredData-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_71.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_14.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_33.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStringList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_128.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_59.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInputReader-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBTypeSynthetic_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_9d4b8469db156c557ab1d649b027ec2e.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDebugger_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBMemoryRegionInfo.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValueList_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBMemoryRegionInfo_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFunction_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeMemberFunction__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/ftv2mnode.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBCommandReturnObject-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_19.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_98.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_21.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBLanguageRuntime.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_56.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBVariablesOptions_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_fa64c3fa8a988674a1a867b97ca9a790_dep.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_80.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_141.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBCompileUnit_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBBroadcaster_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__inherit__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBQueueItem_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_58.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_141.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSourceManager_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBData_8h__dep__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_0x69.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_114.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_145.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBValue_8h__dep__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_121.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_107.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_65cab015c1f428073772d528e6a1b53d_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBInstructionList_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeNameSpecifier__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBWatchpoint_8h_source.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBSymbolContextList_8h__incl.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_b8cffa74dcb91bca0da221349fa85523_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_65cab015c1f428073772d528e6a1b53d_dep.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBThread.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBEvent_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dynsections.js
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb__private_1_1SystemInitializerFull__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBStream_8h__incl.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/dir_8b321541f691a81675dae4ec7a1864bb_dep.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBInstruction-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_r.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBMemoryRegionInfo-members.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFormat__coll__graph.png
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_52.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBPlatformShellCommand__coll__graph.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeFilter__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/classlldb_1_1SBTypeSummary__coll__graph.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBError_8h__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/functions_func_0x68.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_39.map
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_116.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBFrame_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBDeclaration_8h__dep__incl.md5
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/SBLanguageRuntime_8h.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/namespacemembers.html
    U src/gnu/llvm/tools/lldb/www/cpp_reference/html/inherit_graph_93.map
    U src/gnu/llvm/tools/lldb/www/python_reference/toc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-Q.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_9.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSyntheticValueProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sba.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBProcess-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-Z.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBStructuredData-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.synth-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.runtime-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cache.Cache-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdvector_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.declaration-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBExpressionOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-Y.html
    U src/gnu/llvm/tools/lldb/www/python_reference/epydoc.js
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBFunction-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeNameSpecifier-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_for_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbf_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-M.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_val.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBVariablesOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdsharedptr_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeEnumMember-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBPlatformConnectOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_7.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBMemoryRegionInfoList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBThreadPlan-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbe_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.cache-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_18.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_13.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeFilter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_10.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBreakpointLocation-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBQueue-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.value-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-G.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBThread-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCompileUnit-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBHostOS-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbv.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSymbolContextList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBFileSpec-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBInstruction-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCommandInterpreter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeMember-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/api-objects.txt
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbl.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBValue-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBThreadCollection-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbf_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/redirect.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.attrib_fromdict-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSymbol-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbl_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBroadcaster-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-W.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.TimeMetrics-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-_lldb'-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBData-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.utils-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCommandInterpreterRunOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSection-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeFormat-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-V.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.MetricsPrinter_Verbose-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-U.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-P.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdVectorSynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdlist_iterator-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbe_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/epydoc.css
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.MetricsPrinter_Compact-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdVectorSynthProvider.StdVBoolImplementation-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.Logger-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeSummary-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBFileSpecList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeCategory.formatters_access_class-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeEnumMemberList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication.Address-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-B.html
    U src/gnu/llvm/tools/lldb/www/python_reference/help.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBAttachInfo-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModuleSpec-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_6.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_8.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.Metrics-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdlist_entry-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.embedded_interpreter-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSymbolContext-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/crarr.png
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-D.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBThread.frames_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbv_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBLineEntry-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_9.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdmap_iterator_node-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/_lldb'-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics.Counter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbi_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBData.read_data_helper-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.attrib_fromdict-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeMemberFunction-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.embedded_interpreter.SimpleREPL-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-N.html
    U src/gnu/llvm/tools/lldb/www/python_reference/class-tree.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeSummaryOptions-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/frames.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_12.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.cpp.gnu_libstdcpp-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.utils.symbolication-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/module-tree.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbd_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBEvent-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_dec.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/index.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBSourceManager-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbe_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_15.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbw.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_8.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.embedded_interpreter-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-A.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule.sections_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_14.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cache-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbv_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.synth.PythonObjectSyntheticChildProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.embedded_interpreter.LLDBQuitter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.value_iter-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.embedded_interpreter-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-everything.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbh.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-J.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBLaunchInfo-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCommunication-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-C.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_6.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_17.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-O.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBListener-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule.compile_units_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBFrame-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdlist_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBCommandReturnObject-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTarget.modules_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBStream-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger.Logger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbl_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBStringList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-X.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBPlatformShellCommand-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBError-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule.symbols_access.re_compile_type-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_6.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbf_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBMemoryRegionInfo-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeSynthetic-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbu.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBAddress-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbq_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdVectorSynthProvider.StdVectorImplementation-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbi.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.cpp-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_for.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBProcess.threads_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBreakpoint-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.metrics-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBPlatform-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBreakpointList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger.FileLogger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_8.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_val_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbm_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbe.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_19.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.metrics-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdmap_iterator-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_7.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModuleSpecList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger.StdoutLogger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-_.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.synth-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBInstructionList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.attrib_fromdict.AttributesDictionary-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBlock-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.runtime-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stdmap_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbq.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_9.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBInputReader-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbd.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBValueList-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-E.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTypeCategory-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBTarget-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBModule.symbols_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-L.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-H.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.cpp.libcxx-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbl_3.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdListSynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication.Symbolicator-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sba_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.runtime-pysrc.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cache-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBExecutionContext-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.attrib_fromdict-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.gnu_libstdcpp.StdMapSynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBLanguageRuntime-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_7.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication.Image-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-K.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBType-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbs_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp.libcxx.stddeque_SynthProvider-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_16.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.cpp-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_6.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBDeclaration-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBUnixSignals-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBBlock.ranges_access-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_for_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBWatchpoint-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-S.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_emb.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-T.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbp_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBQueueItem-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbi_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbf.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-I.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.SBDebugger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.utils.symbolication.Section-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/toc-lldb.formatters.synth-module.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbb_5.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-R.html
    U src/gnu/llvm/tools/lldb/www/python_reference/lldb.formatters.Logger.NopLogger-class.html
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbc_4.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbd_2.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_11.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/uml_class_diagram_for_lldb_sbt_20.gif
    U src/gnu/llvm/tools/lldb/www/python_reference/identifier-index-F.html
    U src/gnu/llvm/tools/lldb/www/architecture/varformats.html
    U src/gnu/llvm/tools/lldb/www/architecture/index.html
    U src/gnu/llvm/tools/lldb/utils/misc/grep-svn-log.py
    U src/gnu/llvm/tools/lldb/utils/lldb-dotest/lldb-dotest.in
    U src/gnu/llvm/tools/lldb/utils/lldb-dotest/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/utils/git-svn/convert.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/README
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/doc/lldb.txt
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/plugin.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/import_lldb.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/vim_panes.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/lldb_controller.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/vim_signs.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/python-vim-lldb/vim_ui.py
    U src/gnu/llvm/tools/lldb/utils/vim-lldb/plugin/lldb.vim
    U src/gnu/llvm/tools/lldb/utils/sync-source/syncsource.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/pylintrc
    U src/gnu/llvm/tools/lldb/utils/sync-source/README.txt
    U src/gnu/llvm/tools/lldb/utils/sync-source/lib/transfer/rsync.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/lib/transfer/protocol.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/lib/transfer/transfer_spec.py
    U src/gnu/llvm/tools/lldb/utils/sync-source/lib/transfer/__init__.py
    U src/gnu/llvm/tools/lldb/utils/test/README-disasm
    U src/gnu/llvm/tools/lldb/utils/test/lldb-disasm.py
    U src/gnu/llvm/tools/lldb/utils/test/README-lldb-disasm
    U src/gnu/llvm/tools/lldb/utils/test/ras.py
    U src/gnu/llvm/tools/lldb/utils/test/run-until-faulted.py
    U src/gnu/llvm/tools/lldb/utils/test/llvm-mc-shell.py
    U src/gnu/llvm/tools/lldb/utils/test/disasm.py
    U src/gnu/llvm/tools/lldb/utils/test/main.c
    U src/gnu/llvm/tools/lldb/utils/test/README-run-until-faulted
    U src/gnu/llvm/tools/lldb/utils/test/run-dis.py
    U src/gnu/llvm/tools/lldb/utils/lui/breakwin.py
    U src/gnu/llvm/tools/lldb/utils/lui/sandbox.py
    U src/gnu/llvm/tools/lldb/utils/lui/Readme
    U src/gnu/llvm/tools/lldb/utils/lui/lui.py
    U src/gnu/llvm/tools/lldb/utils/lui/lldbutil.py
    U src/gnu/llvm/tools/lldb/utils/lui/statuswin.py
    U src/gnu/llvm/tools/lldb/utils/lui/sourcewin.py
    U src/gnu/llvm/tools/lldb/utils/lui/commandwin.py
    U src/gnu/llvm/tools/lldb/utils/lui/debuggerdriver.py
    U src/gnu/llvm/tools/lldb/utils/lui/cui.py
    U src/gnu/llvm/tools/lldb/utils/lui/eventwin.py
    U src/gnu/llvm/tools/lldb/lldb.xcworkspace/contents.xcworkspacedata
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/.clang-format
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/funcutils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/sockutil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/optional_with.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/fs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/gmodules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/encoded_file.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/support/seven.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/event_builder.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/dotest_channels.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/build_exception.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/xunit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/pickled.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/results_formatter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/curses.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/formatter/dump_formatter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/test/src/TestCatchInvalidDecorator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/test/src/event_collector.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test_event/test/resources/invalid_decorator/TestInvalidDecorator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/README.md
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/darwin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/linux.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/tests/test_linux.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/tests/test_darwin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/pre_kill_hook/tests/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/dotest_args.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/dotest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbcurses.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbdwarf.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_result.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/decorators.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbtest_config.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbtest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbinline.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/dosep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/redo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldb_pylint_helper.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lock.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbbench.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbpexpect.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/concurrent_base.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/darwin_log.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbutil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/configuration.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/bench.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_categories.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbplatformutil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/README-TestSuite
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lldbplatform.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypesExpr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_char.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestRecursiveTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/long_long.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/char.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestFloatTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/float.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_short.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/HideTestFailures.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/recursive_type_2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_long.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/short.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_int.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/double.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/basic_type.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/int.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/AbstractBase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/recursive_type_1.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/recursive_type_main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestFloatTypesExpr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/unsigned_long_long.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/TestIntegerTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/types/long.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/quit/TestQuit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_netbsd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_linux.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_base.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_darwin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_win32.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_freebsd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/plugins/builder_openbsd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/make/Android.rules
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/make/test_common.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/make/pseudo_barrier.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/TestRealDefinition.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Bar.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/real-definition/Foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-12408181/TestRdar12408181.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/TestBitfieldIvars.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/bitfield_ivars/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/TestObjCStaticMethodStripped.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method-stripped/static.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/minmax.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/TestIncompleteModules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/module.map
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-incomplete/myModule.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestSymbolTable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjectDescriptionAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestConstStrings.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/my-base.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/const-strings.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestRuntimeTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestFoundationDisassembly.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/foundation/TestObjCMethods.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/stepping-tests.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-stepping/TestObjCStepping.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-property/TestObjCProperty.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/myclass.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/repro.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ivar-IMP/TestObjCiVarIMP.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/unicode-string/TestUnicodeString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/module.modulemap
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/f.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/module.map
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/myModule.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-inline-functions/TestModulesInlineFunctions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-checker/TestObjCCheckers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules-auto-import/TestModulesAutoImport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/modules/TestObjCModules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/class.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/TestObjCSuper.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-super/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/test.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/TestObjCStructReturn.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-return/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/TestPrintObj.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/blocked.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/print-obj/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/TestForwardDecl.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/forward-decl/Container.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/TestObjCExceptions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/exceptions/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/radar-9691614/TestObjCMethodReturningBOOL.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/sample/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/sample/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/TestObjCIvarOffsets.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-offsets/objc-ivar-offsets.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/TestObjCBaseClassSBType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-baseclass-sbtype/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/single-entry-dictionary/TestObjCSingleEntryDictionary.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/TestObjCNewSyntax.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-new-syntax/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/test.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-struct-argument/TestObjCStructArgument.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/self/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/self/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/self/TestObjCSelf.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/TestPtrRefsObjC.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/ptr_refs/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-protocols/TestIvarProtocols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/TestHiddenIvars.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/hidden-ivars/InternalDefiner.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/TestObjCBuiltinTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-builtin-types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/TestObjCXX.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc++/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/TestObjCIvarsInBlocks.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/blocks/ivars-in-blocks.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/TestObjCStaticMethod.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-static-method/static.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-foundation-dictionary-empty/TestNSDictionary0.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/TestObjCDynamicValue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dynamic-value/dynamic-value.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/orderedset/TestOrderedSet.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/global_ptrs/TestGlobalObjects.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-11355592/TestRdar11355592.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/variadic_methods/TestVariadicMethods.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/TestObjCDynamicSBType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-dyn-sbtype/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/rdar-10967107/TestRdar10967107.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/TestObjCIvarStripped.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-ivar-stripped/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestConflictingDefinition.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Test.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/Test/Foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/Foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/class.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-class-method/TestObjCClassMethod.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-runtime-ivars/TestRuntimeIvars.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objc/objc-optimized/TestObjcOptimized.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestStepAndBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/stepping/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/stepping/TestThreadStepping.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/stepping/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/local_variables/TestLocalVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/TestTlsGlobals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/tls_globals/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/TestForwardDeclaration.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/README.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/forward/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unions/TestUnionMembers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unions/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/test.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/register_variables/TestRegisterVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/TestSharedLibStrippedSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib_stripped_symbols/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unicode/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unicode/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/unicode/TestUnicodeSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/function_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/function_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/function_types/TestFunctionTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/modules/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/modules/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/modules/TestCModules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/inlines/TestRedefinitionsInInlines.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/inlines/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/vla/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/vla/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/vla/TestVLA.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/TestFindStructTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/find_struct_type/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/struct_types/TestStructTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/TestConstVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/functions.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/const_variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/TestBitfields.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/bitfields/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/array_types/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/array_types/TestArrayTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/array_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/array_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/typedef/Testtypedef.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/typedef/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/typedef/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/blocks/TestBlocks.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/blocks/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/blocks/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/recurse/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/recurse/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/TestAnonymous.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/anonymous/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/step-target/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/step-target/TestStepTarget.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/step-target/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/step-target/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/TestEnumTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/enum_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/TestConflictingSymbol.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/OneConstant.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/One/One.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/Two.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/conflicting-symbol/Two/TwoConstant.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/TestSharedLib.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/shared_lib/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/set_values/TestSetValues.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/set_values/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/set_values/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/strings/TestCStrings.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/strings/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/c/strings/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/TestCppChainedCalls.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/chained-calls/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestStdCXXDisassembly.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/TestSTL.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/stl/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/TestVirtual.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/length.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns3.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespace.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/TestNamespaceLookup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace/ns.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/derived.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/base.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/TestWithLimitDebugInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/limit-debug-info/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/TestUnsignedTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unsigned_types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/TestSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/symbols/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestCppValueCast.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/pass-to-base.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/TestDynamicValue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value/sbvalue-cast.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/TestNamespaceDefinitions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/b.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_definitions/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/TestGModules.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/memory.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/module.modulemap
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/a.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules-templates/b.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/TestUnicodeLiterals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unicode-literals/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/TestLambdas.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/lambdas/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/TestConstThis.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/const_this/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/char1632_t/TestChar1632T.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/TestCppNsImport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/nsimport/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/TestVirtualOverload.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/virtual-overload/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/TestSignedTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/signed_types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/TestFrameVariableAnonymousUnions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/frame-var-anon-unions/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/printf/TestPrintf.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/printf/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/TestRvalueReferences.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/rvalue-references/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/TestUniqueTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/unique-types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/TestLLVMStyle.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/llvm-style/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/TestInlines.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/inlines/inlines.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/TestCPPBool.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/bool/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class-template-parameter-pack/TestClassTemplateParameterPack.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/std-function-step-into-callable/TestStdFunctionStepIntoCallable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/TestMembersAndLocalsWithSameName.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/member-and-local-vars-with-same-name/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/exceptions.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/TestCPPExceptionBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/exceptions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/TestCxxWCharT.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/wchar_t/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypesDisassembly.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/TestClassTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/TestDiamond.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/diamond/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/TestOperatorOverload.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/operator-overload/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/TestCppTypeLookup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/type_lookup/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/TestCPPStaticMethods.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_methods/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/this/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/this/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/this/TestCPPThis.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/TestCppGlobalOperators.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/global_operators/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/TestStaticVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/class_static/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/static_members/TestCPPStaticMembers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/dynamic-value-same-basename/TestDynamicValueSameBase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/TestOverloadedFunctions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/overloaded-functions/static-b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/TestExternCSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/extern_c/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/TestTrivialABI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/trivial_abi/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/TestCPPAuto.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/auto/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/TestWithModuleDebugging.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/pch.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/gmodules/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/TestCallCPPFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/call-function/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/TestNamespaceConflicts.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/namespace_conflicts/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/TestCppScope.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/scope/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/TestCPP11EnumTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/enum_types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/template/TestTemplateArgs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/template/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/template/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/nested.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/breakpoint-commands/TestCPPBreakpointCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/TestFunctionTemplateParameterPack.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/cpp/function-template-parameter-pack/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/mixed/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/mixed/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/mixed/TestMixedLanguages.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/mixed/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/sample/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/objcxx-ivar-vector/TestIvarVector.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/myobject.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/lang/objcxx/class-name-clash/TestNameClash.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/listeners/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/listeners/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/listeners/TestListener.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/multi-process-driver.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/TestMultipleDebuggers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/testprog.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-debuggers/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/main.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/check_public_api_headers/TestPublicAPIHeaders.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_process_state.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/inferior.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_event_description.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/TestMultithreaded.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_breakpoint_callback.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/test_listener_resume.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/common.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/driver.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multithreaded/listener_test.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-targets/TestMultipleTargets.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-targets/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/api/multiple-targets/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/attic/dotest.pl
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/attic/tester.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/help/TestHelp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/help/TestApropos.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/terminal/TestSTTYBeforeAndAfter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/TestBreakpointIt.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-it/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/TestEmulations.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-12-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-8-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-17-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-9-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-25-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-13-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-10-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-9-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-11-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-8-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-6-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strbt-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-26-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-16-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-11-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-8-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-18-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-12-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-7-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-9-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpush-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-moveq-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-23-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-8-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-movs-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-22-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-21-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrsh-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-14-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-9-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-20-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strt-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-7-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-10-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-27-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-4-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-9-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-bic-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-28-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-10-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-7-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-6-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-11-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-6-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrh-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-5-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-24-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-29-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-2-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldrd-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldmia-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strb-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-sub-10-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-12-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-10-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-str-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-pop-2-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-15-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-strd-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-5-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-push-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-1-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-ldr-4-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-19-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-add-8-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-31-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-subs-3-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mov-30-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-vpop-1-thumb.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/emulation/new-test-files/test-mvn-3-arm.dat
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/TestBreakpointThumbCodesection.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/arm/breakpoint-thumb-codesection/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/warnings/uuid/main.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/warnings/uuid/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/warnings/uuid/TestAddDsymCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/android/platform/TestDefaultCacheLineSize.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/android/platform/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/android/platform/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/README.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/process_control.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/test/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/test/test_process_control.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/test_runner/test/inferior.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExitCode.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/gdbremote_testcase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestAppleSimulatorOSType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteRegisterState.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/.clang-format
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteExpeditedRegisters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAuxvSupport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_vCont.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteHostInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestLldbGdbServer.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteAttach.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteGPacket.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/socket_packet_pump.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteKill.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/lldbgdbserverutils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemote_qThreadStopInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteThreadsInStopReply.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteProcessInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteSingleStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/TestGdbRemoteModuleInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/TestPlatformProcessConnect.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/platform-process-connect/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteSegFault.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/TestGdbRemoteAbort.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/inferior-crash/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubReverseConnect.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/commandline/TestStubSetSID.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/TestGdbRemoteThreadName.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/thread-name/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/TestGdbRemote_QPassSignals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/signal-filtering/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-server/test/test_lldbgdbserverutils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/TestMiEnvironmentCd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/lldbmi_testcase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/TestMiFile.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/TestMiPrompt.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/TestMiLibraryLoaded.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/target/test_attach.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/target/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/target/TestMiTarget.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/lexical_scope/TestMiLexicalScope.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/lexical_scope/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/lexical_scope/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiInterpreterExec.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/TestMiCliSupport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/interpreter/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/data/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/data/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/data/TestMiData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/TestMiBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/breakpoint/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/variable/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/variable/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiGdbSetShowPrint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/variable/TestMiVar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/stack/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/stack/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/stack/TestMiStack.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/signal/TestMiSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/signal/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/signal/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/TestMiExec.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/control/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/start_script_exit
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/start_script_error
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/start_script
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/TestMiStartupOptions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/startup_options/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/threadinfo/test_threadinfo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/threadinfo/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/threadinfo/TestMiThreadInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/TestMiSyntax.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-mi/syntax/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/vscode.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/lldbvscode_testcase.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setFunctionBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/TestVSCode_setExceptionBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/breakpoint/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/TestVSCode_variables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/variables/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/TestVSCode_step.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/launch/TestVSCode_launch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/attach/TestVSCode_attach.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/TestVSCode_stackTrace.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/tools/lldb-vscode/stackTrace/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/logging/TestLogging.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/logging/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/logging/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/signals/TestSignalsAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/signals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/signals/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/event/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/event/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/target/TestTargetAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/target/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/target/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/thread/TestThreadAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/thread/main2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/thread/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/thread/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/debugger/TestDebuggerAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbtype_typeclass/TestSBTypeTypeClass.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/TestFrames.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/TestInlinedFrame.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/inlines/inlines.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/TestGetVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/frame/get-variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/interpreter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/interpreter/TestCommandInterpreterAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/interpreter/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbdata/TestSBData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbdata/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbdata/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestDisasmAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/function_symbol/TestSymbolAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/TestValueAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/TestChangeValueAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/change_values/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/TestValueAPIEmptyClass.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/empty_class/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/TestValueAPILinkedList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value/linked_list/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/TestBreakpointAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/breakpoint/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/TestSymbolContext.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file1.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/decls.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/file2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/TestSBFrameFindValue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/findvalue_duplist/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbstructureddata/TestStructuredDataAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sblaunchinfo/TestSBLaunchInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/TestSBValueConstAddrOf.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_const_addrof/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/objc_type/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/objc_type/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/objc_type/TestObjCType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/section/TestSectionAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/section/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/section/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/TestNameLookup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/name_lookup/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/Test-rdar-12481949.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/rdar-12481949/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/TestProcessAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/io/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/io/TestProcessIO.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/io/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/process/read-mem-cstring/TestReadMemCString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/TestModuleAndSection.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/c.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/module_section/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/hello_world/TestHelloWorld.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/hello_world/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/hello_world/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_section.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_address.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_lineentry.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_compileunit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_broadcaster.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_error.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_thread.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_function.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointlocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_debugger.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instructionlist.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_instruction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_type.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_stringlist.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_listener.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_value.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_watchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbol.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_target.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_breakpointname.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_communication.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process_info.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_frame.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_process.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_valuelist.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_symbolcontext.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_filespec.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_module.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_event.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/TestDefaultConstructorForAPIObjects.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/default-constructor/sb_block.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/formatters/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/formatters/synth.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/formatters/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/formatters/TestFormattersSBAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/TestExprPathSynthetic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/exprpath_synthetic/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestSetWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/TestWatchpointIgnoreCount.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestSetWatchlocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/watchlocation/TestTargetWatchAddress.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/TestWatchpointConditionAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/watchpoint/condition/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/class_members/TestSBTypeClassMembers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/class_members/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/class_members/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/value_var_update/TestValueVarUpdate.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/TestSBValuePersist.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/sbvalue_persist/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/type/TestTypeList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/type/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/type/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/frame/TestFrameUtils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestRegistersIterator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/TestLLDBIterator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/iter/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/TestPrintStackTraces.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/lldbutil/process/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassembleRawData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/disassemble-raw-data/TestDisassemble_VST1_64.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/python_api/file_handle/TestFileHandle.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/TestCreateDuringInstructionStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/thread/create_during_instruction_step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/add-symbols/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/add-symbols/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/add-symbols/TestTargetSymbolsAddCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/TestTargetSymbolsSepDebugSymlink.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/sepdebugsymlink/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/b.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/mix-dwo-and-regular-objects/TestMixedDwarfBinary.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/TestBuiltinTrap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/linux/builtin_trap/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/source-manager/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/source-manager/TestSourceManager.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/source-manager/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/source-manager/hidden/.keep
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/sample_test/TestSampleTest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/sample_test/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/sample_test/TestSampleInlineTest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/sample_test/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var/TestFrameVar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/completion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/completion/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/completion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/secondprog.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/exec/TestExec.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/TestLongjmp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/longjmp/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/TestCreateDuringStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_during_step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/TestCreateAfterAttach.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/create_after_attach/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/other.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/TestThreadJump.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/jump/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/TestNumThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/num_threads/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/TestExitDuringBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_break/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/TestThreadExit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_exit/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/TestThreadSpecificBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/TestBacktraceLimit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_limit/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/TestThreadStates.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/state/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/TestExitDuringStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/exit_during_step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/ParallelTask.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/backtrace_all/TestBacktraceAll.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/TestMultipleBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/multi_break/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/TestThreadStepOut.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_out/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/TestBreakAfterJoin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/break_after_join/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/step_until/TestStepUntil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/TestCrashDuringStep.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/crash_during_step/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneDelayBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointDelayBreakpointOneSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayWatchBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreakDelay.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatchBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentNWatchNBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointDelayWatchpointOneBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointsDelayedBreakpointOneWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalWatch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelayedCrashWithBreakpointWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentBreakpointOneDelayBreakpointThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchpointWithDelayWatchpointThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalDelayWatch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentSignalNWatchNBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoWatchpointsOneBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentWatchBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManySignals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentDelaySignalWatch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentCrashWithWatchpointBreakpointSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyWatchpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentTwoBreakpointsOneDelaySignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/concurrent_events/TestConcurrentManyCrash.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/TestThreadSpecificBpPlusCondition.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/thread/thread_specific_break_plus_condition/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestMemoryHistory.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/asan/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/asan/TestReportData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/asan/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/TestNoreturnUnwind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/a.s
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/TestNoReturnModuleEnd.py
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/noreturn/module-end/test.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/ehframe/TestEhFrameUnwind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/TestSigtrampUnwind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/sigtramp/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/TestStandardUnwind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/divmod.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/new_delete.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/unwind/standard/hand_written/fprintf.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/show_location/TestShowLocationDwarf5.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/show_location/a.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/conditional_break.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/TestConditionalBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/.lldb
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/conditional_break/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/TestDeletedExecutable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/deleted-executable/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformPython.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/TestWrongCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/wrong_commands/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/history/TestHistoryRecall.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/user-expression/TestUbsanUserExpression.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/TestUbsanBasic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ubsan/basic/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/without-debug.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/TestStepNoDebug.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step-avoids-no-debug/with-debug.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/operating_system2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/python_os_plugin/TestPythonOSPlugin.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/TestPluginCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/plugins/commands/plugin.cpp.template
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/mtc/simple/TestMTCSimple.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_regex/TestCommandRegex.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_regex/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/avoids-fd-leak/TestFdLeak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/print_env.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/input-file.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/TestProcessLaunch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_launch/print_cwd.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats/TestStats.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nosucharch/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nosucharch/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nosucharch/TestNoSuchArch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/TestInlineStepping.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inline-stepping/calling.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_group/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_group/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_group/TestChangeProcessGroup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/TestTsanThreadNumbers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_numbers/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/multiple/TestTsanMultiple.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/TestTsanThreadLeak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/thread_leak/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/TestTsanCPPGlobalLocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/cpp_global_location/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/TestTsanGlobalLocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/global_location/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/TestTsanBasic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tsan/basic/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/testid/TestTestId.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/alias/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/rerun/TestRerun.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/rerun/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/rerun/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/source-map/TestTargetSourceMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/source-map/a.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/TestDeadStrip.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dead-strip/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/TestMPXRegisters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/mpx_bound_violation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/mpx_bound_violation/TestBoundViolation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_xtended_registers/mpx_bound_violation/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/register_command/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/register_command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/register_command/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/register_command/TestRegisters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_avx/TestYMMRegister.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_avx/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_avx/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/register/intel_avx/TestZMMRegister.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/TestMoveNearest.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/move_nearest/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/TestBreakpointHitCount.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_hit_count/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/TestObjCBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/objc/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/TestBreakpointOptions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_options/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestRegexpBreakCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/TestBreakpointCommandsFromPython.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/side_effect.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/b.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_command/bktptcmd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/TestBreakpointAutoContinue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/auto_continue/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/TestCPPBreakpointLocations.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ignore_count/TestBreakpointIgnoreCount.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/TestSourceRegexBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/source_regexp/a.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/TestAvoidBreakpointInDelaySlot.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_in_delayslot/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/TestBreakpointConditions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_conditions/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/dummy_target_breakpoints/TestBreakpointsWithNoTargets.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/TestBreakpointNames.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_names/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/TestCompDirSymLink.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/comp_dir_symlink/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/TestConsecutiveBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/consecutive_breakpoints/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/TestInlinedBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/basic_type.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/inlined_breakpoints/int.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/TestBreakpointIDs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_ids/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/debugbreak/TestDebugBreak.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/TestRequireHWBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/require_hw_breakpoints/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/TestBreakpointSetRestart.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_set_restart/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/TestBreakpointByLineAndColumn.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_by_line_and_column/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/TestBreakpointLocations.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_locations/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/TestBreakpointInGlobalConstructor.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/global_constructor/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/TestHWBreakMultiThread.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/hardware_breakpoints/hardware_breakpoint_on_multiple_threads/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/TestBreakpointLanguage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/breakpoint_language/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/TestStepOverBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/step_over_breakpoint/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestBadAddressBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/address_breakpoints/TestAddressBreakpoints.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/TestScriptedResolver.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/scripted_bkpt/resolver.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/TestCPPExceptionBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/cpp_exception/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/TestBreakpointSerialization.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/breakpoint/serialize/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/recursion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/recursion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/recursion/TestValueObjectRecursion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/debug/TestDarwinLogSourceDebug.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/TestDarwinLogSourceInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/source/info/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/common/darwin_log_common.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/TestDarwinLogMessageFormat.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/format/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/TestDarwinLogFilterMatchCategory.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/category/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/TestDarwinLogFilterMatchActivityChain.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity-chain/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/TestDarwinLogFilterMatchSubsystem.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/subsystem/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/TestDarwinLogFilterMatchActivity.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/activity/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/exact_match/message/TestDarwinLogFilterMatchMessage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/TestDarwinLogFilterRegexCategory.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/category/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/TestDarwinLogFilterRegexActivityChain.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity-chain/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/subsystem/TestDarwinLogFilterRegexSubsystem.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/activity/TestDarwinLogFilterRegexActivity.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/TestDarwinLogFilterRegexMessage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/filter/regex/message/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/TestDarwinLogBasic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/darwin_log/basic/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/TestTypeCompletion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_completion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nested_alias/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nested_alias/TestNestedAlias.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/nested_alias/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_alias/TestCommandScriptAlias.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_alias/tcsacmd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_alias/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var_scope/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var_scope/TestFrameVariableScope.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame_var_scope/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-recognizer/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-recognizer/recognizer.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-recognizer/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-recognizer/TestFrameRecognizer.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/TestSendSignal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/raise/TestRaise.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/TestHandleSegv.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/signal/handle-segv/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/TestCommandScriptImmediateOutput.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script_immediate_output/custom_command.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.ll
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_var/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_var/TestTargetVar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_var/globals.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/TestLoadUsingPaths.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/d.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_using_paths/hidden/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/TestInferiorAssert.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-assert/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/virtual-method-call/TestDiagnoseDereferenceVirtualMethodCall.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/virtual-method-call/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/virtual-method-call/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-function-return/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-function-return/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-function-return/TestDiagnoseDereferenceFunctionReturn.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/complicated-expression/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/complicated-expression/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/complicated-expression/TestComplicatedExpression.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-this/TestDiagnoseDereferenceThis.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-this/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-this/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/inheritance/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/inheritance/TestDiagnoseInheritance.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/inheritance/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/local-variable/TestLocalVariable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/local-variable/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/local-variable/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/array/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/array/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/array/TestArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/bad-reference/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/bad-reference/TestBadReference.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/bad-reference/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-argument/TestDiagnoseDereferenceArgument.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-argument/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-diagnose/dereference-argument/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/format/TestFormats.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/format/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/format/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/TestImageListMultiArchitecture.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch4-kcc-36
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-netbsd-6.1-x86_64-gcc-4.5.3
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-gcc-4.7.3
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-unknown-kalimba_arch5-kcc-39
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-clang-3.5pre
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-freebsd-10.0-x86_64-clang-3.3
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/object-file/bin/hello-ubuntu-14.04-x86_64-gcc-4.8.2
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestNoWatchpointSupportInfo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestArmRegisterDefinition.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/operating_system.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteClient.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestStopPCs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestRestartBug.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/a.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestGDBRemoteLoad.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/gdbclientutils.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestTargetXMLArch.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/gdb_remote_client/TestThreadSelectionBug.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/TestMemoryRegion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory-region/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/TestStatisticsAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/stats_api/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/TestPreRunDylibs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/foo.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/pre_run_dylibs/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/TestBSDArchives.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/b.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/archives/README
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/foo bar
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file4.txy
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/TestLaunchWithShellExpand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file5.tyx
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file2.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file3.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/launch_with_shellexpand/file1.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/jitloader_gdb/TestJITLoaderGDB.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/set-data/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/set-data/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/set-data/TestSetData.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/ptr_refs/TestPtrRefs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/TestTargetCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/c.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/b.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_command/globals.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-entry-bp/TestExprEntryBP.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-entry-bp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-entry-bp/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_history/TestCommandHistory.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_history/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/TestStepScripted.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Steps.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/step_scripted/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/TestMemoryFind.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/find/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/cache/TestMemoryCache.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/TestMemoryRead.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/memory/read/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/type_lookup/TestTypeLookup.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/paths/TestPaths.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/TestIndexVariable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/non-overlapping-index-variable-i/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tty/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tty/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tty/TestTerminal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/pass-to-base.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/dynamic_value_child_count/TestDynamicValueChildCount.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/welcome.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/py_import
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/mysto.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/bug11569.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/TestCommandScript.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/decorated.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/TestImport.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/dummymodule.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/foo/foo2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/foo/foo.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/foo/bar/foobar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/bar/barutil.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/bar/bar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/TPunitB.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/TPunitA.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/thepackage/__init__.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/rdar-12586188/fail212586188.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/rdar-12586188/fail12586188.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/rdar-12586188/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_script/import/rdar-12586188/TestRdar12586188.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/b.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/c.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/d.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/TestLoadUnload.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/a.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/d.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/b.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/c.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/d.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/load_unload/hidden/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/TestFormattersBoolRefPtr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/boolreference/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/TestFormattersOsType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ostypeformatting/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/TestDataFormatterStdUniquePtr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/TestDataFormatterInvalidStdUniquePtr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/unique_ptr/invalid/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/TestDataFormatterStdSmartPtr.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/smart_ptr/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vector/TestDataFormatterStdVector.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/TestDataFormatterStdIterator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/iterator/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/TestDataFormatterStdMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/map/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/TestDataFormatterStdList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/list/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/TestDataFormatterStdVBool.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/vbool/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/TestDataFormatterStdTuple.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/tuple/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/TestDataFormatterStdString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libstdcpp/string/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/TestLibCxxFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/function/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/TestDataFormatterUnordered.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/unordered/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/TestDataFormatterLibcxxBitset.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/bitset/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/TestDataFormatterLibcxxVector.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vector/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/TestDataFormatterLibcxxForwardList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/forward_list/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/TestDataFormatterLibcxxMultiSet.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multiset/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/TestDataFormatterLibccIterator.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/iterator/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/set/TestDataFormatterLibcxxSet.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/TestDataFormatterLibcxxOptional.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/optional/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/TestDataFormatterLibcxxQueue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/queue/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/TestDataFormatterLibccMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/map/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/TestDataFormatterLibcxxList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/TestDataFormatterLibcxxListLoop.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/list/loop/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/TestLibCxxAtomic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/atomic/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/TestDataFormatterLibcxxVBool.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/vbool/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/TestDataFormatterLibcxxString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/string/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/TestDataFormatterLibcxxVariant.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/variant/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/TestInitializerList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/initializerlist/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/TestDataFormatterLibccMultiMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/multimap/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/TestDataFormatterSynthType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/myIntSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthtype/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/TestPyObjSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/provider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/pyobjsynthprovider/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/TestTypeSummaryListScript.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/tslsformatters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_script/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/TestDataFormatterLanguageCategoryUpdates.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/language_category_updates/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthupdate/TestSyntheticFilterRecompute.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/TestVectorTypesFormatting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/vector-types/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/format-propagation/TestFormatPropagation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/TestFrameFormatSmallStruct.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/frameformat_smallstruct/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/TestDataFormatterPythonSynth.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/fooSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/ftsp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-python-synth/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/TestDataFormatterGlobals.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-globals/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/TestSyntheticCapping.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/fooSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/synthcapping/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/TestPrintObjectArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/poarray/main.mm
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/TestStringPrinter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/stringprinter/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/TestVarInAggregateMisuse.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/var-in-aggregate-misuse/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-named-summaries/TestDataFormatterNamedSummaries.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/TestDataFormatterSkipSummary.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-skip-summary/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/TestDataFormatterAdv.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-advanced/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/helperfunc.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/varscript_formatting/TestDataFormatterVarScriptFormatting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-proper-plurals/TestFormattersOneIsSingular.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/TestDataFormatterDisabling.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-disabling/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/type_summary_list_arg/TestTypeSummaryListArg.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/TestPtrRef2Typedef.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/ptr_ref_typedef/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/setvaluefromcstring/TestSetValueFromCString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/TestDataFormatterCategories.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-categories/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synth/TestDataFormatterSynth.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/refpointer-recursion/TestDataFormatterRefPtrRecursion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/TestDataFormatterSynthVal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/myIntSynthProvider.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-synthval/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Test-rdar-9974002.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/summary-string-onfail/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsarraysynth/TestNSArraySynthetic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/TestCompactVectors.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/compactvectors/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/TestUserFormatVsSummary.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/user-format-vs-summary/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/TestDataFormatterEnumFormat.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-enum-format/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/TestDataFormatterSmartArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-smart-array/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nsdictionarysynth/TestNSDictionarySynthetic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/TestTypedefArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/typedef_array/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/TestPrintArray.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/parray/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/TestDataFormatterScript.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-script/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/TestPtrToArrayFormatting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-ptr-to-array/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/TestNSSetSynthetic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/nssetsynth/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/TestDataFormatterCpp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-cpp/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/TestDumpDynamic.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/dump_dynamic/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/TestDataFormatterObjC.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/TestDataFormatterNSString.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsstring/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/data-formatter-objc/nsindexpath/TestDataFormatterNSIndexPath.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/data-formatter/hexcaps/TestDataFormatterHexCaps.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/backticks/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/backticks/TestBackticksWithoutATarget.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/disassembly/TestDisassembleBreakpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/disassembly/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/disassembly/TestFrameDisassemble.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/disassembly/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/TestProcessAttach.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/attach_denied/TestAttachDenied.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/attach_denied/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/attach_denied/entitlements.plist
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_attach/attach_denied/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/multidebugger_commands/TestMultipleDebuggersCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/other.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/TestGuessLanguage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/somefunc.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/other-2.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/frame-language/other.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestCommonShortSpellings.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/abbreviation/TestAbbreviations.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/return-value/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/return-value/TestReturnValue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/return-value/call-func.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/TestInferiorCrashing.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/TestRecursiveInferior.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-crashing/recursive-inferior/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/TestFatArchives.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/fat_archives/a.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/TestStepOverWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/step_over_watchpoint/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/TestWatchLocation.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchlocation/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/TestMultipleHits.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_hits/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multi_watchpoint_slots/TestWatchpointMultipleSlots.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multi_watchpoint_slots/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multi_watchpoint_slots/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_size/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_size/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_size/TestWatchpointSizes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_disable/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_disable/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_disable/TestWatchpointDisable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/multiple_threads/TestWatchpointMultipleThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/TestWatchpointCommands.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandPython.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/TestWatchpointCommandLLDB.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/watchpoint_command.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/command/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_commands/condition/TestWatchpointConditionCmd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchpoint/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchpoint/TestMyFirstWatchpoint.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/hello_watchpoint/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_on_vectors/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_on_vectors/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_on_vectors/TestValueOfVectorVariable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_set_command/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_set_command/TestWatchpointSetErrorCases.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_set_command/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_set_command/TestWatchLocationWithWatchSet.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/variable_out_of_scope/TestWatchedVarHitWhenInScope.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/variable_out_of_scope/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/variable_out_of_scope/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/watchpoint/watchpoint_events/TestWatchpointEvents.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/process_save_core/TestProcessSaveCore.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/TestDisambiguateTailCallSeq.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_tail_call_seq/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/TestSteppingOutWithArtificialFrames.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_or_return/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/TestTailCallFrameSBAPI.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/sbapi_support/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/TestAmbiguousTailCallSeq2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq2/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/TestDisambiguateCallSite.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_call_site/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/unambiguous_sequence/TestUnambiguousTailCalls.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/disambiguate_paths_to_common_sink/TestDisambiguatePathsToCommonSink.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/TestInliningAndTailCalls.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/inlining_and_tail_calls/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/TestAmbiguousTailCallSeq1.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/ambiguous_tail_call_seq1/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/TestArtificialFrameStepOutMessage.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/tail_call_frames/thread_step_out_message/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-doesnt-deadlock/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-doesnt-deadlock/locking.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-doesnt-deadlock/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/expr-doesnt-deadlock/TestExprDoesntBlock.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/TestCommandSource.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/my.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/.lldb
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/command_source/commands.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/value_md5_crash/TestValueMD5Crash.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main2.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/inferior-changed/TestInferiorChanged.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/apropos_with_process/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/apropos_with_process/TestAproposWithProcess.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/apropos_with_process/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/attach_resume/TestAttachResume.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/TestWow64MiniDump.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz_wow64.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/wow64_minidump/fizzbuzz.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/operating_system.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/test.core.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/mach-core/TestMachCore.py
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.c
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_i386.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabi64.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.out
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-fpr_sse_x86_64.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mips64el-gnuabin32.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/main.c
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-i386.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-ppc64le.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/make-core.sh
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-s390x.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/fpr_sse.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/TestLinuxCore.py
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-mipsel-gnuabio32.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/altmain.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/linux-x86_64.out
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.mk
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-i386.core
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/linux-x86_64.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/TestLinuxCoreThreads.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/thread_crash/make-core.sh
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.mk
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-i386.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/TestGCore.py
    I src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/linux-x86_64.core
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/elf-core/gcore/make-core.sh
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz_no_heap.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/TestMiniDump.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/fizzbuzz.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/regions-linux-map.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-linux.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm64-macos.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64_not_crashed.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/TestMiniDumpNew.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/arm-macos.dmp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/install_breakpad.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/linux-x86_64
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/postmortem/minidump-new/makefile.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/a.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/a.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/functionalities/target_create_deps/TestTargetCreateDeps.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/TestSettings.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/quoting/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/settings/quoting/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/other.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/TestExprCompletion.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/.categories
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/completion/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9531204/TestPrintfAfterUp.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9531204/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9531204/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/anonymous-struct/TestCallUserAnonTypedef.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/anonymous-struct/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/anonymous-struct/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/char/TestExprsChar.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/char/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/char/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_types/TestNestedPersistentTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_types/TestPersistentTypes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_types/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_types/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/xvalue/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/xvalue/TestXValuePrinting.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/xvalue/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-overridden-method/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-overridden-method/TestCallOverriddenMethod.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-overridden-method/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/test.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/TestTopLevelExprs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.mk
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/dummy.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/top-level/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/calculator_mode/TestCalculatorMode.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/TestExprsBug35310.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/pr35310/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Test128BitsInteger.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar44436068/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter-phi-nodes/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter-phi-nodes/TestIRInterpreterPHINodes.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter-phi-nodes/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persist_objc_pointeetype/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persist_objc_pointeetype/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persist_objc_pointeetype/TestPersistObjCPointeeType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/unwind_expression/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/unwind_expression/TestUnwindExpression.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/unwind_expression/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/expr-in-syscall/TestExpressionInSyscall.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/expr-in-syscall/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/expr-in-syscall/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/lotta-signals.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/TestCallThatRestarts.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-restarts/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_8638051/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_8638051/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_8638051/Test8638051.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/po_verbosity/TestPoVerbosity.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/po_verbosity/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/po_verbosity/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/two-files/TestObjCTypeQueryFromOtherCompileUnit.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/two-files/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/two-files/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/two-files/foo.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_variables/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_variables/TestPersistentVariables.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_variables/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-throws/call-throws.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-throws/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-throws/TestCallThatThrows.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/macro1.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/TestMacros.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/macro2.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/macros/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9673664/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9673664/TestExprHelpExamples.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_9673664/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/test/TestExprs2.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/test/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/test/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/TestScopedEnumType.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/radar_43822994/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/ir-interpreter/TestIRInterpreter.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/dont_allow_jit/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/dont_allow_jit/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/dont_allow_jit/TestAllowJIT.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/formatters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/TestFormatters.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/foosynth.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/formatters/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/timeout/wait-a-while.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/timeout/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/timeout/TestCallWithTimeout.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallUserDefinedFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallStdStringFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallBuiltinFunction.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/TestCallStopAndContinue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/call-function/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/fixits/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/fixits/TestFixIts.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/fixits/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/issue_11588/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/issue_11588/Test11588.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/issue_11588/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/issue_11588/s11588.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar42038760/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar42038760/TestScalarURem.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/rdar42038760/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_ptr_update/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_ptr_update/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/persistent_ptr_update/TestPersistentPtrUpdate.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/save_jit_objects/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/save_jit_objects/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/save_jit_objects/TestSaveJITObjects.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/options/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/options/foo.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/options/TestExprOptions.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/expression_command/options/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/stepping/TestSteppingSpeed.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/TestBenchmarkLibcxxMap.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxmap/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/frame_variable/TestFrameVariableResponse.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/startup/TestStartupDelays.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/turnaround/TestCompileRunToBreakpointTurnaround.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestRepeatedExprs.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/expression/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/expression/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/expression/TestExpressionCmd.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/continue/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/continue/TestBenchmarkContinue.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/continue/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/TestBenchmarkLibcxxList.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/benchmarks/libcxxlist/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/inline_rerun_inferior.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFileLevelTimeout.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestFail.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/rerun_base.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/disable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestSignalOutsideTestMethod.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestSignal.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestExpectedTimeout.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunFail.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/enable.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunInline.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/README.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestRerunTimeout.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestInvalidDecorator.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/issue_verification/TestTimeout.py.park
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/load-kext/mykext.yaml
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/load-kext/TestLoadKext.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/indirect.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/TestIndirectSymbols.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/alias.list
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/indirect_symbol/reexport.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/cmds.txt
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/order-file
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/order/TestOrderFile.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/universal/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/universal/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/universal/TestUniversal.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/TestDeepBundle.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/Info.plist
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/MyFramework.h
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/deep-bundle/myframework.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/bundle.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/TestBundleWithDotInFilename.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-dsym/bundle-with-dot-in-filename/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/TestDuplicateMembers.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/duplicate-archive-members/sub1/a.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/nslog/main.m
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/nslog/TestDarwinNSLogOutput.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/nslog/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/TestSafeFuncCalls.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/safe-to-func-call/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/thread-names/TestInterruptThreadNames.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/thread-names/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/thread-names/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/function-starts/TestFunctionStarts.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/function-starts/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/function-starts/main.cpp
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestFindAppInBundle.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Info.plist
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/MacOS/.empty
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/find-app-in-bundle/TestApp.app/Contents/Resources/.empty
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/TestAddDsymMidExecutionCommand.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/add-dsym/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/queues/TestQueues.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/queues/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/macosx/queues/main.c
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/driver/batch_mode/TestBatchMode.py
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/driver/batch_mode/Makefile
    U src/gnu/llvm/tools/lldb/packages/Python/lldbsuite/test/driver/batch_mode/main.c
    U src/gnu/llvm/tools/lldb/source/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/lldb.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/IRInterpreter.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/DiagnosticManager.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/LLVMUserExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/ExpressionVariable.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/UserExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/Materializer.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Expression/IRDynamicChecks.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/IRMemoryMap.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/REPL.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/IRExecutionUnit.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/FunctionCaller.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/Expression.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/UtilityFunction.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/ExpressionSourceCode.cpp
    U src/gnu/llvm/tools/lldb/source/Expression/DWARFExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ARM64_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/DataEncoder.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/JSON.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ConstString.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ARM_ehframe_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/Logging.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Broadcaster.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/UuidCompatibility.h
    U src/gnu/llvm/tools/lldb/source/Utility/ARM64_ehframe_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/SelectHelper.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/PPC64_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/DataBufferLLVM.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Stream.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Event.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/IOObject.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StringList.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Listener.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/PPC64LE_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/PPC64LE_ehframe_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/VASprintf.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StreamGDBRemote.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/LLDBAssert.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/DataExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Reproducer.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StructuredData.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/UUID.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StringExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Utility/FileSpec.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StreamCallback.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Scalar.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Args.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Timer.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ArchSpec.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Status.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StringLexer.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/UriParser.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/UserID.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Baton.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/NameMatches.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StringExtractorGDBRemote.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/VMRange.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/StreamString.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/State.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/SharingPtr.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Log.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/RegisterValue.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/RegularExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/Connection.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/TildeExpressionResolver.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/CompletionRequest.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/ARM_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/source/Utility/Environment.cpp
    U src/gnu/llvm/tools/lldb/source/Utility/DataBufferHeap.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeSummary.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeCategory.cpp
    U src/gnu/llvm/tools/lldb/source/API/liblldb-private.exports
    U src/gnu/llvm/tools/lldb/source/API/SBFunction.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSection.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBUnixSignals.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBEvent.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBHostOS.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBFrame.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBThreadPlan.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpointName.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBCommunication.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBWatchpoint.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBExecutionContext.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBProcessInfo.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBLanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBDeclaration.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeFormat.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeEnumMember.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeSynthetic.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpointOptionCommon.h
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpointLocation.cpp
    U src/gnu/llvm/tools/lldb/source/API/SystemInitializerFull.h
    U src/gnu/llvm/tools/lldb/source/API/SBType.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeFilter.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBLaunchInfo.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBProcess.cpp
    U src/gnu/llvm/tools/lldb/source/API/SystemInitializerFull.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBAddress.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBInitializerOptions.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSymbolContextList.cpp
    U src/gnu/llvm/tools/lldb/source/API/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/API/SBSymbol.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTrace.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBData.cpp
    U src/gnu/llvm/tools/lldb/source/API/liblldb.exports
    U src/gnu/llvm/tools/lldb/source/API/SBStringList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBlock.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBStream.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBroadcaster.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBThread.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBCompileUnit.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBLineEntry.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBModuleSpec.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBVariablesOptions.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBModule.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBThreadCollection.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTypeNameSpecifier.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBExpressionOptions.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBInstruction.cpp
    U src/gnu/llvm/tools/lldb/source/API/liblldb.xcode.exports
    U src/gnu/llvm/tools/lldb/source/API/SBValue.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBFileSpecList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBMemoryRegionInfoList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBInstructionList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBListener.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBCommandInterpreter.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBQueueItem.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSourceManager.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBPlatform.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBCommandReturnObject.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBFileSpec.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBStructuredData.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTraceOptions.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBValueList.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBDebugger.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBAttachInfo.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBQueue.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBTarget.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBSymbolContext.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBMemoryRegionInfo.cpp
    U src/gnu/llvm/tools/lldb/source/API/SBError.cpp
    U src/gnu/llvm/tools/lldb/source/Initialization/SystemLifetimeManager.cpp
    U src/gnu/llvm/tools/lldb/source/Initialization/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Initialization/SystemInitializerCommon.cpp
    U src/gnu/llvm/tools/lldb/source/Initialization/SystemInitializer.cpp
    U src/gnu/llvm/tools/lldb/source/Core/AddressRange.cpp
    U src/gnu/llvm/tools/lldb/source/Core/UserSettingsController.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectCast.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectConstResultImpl.cpp
    U src/gnu/llvm/tools/lldb/source/Core/SearchFilter.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Section.cpp
    U src/gnu/llvm/tools/lldb/source/Core/AddressResolver.cpp
    U src/gnu/llvm/tools/lldb/source/Core/StreamAsynchronousIO.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ModuleList.cpp
    U src/gnu/llvm/tools/lldb/source/Core/SourceManager.cpp
    U src/gnu/llvm/tools/lldb/source/Core/FileLineResolver.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Disassembler.cpp
    U src/gnu/llvm/tools/lldb/source/Core/PluginManager.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObject.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectVariable.cpp
    U src/gnu/llvm/tools/lldb/source/Core/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Core/Module.cpp
    U src/gnu/llvm/tools/lldb/source/Core/StreamFile.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectRegister.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectChild.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectDynamicValue.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectList.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectSyntheticFilter.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Debugger.cpp
    U src/gnu/llvm/tools/lldb/source/Core/RichManglingContext.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ModuleChild.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Mangled.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Communication.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Opcode.cpp
    U src/gnu/llvm/tools/lldb/source/Core/DumpDataExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectConstResultChild.cpp
    U src/gnu/llvm/tools/lldb/source/Core/DynamicLoader.cpp
    U src/gnu/llvm/tools/lldb/source/Core/EmulateInstruction.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectConstResultCast.cpp
    U src/gnu/llvm/tools/lldb/source/Core/DumpRegisterValue.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectConstResult.cpp
    U src/gnu/llvm/tools/lldb/source/Core/FileSpecList.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Address.cpp
    U src/gnu/llvm/tools/lldb/source/Core/FormatEntity.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Value.cpp
    U src/gnu/llvm/tools/lldb/source/Core/IOHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Core/Highlighter.cpp
    U src/gnu/llvm/tools/lldb/source/Core/AddressResolverFileLine.cpp
    U src/gnu/llvm/tools/lldb/source/Core/ValueObjectMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Core/AddressResolverName.cpp
    U src/gnu/llvm/tools/lldb/source/Host/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Host/netbsd/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/netbsd/HostInfoNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Host/openbsd/HostInfoOpenBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Host/openbsd/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/HostProcessPosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/HostThreadPosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/HostInfoPosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/ConnectionFileDescriptorPosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/DomainSocket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/PipePosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/LockFilePosix.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/FileSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Host/posix/ProcessLauncherPosixFork.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/MainLoop.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/NativeProcessProtocol.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/XML.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/TaskPool.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/NativeRegisterContext.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Symbols.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/TCPSocket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/HostThread.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/OptionParser.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/ThreadLauncher.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Editline.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Terminal.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/UDPSocket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/HostInfoBase.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/LockFileBase.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/FileCache.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/ProcessRunLock.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/PseudoTerminal.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/StringConvert.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/PipeBase.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/File.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/NativeWatchpointList.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/SocketAddress.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/FileSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/HostNativeThreadBase.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/MonitoringProcessLauncher.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/Socket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/HostProcess.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/NativeThreadProtocol.cpp
    U src/gnu/llvm/tools/lldb/source/Host/common/GetOptInc.cpp
    U src/gnu/llvm/tools/lldb/source/Host/android/HostInfoAndroid.cpp
    U src/gnu/llvm/tools/lldb/source/Host/android/LibcGlue.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/ProcessLauncherLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/AbstractSocket.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/HostInfoLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/Support.cpp
    U src/gnu/llvm/tools/lldb/source/Host/linux/LibcGlue.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/ProcessLauncherWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/HostInfoWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/PipeWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/ConnectionGenericFileWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/LockFileWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/ProcessRunLock.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/FileSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/Windows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/HostThreadWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/EditLineWin.cpp
    U src/gnu/llvm/tools/lldb/source/Host/windows/HostProcessWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Host/freebsd/Host.cpp
    U src/gnu/llvm/tools/lldb/source/Host/freebsd/HostInfoFreeBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/Symbols.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCBundle.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableDictionary.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCBundle.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableArray.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCReleaser.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableSet.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCString.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableSet.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCString.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CoreFoundationCPP.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableDictionary.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCMutableArray.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCData.cpp
    U src/gnu/llvm/tools/lldb/source/Host/macosx/cfcpp/CFCData.h
    U src/gnu/llvm/tools/lldb/source/Host/macosx/objcxx/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Host/macosx/objcxx/HostInfoMacOSX.mm
    U src/gnu/llvm/tools/lldb/source/Host/macosx/objcxx/HostThreadMacOSX.mm
    U src/gnu/llvm/tools/lldb/source/Host/macosx/objcxx/Host.mm
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointLocationList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointName.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverAddress.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointLocation.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointSiteList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/WatchpointList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/StoppointCallbackContext.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointID.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Breakpoint/Breakpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointOptions.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileLine.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolver.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointLocationCollection.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointSite.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverName.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/WatchpointOptions.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/Watchpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/Stoppoint.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointIDList.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverScripted.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/BreakpointResolverFileRegex.cpp
    U src/gnu/llvm/tools/lldb/source/Breakpoint/StoppointLocation.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectLog.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectGUI.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectHelp.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectProcess.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectPlatform.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectCommands.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectVersion.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectStats.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectPlugin.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectThread.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectPlatform.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectProcess.h
    U src/gnu/llvm/tools/lldb/source/Commands/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectReproducer.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectMemory.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectExpression.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBugreport.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectCommands.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectType.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectLanguage.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectSettings.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectVersion.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectQuit.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectLog.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectTarget.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectThread.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandCompletions.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectRegister.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectPlugin.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectApropos.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectFrame.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectSource.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectStats.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectGUI.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectTarget.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectMultiword.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectRegister.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectHelp.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectSettings.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectDisassemble.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectQuit.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectApropos.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectType.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectFrame.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBugreport.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectReproducer.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectWatchpoint.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBreakpointCommand.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectSource.cpp
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectWatchpointCommand.h
    U src/gnu/llvm/tools/lldb/source/Commands/CommandObjectBreakpoint.h
    U src/gnu/llvm/tools/lldb/source/Plugins/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/MemoryHistory/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.h
    U src/gnu/llvm/tools/lldb/source/Plugins/MemoryHistory/asan/MemoryHistoryASan.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/ObjectContainerUniversalMachO.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/ObjectContainerUniversalMachO.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectContainer/BSD-Archive/ObjectContainerBSDArchive.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/HexagonDYLDRendezvous.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/DynamicLoaderHexagonDYLD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Windows-DYLD/DynamicLoaderWindowsDYLD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOS.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/AuxVector.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DYLDRendezvous.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/DynamicLoaderPOSIXDYLD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Static/DynamicLoaderStatic.h
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/DynamicLoaderDarwinKernel.h
    U src/gnu/llvm/tools/lldb/source/Plugins/JITLoader/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/JITLoader/GDB/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/JITLoader/GDB/JITLoaderGDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.h
    U src/gnu/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/OperatingSystemPython.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.h
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/x86AssemblyInspectionEngine.h
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/UnwindAssembly/x86/UnwindAssembly-x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/ASan/ASanRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/MainThreadCheckerRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/TSan/TSanRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ArchitecturePPC64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/PPC64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/PPC64/ArchitecturePPC64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Mips/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Mips/ArchitectureMips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Arm/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Architecture/Arm/ArchitectureArm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-freebsd-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-s390x-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/NativeRegisterContextRegisterInfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_powerpc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-ppc64le-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-arm64-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoInterface.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_ppc64le.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwinConstants.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/ARMUtils.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxProcMaps.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/GDBRemoteSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/FreeBSDSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/lldb-mips-linux-register-enums.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextNetBSD_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextThreadMemory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/NetBSDSignals.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/MipsLinuxSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_mips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindLLDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/StopInfoMachException.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/LinuxSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/ThreadMemory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContext_mips.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryUnwind.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMacOSXFrameBackchain.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLinux_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/ARMDefines.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMach_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_ppc64le.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextMemory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_powerpc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/UnwindMacOSXFrameBackchain.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/InstructionUtils.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextOpenBSD_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/InferiorCallPOSIX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextFreeBSD_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterInfoPOSIX_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/HistoryThread.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessMessage.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/CrashReason.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/POSIX/ProcessPOSIXLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_i386.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ThreadKDP.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDP.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_i386.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/ThreadKDP.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/CommunicationKDP.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/MacOSX-Kernel/RegisterContextKDP_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationReplayServer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteClientBase.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerCommon.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationHistory.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerPlatform.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemoteLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/ThreadMachCore.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/ThreadMachCore.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/mach-core/ProcessMachCore.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_ppc64le.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/ProcessElfCore.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterContextPOSIXCore_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/RegisterUtilities.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/elf-core/ThreadElfCore.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/ProcessorTrace.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/Procfs.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeThreadLinux.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/ProcessorTrace.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/SingleStepCheck.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_s390x.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_s390x.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_ppc64le.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Linux/SingleStepCheck.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ForwardDecl.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/IDebugDelegate.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ExceptionRecord.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/TargetThreadWindows.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/NtStructures.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/DebuggerThread.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/LocalDebugDelegate.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/TargetThreadWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/RegisterContextWindows.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ProcessWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/RegisterContextWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/ProcessWindowsLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/LocalDebugDelegate.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/x86/RegisterContextWindows_x86.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/x86/RegisterContextWindows_x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Windows/Common/x64/RegisterContextWindows_x64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/NtStructures.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_x86_32.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/RegisterContextMinidump_ARM64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/MinidumpTypes.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/ThreadMinidump.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/minidump/ProcessMinidump.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_mips64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/FreeBSDThread.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_powerpc.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_arm.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/POSIXStopInfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessMonitor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/RegisterContextPOSIXProcessMonitor_x86.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ProcessFreeBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeThreadNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeProcessNetBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/NetBSD/NativeRegisterContextNetBSD_x86_64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadListDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFString.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFUtils.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/DarwinProcessLauncher.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/CFBundle.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/LaunchFlavor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/MachException.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeThreadDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Process/Darwin/NativeProcessDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Disassembler/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Disassembler/llvm/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetItemInfoHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetPendingItemsHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetItemInfoHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/SystemRuntimeMacOSX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetThreadItemInfoHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SystemRuntime/MacOSX/AppleGetQueuesHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ClangCommon/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ClangCommon/ClangHighlighter.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSException.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSArray.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSError.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/Cocoa.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/ObjCLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSIndexPath.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSSet.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSString.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/CoreMedia.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjC/NSDictionary.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/ObjCPlusPlus/ObjCPlusPlusLanguage.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppUniquePointer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxUnorderedMap.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CxxStringTypes.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxOptional.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVector.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcpp.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxQueue.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxList.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/BlockPointer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/MSVCUndecoratedNameParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxAtomic.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxBitset.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibStdcppTuple.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxVariant.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxx.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxMap.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxTuple.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/CPlusPlusNameParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/LibCxxInitializerList.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/StructuredData/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.h
    U src/gnu/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/StructuredData/DarwinLog/StructuredDataDarwinLog.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/UdtRecordCompleter.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/DWARFLocationExpression.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/CompileUnitIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbSymUid.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/LogChannelDWARF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwoDwp.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfoEntry.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwp.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDebugMap.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfoEntry.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFDwo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDataExtractor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/AppleDWARFIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIECollection.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDefines.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/NameToDIE.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFCompileUnit.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugArangeSet.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAbbreviationDeclaration.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFIndex.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacro.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugMacinfo.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugRanges.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDIE.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFAttribute.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugAranges.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DIERef.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFBaseDIE.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/UniqueDWARFASTType.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ManualDWARFIndex.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDebugLine.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFFormValue.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFDeclContext.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBLocationToDWARFExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/PDBASTParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/SymbolFileBreakpad.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Breakpad/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolFile/Symtab/SymbolFileSymtab.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangPersistentVariables.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUtilityFunction.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/IRForTarget.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTStructExtractor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionHelper.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangUserExpression.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionDeclMap.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangFunctionCaller.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangASTSource.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionVariable.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ClangDiagnostic.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTDumper.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ASTResultSynthesizer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/POSIX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/POSIX/PlatformPOSIX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/AdbClient.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/AdbClient.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/PlatformAndroid.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/gdb-server/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/gdb-server/PlatformRemoteGDBServer.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Linux/PlatformLinux.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Linux/PlatformLinux.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Linux/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/OpenBSD/PlatformOpenBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Windows/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Windows/PlatformWindows.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Kalimba/PlatformKalimba.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Kalimba/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/Kalimba/PlatformKalimba.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/FreeBSD/PlatformFreeBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/NetBSD/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/NetBSD/PlatformNetBSD.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleTV.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleWatchSimulator.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleBridge.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleTVSimulator.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleWatchSimulator.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleWatch.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwinKernel.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleTV.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleBridge.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformiOSSimulator.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleTVSimulator.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteiOS.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteDarwinDevice.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformAppleSimulator.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformRemoteAppleWatch.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/objcxx/PlatformiOSSimulatorCoreSimulatorSupport.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/objcxx/PlatformiOSSimulatorCoreSimulatorSupport.mm
    U src/gnu/llvm/tools/lldb/source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/ELFHeader.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Mach-O/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Mach-O/ObjectFileMachO.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/JIT/ObjectFileJIT.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/ObjectFileBreakpad.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/Breakpad/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/WindowsMiniDump.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/WindowsMiniDump.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ObjectFile/PECOFF/ObjectFilePECOFF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/SymbolVendorELF.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/MacOSX/SymbolVendorMacOSX.h
    U src/gnu/llvm/tools/lldb/source/Plugins/SymbolVendor/MacOSX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/None/ScriptInterpreterNone.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonExceptionState.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/lldb-python.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.h
    U src/gnu/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/PythonDataObjects.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptScriptGroup.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptx86ABIFixups.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptExpressionOpts.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/Go/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV1.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCDeclVendor.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTypeEncodingParser.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleThreadPlanStepThroughObjCTrampoline.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCTrampolineHandler.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCClassDescriptorV2.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.h
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ItaniumABILanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/PPC64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/PPC64/EmulateInstructionPPC64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulationStateARM.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/ARM64/EmulateInstructionARM64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.h
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
    U src/gnu/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Symbol/Type.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/UnwindTable.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Symtab.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/DWARFCallFrameInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompactUnwindInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompilerDecl.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/VariableList.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/LineTable.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Block.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompilerDeclContext.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/DebugMacros.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Symbol/UnwindPlan.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangASTImporter.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Symbol.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ArmUnwindInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/VerifyDecl.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/TypeSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/TypeList.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/SymbolVendor.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangASTContext.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCallbacks.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/SymbolFile.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/LineEntry.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompileUnit.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Declaration.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/FuncUnwinders.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangExternalASTSourceCommon.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ObjectFile.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Function.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/CompilerType.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/Variable.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/ClangUtil.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/SymbolContext.cpp
    U src/gnu/llvm/tools/lldb/source/Symbol/TypeMap.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/LanguageCategory.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/FormatManager.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeCategoryMap.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/FormattersHelpers.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/VectorType.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeFormat.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/DataVisualization.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeSynthetic.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/StringPrinter.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeCategory.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeSummary.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/CXXFunctionPointer.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/FormatCache.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/TypeValidator.cpp
    U src/gnu/llvm/tools/lldb/source/DataFormatters/FormatClasses.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StackFrameList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StackID.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepThrough.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanShouldStopHere.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepInRange.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepOverRange.cpp
    U src/gnu/llvm/tools/lldb/source/Target/FileAction.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanCallOnFunctionExit.cpp
    U src/gnu/llvm/tools/lldb/source/Target/SystemRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/TargetList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/SectionLoadHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Target/LanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepRange.cpp
    U src/gnu/llvm/tools/lldb/source/Target/MemoryHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Target.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanBase.cpp
    U src/gnu/llvm/tools/lldb/source/Target/PathMappingList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ExecutionContext.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ProcessLaunchInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Target/CPPLanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Target/StopInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepOverBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Memory.cpp
    U src/gnu/llvm/tools/lldb/source/Target/InstrumentationRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StackFrame.cpp
    U src/gnu/llvm/tools/lldb/source/Target/InstrumentationRuntimeStopInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Target/JITLoader.cpp
    U src/gnu/llvm/tools/lldb/source/Target/JITLoaderList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ProcessInfo.cpp
    U src/gnu/llvm/tools/lldb/source/Target/UnwindAssembly.cpp
    U src/gnu/llvm/tools/lldb/source/Target/RegisterContext.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanPython.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanCallUserExpression.cpp
    U src/gnu/llvm/tools/lldb/source/Target/QueueList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlan.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StackFrameRecognizer.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ObjCLanguageRuntime.cpp
    U src/gnu/llvm/tools/lldb/source/Target/RegisterNumber.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Thread.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepUntil.cpp
    U src/gnu/llvm/tools/lldb/source/Target/OperatingSystem.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ModuleCache.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanCallFunctionUsingABI.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Language.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Platform.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanTracer.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanCallFunction.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Process.cpp
    U src/gnu/llvm/tools/lldb/source/Target/QueueItem.cpp
    U src/gnu/llvm/tools/lldb/source/Target/StructuredDataPlugin.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ABI.cpp
    U src/gnu/llvm/tools/lldb/source/Target/UnixSignals.cpp
    U src/gnu/llvm/tools/lldb/source/Target/SectionLoadList.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanStepOut.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadSpec.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadCollection.cpp
    U src/gnu/llvm/tools/lldb/source/Target/Queue.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadPlanRunToAddress.cpp
    U src/gnu/llvm/tools/lldb/source/Target/ThreadList.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupString.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueSInt64.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueLanguage.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupWatchpoint.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueDictionary.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueEnumeration.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandObjectScript.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupBoolean.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueArray.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueFileSpecLIst.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueFormatEntity.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/Options.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueString.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueProperties.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandInterpreter.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueArch.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueUInt64.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueRegex.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueBoolean.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/embedded_interpreter.py
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandObjectScript.h
    U src/gnu/llvm/tools/lldb/source/Interpreter/Property.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandReturnObject.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/ScriptInterpreter.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupFormat.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupArchitecture.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandAlias.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupPlatform.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionArgParser.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValue.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandHistory.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueArgs.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueFileSpec.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupVariable.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueChar.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueUUID.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandOptionValidators.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValueFormat.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupFile.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/CommandObject.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupUUID.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionValuePathMappings.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupUInt64.cpp
    U src/gnu/llvm/tools/lldb/source/Interpreter/OptionGroupOutputFile.cpp
    U src/gnu/llvm/tools/lldb/scripts/get_relative_lib_dir.py
    U src/gnu/llvm/tools/lldb/scripts/utilsOsType.py
    U src/gnu/llvm/tools/lldb/scripts/sed-sources
    U src/gnu/llvm/tools/lldb/scripts/install-lldb.sh
    U src/gnu/llvm/tools/lldb/scripts/verify_api.py
    U src/gnu/llvm/tools/lldb/scripts/disasm-gdb-remote.pl
    U src/gnu/llvm/tools/lldb/scripts/utilsArgsParse.py
    U src/gnu/llvm/tools/lldb/scripts/lldb.swig
    U src/gnu/llvm/tools/lldb/scripts/finishSwigWrapperClasses.py
    U src/gnu/llvm/tools/lldb/scripts/checkpoint-llvm.pl
    U src/gnu/llvm/tools/lldb/scripts/macos-setup-codesign.sh
    U src/gnu/llvm/tools/lldb/scripts/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/scripts/utilsDebug.py
    U src/gnu/llvm/tools/lldb/scripts/shush
    U src/gnu/llvm/tools/lldb/scripts/use_lldb_suite.py
    U src/gnu/llvm/tools/lldb/scripts/buildbot.py
    U src/gnu/llvm/tools/lldb/scripts/sort-pbxproj.rb
    U src/gnu/llvm/tools/lldb/scripts/generate-vers.pl
    U src/gnu/llvm/tools/lldb/scripts/prepare_bindings.py
    U src/gnu/llvm/tools/lldb/scripts/finish-swig-wrapper-classes.sh
    U src/gnu/llvm/tools/lldb/scripts/framework-header-fix.sh
    U src/gnu/llvm/tools/lldb/scripts/swig_bot.py
    U src/gnu/llvm/tools/lldb/scripts/build-lldb-llvm-clang
    U src/gnu/llvm/tools/lldb/scripts/install_custom_python.py
    U src/gnu/llvm/tools/lldb/scripts/analyze-project-deps.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/package-clang-headers.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/repo.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/lldbbuild.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/prepare-gtest-run-dir.sh
    U src/gnu/llvm/tools/lldb/scripts/Xcode/build-llvm.py
    U src/gnu/llvm/tools/lldb/scripts/Xcode/repos/svn-trunk.json
    U src/gnu/llvm/tools/lldb/scripts/Xcode/repos/FALLBACK
    U src/gnu/llvm/tools/lldb/scripts/interface/SBMemoryRegionInfoList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBUnixSignals.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTraceOptions.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBValueList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBCommunication.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBThread.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBreakpoint.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBCompileUnit.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBProcessInfo.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTrace.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBWatchpoint.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBThreadCollection.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeSummary.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBInstructionList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBDeclaration.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBExecutionContext.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTarget.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeCategory.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBError.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSymbolContext.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBStructuredData.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBreakpointName.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeEnumMember.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBModuleSpec.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBExpressionOptions.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBLaunchInfo.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSymbol.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBVariablesOptions.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBQueue.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBCommandReturnObject.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSymbolContextList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBLineEntry.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBCommandInterpreter.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBListener.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeFilter.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSourceManager.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBFunction.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBFileSpec.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBMemoryRegionInfo.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBlock.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBreakpointLocation.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBAddress.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBQueueItem.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBProcess.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBThreadPlan.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBFileSpecList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeSynthetic.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBModule.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBInstruction.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeNameSpecifier.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBLanguageRuntime.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBDebugger.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBTypeFormat.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBType.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBInitializerOptions.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBData.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBAttachInfo.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBValue.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBStringList.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBEvent.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBStream.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBPlatform.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBFrame.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBHostOS.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBBroadcaster.i
    U src/gnu/llvm/tools/lldb/scripts/interface/SBSection.i
    U src/gnu/llvm/tools/lldb/scripts/Python/python-extensions.swig
    U src/gnu/llvm/tools/lldb/scripts/Python/python-wrapper.swig
    U src/gnu/llvm/tools/lldb/scripts/Python/prepare_binding_Python.py
    U src/gnu/llvm/tools/lldb/scripts/Python/finish-swig-Python-LLDB.sh
    U src/gnu/llvm/tools/lldb/scripts/Python/modify-python-lldb.py
    U src/gnu/llvm/tools/lldb/scripts/Python/finishSwigPythonLLDB.py
    U src/gnu/llvm/tools/lldb/scripts/Python/remote-build.py
    U src/gnu/llvm/tools/lldb/scripts/Python/python-typemaps.swig
    U src/gnu/llvm/tools/lldb/scripts/Python/use_lldb_suite.py
    U src/gnu/llvm/tools/lldb/scripts/Python/python-swigsafecast.swig
    U src/gnu/llvm/tools/lldb/scripts/Python/modules/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/scripts/Python/modules/readline/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/scripts/Python/modules/readline/readline.cpp
    U src/gnu/llvm/tools/lldb/scripts/Python/android/host_art_bt.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/client.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/local.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/__init__.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/server.py
    U src/gnu/llvm/tools/lldb/scripts/swig_bot_lib/remote.py
    U src/gnu/llvm/tools/lldb/cmake/XcodeHeaderGenerator/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/cmake/modules/EmbedAppleVersion.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/debugserverConfig.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/LLDBStandalone.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/LLDBGenerateConfig.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/AddLLDB.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/LLDBFramework.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/FindLibEdit.cmake
    U src/gnu/llvm/tools/lldb/cmake/modules/LLDBConfig.cmake
    U src/gnu/llvm/tools/lldb/docs/doxygen.cfg.in
    U src/gnu/llvm/tools/lldb/docs/code-signing.txt
    U src/gnu/llvm/tools/lldb/docs/doxygen.footer
    U src/gnu/llvm/tools/lldb/docs/lldb-gdb-remote.txt
    U src/gnu/llvm/tools/lldb/docs/doxygen.header
    U src/gnu/llvm/tools/lldb/docs/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/docs/lldb-for-gdb-users.txt
    U src/gnu/llvm/tools/lldb/docs/doxygen.intro
    U src/gnu/llvm/tools/lldb/docs/lldb-platform-packets.txt
    U src/gnu/llvm/tools/lldb/docs/building-with-debug-llvm.txt
    U src/gnu/llvm/tools/lldb/docs/lldb.1
    U src/gnu/llvm/tools/lldb/docs/structured_data/DarwinLog.md
    U src/gnu/llvm/tools/lldb/docs/structured_data/StructuredDataPlugins.md
    U src/gnu/llvm/tools/lldb/docs/testsuite/best-practices.txt
    U src/gnu/llvm/tools/lldb/docs/testsuite/a-detailed-walkthrough.txt
    U src/gnu/llvm/tools/lldb/docs/testsuite/2010-10-19-14_10_49.059609/TestSettings.SettingsCommandTestCase.test_set_output_path.log
    U src/gnu/llvm/tools/lldb/tools/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/install-headers/Makefile
    U src/gnu/llvm/tools/lldb/tools/lldb-test/lldb-test.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-test/SystemInitializerTest.h
    U src/gnu/llvm/tools/lldb/tools/lldb-test/FormatUtil.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-test/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-test/SystemInitializerTest.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-test/FormatUtil.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/debugserver/debugnub-exports
    U src/gnu/llvm/tools/lldb/tools/debugserver/debugserver.xcodeproj/project.pbxproj
    U src/gnu/llvm/tools/lldb/tools/debugserver/debugserver.xcodeproj/xcshareddata/xcschemes/debugserver.xcscheme
    U src/gnu/llvm/tools/lldb/tools/debugserver/debugserver.xcodeproj/project.xcworkspace/contents.xcworkspacedata
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/debugserver.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/JSON.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PseudoTerminal.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadMutex.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBServices.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadEvent.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/ARM_ehframe_Registers.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/TTYState.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/JSON.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/StdStringExtractor.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/TTYState.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBRemote.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBError.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/debugserver-entitlements.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBLog.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/SysSignal.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBThreadResumeActions.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.posix.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.internal.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/libdebugserver.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadMutex.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.applist.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBSocket.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBArch.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBThreadResumeActions.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBRemote.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBDefs.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/JSONGenerator.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNB.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PseudoTerminal.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/ChangeLog
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBDataRef.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBContext.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/StdStringExtractor.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.debugserver.applist.internal.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBContext.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadCondition.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBServices.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBError.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/PThreadEvent.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBArch.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBRegisterInfo.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBRegisterInfo.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/SysSignal.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBTimer.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/debugserver-macosx-entitlements.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBRuntimeAction.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/com.apple.internal.xpc.remote.debugserver.plist
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/ARM_DWARF_Registers.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBLog.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBDefs.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBDataRef.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/RNBSocket.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/libdebugserver.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNB.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/DNBBreakpoint.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFBundle.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/dbgnub-mig.defs
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/stack_logging.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachTask.mm
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/OsLogger.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/Genealogy.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFString.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachVMMemory.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/GenealogySPI.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachVMRegion.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachThread.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachVMRegion.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/OsLogger.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFString.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/Genealogy.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachVMMemory.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachThreadList.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFUtils.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachException.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/CFBundle.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/ThreadInfo.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachProcess.mm
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachException.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachThreadList.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachThread.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachTask.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/MachProcess.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/i386/MachRegisterStatesI386.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/i386/DNBArchImplI386.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterRegex.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogEvent.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterExactMatch.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/ActivityStreamSPI.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogCollector.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterExactMatch.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogMessage.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterChain.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilter.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/ActivityStore.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogCollector.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterChain.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogTypes.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/DarwinLogInterfaces.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogMessage.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogMessageOsLog.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilter.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogFilterRegex.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/ActivityStore.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/DarwinLog/LogMessageOsLog.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/x86_64/MachRegisterStatesX86_64.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/x86_64/DNBArchImplX86_64.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/ppc/DNBArchImpl.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/ppc/DNBArchImpl.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/arm/DNBArchImpl.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/arm64/DNBArchImplARM64.h
    U src/gnu/llvm/tools/lldb/tools/debugserver/source/MacOSX/arm64/DNBArchImplARM64.cpp
    U src/gnu/llvm/tools/lldb/tools/debugserver/scripts/diagnose-termination.d
    U src/gnu/llvm/tools/lldb/tools/debugserver/resources/lldb-debugserver-Info.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.h
    U src/gnu/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Acceptor.h
    U src/gnu/llvm/tools/lldb/tools/lldb-server/lldb-gdbserver.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-server/SystemInitializerLLGS.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Acceptor.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/lldb-platform.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/lldb-server.exports
    U src/gnu/llvm/tools/lldb/tools/lldb-server/lldb-server.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-macos-entitlements.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-Info.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-mig.defs
    U src/gnu/llvm/tools/lldb/tools/lldb-server/Darwin/resources/lldb-server-entitlements.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdin.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdThread.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonHelper.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilString.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/lldb-Info.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverMain.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdData.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/lldb-mi.exports
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdInvoker.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebuggerHandleEvents.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIReadMe.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdFactory.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBUtilSBValue.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnConfig.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLog.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdData.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbThread.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugger.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStderr.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbShow.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverMgr.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriver.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnResources.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdBreak.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValPrintValues.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListOfN.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/module.modulemap
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriverBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdExec.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbSet.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdVar.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIExtensions.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBBroadcaster.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueTuple.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdMgrSetCmdDeleteCallback.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBProxySBValue.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/Platform.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilVariant.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgContext.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdMiscellanous.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdData.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdEnviro.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCommands.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValue.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionLong.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdMgr.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgSet.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdGdbInfo.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTarget.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValOptionShort.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilFileStd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnThreadMgrStd.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfo.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLog.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilString.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnStreamStdout.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdTrace.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValListBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilDebug.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilSingletonBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLogMediumFile.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnResources.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportInfo.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValThreadGrp.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDataTypes.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIOutOfBandRecord.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValConsume.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSupportList.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilDateTimeStd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIDriver.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueResult.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnLLDBDebugSessionInfoVarObj.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdFile.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilThreadBaseStd.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdSymbol.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdInterpreter.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MIUtilMapIdToVariant.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValString.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValFile.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdCmdStack.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueList.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIValueConst.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdArgValNumber.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmnMIResultRecord.h
    U src/gnu/llvm/tools/lldb/tools/lldb-mi/MICmdBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/README
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Gauge.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/TestCase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/TestCase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Xcode.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Results.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Results.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Timer.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Timer.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Gauge.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/MemoryGauge.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/MemoryGauge.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Measurement.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Metric.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Metric.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lib/Xcode.h
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/stepping/stepping-testcase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/stepping/lldb-perf-stepping.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/clang/lldb_perf_clang.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/clang/build-clang.sh
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/common/clang/main.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/darwin/sketch/sketch.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/darwin/sketch/foobar.sketch2
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/darwin/formatters/formatters.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/darwin/formatters/fmts_tester.mm
    U src/gnu/llvm/tools/lldb/tools/lldb-perf/lldbperf.xcodeproj/project.pbxproj
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/README.md
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/BreakpointBase.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/LLDBUtils.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/LLDBUtils.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/ExceptionBreakpoint.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/VSCode.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/JSONUtils.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/BreakpointBase.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/SourceBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/package.json
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/FunctionBreakpoint.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/SourceBreakpoint.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/lldb-vscode.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/VSCodeForward.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/FunctionBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/VSCode.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/SourceReference.h
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/JSONUtils.cpp
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/lldb-vscode-Info.plist
    U src/gnu/llvm/tools/lldb/tools/lldb-vscode/ExceptionBreakpoint.cpp
    U src/gnu/llvm/tools/lldb/tools/darwin-debug/darwin-debug.cpp
    U src/gnu/llvm/tools/lldb/tools/darwin-debug/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/darwin-threads/examine-threads.c
    U src/gnu/llvm/tools/lldb/tools/compact-unwind/compact-unwind-dumper.c
    U src/gnu/llvm/tools/lldb/tools/intel-features/cli-wrapper.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/README.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/scripts/python-typemaps.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/scripts/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/scripts/lldb-intel-features.swig
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/cli-wrapper-mpxtable.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/cli-wrapper-mpxtable.h
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/test/Makefile
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/test/TestMPXTable.py
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/test/README.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-mpx/test/main.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/cli-wrapper-pt.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/Decoder.h
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/README_CLI.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/README_TOOL.txt
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/cli-wrapper-pt.h
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/PTDecoder.h
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/Decoder.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/PTDecoder.cpp
    U src/gnu/llvm/tools/lldb/tools/intel-features/intel-pt/interface/PTDecoder.i
    U src/gnu/llvm/tools/lldb/tools/driver/lldb-Info.plist
    U src/gnu/llvm/tools/lldb/tools/driver/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/driver/Options.td
    U src/gnu/llvm/tools/lldb/tools/driver/Driver.h
    U src/gnu/llvm/tools/lldb/tools/driver/Platform.h
    U src/gnu/llvm/tools/lldb/tools/driver/Driver.cpp
    U src/gnu/llvm/tools/lldb/tools/driver/Platform.cpp
    U src/gnu/llvm/tools/lldb/tools/argdumper/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/tools/argdumper/argdumper.exports
    U src/gnu/llvm/tools/lldb/tools/argdumper/argdumper.cpp
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-public.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-enumerations.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-enumerations.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-defines.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-defines.h
    U src/gnu/llvm/tools/lldb/include/lldb/module.modulemap
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-forward.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-types.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-versioning.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-forward.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-interfaces.h
    U src/gnu/llvm/tools/lldb/include/lldb/lldb-private-types.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/Materializer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/ExpressionVariable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/ExpressionParser.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/UserExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/IRMemoryMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/IRInterpreter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/ExpressionTypeSystemHelper.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/UtilityFunction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/ExpressionSourceCode.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/LLVMUserExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/REPL.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/IRExecutionUnit.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/FunctionCaller.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/DiagnosticManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/IRDynamicChecks.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/Expression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Expression/DWARFExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Scalar.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Predicate.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Log.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/UserID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Args.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StructuredData.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Event.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/JSON.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/RegisterValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/FileSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/TraceOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataBufferLLVM.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/SharedCluster.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/IOObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataExtractor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/UUID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Status.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Reproducer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Logging.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Connection.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/UriParser.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Environment.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/SharingPtr.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/VMRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Timer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StringExtractor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/CleanUp.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StringLexer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Timeout.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataEncoder.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/ArchSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Broadcaster.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/RegularExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/NameMatches.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/VASPrintf.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Endian.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/ConstString.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/State.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Stream.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataBuffer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/CompletionRequest.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/DataBufferHeap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Baton.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Listener.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StreamString.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StringList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/TildeExpressionResolver.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StreamGDBRemote.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Flags.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StreamTee.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/Iterable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/LLDBAssert.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/SelectHelper.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/AnsiTerminal.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StringExtractorGDBRemote.h
    U src/gnu/llvm/tools/lldb/include/lldb/Utility/StreamCallback.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeNameSpecifier.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBCommandReturnObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBModuleSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTraceOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBVariablesOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBProcessInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBLanguageRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBDefines.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBInstruction.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBQueue.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBValueList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBStringList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeSummary.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTarget.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBCommunication.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBListener.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBError.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBLineEntry.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBFileSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeCategory.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBCompileUnit.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBExecutionContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBStream.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/LLDB.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBlock.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBQueueItem.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBEvent.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBDebugger.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBMemoryRegionInfoList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeFilter.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBAddress.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSymbolContextList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBFrame.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBThreadPlan.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBInitializerOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBFunction.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBDeclaration.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSymbolContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBExpressionOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeFormat.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBUnixSignals.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBreakpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTrace.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBType.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBreakpointLocation.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSourceManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSection.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBStructuredData.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBroadcaster.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBCommandInterpreter.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeEnumMember.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBHostOS.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBProcess.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBWatchpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBBreakpointName.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBFileSpecList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBTypeSynthetic.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBThreadCollection.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBInstructionList.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBAttachInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBSymbol.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBLaunchInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBThread.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBData.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBModule.h
    U src/gnu/llvm/tools/lldb/include/lldb/API/SBPlatform.h
    U src/gnu/llvm/tools/lldb/include/lldb/Initialization/SystemLifetimeManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/Initialization/SystemInitializerCommon.h
    U src/gnu/llvm/tools/lldb/include/lldb/Initialization/SystemInitializer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/StreamFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Opcode.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Communication.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/MappedHash.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectVariable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResult.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/PluginInterface.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/UniqueCStringMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/UserSettingsController.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectDynamicValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/DumpRegisterValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/FileLineResolver.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseSet.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/RangeMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultChild.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Disassembler.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Debugger.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/RichManglingContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectRegister.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/STLUtils.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/StreamBuffer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Mangled.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeDenseMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Highlighter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/AddressRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultImpl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/FileSpecList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/AddressResolverFileLine.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Value.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ModuleSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/SearchFilter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Module.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/PluginManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectConstResultCast.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/StreamAsynchronousIO.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ModuleList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/SourceManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Section.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/StructuredDataImpl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/dwarf.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/DumpDataExtractor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/IOStreamMacros.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Architecture.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLVector.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeSTLMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ThreadSafeValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ModuleChild.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectSyntheticFilter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/EmulateInstruction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectCast.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ClangForward.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectMemory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/FormatEntity.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectChild.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/AddressResolverName.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/IOHandler.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/LoadedModuleInfoList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/ValueObjectList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/Address.h
    U src/gnu/llvm/tools/lldb/include/lldb/Core/AddressResolver.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeThread.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/ConnectionFileDescriptor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/PseudoTerminal.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/SafeMachO.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Editline.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostProcess.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Symbols.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Socket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/OptionParser.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/ProcessRunLock.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/MainLoop.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/SocketAddress.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/LockFileBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/ProcessLauncher.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/MonitoringProcessLauncher.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/ThreadLauncher.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Time.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Config.h.cmake
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Pipe.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/StringConvert.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostGetOpt.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/XML.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostThread.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/File.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/TaskPool.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Host.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Config.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/FileCache.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeProcessBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/FileSystem.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/PosixApi.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostInfoBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeProcess.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/PipeBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeThreadBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/LockFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/MainLoopBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Terminal.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/HostNativeThreadForward.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/Debug.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/netbsd/HostInfoNetBSD.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/openbsd/HostInfoOpenBSD.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/LockFilePosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/PipePosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/ProcessLauncherPosixFork.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/DomainSocket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/Fcntl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/HostProcessPosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/HostInfoPosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/HostThreadPosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/posix/ConnectionFileDescriptorPosix.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeWatchpointList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeBreakpointList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/TCPSocket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/GetOptInc.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/UDPSocket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeThreadProtocol.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/common/NativeRegisterContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/android/HostInfoAndroid.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/Uio.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/HostInfoLinux.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/Support.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/Ptrace.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/linux/AbstractSocket.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/editlinewin.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/PipeWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/AutoHandle.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/LockFileWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/PosixApi.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/ConnectionGenericFileWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/windows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/HostThreadWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/HostInfoWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/ProcessLauncherWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/windows/HostProcessWindows.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/freebsd/HostInfoFreeBSD.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/macosx/HostInfoMacOSX.h
    U src/gnu/llvm/tools/lldb/include/lldb/Host/macosx/HostThreadMacOSX.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/Watchpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverScripted.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverName.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolver.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/Stoppoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSite.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationCollection.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverAddress.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointName.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/StoppointLocation.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocationList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointLocation.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/StoppointCallbackContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileLine.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/Breakpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointIDList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointResolverFileRegex.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointSiteList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/WatchpointOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/Breakpoint/BreakpointList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ArmUnwindInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangUtil.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/TypeMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangASTImporter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/TaggedASTType.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/FuncUnwinders.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Type.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/SymbolContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/DWARFCallFrameInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompilerDeclContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/LineEntry.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Function.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompactUnwindInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/UnwindPlan.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ObjectFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/VariableList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/DebugMacros.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Declaration.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/TypeList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/TypeSystem.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/SymbolVendor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/SymbolFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCallbacks.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompileUnit.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangExternalASTSourceCommon.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompilerDecl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/LineTable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ObjectContainer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/DeclVendor.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/UnwindTable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Symbol.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/CompilerType.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/SymbolContextScope.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Symtab.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/VerifyDecl.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Variable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/Block.h
    U src/gnu/llvm/tools/lldb/include/lldb/Symbol/ClangASTContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/DataVisualization.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeFormat.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormattersHelpers.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategory.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeSynthetic.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/StringPrinter.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormatClasses.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormatManager.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/LanguageCategory.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeValidator.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/VectorType.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeSummary.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/CXXFunctionPointer.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/TypeCategoryMap.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/FormatCache.h
    U src/gnu/llvm/tools/lldb/include/lldb/DataFormatters/VectorIterator.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanPython.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ExecutionContextScope.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallOnFunctionExit.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Language.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/TargetList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/LanguageRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/JITLoader.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ModuleCache.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ObjCLanguageRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Memory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/SystemRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/SectionLoadList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Queue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ExecutionContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StackFrameList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanRunToAddress.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntimeStopInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOut.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/FileAction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepUntil.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanShouldStopHere.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunctionUsingABI.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallFunction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ProcessStructReader.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/UnixSignals.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StructuredDataPlugin.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/RegisterContext.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/QueueItem.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepThrough.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepOverBreakpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanCallUserExpression.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepRange.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlan.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanTracer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/OperatingSystem.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ProcessLaunchInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StackFrame.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ABI.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/UnwindAssembly.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/InstrumentationRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Platform.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/QueueList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/RegisterNumber.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Target.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StopInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Unwind.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/PathMappingList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StackFrameRecognizer.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadCollection.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ProcessInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/MemoryHistory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/DynamicLoader.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Thread.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanStepInstruction.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/SectionLoadHistory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/CPPLanguageRuntime.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/Process.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/JITLoaderList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/StackID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/RegisterCheckpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/MemoryRegionInfo.h
    U src/gnu/llvm/tools/lldb/include/lldb/Target/ThreadPlanBase.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandOptionValidators.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUInt64.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/ScriptInterpreter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueBoolean.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueProperties.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValuePathMappings.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupString.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupWatchpoint.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupArchitecture.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUInt64.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueLanguage.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupFormat.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueSInt64.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueRegex.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionArgParser.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValue.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupUUID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandHistory.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueEnumeration.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandAlias.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/Property.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectMultiword.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupOutputFile.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupPlatform.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandObjectRegexCommand.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandCompletions.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpecList.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArray.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueDictionary.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/Options.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValues.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandInterpreter.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueUUID.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/CommandReturnObject.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormatEntity.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFormat.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueFileSpec.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupVariable.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueChar.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArch.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueString.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionGroupBoolean.h
    U src/gnu/llvm/tools/lldb/include/lldb/Interpreter/OptionValueArgs.h
    U src/gnu/llvm/tools/lldb/lit/lit.site.cfg.py.in
    U src/gnu/llvm/tools/lldb/lit/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/lit/lit.cfg.py
    U src/gnu/llvm/tools/lldb/lit/lit-lldb-init
    U src/gnu/llvm/tools/lldb/lit/Unit/lit.site.cfg.py.in
    U src/gnu/llvm/tools/lldb/lit/Unit/lit.cfg.py
    U src/gnu/llvm/tools/lldb/lit/Suite/lit.site.cfg.in
    U src/gnu/llvm/tools/lldb/lit/Suite/lit.cfg
    U src/gnu/llvm/tools/lldb/lit/Suite/lldbtest.py
    U src/gnu/llvm/tools/lldb/lit/helper/__init__.py
    U src/gnu/llvm/tools/lldb/lit/helper/toolchain.py
    U src/gnu/llvm/tools/lldb/lit/helper/build.py
    U src/gnu/llvm/tools/lldb/lit/BuildScript/toolchain-msvc.test
    U src/gnu/llvm/tools/lldb/lit/BuildScript/toolchain-clang-cl.test
    U src/gnu/llvm/tools/lldb/lit/BuildScript/toolchain-clang.test
    U src/gnu/llvm/tools/lldb/lit/BuildScript/modes.test
    U src/gnu/llvm/tools/lldb/lit/BuildScript/script-args.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/split-dwarf-5-addrbase.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/single-file-split-dwarf.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_addrx.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/split-dwarf5-debug-stroffsets.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_rnglist_offset_pair.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_rnglist_basic.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/case-sensitive.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/ppc64-localentry.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/case-insensitive.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_rnglistx_rlex.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/debug_rnglist_rlestartend.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/implicit_const_form_support.test
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf5-debug-stroffsets-file1.dwo.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/single-file-split-dwarf.o.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_rnglist_offset_pair.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/implicit_const_form_support.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/case-sensitive.c
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_rnglistx_rlex.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_rnglist_basic.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf5-debug-stroffsets-file2.dwo.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_rnglist_rlestartend.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf-5-addrbase.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/ppc64-localentry.s
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/single-file-split-dwarf.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/debug_addrx.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf5-debug-stroffsets-main.yaml
    U src/gnu/llvm/tools/lldb/lit/Breakpoint/Inputs/split-dwarf-5-addrbase.dwo.yaml
    U src/gnu/llvm/tools/lldb/lit/Expr/TestMultilineExpr.test
    U src/gnu/llvm/tools/lldb/lit/Expr/TestIRMemoryMapWindows.test
    U src/gnu/llvm/tools/lldb/lit/Expr/TestIRMemoryMap.test
    U src/gnu/llvm/tools/lldb/lit/Expr/TestTypeOfDeclTypeExpr.test
    U src/gnu/llvm/tools/lldb/lit/Expr/Inputs/ir-memory-map-overlap1
    U src/gnu/llvm/tools/lldb/lit/Expr/Inputs/ir-memory-map-mix-malloc-free
    U src/gnu/llvm/tools/lldb/lit/Expr/Inputs/call-function.cpp
    U src/gnu/llvm/tools/lldb/lit/Expr/Inputs/ir-memory-map-basic
    N src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-finish.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-step-instruction.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-interrupt.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-next-instruction.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-next.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-step.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-continue.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/exec-run-wrong-binary.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/exec/inputs/main.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/target/target-select-so-path.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/target/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/target/inputs/target-select-so-path.py
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/target/inputs/main.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/data/data-info-line.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/data/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/data/inputs/data-info-line.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/break-insert.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/break-insert-enable-pending.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/inputs/break-insert-pending.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/breakpoint/inputs/break-insert.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/symbol-list-lines.test
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/list-lines-helper.h
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/list-lines-helper.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/symbol-list-lines.h
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/main.c
    U src/gnu/llvm/tools/lldb/lit/tools/lldb-mi/symbol/inputs/symbol-list-lines.c
    U src/gnu/llvm/tools/lldb/lit/Python/crashlog.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/ast-functions.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/ast-functions-msvc.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/break-by-function.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/break-by-line.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/function-types-builtins.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/local-variables.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/global-classes.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/function-types-calling-conv.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/s_constant.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/globals-bss.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/function-types-classes.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/bitfields.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/nested-types.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/source-list.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/disassembly.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/typedefs.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/ast-types.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/globals-fundamental.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/tag-types.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/bitfields.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/function-types-classes.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/ast-types.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/globals-fundamental.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/function-types-builtins.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/break-by-line.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/globals-classes.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/s_constant.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/function-types-calling-conv.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/tag-types.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/source-list.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/ast-functions.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/local-variables.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/nested-types.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/s_constant.s
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/break-by-function.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/disassembly.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/NativePDB/Inputs/globals-bss.lldbinit
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-function-regex.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-basic-type.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-inline-method.s
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/debug-names-compressed.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-basic-namespace.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-method-local-struct.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-type-in-function.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/dwarf5-partial-index.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/apple-index-is-used.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-variable-file.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-basic-function.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-qualified-variable.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/array-sizes.s
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-basic-variable.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/childless-compile-unit.s
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-method.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/dwarf5-index-is-used.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/find-variable-dwo.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/DWARF/Inputs/find-variable-file-2.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/variables-locations.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/function-nested-block.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/calling-conventions.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/enums-layout.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/typedefs.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/class-layout.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/vbases.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/udt-layout.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/func-symbols.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/type-quals.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/function-level-linking.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/expressions.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/compilands.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/variables.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/pointers.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/ast-restore.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VariablesTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/CompilandsTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ExpressionsTest0.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/TypeQualsTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ExpressionsTest1.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ExpressionsTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.ord
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ExpressionsTest2.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FunctionNestedBlockTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.h
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VariablesLocationsTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FuncSymbolsTestMain.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/SimpleTypesTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FunctionLevelLinkingTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/UdtLayoutTest.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VariablesLocationsTest.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/ClassLayoutTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/CallingConventionsTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/PointerTypeTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/FuncSymbols.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VBases.script
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/AstRestoreTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/UdtLayoutTest.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/PDB/Inputs/VBases.cpp
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/Breakpad/symtab.test
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/Breakpad/Inputs/basic-elf.yaml
    U src/gnu/llvm/tools/lldb/lit/SymbolFile/Breakpad/Inputs/symtab.syms
    U src/gnu/llvm/tools/lldb/lit/Reproducer/TestDriverOptions.test
    U src/gnu/llvm/tools/lldb/lit/Reproducer/TestGDBRemoteRepro.test
    U src/gnu/llvm/tools/lldb/lit/Reproducer/Inputs/GDBRemoteReplay.in
    U src/gnu/llvm/tools/lldb/lit/Reproducer/Inputs/GDBRemoteCapture.in
    U src/gnu/llvm/tools/lldb/lit/Reproducer/Inputs/simple.c
    U src/gnu/llvm/tools/lldb/lit/Heap/heap-cstr.test
    U src/gnu/llvm/tools/lldb/lit/Heap/Inputs/cstr.c
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/stop-hook.test
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/stop-hook-threads.test
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-threads-1.lldbinit
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-threads-2.lldbinit
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-2.lldbinit
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook.c
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-1.lldbinit
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-3.lldbinit
    U src/gnu/llvm/tools/lldb/lit/ExecControl/StopHook/Inputs/stop-hook-threads.cpp
    U src/gnu/llvm/tools/lldb/lit/Minidump/dump-all.test
    U src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/sigsegv.test
    U src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/Inputs/sigsegv.cpp
    U src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/Inputs/sigsegv.pdb
    U src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/Inputs/sigsegv.lldbinit
    U src/gnu/llvm/tools/lldb/lit/Minidump/Windows/Sigsegv/Inputs/sigsegv.dmp
    U src/gnu/llvm/tools/lldb/lit/Minidump/Inputs/dump-content.dmp
    U src/gnu/llvm/tools/lldb/lit/Settings/TestDisableColor.test
    U src/gnu/llvm/tools/lldb/lit/Settings/TestEchoCommands.test
    U src/gnu/llvm/tools/lldb/lit/Settings/TestSettingsWrite.test
    U src/gnu/llvm/tools/lldb/lit/Settings/TestDisassemblyFormat.test
    U src/gnu/llvm/tools/lldb/lit/Settings/TestSettingsSet.test
    U src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsAll.out
    U src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsNoComments.out
    U src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsNone.out
    U src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsTest.in
    U src/gnu/llvm/tools/lldb/lit/Settings/Inputs/EchoCommandsQuiet.out
    U src/gnu/llvm/tools/lldb/lit/Driver/TestFile.test
    U src/gnu/llvm/tools/lldb/lit/Driver/TestNoUseColor.test
    U src/gnu/llvm/tools/lldb/lit/Driver/TestConvenienceVariables.test
    U src/gnu/llvm/tools/lldb/lit/Driver/TestCommands.test
    U src/gnu/llvm/tools/lldb/lit/Driver/TestCore.test
    U src/gnu/llvm/tools/lldb/lit/Driver/Inputs/Print2.in
    U src/gnu/llvm/tools/lldb/lit/Driver/Inputs/convenience.in
    U src/gnu/llvm/tools/lldb/lit/Driver/Inputs/hello.cpp
    U src/gnu/llvm/tools/lldb/lit/Driver/Inputs/Print6.in
    U src/gnu/llvm/tools/lldb/lit/Driver/Inputs/Print0.in
    U src/gnu/llvm/tools/lldb/lit/Driver/Inputs/Print4.in
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCode0.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCode30.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeHexA.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeImplicit0.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeHex0.test
    U src/gnu/llvm/tools/lldb/lit/Quit/expect_exit_code.py
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeTooManyArgs.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCodeNonInt.test
    U src/gnu/llvm/tools/lldb/lit/Quit/TestQuitExitCode-30.test
    U src/gnu/llvm/tools/lldb/lit/Modules/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/Modules/MachO/lc_build_version.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/MachO/subsections.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/MachO/lc_version_min.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/MachO/lc_build_version_notools.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD-overlap-PT_INTERP.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD-overlap.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/duplicate-section.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/short-build-id.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/base-address.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-addresses.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-types-edgecases.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-permissions.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD-empty.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/build-id-case.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/compressed-sections.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/basic-info.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/many-sections.s
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-types.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/section-overlap.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/PT_LOAD-overlap-section.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/ELF/Inputs/PT_LOAD-overlap-section.elf
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/breakpad-identification.test
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/sections.test
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/discontiguous-sections.test
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/sections-trailing-func.test
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/bad-module-id-3.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/identification-windows.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/identification-linux.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/discontiguous-sections.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/sections-trailing-func.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/bad-module-id-2.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/sections.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/bad-module-id-1.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/Breakpad/Inputs/identification-macosx.syms
    U src/gnu/llvm/tools/lldb/lit/Modules/PECOFF/dep-modules.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/PECOFF/sections-names.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/PECOFF/export-dllfunc.yaml
    U src/gnu/llvm/tools/lldb/lit/Modules/PECOFF/lit.local.cfg
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/project.pbxproj
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/launcherRootXPCService.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/lldb-python-test-suite.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/darwin-debug.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/desktop.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/lldb-tool.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/launcherXPCService.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/LLDB.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/lldb-gtest.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/xcshareddata/xcschemes/Run Testsuite.xcscheme
    U src/gnu/llvm/tools/lldb/lldb.xcodeproj/project.xcworkspace/contents.xcworkspacedata
    U src/gnu/llvm/tools/lldb/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/gtest_common.h
    U src/gnu/llvm/tools/lldb/unittests/Editline/EditlineTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Editline/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Expression/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Expression/ClangParserTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/JSONTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ListenerTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/CompletionRequestTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ArgsTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/UUIDTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ReproducerTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StringExtractorTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/AnsiTerminalTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ConstStringTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/NameMatchesTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/FlagsTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/FileSpecTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/UriParserTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/OptionsWithRawTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ArchSpecTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Utility/DataExtractorTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/PredicateTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/BroadcasterTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StreamTeeTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StructuredDataTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/LogTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/ScalarTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StringListTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/TimerTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/CleanUpTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/VMRangeTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StatusTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StateTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/TimeoutTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/VASprintfTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StreamTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/StringLexerTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/RegisterValueTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/EnvironmentTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/EventTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/TildeExpressionResolverTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Utility/Inputs/StructuredData-basic.json
    U src/gnu/llvm/tools/lldb/unittests/Signals/UnixSignalsTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Signals/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/debugserver/debugserver_LogCallback.cpp
    U src/gnu/llvm/tools/lldb/unittests/debugserver/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/debugserver/RNBSocketTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/PPC64/TestPPC64InstEmulation.cpp
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/PPC64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/ARM64/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/ARM64/TestArm64InstEmulation.cpp
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/x86/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/UnwindAssembly/x86/Testx86AssemblyInspectionEngine.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteTestUtils.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteClientBaseTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationClientTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteCommunicationTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/gdb-remote/GDBRemoteTestUtils.h
    U src/gnu/llvm/tools/lldb/unittests/Process/Linux/ProcessorTraceTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/Linux/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/MinidumpParserTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/regions-linux-map.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/bad_overlapping_streams.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/fizzbuzz_wow64.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/linux-x86_64.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/linux-x86_64_not_crashed.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/regions-memlist.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/modules-order.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/linux-x86_64.cpp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/linux-i386.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/thread-list-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/fizzbuzz_no_heap.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/memory-list-not-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/regions-memlist64.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/modules-dup-min-addr.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/memory-list-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/dump-content.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/module-list-not-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/module-list-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/bad_duplicate_streams.dmp
    U src/gnu/llvm/tools/lldb/unittests/Process/minidump/Inputs/thread-list-not-padded.dmp
    U src/gnu/llvm/tools/lldb/unittests/Core/RichManglingContextTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Core/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Core/RangeTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Core/StreamCallbackTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Core/RangeMapTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Core/MangledTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Core/Inputs/mangled-function-names.yaml
    U src/gnu/llvm/tools/lldb/unittests/Host/HostTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/SocketAddressTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/TaskPoolTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/HostInfoTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/SocketTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/FileSystemTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Host/SymbolsTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/MainLoopTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/NativeProcessProtocolTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/linux/HostTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Host/linux/SupportTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Breakpoint/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Breakpoint/BreakpointIDTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Disassembler/TestArmv7Disassembly.cpp
    U src/gnu/llvm/tools/lldb/unittests/Disassembler/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/tools/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/inferior/environment_check.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/inferior/thread_inferior.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/MessageObjects.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/TestBase.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/TestClient.h
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/TestBase.h
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/LLGSTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/MessageObjects.h
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/ThreadIdsInJstopinfoTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/tools/lldb-server/tests/TestClient.cpp
    U src/gnu/llvm/tools/lldb/unittests/Symbol/TestType.cpp
    U src/gnu/llvm/tools/lldb/unittests/Symbol/TestDWARFCallFrameInfo.cpp
    U src/gnu/llvm/tools/lldb/unittests/Symbol/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Symbol/TestClangASTContext.cpp
    U src/gnu/llvm/tools/lldb/unittests/Symbol/Inputs/basic-call-frame-info.yaml
    U src/gnu/llvm/tools/lldb/unittests/Language/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Language/Highlighting/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Language/Highlighting/HighlighterTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Language/CPlusPlus/CPlusPlusLanguageTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Language/CPlusPlus/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/DWARF/SymbolFileDWARFTests.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/DWARF/CMakeLists.txt
    I src/gnu/llvm/tools/lldb/unittests/SymbolFile/DWARF/Inputs/test-dwarf.exe
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/DWARF/Inputs/test-dwarf.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/SymbolFilePDBTests.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.h
    I src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-types.exe
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-nested.h
    I src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.exe
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb.pdb
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-types.pdb
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-alt.cpp
    U src/gnu/llvm/tools/lldb/unittests/SymbolFile/PDB/Inputs/test-pdb-types.cpp
    U src/gnu/llvm/tools/lldb/unittests/Platform/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Platform/PlatformDarwinTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/TestObjectFileELF.cpp
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/Inputs/debug-info-relocations.pcm.yaml
    I src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/Inputs/early-section-headers.so
    U src/gnu/llvm/tools/lldb/unittests/ObjectFile/ELF/Inputs/sections-resolve-consistently.yaml
    U src/gnu/llvm/tools/lldb/unittests/Target/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Target/MemoryRegionInfoTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Target/PathMappingListTest.cpp
    U src/gnu/llvm/tools/lldb/unittests/Target/ModuleCacheTest.cpp
    I src/gnu/llvm/tools/lldb/unittests/Target/Inputs/TestModule.so
    U src/gnu/llvm/tools/lldb/unittests/Target/Inputs/TestModule.c
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/TestUtilities.cpp
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/MockTildeExpressionResolver.h
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/MockTildeExpressionResolver.cpp
    U src/gnu/llvm/tools/lldb/unittests/TestingSupport/TestUtilities.h
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.h
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/PythonDataObjectsTests.cpp
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/PythonTestSuite.cpp
    U src/gnu/llvm/tools/lldb/unittests/ScriptInterpreter/Python/PythonExceptionStateTests.cpp
    U src/gnu/llvm/tools/lldb/unittests/Interpreter/TestCompletion.cpp
    U src/gnu/llvm/tools/lldb/unittests/Interpreter/CMakeLists.txt
    U src/gnu/llvm/tools/lldb/unittests/Interpreter/TestOptionArgParser.cpp
    U src/gnu/llvm/tools/lldb/resources/LLDB-Info.plist
    U src/gnu/llvm/tools/lldb/resources/LLDB-Info.plist.in
    U src/gnu/llvm/tools/lldb/resources/debugserver-macosx-entitlements.plist
    U src/gnu/llvm/tools/lld/README.md
    U src/gnu/llvm/tools/lld/.clang-format
    U src/gnu/llvm/tools/lld/.gitignore
    U src/gnu/llvm/tools/lld/CMakeLists.txt
    U src/gnu/llvm/tools/lld/LICENSE.TXT
    U src/gnu/llvm/tools/lld/.arcconfig
    U src/gnu/llvm/tools/lld/CODE_OWNERS.TXT
    U src/gnu/llvm/tools/lld/lib/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/FileArchive.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ObjCPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/TLVPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOLinkingContext.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm64.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/SectCreateFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/LayoutPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/DebugInfo.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileFromAtoms.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ExecutableAtoms.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86_64.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryWriter.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileYAML.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/File.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/FlatNamespaceFile.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/CompactUnwindPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/GOTPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileToAtoms.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachOPasses.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/WriterMachO.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_x86.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryUtils.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler_arm.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/Atoms.h
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ShimPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/ArchHandler.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/StubsPass.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/MachO/MachONormalizedFileBinaryReader.cpp
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/YAML/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/ReaderWriter/YAML/ReaderWriterYAML.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Resolver.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Writer.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Reader.cpp
    U src/gnu/llvm/tools/lld/lib/Core/CMakeLists.txt
    U src/gnu/llvm/tools/lld/lib/Core/DefinedAtom.cpp
    U src/gnu/llvm/tools/lld/lib/Core/File.cpp
    U src/gnu/llvm/tools/lld/lib/Core/Error.cpp
    U src/gnu/llvm/tools/lld/lib/Core/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/lib/Core/LinkingContext.cpp
    U src/gnu/llvm/tools/lld/lib/Driver/DarwinLdDriver.cpp
    U src/gnu/llvm/tools/lld/lib/Driver/DarwinLdOptions.td
    U src/gnu/llvm/tools/lld/lib/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/lld/MinGW/CMakeLists.txt
    U src/gnu/llvm/tools/lld/MinGW/Options.td
    U src/gnu/llvm/tools/lld/MinGW/Driver.cpp
    U src/gnu/llvm/tools/lld/utils/link.yaml
    U src/gnu/llvm/tools/lld/utils/benchmark.py
    U src/gnu/llvm/tools/lld/ELF/ICF.cpp
    U src/gnu/llvm/tools/lld/ELF/README.md
    U src/gnu/llvm/tools/lld/ELF/AArch64ErrataFix.h
    U src/gnu/llvm/tools/lld/ELF/Symbols.h
    C src/gnu/llvm/tools/lld/ELF/SyntheticSections.cpp
    U src/gnu/llvm/tools/lld/ELF/Filesystem.cpp
    U src/gnu/llvm/tools/lld/ELF/EhFrame.cpp
    U src/gnu/llvm/tools/lld/ELF/Bits.h
    U src/gnu/llvm/tools/lld/ELF/LinkerScript.cpp
    U src/gnu/llvm/tools/lld/ELF/ScriptParser.cpp
    U src/gnu/llvm/tools/lld/ELF/OutputSections.h
    U src/gnu/llvm/tools/lld/ELF/Target.cpp
    U src/gnu/llvm/tools/lld/ELF/Relocations.h
    U src/gnu/llvm/tools/lld/ELF/Symbols.cpp
    U src/gnu/llvm/tools/lld/ELF/ScriptParser.h
    C src/gnu/llvm/tools/lld/ELF/Writer.cpp
    U src/gnu/llvm/tools/lld/ELF/MapFile.h
    U src/gnu/llvm/tools/lld/ELF/EhFrame.h
    U src/gnu/llvm/tools/lld/ELF/LTO.h
    U src/gnu/llvm/tools/lld/ELF/SymbolTable.h
    U src/gnu/llvm/tools/lld/ELF/CallGraphSort.cpp
    U src/gnu/llvm/tools/lld/ELF/ScriptLexer.h
    U src/gnu/llvm/tools/lld/ELF/CMakeLists.txt
    U src/gnu/llvm/tools/lld/ELF/OutputSections.cpp
    U src/gnu/llvm/tools/lld/ELF/Options.td
    U src/gnu/llvm/tools/lld/ELF/DWARF.cpp
    U src/gnu/llvm/tools/lld/ELF/AArch64ErrataFix.cpp
    U src/gnu/llvm/tools/lld/ELF/LTO.cpp
    U src/gnu/llvm/tools/lld/ELF/Driver.h
    U src/gnu/llvm/tools/lld/ELF/Config.h
    U src/gnu/llvm/tools/lld/ELF/ScriptLexer.cpp
    U src/gnu/llvm/tools/lld/ELF/CallGraphSort.h
    U src/gnu/llvm/tools/lld/ELF/DWARF.h
    U src/gnu/llvm/tools/lld/ELF/InputSection.cpp
    U src/gnu/llvm/tools/lld/ELF/Writer.h
    U src/gnu/llvm/tools/lld/ELF/InputFiles.cpp
    U src/gnu/llvm/tools/lld/ELF/InputFiles.h
    U src/gnu/llvm/tools/lld/ELF/Target.h
    U src/gnu/llvm/tools/lld/ELF/Thunks.cpp
    U src/gnu/llvm/tools/lld/ELF/DriverUtils.cpp
    U src/gnu/llvm/tools/lld/ELF/Driver.cpp
    U src/gnu/llvm/tools/lld/ELF/ICF.h
    U src/gnu/llvm/tools/lld/ELF/Filesystem.h
    U src/gnu/llvm/tools/lld/ELF/Relocations.cpp
    U src/gnu/llvm/tools/lld/ELF/Thunks.h
    U src/gnu/llvm/tools/lld/ELF/MapFile.cpp
    U src/gnu/llvm/tools/lld/ELF/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/ELF/LinkerScript.h
    U src/gnu/llvm/tools/lld/ELF/InputSection.h
    U src/gnu/llvm/tools/lld/ELF/SyntheticSections.h
    U src/gnu/llvm/tools/lld/ELF/MarkLive.cpp
    U src/gnu/llvm/tools/lld/ELF/MarkLive.h
    U src/gnu/llvm/tools/lld/ELF/Arch/MipsArchTree.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/AArch64.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/ARM.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/AMDGPU.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/PPC.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/Mips.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/Hexagon.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/X86.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/AVR.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/X86_64.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/MSP430.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/SPARCV9.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/PPC64.cpp
    U src/gnu/llvm/tools/lld/ELF/Arch/RISCV.cpp
    U src/gnu/llvm/tools/lld/cmake/modules/AddLLD.cmake
    U src/gnu/llvm/tools/lld/cmake/modules/FindVTune.cmake
    U src/gnu/llvm/tools/lld/docs/Driver.rst
    U src/gnu/llvm/tools/lld/docs/sphinx_intro.rst
    U src/gnu/llvm/tools/lld/docs/windows_support.rst
    U src/gnu/llvm/tools/lld/docs/index.rst
    U src/gnu/llvm/tools/lld/docs/missingkeyfunction.rst
    U src/gnu/llvm/tools/lld/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/lld/docs/ld.lld.1
    U src/gnu/llvm/tools/lld/docs/getting_started.rst
    U src/gnu/llvm/tools/lld/docs/CMakeLists.txt
    U src/gnu/llvm/tools/lld/docs/make.bat
    U src/gnu/llvm/tools/lld/docs/open_projects.rst
    U src/gnu/llvm/tools/lld/docs/hello.png
    U src/gnu/llvm/tools/lld/docs/Readers.rst
    U src/gnu/llvm/tools/lld/docs/WebAssembly.rst
    U src/gnu/llvm/tools/lld/docs/README.txt
    U src/gnu/llvm/tools/lld/docs/NewLLD.rst
    U src/gnu/llvm/tools/lld/docs/conf.py
    U src/gnu/llvm/tools/lld/docs/AtomLLD.rst
    U src/gnu/llvm/tools/lld/docs/development.rst
    U src/gnu/llvm/tools/lld/docs/design.rst
    U src/gnu/llvm/tools/lld/docs/llvm-theme/theme.conf
    U src/gnu/llvm/tools/lld/docs/llvm-theme/layout.html
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/llvm.css
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/logo.png
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/navigation.png
    U src/gnu/llvm/tools/lld/docs/llvm-theme/static/contents.png
    U src/gnu/llvm/tools/lld/docs/_templates/layout.html
    U src/gnu/llvm/tools/lld/docs/_templates/indexsidebar.html
    U src/gnu/llvm/tools/lld/docs/_static/favicon.ico
    U src/gnu/llvm/tools/lld/Common/Reproduce.cpp
    U src/gnu/llvm/tools/lld/Common/TargetOptionsCommandFlags.cpp
    U src/gnu/llvm/tools/lld/Common/ErrorHandler.cpp
    U src/gnu/llvm/tools/lld/Common/CMakeLists.txt
    U src/gnu/llvm/tools/lld/Common/Memory.cpp
    U src/gnu/llvm/tools/lld/Common/Args.cpp
    U src/gnu/llvm/tools/lld/Common/Timer.cpp
    U src/gnu/llvm/tools/lld/Common/Strings.cpp
    U src/gnu/llvm/tools/lld/Common/Version.cpp
    U src/gnu/llvm/tools/lld/Common/Threads.cpp
    U src/gnu/llvm/tools/lld/wasm/WriterUtils.cpp
    U src/gnu/llvm/tools/lld/wasm/InputGlobal.h
    U src/gnu/llvm/tools/lld/wasm/Symbols.h
    U src/gnu/llvm/tools/lld/wasm/InputChunks.h
    U src/gnu/llvm/tools/lld/wasm/OutputSections.h
    U src/gnu/llvm/tools/lld/wasm/WriterUtils.h
    U src/gnu/llvm/tools/lld/wasm/Symbols.cpp
    U src/gnu/llvm/tools/lld/wasm/Writer.cpp
    U src/gnu/llvm/tools/lld/wasm/LTO.h
    U src/gnu/llvm/tools/lld/wasm/SymbolTable.h
    U src/gnu/llvm/tools/lld/wasm/InputChunks.cpp
    U src/gnu/llvm/tools/lld/wasm/CMakeLists.txt
    U src/gnu/llvm/tools/lld/wasm/OutputSections.cpp
    U src/gnu/llvm/tools/lld/wasm/Options.td
    U src/gnu/llvm/tools/lld/wasm/LTO.cpp
    U src/gnu/llvm/tools/lld/wasm/Config.h
    U src/gnu/llvm/tools/lld/wasm/Writer.h
    U src/gnu/llvm/tools/lld/wasm/InputFiles.cpp
    U src/gnu/llvm/tools/lld/wasm/InputFiles.h
    U src/gnu/llvm/tools/lld/wasm/Driver.cpp
    U src/gnu/llvm/tools/lld/wasm/OutputSegment.h
    U src/gnu/llvm/tools/lld/wasm/MarkLive.h
    U src/gnu/llvm/tools/lld/wasm/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/wasm/InputEvent.h
    U src/gnu/llvm/tools/lld/wasm/MarkLive.cpp
    U src/gnu/llvm/tools/lld/COFF/ICF.cpp
    U src/gnu/llvm/tools/lld/COFF/Chunks.h
    U src/gnu/llvm/tools/lld/COFF/README.md
    U src/gnu/llvm/tools/lld/COFF/PDB.h
    U src/gnu/llvm/tools/lld/COFF/Symbols.h
    U src/gnu/llvm/tools/lld/COFF/PDB.cpp
    U src/gnu/llvm/tools/lld/COFF/Symbols.cpp
    U src/gnu/llvm/tools/lld/COFF/Writer.cpp
    U src/gnu/llvm/tools/lld/COFF/MapFile.h
    U src/gnu/llvm/tools/lld/COFF/Chunks.cpp
    U src/gnu/llvm/tools/lld/COFF/LTO.h
    U src/gnu/llvm/tools/lld/COFF/SymbolTable.h
    U src/gnu/llvm/tools/lld/COFF/CMakeLists.txt
    U src/gnu/llvm/tools/lld/COFF/Options.td
    U src/gnu/llvm/tools/lld/COFF/LTO.cpp
    U src/gnu/llvm/tools/lld/COFF/Driver.h
    U src/gnu/llvm/tools/lld/COFF/DLL.cpp
    U src/gnu/llvm/tools/lld/COFF/Config.h
    U src/gnu/llvm/tools/lld/COFF/Writer.h
    U src/gnu/llvm/tools/lld/COFF/MinGW.cpp
    U src/gnu/llvm/tools/lld/COFF/InputFiles.cpp
    U src/gnu/llvm/tools/lld/COFF/DLL.h
    U src/gnu/llvm/tools/lld/COFF/InputFiles.h
    U src/gnu/llvm/tools/lld/COFF/MinGW.h
    U src/gnu/llvm/tools/lld/COFF/DriverUtils.cpp
    U src/gnu/llvm/tools/lld/COFF/Driver.cpp
    U src/gnu/llvm/tools/lld/COFF/ICF.h
    U src/gnu/llvm/tools/lld/COFF/MapFile.cpp
    U src/gnu/llvm/tools/lld/COFF/SymbolTable.cpp
    U src/gnu/llvm/tools/lld/COFF/MarkLive.cpp
    U src/gnu/llvm/tools/lld/COFF/MarkLive.h
    U src/gnu/llvm/tools/lld/tools/lld/CMakeLists.txt
    U src/gnu/llvm/tools/lld/tools/lld/lld.cpp
    U src/gnu/llvm/tools/lld/include/lld/ReaderWriter/MachOLinkingContext.h
    U src/gnu/llvm/tools/lld/include/lld/ReaderWriter/YamlContext.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Version.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Args.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Memory.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Strings.h
    U src/gnu/llvm/tools/lld/include/lld/Common/LLVM.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Version.inc.in
    U src/gnu/llvm/tools/lld/include/lld/Common/Timer.h
    U src/gnu/llvm/tools/lld/include/lld/Common/ErrorHandler.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Driver.h
    U src/gnu/llvm/tools/lld/include/lld/Common/TargetOptionsCommandFlags.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Reproduce.h
    U src/gnu/llvm/tools/lld/include/lld/Common/Threads.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Error.h
    U src/gnu/llvm/tools/lld/include/lld/Core/LinkingContext.h
    U src/gnu/llvm/tools/lld/include/lld/Core/ArchiveLibraryFile.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryFile.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Atom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SymbolTable.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Resolver.h
    U src/gnu/llvm/tools/lld/include/lld/Core/SharedLibraryAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/File.h
    U src/gnu/llvm/tools/lld/include/lld/Core/PassManager.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reference.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Writer.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Instrumentation.h
    U src/gnu/llvm/tools/lld/include/lld/Core/AbsoluteAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Node.h
    U src/gnu/llvm/tools/lld/include/lld/Core/UndefinedAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Reader.h
    U src/gnu/llvm/tools/lld/include/lld/Core/DefinedAtom.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Pass.h
    U src/gnu/llvm/tools/lld/include/lld/Core/Simple.h
    U src/gnu/llvm/tools/lld/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/DriverTests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/DriverTests/DarwinLdDriverTest.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileYAMLTests.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/empty_obj_x86_armv7.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryWriterTests.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/CMakeLists.txt
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileBinaryReaderTests.cpp
    U src/gnu/llvm/tools/lld/unittests/MachOTests/MachONormalizedFileToAtomsTests.cpp
    U src/gnu/llvm/tools/clang/.clang-format
    U src/gnu/llvm/tools/clang/.gitignore
    U src/gnu/llvm/tools/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/NOTES.txt
    U src/gnu/llvm/tools/clang/LICENSE.TXT
    U src/gnu/llvm/tools/clang/.clang-tidy
    U src/gnu/llvm/tools/clang/README.txt
    U src/gnu/llvm/tools/clang/ModuleInfo.txt
    U src/gnu/llvm/tools/clang/.arcconfig
    U src/gnu/llvm/tools/clang/INSTALL.txt
    U src/gnu/llvm/tools/clang/CODE_OWNERS.TXT
    U src/gnu/llvm/tools/clang/INPUTS/macro_pounder_obj.c
    U src/gnu/llvm/tools/clang/INPUTS/carbon_h.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain2.c
    U src/gnu/llvm/tools/clang/INPUTS/Cocoa_h.m
    U src/gnu/llvm/tools/clang/INPUTS/stpcpy-test.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-big-switch.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-nested-switches.c
    U src/gnu/llvm/tools/clang/INPUTS/macro_pounder_fn.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-nested-var-scopes.cpp
    U src/gnu/llvm/tools/clang/INPUTS/all-std-headers.cpp
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain3.c
    U src/gnu/llvm/tools/clang/INPUTS/cfg-long-chain1.c
    U src/gnu/llvm/tools/clang/INPUTS/iostream.cc
    U src/gnu/llvm/tools/clang/INPUTS/c99-intconst-1.c
    U src/gnu/llvm/tools/clang/examples/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/Test.cxx
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/README.txt
    U src/gnu/llvm/tools/clang/examples/clang-interpreter/main.cpp
    U src/gnu/llvm/tools/clang/examples/analyzer-plugin/SampleAnalyzerPlugin.exports
    U src/gnu/llvm/tools/clang/examples/analyzer-plugin/MainCallChecker.cpp
    U src/gnu/llvm/tools/clang/examples/analyzer-plugin/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/PrintFunctionNames.exports
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/PrintFunctionNames.cpp
    U src/gnu/llvm/tools/clang/examples/PrintFunctionNames/README.txt
    U src/gnu/llvm/tools/clang/examples/AnnotateFunctions/CMakeLists.txt
    U src/gnu/llvm/tools/clang/examples/AnnotateFunctions/AnnotateFunctions.cpp
    U src/gnu/llvm/tools/clang/lib/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Serialization/PCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/GlobalModuleIndex.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Serialization/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriter.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleManager.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReaderInternals.h
    U src/gnu/llvm/tools/clang/lib/Serialization/ModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTReader.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTCommon.h
    U src/gnu/llvm/tools/clang/lib/Serialization/GeneratePCH.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/ASTWriterStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Serialization/MultiOnDiskHashTable.h
    U src/gnu/llvm/tools/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp
    U src/gnu/llvm/tools/clang/lib/FrontendTool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnbridgedCasts.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMT.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransEmptyStatementsAndDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/FileRemapper.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/PlistReporter.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransRetainReleaseDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransARCAssign.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProperties.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransZeroOutPropsInDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransformActions.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransProtectedScope.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Internals.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCCalls.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ObjCMT.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/ARCMTActions.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransGCAttrs.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAutoreleasePool.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/Transforms.h
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransAPIUses.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransUnusedInitDelegate.cpp
    U src/gnu/llvm/tools/clang/lib/ARCMigrate/TransBlockObjCVariable.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ABIInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGNonTrivialStruct.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmt.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/VarBypassDetector.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGValue.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExpr.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCGNU.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ModuleBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGAtomic.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/EHScopeStack.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/MacroPPCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprAgg.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjC.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/ConstantInitBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/TargetInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTBAA.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGStmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGGPUBuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDecl.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDANV.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenABITypes.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuiltin.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBlocks.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTables.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGException.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypeCache.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGRecordLayout.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/VarBypassDetector.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGClass.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/BackendUtil.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGVTT.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenPGO.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCUDARuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprScalar.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCall.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCMac.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CoverageMappingGen.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCleanup.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenModule.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/README.txt
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGExprComplex.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGDebugInfo.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGBuilder.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ConstantEmitter.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SanitizerMetadata.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenAction.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenTypes.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGCXXABI.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenCLRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/SwiftCallingConv.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGObjCRuntime.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/ObjectFilePCHContainerOperations.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGLoopInfo.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CGOpenMPRuntimeNVPTX.cpp
    U src/gnu/llvm/tools/clang/lib/CodeGen/Address.h
    U src/gnu/llvm/tools/clang/lib/CodeGen/CodeGenFunction.h
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedDiagnosticConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendTiming.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DependencyFile.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTConsumers.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/HeaderIncludeGen.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/InitHeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/DiagnosticRenderer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnosticBuffer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CompilerInstance.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTUnit.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ModuleDependencyCollector.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/InitPreprocessor.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/PrecompiledPreamble.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/MultiplexConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendAction.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ASTMerge.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TextDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LayoutOverrideSource.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/LogDiagnosticPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CompilerInvocation.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/VerifyDiagnosticConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/SerializedDiagnosticReader.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/FrontendOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/PrintPreprocessedOutput.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/ChainedIncludesSource.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/CreateInvocationFromCommandLine.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/TestModuleFileExtension.h
    U src/gnu/llvm/tools/clang/lib/Frontend/LangStandards.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/HTMLPrint.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/InclusionRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteModernObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteTest.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/RewriteMacros.cpp
    U src/gnu/llvm/tools/clang/lib/Frontend/Rewrite/FixItRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/TargetInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Builtins.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/IdentifierTable.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SourceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SanitizerBlacklist.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CodeGenOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets.h
    U src/gnu/llvm/tools/clang/lib/Basic/LangOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/TokenKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OperatorPrecedence.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SanitizerSpecialCaseList.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Basic/ObjCRuntime.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Module.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticIDs.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/MemoryBufferCache.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/DiagnosticOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/SourceLocation.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileManager.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/OpenMPKinds.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Sanitizers.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Diagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FixedPoint.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Warnings.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/XRayInstr.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/FileSystemStatCache.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Attributes.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Version.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/XRayLists.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Cuda.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/CharInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/XCore.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AArch64.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Mips.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/TCE.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/XCore.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/ARM.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Sparc.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Hexagon.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AMDGPU.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/WebAssembly.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/PPC.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/PNaCl.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/PNaCl.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/SystemZ.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AMDGPU.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Mips.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/BPF.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/NVPTX.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/WebAssembly.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Le64.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/PPC.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Hexagon.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Lanai.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/X86.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AVR.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/X86.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/MSP430.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/RISCV.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/MSP430.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/OSTargets.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/SPIR.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Sparc.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/BPF.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/ARC.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/TCE.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Le64.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/RISCV.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AArch64.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/ARM.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/AVR.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/Lanai.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/NVPTX.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/SystemZ.cpp
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/ARC.h
    U src/gnu/llvm/tools/clang/lib/Basic/Targets/SPIR.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/ScratchBuffer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Lexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/TokenConcatenation.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Pragma.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/ModuleMap.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/UnicodeCharSets.h
    U src/gnu/llvm/tools/clang/lib/Lex/HeaderMap.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/LiteralSupport.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPConditionalDirectiveRecord.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPExpressions.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Lex/PPDirectives.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/Preprocessor.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPLexerChange.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/MacroInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessingRecord.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPCaching.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PPMacroExpansion.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/HeaderSearch.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/MacroArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/PreprocessorLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Lex/TokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCast.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateVariadic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprMember.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLookup.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOverload.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaType.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaChecking.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaLambda.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/ParsedAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaPseudoObject.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Sema/SemaFixItUtils.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateDeduction.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TreeTransform.h
    U src/gnu/llvm/tools/clang/lib/Sema/CoroutineStmtBuilder.h
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/JumpDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Scope.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCUDA.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaInit.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/IdentifierResolver.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DelayedDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplateInstantiateDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/DeclSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmtAttr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/AnalysisBasedWarnings.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaAccess.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCodeComplete.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/TypeLocBuilder.h
    U src/gnu/llvm/tools/clang/lib/Sema/MultiplexExternalSemaSource.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/ScopeInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaObjCProperty.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExceptionSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCoroutine.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/Sema.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaExpr.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaCXXScopeSpec.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/CodeCompleteConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/Sema/SemaDeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseStmtAsm.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTemplate.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseDeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseCXXInlineMethods.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseAST.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/Parser.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseExpr.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Parse/ParsePragma.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseObjc.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseStmt.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseInit.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseTentative.cpp
    U src/gnu/llvm/tools/clang/lib/Parse/ParseExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CommonOptionsParser.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/RefactoringCallbacks.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Tooling.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/StandaloneExecution.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Execution.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/AllTUsExecution.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/CompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/ArgumentsAdjusters.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/JSONCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/InterpolatingCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/FixIt.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/FileMatchTrie.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Inclusions/HeaderIncludes.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Inclusions/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Inclusions/IncludeStyle.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Replacement.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Lookup.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Core/Diagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/ASTDiff/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/ASTDiff/ASTDiff.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/AtomicChange.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelection.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/ASTSelectionRequirements.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/RefactoringActions.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Extract/SourceExtraction.h
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Extract/Extract.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFindingAction.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRLocFinder.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/RenamingAction.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/USRFinder.cpp
    U src/gnu/llvm/tools/clang/lib/Tooling/Refactoring/Rename/SymbolOccurrences.cpp
    U src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.cpp
    U src/gnu/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.h
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatInternal.h
    U src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.h
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.h
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineParser.h
    U src/gnu/llvm/tools/clang/lib/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Format/Format.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.h
    U src/gnu/llvm/tools/clang/lib/Format/UnwrappedLineFormatter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/NamespaceEndCommentsFixer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.cpp
    U src/gnu/llvm/tools/clang/lib/Format/Encoding.h
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnnotator.h
    U src/gnu/llvm/tools/clang/lib/Format/BreakableToken.cpp
    U src/gnu/llvm/tools/clang/lib/Format/SortJavaScriptImports.h
    U src/gnu/llvm/tools/clang/lib/Format/ContinuationIndenter.h
    U src/gnu/llvm/tools/clang/lib/Format/TokenAnalyzer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.cpp
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.h
    U src/gnu/llvm/tools/clang/lib/Format/WhitespaceManager.h
    U src/gnu/llvm/tools/clang/lib/Format/AffectedRangeManager.cpp
    U src/gnu/llvm/tools/clang/lib/Format/FormatTokenLexer.h
    U src/gnu/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.cpp
    U src/gnu/llvm/tools/clang/lib/Format/UsingDeclarationsSorter.h
    U src/gnu/llvm/tools/clang/lib/Format/FormatToken.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Rewrite/RewriteRope.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/HTMLRewrite.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/Rewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/TokenRewriter.cpp
    U src/gnu/llvm/tools/clang/lib/Rewrite/DeltaTree.cpp
    U src/gnu/llvm/tools/clang/lib/CrossTU/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/CrossTU/CrossTranslationUnit.cpp
    U src/gnu/llvm/tools/clang/lib/Headers/f16cintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/ptwriteintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm3dnow.h
    U src/gnu/llvm/tools/clang/lib/Headers/s390intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vldqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmiintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/inttypes.h
    U src/gnu/llvm/tools/clang/lib/Headers/intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xopintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_runtime_wrapper.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/lwpintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlbwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vpopcntdqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_pclmul.h
    U src/gnu/llvm/tools/clang/lib/Headers/mwaitxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/popcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/msa.h
    U src/gnu/llvm/tools/clang/lib/Headers/tmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/rdseedintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlbitalgintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdatomic.h
    U src/gnu/llvm/tools/clang/lib/Headers/ia32intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/arm_acle.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlcdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pconfigintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/shaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlvnniintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_intrinsics.h
    U src/gnu/llvm/tools/clang/lib/Headers/vadefs.h
    U src/gnu/llvm/tools/clang/lib/Headers/varargs.h
    U src/gnu/llvm/tools/clang/lib/Headers/prfchwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512bwintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_builtin_vars.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmxlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_complex_builtins.h
    U src/gnu/llvm/tools/clang/lib/Headers/iso646.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdint.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512erintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavesintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/clwbintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Headers/rtmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/movdirintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vaesintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdarg.h
    U src/gnu/llvm/tools/clang/lib/Headers/cpuid.h
    U src/gnu/llvm/tools/clang/lib/Headers/invpcidintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mm_malloc.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlvbmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/clflushoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512ifmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/altivec.h
    U src/gnu/llvm/tools/clang/lib/Headers/pkuintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vbmivlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cetintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/immintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512pfintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/gfniintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/adxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/module.modulemap
    U src/gnu/llvm/tools/clang/lib/Headers/stddef.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_math_forward_declares.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmiintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512dqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/smmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdnoreturn.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_device_functions.h
    U src/gnu/llvm/tools/clang/lib/Headers/tbmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/mmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/limits.h
    U src/gnu/llvm/tools/clang/lib/Headers/fxsrintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_libdevice_declares.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdalign.h
    U src/gnu/llvm/tools/clang/lib/Headers/x86intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/pmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/tgmath.h
    U src/gnu/llvm/tools/clang/lib/Headers/unwind.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512cdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/opencl-c.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vpopcntdqvlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveoptintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512vnniintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/waitpkgintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/armintr.h
    U src/gnu/llvm/tools/clang/lib/Headers/bmi2intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/ammintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/sgxintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/fma4intrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsaveintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512ifmavlintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xsavecintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/nmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cldemoteintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/wbnoinvdintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/emmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/vpclmulqdqintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/stdbool.h
    U src/gnu/llvm/tools/clang/lib/Headers/htmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512fintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/fmaintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/wmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/float.h
    U src/gnu/llvm/tools/clang/lib/Headers/arm64intr.h
    U src/gnu/llvm/tools/clang/lib/Headers/xtestintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__stddef_max_align_t.h
    U src/gnu/llvm/tools/clang/lib/Headers/__wmmintrin_aes.h
    U src/gnu/llvm/tools/clang/lib/Headers/clzerointrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/__clang_cuda_cmath.h
    U src/gnu/llvm/tools/clang/lib/Headers/lzcntintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/avx512bitalgintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/xmmintrin.h
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/new
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/algorithm
    U src/gnu/llvm/tools/clang/lib/Headers/cuda_wrappers/complex
    U src/gnu/llvm/tools/clang/lib/Index/SimpleFormatContext.h
    U src/gnu/llvm/tools/clang/lib/Index/CommentToXML.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingContext.h
    U src/gnu/llvm/tools/clang/lib/Index/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Index/CodegenNameGenerator.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingAction.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexTypeSourceInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexDecl.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexSymbol.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexBody.cpp
    U src/gnu/llvm/tools/clang/lib/Index/USRGeneration.cpp
    U src/gnu/llvm/tools/clang/lib/Index/IndexingContext.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Phases.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Tool.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Multilib.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/XRayArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Driver/Distro.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Action.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Job.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/DriverOptions.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Types.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/DarwinSDKInfo.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Driver.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/Compilation.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/InputInfo.h
    U src/gnu/llvm/tools/clang/lib/Driver/SanitizerArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Minix.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/XCore.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Gnu.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Linux.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Fuchsia.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Linux.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Gnu.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/NaCl.cpp
    C src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Clang.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/HIP.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/TCE.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/XCore.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/HIP.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Cuda.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSVC.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Darwin.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Darwin.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Myriad.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Hurd.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Contiki.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Hurd.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/AMDGPU.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Minix.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSVC.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CloudABI.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/RISCVToolchain.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/WebAssembly.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/BareMetal.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Ananas.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Hexagon.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Lanai.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/AVR.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Ananas.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSP430.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSP430.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Myriad.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/NetBSD.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MinGW.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/DragonFly.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Haiku.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Solaris.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/NaCl.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CommonArgs.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Clang.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MinGW.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Contiki.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/PS4CPU.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/TCE.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/OpenBSD.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/FreeBSD.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MipsLinux.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/CrossWindows.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Solaris.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Haiku.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/AVR.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/MSVCSetupApi.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Cuda.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/Mips.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/PPC.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/X86.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/Sparc.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/RISCV.cpp
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/AArch64.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/ARM.h
    U src/gnu/llvm/tools/clang/lib/Driver/ToolChains/Arch/SystemZ.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Consumed.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyCommon.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CloneDetection.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/Dominators.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/BodyFarm.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ExprMutationAnalyzer.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CodeInjector.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ProgramPoint.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ObjCNoReturn.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/AnalysisDeclContext.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CocoaConventions.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafety.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ConstructionContext.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFG.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/LiveVariables.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFGReachabilityAnalysis.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/UninitializedValues.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyLogical.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CFGStmtMap.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/PostOrderCFGView.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ReachableCode.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/CallGraph.cpp
    U src/gnu/llvm/tools/clang/lib/Analysis/ThreadSafetyTIL.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/Commit.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp
    U src/gnu/llvm/tools/clang/lib/Edit/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/Edit/EditedSource.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/ASTMatchersInternal.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/ASTMatchFinder.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/VariantValue.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Parser.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Diagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Marshallers.h
    U src/gnu/llvm/tools/clang/lib/ASTMatchers/Dynamic/Registry.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/README.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/AnalysisConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/FrontendActions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistry.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelInjector.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/ModelConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Frontend/CheckerRegistration.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NumberObjectConversionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VirtualCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BasicObjCFoundationChecks.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSAutoreleasePoolChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnUndefChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StdLibraryFunctionsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/EnumCastOutOfRangeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InterCheckerAPI.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CallAndMessageChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCUnusedIVarsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefResultChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CloneChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MoveChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCDealloc.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckerDocumentation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PaddingChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LocalizationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CXXSelfAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSKeychainAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NullabilityChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnreachableCodeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckObjCInstMethSignature.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AllocationState.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VLASizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/LLVMConventionsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DereferenceChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSizeofPointer.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ChrootChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TaintTesterChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IteratorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocSizeofChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GTestChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ExprInspectionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TestAfterDivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefBranchChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalyzerStatsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeadStoresChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/FixedAddressChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSuperDeallocChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCSelfInitChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/InnerPointerChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCPropertyChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerArithChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GenericTaintChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DynamicTypePropagation.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BuiltinFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundCheckerV2.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NoReturnFunctionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefCapturedBlockVarChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CheckSecuritySyntaxOnly.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PthreadLockChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IdenticalExprChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/VforkChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TrustNonnullChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CStringSyntaxChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DirectIvarAssignment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAtSyncChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BoolAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/GCDAntipatternChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RunLoopAutoreleaseLeakChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NSErrorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ReturnPointerRangeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCMissingSuperCallChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DeleteWithNonVirtualDtorChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/PointerSubChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/NonnullGlobalConstantsChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedAssignmentChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/AnalysisOrderChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MmapWriteExecChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastToStructChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MacOSXAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UndefinedArraySubscriptChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ValistChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/CastSizeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/IvarInvalidationChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DivZeroChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/StackAddrEscapeChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/TraversalChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/DebugCheckers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCContainersASTChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ArrayBoundChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/SimpleStreamChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/ObjCAutoreleaseWriteChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UnixAPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/BlockInCriticalSectionChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObject.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedObjectChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/UninitializedPointee.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIFunctionClassifier.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIChecker.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPIBugReporter.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/MPITypes.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountDiagnostics.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/RetainCountChecker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerHelpers.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporterVisitors.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RangedConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CoreEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Z3ConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CallEvent.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/TaintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SimpleSValBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SymbolManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BugReporter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CheckerContext.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PathDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/CommonBugCategories.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BasicValueFactory.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RetainSummaryManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineObjC.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/DynamicTypeMap.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Store.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SVals.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCXX.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/MemRegion.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/APSIntType.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/HTMLDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalyzerOptions.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ProgramState.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Checker.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PlistDiagnostics.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/WorkList.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopUnrolling.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/BlockCounter.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/LoopWidening.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/RegionStore.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/PrettyStackTraceLocationContext.h
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/Environment.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/IssueHash.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/FunctionSummary.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/SubEngine.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ExplodedGraph.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/AnalysisManager.cpp
    U src/gnu/llvm/tools/clang/lib/StaticAnalyzer/Core/ConstraintManager.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Type.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTImporterLookupTable.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DataCollection.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NestedNameSpecifier.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CXXABI.h
    U src/gnu/llvm/tools/clang/lib/AST/ComparisonCategories.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/InheritViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentLexer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayout.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Stmt.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTableBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/VTTBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclarationName.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprConstant.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Decl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/OSLog.cpp
    U src/gnu/llvm/tools/clang/lib/AST/APValue.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTDiagnostic.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentSema.cpp
    U src/gnu/llvm/tools/clang/lib/AST/AttrImpl.cpp
    U src/gnu/llvm/tools/clang/lib/AST/NSAPI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/lib/AST/CXXInheritance.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypePrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/OpenMPClause.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTStructuralEquivalence.cpp
    U src/gnu/llvm/tools/clang/lib/AST/MicrosoftMangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/SelectorLocationsKind.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/QualTypeNames.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ParentMap.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtViz.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTContext.cpp
    U src/gnu/llvm/tools/clang/lib/AST/FormatStringParsing.h
    U src/gnu/llvm/tools/clang/lib/AST/ODRHash.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExternalASTSource.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTConsumer.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtOpenMP.cpp
    U src/gnu/llvm/tools/clang/lib/AST/PrintfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentCommandTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RecordLayoutBuilder.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/FormatString.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTTypeTraits.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Mangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprObjC.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Comment.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclPrinter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclFriend.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TypeLoc.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumCXXABI.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtProfile.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ItaniumMangle.cpp
    U src/gnu/llvm/tools/clang/lib/AST/CommentBriefParser.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TemplateBase.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTImporter.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Linkage.h
    U src/gnu/llvm/tools/clang/lib/AST/ScanfFormatString.cpp
    U src/gnu/llvm/tools/clang/lib/AST/TextNodeDumper.cpp
    U src/gnu/llvm/tools/clang/lib/AST/RawCommentList.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclCXX.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ASTDumper.cpp
    U src/gnu/llvm/tools/clang/lib/AST/StmtIterator.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclGroup.cpp
    U src/gnu/llvm/tools/clang/lib/AST/Expr.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExprClassification.cpp
    U src/gnu/llvm/tools/clang/lib/AST/ExternalASTMerger.cpp
    U src/gnu/llvm/tools/clang/lib/AST/DeclTemplate.cpp
    U src/gnu/llvm/tools/clang/www/builtins.py
    U src/gnu/llvm/tools/clang/www/feature-compile2.png
    C src/gnu/llvm/tools/clang/www/cxx_status.html
    U src/gnu/llvm/tools/clang/www/cxx_compatibility.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.6-clang11.patch
    U src/gnu/llvm/tools/clang/www/clang_video-07-25-2007.html
    U src/gnu/llvm/tools/clang/www/UniversalDriver.html
    U src/gnu/llvm/tools/clang/www/get_involved.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.7-clang11.patch
    U src/gnu/llvm/tools/clang/www/features.html
    U src/gnu/llvm/tools/clang/www/carbon-compile.png
    U src/gnu/llvm/tools/clang/www/content.css
    U src/gnu/llvm/tools/clang/www/OpenProjects.html
    U src/gnu/llvm/tools/clang/www/favicon.ico
    U src/gnu/llvm/tools/clang/www/hacking.html
    U src/gnu/llvm/tools/clang/www/libstdc++4.4-clang0x.patch
    U src/gnu/llvm/tools/clang/www/make_cxx_dr_status
    U src/gnu/llvm/tools/clang/www/robots.txt
    U src/gnu/llvm/tools/clang/www/related.html
    C src/gnu/llvm/tools/clang/www/cxx_dr_status.html
    U src/gnu/llvm/tools/clang/www/diagnostics.html
    U src/gnu/llvm/tools/clang/www/feature-compile1.png
    U src/gnu/llvm/tools/clang/www/menu.html.incl
    U src/gnu/llvm/tools/clang/www/menu.css
    U src/gnu/llvm/tools/clang/www/comparison.html
    U src/gnu/llvm/tools/clang/www/feature-memory1.png
    U src/gnu/llvm/tools/clang/www/compatibility.html
    U src/gnu/llvm/tools/clang/www/index.html
    U src/gnu/llvm/tools/clang/www/clang_video-05-25-2007.html
    U src/gnu/llvm/tools/clang/www/get_started.html
    U src/gnu/llvm/tools/clang/www/analyzer/release_notes.html
    U src/gnu/llvm/tools/clang/www/analyzer/implicit_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/scan-build.html
    U src/gnu/llvm/tools/clang/www/analyzer/available_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/alpha_checks.html
    U src/gnu/llvm/tools/clang/www/analyzer/content.css
    U src/gnu/llvm/tools/clang/www/analyzer/potential_checkers.html
    U src/gnu/llvm/tools/clang/www/analyzer/annotations.html
    U src/gnu/llvm/tools/clang/www/analyzer/menu.html.incl
    U src/gnu/llvm/tools/clang/www/analyzer/menu.css
    U src/gnu/llvm/tools/clang/www/analyzer/filing_bugs.html
    U src/gnu/llvm/tools/clang/www/analyzer/latest_checker.html.incl
    U src/gnu/llvm/tools/clang/www/analyzer/open_projects.html
    U src/gnu/llvm/tools/clang/www/analyzer/faq.html
    U src/gnu/llvm/tools/clang/www/analyzer/index.html
    U src/gnu/llvm/tools/clang/www/analyzer/installation.html
    U src/gnu/llvm/tools/clang/www/analyzer/xcode.html
    U src/gnu/llvm/tools/clang/www/analyzer/checker_dev_manual.html
    U src/gnu/llvm/tools/clang/www/analyzer/scripts/menu.js
    U src/gnu/llvm/tools/clang/www/analyzer/scripts/expandcollapse.js
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_xcode.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_ns_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_attribute_nonnull.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_custom_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/analyzer_html.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/scan_build_cmd.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_cf_returns_retained.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_null_pointer.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/example_use_assert.png
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_dark.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/arrows_dark.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/arrows_light.gif
    U src/gnu/llvm/tools/clang/www/analyzer/images/expandcollapse/ellipses_light.gif
    U src/gnu/llvm/tools/clang/www/demo/what is this directory.txt
    U src/gnu/llvm/tools/clang/www/demo/syntax.css
    U src/gnu/llvm/tools/clang/www/demo/DemoInfo.html
    U src/gnu/llvm/tools/clang/www/demo/index.cgi
    U src/gnu/llvm/tools/clang/www/demo/cathead.png
    U src/gnu/llvm/tools/clang/utils/FindSpecRefs
    U src/gnu/llvm/tools/clang/utils/CaptureCmd
    U src/gnu/llvm/tools/clang/utils/clangdiag.py
    U src/gnu/llvm/tools/clang/utils/token-delta.py
    U src/gnu/llvm/tools/clang/utils/CmpDriver
    U src/gnu/llvm/tools/clang/utils/ClangDataFormat.py
    U src/gnu/llvm/tools/clang/utils/FuzzTest
    U src/gnu/llvm/tools/clang/utils/builtin-defines.c
    U src/gnu/llvm/tools/clang/utils/find-unused-diagnostics.sh
    U src/gnu/llvm/tools/clang/utils/bash-autocomplete.sh
    U src/gnu/llvm/tools/clang/utils/modfuzz.py
    U src/gnu/llvm/tools/clang/utils/CIndex/completion_logger_server.py
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangDataCollectorsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangASTNodesEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/TableGenBackends.h
    U src/gnu/llvm/tools/clang/utils/TableGen/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/TableGen/NeonEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentCommandInfoEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangDiagnosticsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLTagsEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangCommentHTMLNamedCharacterReferenceEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangAttrEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/TableGen.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangOptionDocEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/TableGen/ClangSACheckersEmitter.cpp
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestAdd.py
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestUpdateDiffs.py
    U src/gnu/llvm/tools/clang/utils/analyzer/SumTimerInfo.py
    U src/gnu/llvm/tools/clang/utils/analyzer/CmpRuns.py
    U src/gnu/llvm/tools/clang/utils/analyzer/reducer.pl
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestUtils.py
    U src/gnu/llvm/tools/clang/utils/analyzer/update_plist_test.pl
    U src/gnu/llvm/tools/clang/utils/analyzer/SATestBuild.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/check_cfc.cfg
    U src/gnu/llvm/tools/clang/utils/check_cfc/obj_diff.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/setup.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/check_cfc.py
    U src/gnu/llvm/tools/clang/utils/check_cfc/test_check_cfc.py
    U src/gnu/llvm/tools/clang/utils/valgrind/x86_64-pc-linux-gnu_gcc-4.3.3.supp
    U src/gnu/llvm/tools/clang/utils/TestUtils/pch-test.pl
    U src/gnu/llvm/tools/clang/utils/TestUtils/deep-stack.py
    U src/gnu/llvm/tools/clang/utils/VtableTest/check-zti
    U src/gnu/llvm/tools/clang/utils/VtableTest/check-ztt
    U src/gnu/llvm/tools/clang/utils/VtableTest/check-zvt
    U src/gnu/llvm/tools/clang/utils/VtableTest/gen.cc
    U src/gnu/llvm/tools/clang/utils/hmaptool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/hmaptool/hmaptool
    U src/gnu/llvm/tools/clang/utils/ABITest/Makefile.test.common
    U src/gnu/llvm/tools/clang/utils/ABITest/build.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/TypeGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/Enumeration.py
    U src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize-all.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/summarize.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/build-and-summarize.sh
    U src/gnu/llvm/tools/clang/utils/ABITest/ABITestGen.py
    U src/gnu/llvm/tools/clang/utils/ABITest/layout/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/single-args-64/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/return-types-64/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/single-args-32/Makefile
    U src/gnu/llvm/tools/clang/utils/ABITest/return-types-32/Makefile
    U src/gnu/llvm/tools/clang/utils/perf-training/lit.site.cfg.in
    U src/gnu/llvm/tools/clang/utils/perf-training/lit.cfg
    U src/gnu/llvm/tools/clang/utils/perf-training/perf-helper.py
    U src/gnu/llvm/tools/clang/utils/perf-training/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/perf-training/order-files.lit.cfg
    U src/gnu/llvm/tools/clang/utils/perf-training/README.txt
    U src/gnu/llvm/tools/clang/utils/perf-training/order-files.lit.site.cfg.in
    U src/gnu/llvm/tools/clang/utils/perf-training/cxx/hello_world.cpp
    U src/gnu/llvm/tools/clang/utils/ClangVisualizers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/utils/ClangVisualizers/clang.natvis
    U src/gnu/llvm/tools/clang/cmake/modules/AddClang.cmake
    U src/gnu/llvm/tools/clang/cmake/modules/ProtobufMutator.cmake
    U src/gnu/llvm/tools/clang/cmake/modules/FindZ3.cmake
    U src/gnu/llvm/tools/clang/cmake/modules/ClangConfig.cmake.in
    U src/gnu/llvm/tools/clang/cmake/modules/CMakeLists.txt
    U src/gnu/llvm/tools/clang/cmake/caches/PGO.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Android-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage1.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/BaremetalARM.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/3-stage.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Android.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/DistributionExample-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/PGO-stage2-instrumented.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/README.txt
    U src/gnu/llvm/tools/clang/cmake/caches/Fuchsia-stage2.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Fuchsia.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/DistributionExample.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/Apple-stage2-ThinLTO.cmake
    U src/gnu/llvm/tools/clang/cmake/caches/3-stage-base.cmake
    U src/gnu/llvm/tools/clang/docs/FAQ.rst
    U src/gnu/llvm/tools/clang/docs/doxygen.cfg.in
    U src/gnu/llvm/tools/clang/docs/AutomaticReferenceCounting.rst
    U src/gnu/llvm/tools/clang/docs/ClangCheck.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersReference.html
    U src/gnu/llvm/tools/clang/docs/index.rst
    U src/gnu/llvm/tools/clang/docs/ShadowCallStack.rst
    U src/gnu/llvm/tools/clang/docs/ClangCommandLineReference.rst
    U src/gnu/llvm/tools/clang/docs/MemorySanitizer.rst
    U src/gnu/llvm/tools/clang/docs/Modules.rst
    U src/gnu/llvm/tools/clang/docs/LanguageExtensions.rst
    U src/gnu/llvm/tools/clang/docs/SafeStack.rst
    U src/gnu/llvm/tools/clang/docs/OpenMPSupport.rst
    U src/gnu/llvm/tools/clang/docs/ClangFormat.rst
    U src/gnu/llvm/tools/clang/docs/PCHLayout.png
    U src/gnu/llvm/tools/clang/docs/SanitizerSpecialCaseList.rst
    U src/gnu/llvm/tools/clang/docs/RAVFrontendAction.rst
    U src/gnu/llvm/tools/clang/docs/IntroductionToTheClangAST.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerCoverage.rst
    U src/gnu/llvm/tools/clang/docs/Makefile.sphinx
    U src/gnu/llvm/tools/clang/docs/DriverArchitecture.png
    U src/gnu/llvm/tools/clang/docs/ReleaseNotes.rst
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/DriverInternals.rst
    U src/gnu/llvm/tools/clang/docs/ClangPlugins.rst
    U src/gnu/llvm/tools/clang/docs/ThreadSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/AttributeReference.rst
    U src/gnu/llvm/tools/clang/docs/CMakeLists.txt
    U src/gnu/llvm/tools/clang/docs/Toolchain.rst
    U src/gnu/llvm/tools/clang/docs/ExternalClangExamples.rst
    U src/gnu/llvm/tools/clang/docs/make.bat
    U src/gnu/llvm/tools/clang/docs/DataFlowSanitizerDesign.rst
    U src/gnu/llvm/tools/clang/docs/ThinLTO.rst
    U src/gnu/llvm/tools/clang/docs/conf.py
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.txt
    U src/gnu/llvm/tools/clang/docs/ItaniumMangleAbiTags.rst
    U src/gnu/llvm/tools/clang/docs/Tooling.rst
    U src/gnu/llvm/tools/clang/docs/UndefinedBehaviorSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/LibFormat.rst
    U src/gnu/llvm/tools/clang/docs/LTOVisibility.rst
    U src/gnu/llvm/tools/clang/docs/PCHLayout.graffle
    U src/gnu/llvm/tools/clang/docs/DiagnosticsReference.rst
    U src/gnu/llvm/tools/clang/docs/LeakSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/BlockLanguageSpec.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrity.rst
    U src/gnu/llvm/tools/clang/docs/ObjectiveCLiterals.rst
    U src/gnu/llvm/tools/clang/docs/JSONCompilationDatabase.rst
    U src/gnu/llvm/tools/clang/docs/MSVCCompatibility.rst
    U src/gnu/llvm/tools/clang/docs/doxygen-mainpage.dox
    U src/gnu/llvm/tools/clang/docs/ClangFormatStyleOptions.rst
    U src/gnu/llvm/tools/clang/docs/README.txt
    U src/gnu/llvm/tools/clang/docs/InternalsManual.rst
    U src/gnu/llvm/tools/clang/docs/ClangTools.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchers.rst
    U src/gnu/llvm/tools/clang/docs/SourceBasedCodeCoverage.rst
    U src/gnu/llvm/tools/clang/docs/HardwareAssistedAddressSanitizerDesign.rst
    U src/gnu/llvm/tools/clang/docs/RefactoringEngine.rst
    U src/gnu/llvm/tools/clang/docs/PCHInternals.rst
    U src/gnu/llvm/tools/clang/docs/CrossCompilation.rst
    U src/gnu/llvm/tools/clang/docs/LibASTMatchersTutorial.rst
    U src/gnu/llvm/tools/clang/docs/SanitizerStats.rst
    U src/gnu/llvm/tools/clang/docs/UsersManual.rst
    U src/gnu/llvm/tools/clang/docs/LibTooling.rst
    U src/gnu/llvm/tools/clang/docs/ControlFlowIntegrityDesign.rst
    U src/gnu/llvm/tools/clang/docs/Block-ABI-Apple.rst
    U src/gnu/llvm/tools/clang/docs/AddressSanitizer.rst
    U src/gnu/llvm/tools/clang/docs/ThreadSafetyAnalysis.rst
    U src/gnu/llvm/tools/clang/docs/HowToSetupToolingForLLVM.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/index.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/IPA.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/RegionStore.txt
    U src/gnu/llvm/tools/clang/docs/analyzer/make.bat
    U src/gnu/llvm/tools/clang/docs/analyzer/nullability.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/conf.py
    U src/gnu/llvm/tools/clang/docs/analyzer/DebugChecks.rst
    U src/gnu/llvm/tools/clang/docs/analyzer/DesignDiscussions/InitializerLists.rst
    U src/gnu/llvm/tools/clang/docs/tools/dump_ast_matchers.py
    U src/gnu/llvm/tools/clang/docs/tools/dump_format_style.py
    U src/gnu/llvm/tools/clang/docs/CommandGuide/index.rst
    U src/gnu/llvm/tools/clang/docs/CommandGuide/diagtool.rst
    U src/gnu/llvm/tools/clang/docs/CommandGuide/clang.rst
    U src/gnu/llvm/tools/clang/bindings/python/README.txt
    U src/gnu/llvm/tools/clang/bindings/python/clang/cindex.py
    U src/gnu/llvm/tools/clang/bindings/python/clang/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/clang/enumerations.py
    U src/gnu/llvm/tools/clang/bindings/python/examples/cindex/cindex-dump.py
    U src/gnu/llvm/tools/clang/bindings/python/examples/cindex/cindex-includes.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/CMakeLists.txt
    U src/gnu/llvm/tools/clang/bindings/python/tests/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_tls_kind.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_token_kind.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_location.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_type.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_translation_unit.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cursor.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_comment.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cdb.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/util.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_linkage.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_index.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_file.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_code_completion.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_access_specifiers.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/__init__.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_diagnostics.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_tokens.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_cursor_kind.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/test_exception_specification_kind.py
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/parse_arguments.c
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header3.h
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/include.cpp
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header2.h
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/hello.cpp
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/compile_commands.json
    U src/gnu/llvm/tools/clang/bindings/python/tests/cindex/INPUTS/header1.h
    U src/gnu/llvm/tools/clang/bindings/xml/comment-xml-schema.rng
    U src/gnu/llvm/tools/clang/tools/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-refactor/ToolRefactoringResultConsumer.h
    U src/gnu/llvm/tools/clang/tools/clang-refactor/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-refactor/TestSupport.h
    U src/gnu/llvm/tools/clang/tools/clang-refactor/ClangRefactor.cpp
    U src/gnu/llvm/tools/clang/tools/clang-refactor/TestSupport.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/source.extension.vsixmanifest.in
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat.sln
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/.gitignore
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/README.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/RunningDocTableEventsDispatcher.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/PkgCmdID.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormatPackage.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Vsix.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormat.vsct
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/GlobalSuppressions.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/VSPackage.resx
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources.resx
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Guids.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources.Designer.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/ClangFormat.csproj
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/packages.config
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/license.txt
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Properties/AssemblyInfo.cs
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources/Package.ico
    U src/gnu/llvm/tools/clang/tools/clang-format-vs/ClangFormat/Resources/Images_32bit.bmp
    U src/gnu/llvm/tools/clang/tools/diagtool/ShowEnabledWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/ListWarnings.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/FindDiagnosticID.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.h
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/diagtool/diagtool_main.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagnosticNames.cpp
    U src/gnu/llvm/tools/clang/tools/diagtool/DiagTool.h
    U src/gnu/llvm/tools/clang/tools/diagtool/TreeView.cpp
    U src/gnu/llvm/tools/clang/tools/clang-extdef-mapping/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-extdef-mapping/ClangExtDefMapGen.cpp
    U src/gnu/llvm/tools/clang/tools/clang-diff/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-diff/ClangDiff.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXString.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexCXX.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexer.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexInclusionStack.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXStoredDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXComment.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndex.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CLog.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.h
    U src/gnu/llvm/tools/clang/tools/libclang/ARCMigrate.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXCompilationDatabase.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/BuildSystem.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/libclang/CXString.h
    U src/gnu/llvm/tools/clang/tools/libclang/Index_Internal.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXIndexDataConsumer.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXLoadedDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXCursor.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CursorVisitor.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXSourceLocation.h
    U src/gnu/llvm/tools/clang/tools/libclang/CXType.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/libclang.exports
    U src/gnu/llvm/tools/clang/tools/libclang/Indexing.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexUSRs.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CXTranslationUnit.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexDiagnostic.h
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexCodeCompletion.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexHigh.cpp
    U src/gnu/llvm/tools/clang/tools/libclang/CIndexer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-rename/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-rename/clang-rename.el
    U src/gnu/llvm/tools/clang/tools/clang-rename/clang-rename.py
    U src/gnu/llvm/tools/clang/tools/clang-rename/ClangRename.cpp
    U src/gnu/llvm/tools/clang/tools/scan-view/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/GetRadarVersion.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/share/bugcatcher.ico
    U src/gnu/llvm/tools/clang/tools/scan-view/share/startfile.py
    U src/gnu/llvm/tools/clang/tools/scan-view/share/ScanView.py
    U src/gnu/llvm/tools/clang/tools/scan-view/share/Reporter.py
    U src/gnu/llvm/tools/clang/tools/scan-view/share/FileRadar.scpt
    U src/gnu/llvm/tools/clang/tools/scan-view/bin/scan-view
    U src/gnu/llvm/tools/clang/tools/arcmt-test/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/arcmt-test/arcmt-test.cpp
    U src/gnu/llvm/tools/clang/tools/scan-build-py/README.md
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/analyze.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/intercept.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/arguments.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/compilation.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/shell.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/clang.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/report.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/scanview.css
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/sorttable.js
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libscanbuild/resources/selectable.js
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/config.h.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/exec/main.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_create_cdb.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_exec_anatomy.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_from_cmd.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/cases/test_from_cdb.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/broken-one.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/broken-two.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/emit-one.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/clean-two.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/emit-two.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/main.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/clean-one.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/build/Makefile
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/include/clean-one.h
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_regular.json.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_clean.json.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/functional/src/compilation_database/build_broken.json.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_analyze.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_libear.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_report.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_shell.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_compilation.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_intercept.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/tests/unit/test_clang.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libear/config.h.in
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libear/ear.c
    U src/gnu/llvm/tools/clang/tools/scan-build-py/libear/__init__.py
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-c++
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-build
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/analyze-build
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-c++
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/intercept-cc
    U src/gnu/llvm/tools/clang/tools/scan-build-py/bin/scan-build
    U src/gnu/llvm/tools/clang/tools/c-index-test/core_main.cpp
    U src/gnu/llvm/tools/clang/tools/c-index-test/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/c-index-test/c-index-test.c
    U src/gnu/llvm/tools/clang/tools/clang-check/ClangCheck.cpp
    U src/gnu/llvm/tools/clang/tools/clang-check/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-build/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/ccc-analyzer.bat
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/c++-analyzer
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/c++-analyzer.bat
    U src/gnu/llvm/tools/clang/tools/scan-build/libexec/ccc-analyzer
    U src/gnu/llvm/tools/clang/tools/scan-build/share/scan-build/scanview.css
    U src/gnu/llvm/tools/clang/tools/scan-build/share/scan-build/sorttable.js
    U src/gnu/llvm/tools/clang/tools/scan-build/bin/set-xcode-analyzer
    U src/gnu/llvm/tools/clang/tools/scan-build/bin/scan-build
    U src/gnu/llvm/tools/clang/tools/scan-build/bin/scan-build.bat
    U src/gnu/llvm/tools/clang/tools/scan-build/man/scan-build.1
    U src/gnu/llvm/tools/clang/tools/clang-offload-bundler/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-offload-bundler/ClangOffloadBundler.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ExampleClangLoopProtoFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/cxx_loop_proto.proto
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/Dockerfile
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ClangFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ExampleClangProtoFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/README.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/cxx_proto.proto
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/DummyClangFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/ExampleClangLLVMProtoFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-cxx/handle_cxx.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-cxx/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-cxx/handle_cxx.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-llvm/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-llvm/loop_proto_to_llvm_main.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-llvm/handle_llvm.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-llvm/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-llvm/handle_llvm.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/handle-llvm/input_arrays.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/fuzzer-initialize/fuzzer_initialize.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/fuzzer-initialize/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/fuzzer-initialize/fuzzer_initialize.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.h
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/loop_proto_to_cxx_main.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx_main.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/proto_to_cxx.cpp
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-fuzzer/proto-to-cxx/loop_proto_to_cxx.cpp
    U src/gnu/llvm/tools/clang/tools/c-arcmt-test/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/c-arcmt-test/c-arcmt-test.c
    U src/gnu/llvm/tools/clang/tools/clang-import-test/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-import-test/clang-import-test.cpp
    U src/gnu/llvm/tools/clang/tools/diag-build/diag-build.sh
    U src/gnu/llvm/tools/clang/tools/driver/cc1as_main.cpp
    U src/gnu/llvm/tools/clang/tools/driver/Info.plist.in
    U src/gnu/llvm/tools/clang/tools/driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/driver/cc1_main.cpp
    U src/gnu/llvm/tools/clang/tools/driver/driver.cpp
    U src/gnu/llvm/tools/clang/tools/driver/cc1gen_reproducer_main.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format.el
    U src/gnu/llvm/tools/clang/tools/clang-format/git-clang-format
    U src/gnu/llvm/tools/clang/tools/clang-format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-diff.py
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format.py
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-test.el
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-sublime.py
    U src/gnu/llvm/tools/clang/tools/clang-format/ClangFormat.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format/clang-format-bbedit.applescript
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/ClangFormatFuzzer.cpp
    U src/gnu/llvm/tools/clang/tools/clang-format/fuzzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/module.modulemap
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ContinuousRangeMap.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTReader.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleFileExtension.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTDeserializationListener.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTBitCodes.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/Module.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ASTWriter.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/ModuleManager.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/PCHContainerOperations.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/GlobalModuleIndex.h
    U src/gnu/llvm/tools/clang/include/clang/Serialization/SerializationDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/FrontendTool/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/ARCMigrate/FileRemapper.h
    U src/gnu/llvm/tools/clang/include/clang/ARCMigrate/ARCMTActions.h
    U src/gnu/llvm/tools/clang/include/clang/ARCMigrate/ARCMT.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/SwiftCallingConv.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ModuleBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenABITypes.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CodeGenAction.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/CGFunctionInfo.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ConstantInitFuture.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ObjectFilePCHContainerOperations.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/BackendUtil.h
    U src/gnu/llvm/tools/clang/include/clang/CodeGen/ConstantInitBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendPluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/DiagnosticRenderer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandard.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CommandLineSourceLoc.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PreprocessorOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LangStandards.def
    U src/gnu/llvm/tools/clang/include/clang/Frontend/Utils.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LayoutOverrideSource.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticReader.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/DependencyOutputOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PrecompiledPreamble.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/SerializedDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendAction.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/PCHContainerOperations.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ASTUnit.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/TextDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MultiplexConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInvocation.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/CompilerInstance.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/MigratorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/ChainedDiagnosticConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/VerifyDiagnosticConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/LogDiagnosticPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/Frontend/FrontendOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Config/config.h.cmake
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAST.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CodeGenOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/arm_fp16.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetBuiltins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/arm_neon_incl.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrSubjectMatchRules.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SyncScope.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLExtensions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoring.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysisKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/MSP430Target.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDriver.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Cuda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNEON.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AddressSpaces.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetCXXABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceLocation.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/X86Target.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/PragmaKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SanitizerBlacklist.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/XRayInstr.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAMDGPU.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/PartialDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TemplateKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticComment.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticFrontendKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/LLVM.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Version.inc.in
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticLex.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLExtensionTypes.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/AttrKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsSystemZ.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTU.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManagerInternals.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CodeGenOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSerializationKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/TypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DebugInfoOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsMips.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/MacroBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Lambda.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BitmaskEnum.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Module.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Specifiers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/StmtNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsARM.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticFrontend.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLImageTypes.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSemaKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommonKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/CommentOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86_64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/XRayLists.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CapturedStmt.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsAArch64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticParseKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Diagnostic.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Features.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/ABI.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TargetOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCommentKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsXCore.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCategories.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticASTKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/AllDiagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticError.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SanitizerSpecialCaseList.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticIDs.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/SourceManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticRefactoringKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSema.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsWebAssembly.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsPPC.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticLexKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DeclNodes.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticGroups.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Attr.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Attributes.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenMPKinds.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsHexagon.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExceptionSpecificationType.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorPrecedence.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/TokenKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Stack.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/arm_neon.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileManager.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/PlistSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/Linkage.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/LangOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/FileSystemStatCache.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/AlignedAllocation.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/PrettyStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/FixedPoint.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticCrossTUKinds.td
    U src/gnu/llvm/tools/clang/include/clang/Basic/Builtins.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticParse.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/IdentifierTable.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticOptions.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsLe64.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/OperatorKinds.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Sanitizers.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsX86.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/Visibility.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/ObjCRuntime.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/CharInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/BuiltinsNVPTX.def
    U src/gnu/llvm/tools/clang/include/clang/Basic/ExpressionTraits.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/MemoryBufferCache.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/OpenCLOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Basic/DiagnosticSerialization.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenConcatenation.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleLoader.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Token.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearch.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/VariadicMacroSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ModuleMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ExternalPreprocessorSource.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMapTypes.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroArgs.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/CodeCompletionHandler.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/TokenLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Preprocessor.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/ScratchBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Pragma.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/DirectoryLookup.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderSearchOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PPConditionalDirectiveRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LexDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MacroInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/Lexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorLexer.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/MultipleIncludeOpt.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessingRecord.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/PreprocessorOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/HeaderMap.h
    U src/gnu/llvm/tools/clang/include/clang/Lex/LiteralSupport.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Designator.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ObjCMethodList.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Template.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/IdentifierResolver.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaFixItUtils.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/MultiplexExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ScopeInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CXXFieldCollector.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Weak.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Ownership.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Sema/ExternalSemaSource.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CleanupInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ParsedAttr.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Scope.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/SemaLambda.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DelayedDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TypoCorrection.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TemplateInstCallback.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/ParsedTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/CodeCompleteConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/AnalysisBasedWarnings.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/TemplateDeduction.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Overload.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Initialization.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/DeclSpec.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/Sema/Sema.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/ParseDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Parse/LoopHint.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/ParseAST.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/Parser.h
    U src/gnu/llvm/tools/clang/include/clang/Parse/RAIIObjectsForParser.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Tooling.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/DiagnosticsYaml.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/JSONCompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ReplacementsYaml.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ArgumentsAdjusters.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/AllTUsExecution.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/FileMatchTrie.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/FixIt.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/RefactoringCallbacks.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Execution.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ToolExecutorPluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/StandaloneExecution.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CompilationDatabasePluginRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/CommonOptionsParser.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Inclusions/HeaderIncludes.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Inclusions/IncludeStyle.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Replacement.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Diagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Core/Lookup.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiffInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/ASTDiff/ASTDiff.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/ASTSelection.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRules.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/AtomicChange.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RecursiveSymbolVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringAction.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptionVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringRuleContext.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRule.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringResultConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOption.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringOptions.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRulesInternal.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/RefactoringActionRuleRequirements.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Extract/Extract.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFindingAction.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRLocFinder.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolOccurrences.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/USRFinder.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/RenamingAction.h
    U src/gnu/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/SymbolName.h
    U src/gnu/llvm/tools/clang/include/clang/Format/Format.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FixItRewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/Rewriters.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Frontend/ASTConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/RewriteRope.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/TokenRewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/HTMLRewrite.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/Rewriter.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/DeltaTree.h
    U src/gnu/llvm/tools/clang/include/clang/Rewrite/Core/RewriteBuffer.h
    U src/gnu/llvm/tools/clang/include/clang/CrossTU/CrossTUDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/CrossTU/CrossTranslationUnit.h
    U src/gnu/llvm/tools/clang/include/clang/Index/USRGeneration.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexSymbol.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CodegenNameGenerator.h
    U src/gnu/llvm/tools/clang/include/clang/Index/CommentToXML.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexingAction.h
    U src/gnu/llvm/tools/clang/include/clang/Index/IndexDataConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/XRayArgs.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/SanitizerArgs.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/ClangOptionDocs.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Phases.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/CLCompatOptions.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Util.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/Driver/Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Action.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/DarwinSDKInfo.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Driver.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/CC1Options.td
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.def
    U src/gnu/llvm/tools/clang/include/clang/Driver/Compilation.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Job.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/ToolChain.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Types.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Distro.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Multilib.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/DriverDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Options.h
    U src/gnu/llvm/tools/clang/include/clang/Driver/Tool.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisDeclContext.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/AnalysisDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/SelectorExtras.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CFG.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/BodyFarm.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CodeInjector.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/ConstructionContext.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/ProgramPoint.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CallGraph.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CloneDetection.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/CFGStmtMap.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/FlowSensitive/DataflowValues.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/Dominators.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/CFGReachabilityAnalysis.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/LiveVariables.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafety.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyUtil.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/PostOrderCFGView.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/Consumed.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTIL.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ReachableCode.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ExprMutationAnalyzer.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyCommon.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyTraverse.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyLogical.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/ThreadSafetyOps.def
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Analyses/UninitializedValues.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/Support/BumpVector.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/DomainSpecific/ObjCNoReturn.h
    U src/gnu/llvm/tools/clang/include/clang/Analysis/DomainSpecific/CocoaConventions.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/Commit.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/Rewriters.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/EditsReceiver.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/EditedSource.h
    U src/gnu/llvm/tools/clang/include/clang/Edit/FileOffset.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchers.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchFinder.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersInternal.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/ASTMatchersMacros.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/VariantValue.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Diagnostics.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Parser.h
    U src/gnu/llvm/tools/clang/include/clang/ASTMatchers/Dynamic/Registry.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/AnalysisConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/FrontendActions.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistration.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/ModelConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Frontend/CheckerRegistry.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/SValExplainer.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CheckerBase.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/BuiltinCheckerRegistration.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/LocalCheckers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/MPIFunctionClassifier.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Checkers/Checkers.td
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/CheckerManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Analyses.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathDiagnosticConsumers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/IssueHash.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/RetainSummaryManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/AnalyzerOptions.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/Checker.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporter.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugReporterVisitors.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/CommonBugCategories.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/BugType.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/PathDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/FunctionSummary.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConstraintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Store.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/AnalysisManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Symbols.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/APSIntType.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTConv.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Regions.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerContext.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/MemRegion.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramState_Fwd.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ConstraintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ProgramStateTrait.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSort.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/WorkList.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/Environment.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CheckerHelpers.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExplodedGraph.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SValBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTExpr.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymExpr.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeInfo.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/RangedConstraintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ExprEngine.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.def
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SummaryManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CoreEngine.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopUnrolling.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SymbolManager.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/LoopWidening.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BasicValueFactory.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/StoreRef.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/CallEvent.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/BlockCounter.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/TaintTag.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SVals.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SubEngine.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SMTSolver.h
    U src/gnu/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/SimpleConstraintManager.h
    U src/gnu/llvm/tools/clang/include/clang/AST/PrettyPrinter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LocInfoType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/UnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/NonTrivialTypeVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/VTTBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLNamedCharacterReferences.td
    U src/gnu/llvm/tools/clang/include/clang/AST/CanonicalType.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclGroup.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecordLayout.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTMutationListener.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/GlobalDecl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LambdaCapture.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtGraphTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTVector.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeOrdering.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CharUnits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclContextInternals.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CXXInheritance.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AST.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclAccessPair.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BaseSubobject.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Redeclarable.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Attr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RecursiveASTVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Mangle.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclTemplate.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Type.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentHTMLTags.td
    U src/gnu/llvm/tools/clang/include/clang/AST/NSAPI.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTStructuralEquivalence.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclFriend.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Expr.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTContextAllocate.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateBase.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTTypeTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DependentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLoc.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OSLog.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AttrVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/SelectorLocationsKind.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclarationName.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTFwd.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/include/clang/AST/EvaluatedExprVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OpenMPClause.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtDataCollectors.td
    U src/gnu/llvm/tools/clang/include/clang/AST/TemplateArgumentVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTImporterLookupTable.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclLookups.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTUnresolvedSet.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTImporter.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommands.td
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeLocVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/VTableBuilder.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/StmtOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/PrettyDeclStackTrace.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExternalASTMerger.h
    U src/gnu/llvm/tools/clang/include/clang/AST/QualTypeNames.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclObjC.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/FormatString.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Decl.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Availability.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ODRHash.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclBase.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DeclCXX.h
    U src/gnu/llvm/tools/clang/include/clang/AST/APValue.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExprOpenMP.h
    U src/gnu/llvm/tools/clang/include/clang/AST/NestedNameSpecifier.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentLexer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentBriefParser.h
    U src/gnu/llvm/tools/clang/include/clang/AST/MangleNumberingContext.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Comment.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTDiagnostic.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ParentMap.h
    U src/gnu/llvm/tools/clang/include/clang/AST/RawCommentList.h
    U src/gnu/llvm/tools/clang/include/clang/AST/AttrIterator.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTConsumer.h
    U src/gnu/llvm/tools/clang/include/clang/AST/BuiltinTypes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/ComparisonCategories.h
    U src/gnu/llvm/tools/clang/include/clang/AST/DataCollection.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTDumperUtils.h
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentCommandTraits.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TypeNodes.def
    U src/gnu/llvm/tools/clang/include/clang/AST/CommentSema.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ASTLambda.h
    U src/gnu/llvm/tools/clang/include/clang/AST/LexicallyOrderedRecursiveASTVisitor.h
    U src/gnu/llvm/tools/clang/include/clang/AST/TextNodeDumper.h
    U src/gnu/llvm/tools/clang/include/clang/AST/ExternalASTSource.h
    U src/gnu/llvm/tools/clang/include/clang/AST/Stmt.h
    U src/gnu/llvm/tools/clang/include/clang/AST/OperationKinds.def
    U src/gnu/llvm/tools/clang/include/clang-c/CXCompilationDatabase.h
    U src/gnu/llvm/tools/clang/include/clang-c/CXString.h
    U src/gnu/llvm/tools/clang/include/clang-c/CXErrorCode.h
    U src/gnu/llvm/tools/clang/include/clang-c/BuildSystem.h
    U src/gnu/llvm/tools/clang/include/clang-c/Index.h
    U src/gnu/llvm/tools/clang/include/clang-c/module.modulemap
    U src/gnu/llvm/tools/clang/include/clang-c/Platform.h
    U src/gnu/llvm/tools/clang/include/clang-c/Documentation.h
    U src/gnu/llvm/tools/clang/runtime/CMakeLists.txt
    U src/gnu/llvm/tools/clang/runtime/compiler-rt/clang_linux_test_input.c
    U src/gnu/llvm/tools/clang/unittests/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/CodeGen/IncrementalProcessingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/IRMatchers.h
    U src/gnu/llvm/tools/clang/unittests/CodeGen/TBAAMetadataTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/CodeGen/BufferSourceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/CodeGen/CodeGenExternalTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/FixedPointString.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/OutputStreamTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/ASTUnitTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/ParsedSourceLocationTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/CompilerInstanceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Frontend/CodeGenActionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/FrontendActionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Frontend/PCHPreambleTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/CharInfoTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Basic/SourceManagerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/FixedPointTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/DiagnosticTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/FileManagerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Basic/MemoryBufferCacheTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/PPConditionalDirectiveRecordTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/LexerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Lex/HeaderMapTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/PPCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Lex/HeaderSearchTest.cpp
    U src/gnu/llvm/tools/clang/unittests/libclang/LibclangTest.cpp
    U src/gnu/llvm/tools/clang/unittests/libclang/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Sema/ExternalSemaSourceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Sema/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Sema/CodeCompleteTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CompilationDatabaseTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/TestVisitor.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringActionRulesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestDeclVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTestContext.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/HeaderIncludesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RewriterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/LookupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementsYamlTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/CommentHandlerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/FixItTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ReplacementTest.h
    U src/gnu/llvm/tools/clang/unittests/Tooling/CastExprTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/DiagnosticsYamlTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/LexicallyOrderedRecursiveASTVisitorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestTypeLocVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/QualTypeNamesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ASTSelectionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ExecutionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringCallbacksTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/ToolingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RefactoringTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTestPostOrderVisitor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPostOrder.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/CXXBoolLiteralExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/NestedNameSpecifiers.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPostOrderNoQueue.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/LambdaExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/CXXOperatorCallExprTraverser.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/Class.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/ParenExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/TraversalScope.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/LambdaDefaultCapture.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/CXXMemberCall.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/ImplicitCtor.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPreOrder.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/DeclRefExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/InitListExprPreOrderNoQueue.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/TemplateArgumentLocTraverser.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/IntegerLiteral.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/Attr.cpp
    U src/gnu/llvm/tools/clang/unittests/Tooling/RecursiveASTVisitorTests/ConstructExpr.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortImportsTestJava.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CleanupTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestUtils.h
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestSelective.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/NamespaceEndCommentsFixerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestTableGen.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestObjC.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestProto.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJava.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestComments.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestRawStrings.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/UsingDeclarationsSorterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTestTextProto.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortImportsTestJS.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/FormatTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Format/SortIncludesTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rewrite/RewriteBufferTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rewrite/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/CrossTU/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/CrossTU/CrossTranslationUnitTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameAliasTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameFunctionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameEnumTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameMemberTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/RenameClassTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Rename/ClangRenameTest.h
    U src/gnu/llvm/tools/clang/unittests/Index/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Index/IndexTests.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/DistroTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Driver/ToolChainTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/ModuleCacheTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Driver/MultilibTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Analysis/CloneDetectionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Analysis/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/Analysis/ExprMutationAnalyzerTest.cpp
    U src/gnu/llvm/tools/clang/unittests/Analysis/CFGTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTraversalTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersInternalTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersNarrowingTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/ASTMatchersTest.h
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/VariantValueTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/RegistryTest.cpp
    U src/gnu/llvm/tools/clang/unittests/ASTMatchers/Dynamic/ParserTest.cpp
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/AnalyzerOptionsTest.cpp
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/StaticAnalyzer/RegisterCustomCheckersTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/CommentParser.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ExternalASTSourceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/StructuralEquivalenceTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/Language.h
    U src/gnu/llvm/tools/clang/unittests/AST/CommentLexer.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DeclMatcher.h
    U src/gnu/llvm/tools/clang/unittests/AST/MatchVerifier.h
    U src/gnu/llvm/tools/clang/unittests/AST/CommentTextTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/DataCollectionTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/CMakeLists.txt
    U src/gnu/llvm/tools/clang/unittests/AST/DeclPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTTypeTraitsTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/EvaluateAsRValueTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/StmtPrinterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/Language.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTVectorTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTContextParentMapTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/SourceLocationTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/ASTImporterTest.cpp
    U src/gnu/llvm/tools/clang/unittests/AST/NamedDeclPrinterTest.cpp
    U src/gnu/llvm/include/llvm-c/Error.h
    U src/gnu/llvm/include/llvm-c/Analysis.h
    U src/gnu/llvm/include/llvm-c/Linker.h
    U src/gnu/llvm/include/llvm-c/ExecutionEngine.h
    U src/gnu/llvm/include/llvm-c/DataTypes.h
    U src/gnu/llvm/include/llvm-c/ErrorHandling.h
    U src/gnu/llvm/include/llvm-c/TargetMachine.h
    U src/gnu/llvm/include/llvm-c/BitWriter.h
    U src/gnu/llvm/include/llvm-c/OrcBindings.h
    U src/gnu/llvm/include/llvm-c/Disassembler.h
    U src/gnu/llvm/include/llvm-c/DebugInfo.h
    U src/gnu/llvm/include/llvm-c/Comdat.h
    U src/gnu/llvm/include/llvm-c/Support.h
    U src/gnu/llvm/include/llvm-c/LinkTimeOptimizer.h
    U src/gnu/llvm/include/llvm-c/module.modulemap
    U src/gnu/llvm/include/llvm-c/IRReader.h
    U src/gnu/llvm/include/llvm-c/Core.h
    U src/gnu/llvm/include/llvm-c/DisassemblerTypes.h
    U src/gnu/llvm/include/llvm-c/OptRemarks.h
    U src/gnu/llvm/include/llvm-c/Target.h
    U src/gnu/llvm/include/llvm-c/BitReader.h
    U src/gnu/llvm/include/llvm-c/Object.h
    U src/gnu/llvm/include/llvm-c/Types.h
    U src/gnu/llvm/include/llvm-c/Initialization.h
    U src/gnu/llvm/include/llvm-c/lto.h
    U src/gnu/llvm/include/llvm-c/Transforms/Scalar.h
    U src/gnu/llvm/include/llvm-c/Transforms/PassManagerBuilder.h
    U src/gnu/llvm/include/llvm-c/Transforms/InstCombine.h
    U src/gnu/llvm/include/llvm-c/Transforms/Coroutines.h
    U src/gnu/llvm/include/llvm-c/Transforms/Vectorize.h
    U src/gnu/llvm/include/llvm-c/Transforms/Utils.h
    U src/gnu/llvm/include/llvm-c/Transforms/AggressiveInstCombine.h
    U src/gnu/llvm/include/llvm-c/Transforms/IPO.h
    U src/gnu/llvm/include/llvm/PassInfo.h
    U src/gnu/llvm/include/llvm/LinkAllIR.h
    U src/gnu/llvm/include/llvm/PassSupport.h
    U src/gnu/llvm/include/llvm/PassRegistry.h
    U src/gnu/llvm/include/llvm/LinkAllPasses.h
    U src/gnu/llvm/include/llvm/InitializePasses.h
    U src/gnu/llvm/include/llvm/CMakeLists.txt
    U src/gnu/llvm/include/llvm/PassAnalysisSupport.h
    U src/gnu/llvm/include/llvm/module.modulemap
    U src/gnu/llvm/include/llvm/module.modulemap.build
    U src/gnu/llvm/include/llvm/module.extern.modulemap
    U src/gnu/llvm/include/llvm/module.install.modulemap
    U src/gnu/llvm/include/llvm/Pass.h
    U src/gnu/llvm/include/llvm/IR/Dominators.h
    U src/gnu/llvm/include/llvm/IR/ValueHandle.h
    U src/gnu/llvm/include/llvm/IR/ConstantFolder.h
    U src/gnu/llvm/include/llvm/IR/GlobalAlias.h
    U src/gnu/llvm/include/llvm/IR/ModuleSummaryIndexYAML.h
    U src/gnu/llvm/include/llvm/IR/OptBisect.h
    U src/gnu/llvm/include/llvm/IR/GlobalObject.h
    U src/gnu/llvm/include/llvm/IR/Metadata.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsPowerPC.td
    U src/gnu/llvm/include/llvm/IR/PassManagerInternal.h
    U src/gnu/llvm/include/llvm/IR/PassInstrumentation.h
    U src/gnu/llvm/include/llvm/IR/InstIterator.h
    U src/gnu/llvm/include/llvm/IR/CallSite.h
    U src/gnu/llvm/include/llvm/IR/GVMaterializer.h
    U src/gnu/llvm/include/llvm/IR/IRPrintingPasses.h
    U src/gnu/llvm/include/llvm/IR/PassTimingInfo.h
    U src/gnu/llvm/include/llvm/IR/GlobalIFunc.h
    U src/gnu/llvm/include/llvm/IR/GetElementPtrTypeIterator.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsWebAssembly.td
    U src/gnu/llvm/include/llvm/IR/ValueSymbolTable.h
    U src/gnu/llvm/include/llvm/IR/IRBuilder.h
    U src/gnu/llvm/include/llvm/IR/SafepointIRVerifier.h
    U src/gnu/llvm/include/llvm/IR/DebugInfoMetadata.h
    U src/gnu/llvm/include/llvm/IR/Operator.h
    U src/gnu/llvm/include/llvm/IR/Instructions.h
    U src/gnu/llvm/include/llvm/IR/CFGDiff.h
    U src/gnu/llvm/include/llvm/IR/Type.h
    U src/gnu/llvm/include/llvm/IR/DebugLoc.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticInfo.h
    U src/gnu/llvm/include/llvm/IR/MDBuilder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsMips.td
    U src/gnu/llvm/include/llvm/IR/DiagnosticPrinter.h
    U src/gnu/llvm/include/llvm/IR/ConstantRange.h
    U src/gnu/llvm/include/llvm/IR/UseListOrder.h
    U src/gnu/llvm/include/llvm/IR/Constant.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsX86.td
    U src/gnu/llvm/include/llvm/IR/Mangler.h
    U src/gnu/llvm/include/llvm/IR/GlobalIndirectSymbol.h
    U src/gnu/llvm/include/llvm/IR/CFG.h
    U src/gnu/llvm/include/llvm/IR/NoFolder.h
    U src/gnu/llvm/include/llvm/IR/Function.h
    U src/gnu/llvm/include/llvm/IR/DIBuilder.h
    U src/gnu/llvm/include/llvm/IR/PredIteratorCache.h
    U src/gnu/llvm/include/llvm/IR/ProfileSummary.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicInst.h
    U src/gnu/llvm/include/llvm/IR/DomTreeUpdater.h
    U src/gnu/llvm/include/llvm/IR/Statepoint.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsAMDGPU.td
    U src/gnu/llvm/include/llvm/IR/IntrinsicsHexagon.td
    U src/gnu/llvm/include/llvm/IR/DebugInfo.h
    U src/gnu/llvm/include/llvm/IR/Instruction.h
    U src/gnu/llvm/include/llvm/IR/CMakeLists.txt
    U src/gnu/llvm/include/llvm/IR/DerivedUser.h
    U src/gnu/llvm/include/llvm/IR/DiagnosticHandler.h
    U src/gnu/llvm/include/llvm/IR/SymbolTableListTraits.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsXCore.td
    U src/gnu/llvm/include/llvm/IR/ValueMap.h
    U src/gnu/llvm/include/llvm/IR/Comdat.h
    U src/gnu/llvm/include/llvm/IR/Metadata.def
    U src/gnu/llvm/include/llvm/IR/User.h
    U src/gnu/llvm/include/llvm/IR/BasicBlock.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsARM.td
    U src/gnu/llvm/include/llvm/IR/Attributes.td
    U src/gnu/llvm/include/llvm/IR/PassManager.h
    U src/gnu/llvm/include/llvm/IR/DataLayout.h
    U src/gnu/llvm/include/llvm/IR/OperandTraits.h
    U src/gnu/llvm/include/llvm/IR/Value.h
    U src/gnu/llvm/include/llvm/IR/AssemblyAnnotationWriter.h
    U src/gnu/llvm/include/llvm/IR/LegacyPassManager.h
    U src/gnu/llvm/include/llvm/IR/ModuleSummaryIndex.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsSystemZ.td
    U src/gnu/llvm/include/llvm/IR/Module.h
    U src/gnu/llvm/include/llvm/IR/DerivedTypes.h
    U src/gnu/llvm/include/llvm/IR/Constants.h
    U src/gnu/llvm/include/llvm/IR/Value.def
    U src/gnu/llvm/include/llvm/IR/IntrinsicsNVVM.td
    U src/gnu/llvm/include/llvm/IR/Use.h
    U src/gnu/llvm/include/llvm/IR/GlobalVariable.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsBPF.td
    U src/gnu/llvm/include/llvm/IR/InstVisitor.h
    U src/gnu/llvm/include/llvm/IR/InstrTypes.h
    U src/gnu/llvm/include/llvm/IR/TrackingMDRef.h
    U src/gnu/llvm/include/llvm/IR/LLVMContext.h
    U src/gnu/llvm/include/llvm/IR/PatternMatch.h
    U src/gnu/llvm/include/llvm/IR/InlineAsm.h
    U src/gnu/llvm/include/llvm/IR/RuntimeLibcalls.def
    U src/gnu/llvm/include/llvm/IR/TypeFinder.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsRISCV.td
    U src/gnu/llvm/include/llvm/IR/Attributes.h
    U src/gnu/llvm/include/llvm/IR/CallingConv.h
    U src/gnu/llvm/include/llvm/IR/Intrinsics.td
    U src/gnu/llvm/include/llvm/IR/GlobalValue.h
    U src/gnu/llvm/include/llvm/IR/IntrinsicsAArch64.td
    U src/gnu/llvm/include/llvm/IR/Intrinsics.h
    U src/gnu/llvm/include/llvm/IR/DebugInfoFlags.def
    U src/gnu/llvm/include/llvm/IR/AutoUpgrade.h
    U src/gnu/llvm/include/llvm/IR/Instruction.def
    U src/gnu/llvm/include/llvm/IR/LegacyPassNameParser.h
    U src/gnu/llvm/include/llvm/IR/LegacyPassManagers.h
    U src/gnu/llvm/include/llvm/IR/Verifier.h
    U src/gnu/llvm/include/llvm/IR/Argument.h
    U src/gnu/llvm/include/llvm/IR/ModuleSlotTracker.h
    U src/gnu/llvm/include/llvm/TextAPI/ELF/ELFStub.h
    U src/gnu/llvm/include/llvm/TextAPI/ELF/TBEHandler.h
    U src/gnu/llvm/include/llvm/Linker/Linker.h
    U src/gnu/llvm/include/llvm/Linker/IRMover.h
    U src/gnu/llvm/include/llvm/TableGen/Error.h
    U src/gnu/llvm/include/llvm/TableGen/StringMatcher.h
    U src/gnu/llvm/include/llvm/TableGen/Main.h
    U src/gnu/llvm/include/llvm/TableGen/SetTheory.h
    U src/gnu/llvm/include/llvm/TableGen/StringToOffsetTable.h
    U src/gnu/llvm/include/llvm/TableGen/SearchableTable.td
    U src/gnu/llvm/include/llvm/TableGen/TableGenBackend.h
    U src/gnu/llvm/include/llvm/TableGen/Record.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetFrameLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterUsageInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/Analysis.h
    U src/gnu/llvm/include/llvm/CodeGen/ParallelCG.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervalUnion.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/PseudoSourceValue.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRegUnits.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGAddressAnalysis.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOutliner.h
    U src/gnu/llvm/include/llvm/CodeGen/ScoreboardHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/AtomicExpandUtils.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGMutation.h
    U src/gnu/llvm/include/llvm/CodeGen/LoopTraversal.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveStacks.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineLoopInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllAsmWriterComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetRegisterInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDFS.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadataPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/ReachingDefAnalysis.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveIntervals.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineSSAUpdater.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveInterval.h
    U src/gnu/llvm/include/llvm/CodeGen/SDNodeProperties.td
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegisterInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveVariables.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineRegionInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/AccelTable.h
    U src/gnu/llvm/include/llvm/CodeGen/CalcSpillWeights.h
    U src/gnu/llvm/include/llvm/CodeGen/DIE.h
    U src/gnu/llvm/include/llvm/CodeGen/GCMetadata.h
    U src/gnu/llvm/include/llvm/CodeGen/LazyMachineBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundle.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/DebugHandlerBase.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfoImpls.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetOpcodes.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAG.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePipeliner.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleDAGInstrs.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterPressure.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.td
    U src/gnu/llvm/include/llvm/CodeGen/AsmPrinter.h
    U src/gnu/llvm/include/llvm/CodeGen/DFAPacketizer.h
    U src/gnu/llvm/include/llvm/CodeGen/MacroFusion.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetInstrInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineCombinerPattern.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetSubtargetInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LivePhysRegs.h
    U src/gnu/llvm/include/llvm/CodeGen/RegAllocPBQP.h
    U src/gnu/llvm/include/llvm/CodeGen/BasicTTIImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRegMatrix.h
    U src/gnu/llvm/include/llvm/CodeGen/LatencyPriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/WasmEHFuncInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/LiveRangeEdit.h
    U src/gnu/llvm/include/llvm/CodeGen/SchedulerRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/DAGCombine.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBundleIterator.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineDominators.h
    U src/gnu/llvm/include/llvm/CodeGen/TailDuplicator.h
    U src/gnu/llvm/include/llvm/CodeGen/CostTable.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineScheduler.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGNodes.h
    U src/gnu/llvm/include/llvm/CodeGen/Passes.h
    U src/gnu/llvm/include/llvm/CodeGen/ISDOpcodes.h
    U src/gnu/llvm/include/llvm/CodeGen/ScheduleHazardRecognizer.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterClassInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/EdgeBundles.h
    U src/gnu/llvm/include/llvm/CodeGen/LowLevelType.h
    U src/gnu/llvm/include/llvm/CodeGen/MachORelocation.h
    U src/gnu/llvm/include/llvm/CodeGen/LexicalScopes.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineOptimizationRemarkEmitter.h
    U src/gnu/llvm/include/llvm/CodeGen/DIEValue.def
    U src/gnu/llvm/include/llvm/CodeGen/MachineBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/FunctionLoweringInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/IntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h
    U src/gnu/llvm/include/llvm/CodeGen/SlotIndexes.h
    U src/gnu/llvm/include/llvm/CodeGen/BuiltinGCs.h
    U src/gnu/llvm/include/llvm/CodeGen/RegAllocRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetCallingConv.h
    U src/gnu/llvm/include/llvm/CodeGen/CallingConvLower.h
    U src/gnu/llvm/include/llvm/CodeGen/GCStrategy.h
    U src/gnu/llvm/include/llvm/CodeGen/ResourcePriorityQueue.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineTraceMetrics.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetSchedule.h
    U src/gnu/llvm/include/llvm/CodeGen/ExpandReductions.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineModuleInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineJumpTableInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/AsmPrinterHandler.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineBasicBlock.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstrBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/VirtRegMap.h
    U src/gnu/llvm/include/llvm/CodeGen/StackMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQPRAConstraint.h
    U src/gnu/llvm/include/llvm/CodeGen/PreISelIntrinsicLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunctionPass.h
    U src/gnu/llvm/include/llvm/CodeGen/DbgEntityHistoryCalculator.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/WinEHFuncInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineMemOperand.h
    U src/gnu/llvm/include/llvm/CodeGen/FastISel.h
    U src/gnu/llvm/include/llvm/CodeGen/TargetPassConfig.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineDominanceFrontier.h
    U src/gnu/llvm/include/llvm/CodeGen/SelectionDAGISel.h
    U src/gnu/llvm/include/llvm/CodeGen/ValueTypes.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRYamlMapping.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineFunction.h
    U src/gnu/llvm/include/llvm/CodeGen/UnreachableBlockElim.h
    U src/gnu/llvm/include/llvm/CodeGen/RegisterScavenging.h
    U src/gnu/llvm/include/llvm/CodeGen/StackProtector.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePassRegistry.h
    U src/gnu/llvm/include/llvm/CodeGen/ExecutionDomainFix.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineInstr.h
    U src/gnu/llvm/include/llvm/CodeGen/CommandFlags.inc
    U src/gnu/llvm/include/llvm/CodeGen/MachineFrameInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/FaultMaps.h
    U src/gnu/llvm/include/llvm/CodeGen/MachineConstantPool.h
    U src/gnu/llvm/include/llvm/CodeGen/MachinePostDominators.h
    U src/gnu/llvm/include/llvm/CodeGen/RuntimeLibcalls.h
    U src/gnu/llvm/include/llvm/CodeGen/DwarfStringPoolEntry.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/CostAllocator.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Solution.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Math.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/Graph.h
    U src/gnu/llvm/include/llvm/CodeGen/PBQP/ReductionRules.h
    U src/gnu/llvm/include/llvm/CodeGen/MIRParser/MIRParser.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Combiner.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CombinerHelper.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/IRTranslator.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegBankSelect.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/LegalizerHelper.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Legalizer.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CSEInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBank.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelect.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/MIPatternMatch.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Utils.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/GISelWorkList.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/LegalizationArtifactCombiner.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/LegalizerInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CallLowering.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Localizer.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelectorImpl.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/GISelChangeObserver.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/Types.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/CombinerInfo.h
    U src/gnu/llvm/include/llvm/CodeGen/GlobalISel/InstructionSelector.h
    U src/gnu/llvm/include/llvm/FuzzMutate/Random.h
    U src/gnu/llvm/include/llvm/FuzzMutate/Operations.h
    U src/gnu/llvm/include/llvm/FuzzMutate/FuzzerCLI.h
    U src/gnu/llvm/include/llvm/FuzzMutate/RandomIRBuilder.h
    U src/gnu/llvm/include/llvm/FuzzMutate/IRMutator.h
    U src/gnu/llvm/include/llvm/FuzzMutate/OpDescriptor.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamWriter.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeWriterPass.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeWriter.h
    U src/gnu/llvm/include/llvm/Bitcode/LLVMBitCodes.h
    U src/gnu/llvm/include/llvm/Bitcode/BitcodeReader.h
    U src/gnu/llvm/include/llvm/Bitcode/BitstreamReader.h
    U src/gnu/llvm/include/llvm/Bitcode/BitCodes.h
    U src/gnu/llvm/include/llvm/Passes/PassPlugin.h
    U src/gnu/llvm/include/llvm/Passes/StandardInstrumentations.h
    U src/gnu/llvm/include/llvm/Passes/PassBuilder.h
    U src/gnu/llvm/include/llvm/ObjectYAML/CodeViewYAMLSymbols.h
    U src/gnu/llvm/include/llvm/ObjectYAML/YAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/DWARFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/CodeViewYAMLDebugSections.h
    U src/gnu/llvm/include/llvm/ObjectYAML/ELFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypes.h
    U src/gnu/llvm/include/llvm/ObjectYAML/CodeViewYAMLTypeHashing.h
    U src/gnu/llvm/include/llvm/ObjectYAML/MachOYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/DWARFEmitter.h
    U src/gnu/llvm/include/llvm/ObjectYAML/COFFYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/WasmYAML.h
    U src/gnu/llvm/include/llvm/ObjectYAML/ObjectYAML.h
    U src/gnu/llvm/include/llvm/Config/AsmParsers.def.in
    U src/gnu/llvm/include/llvm/Config/Targets.def.in
    U src/gnu/llvm/include/llvm/Config/abi-breaking.h.cmake
    U src/gnu/llvm/include/llvm/Config/Disassemblers.def.in
    U src/gnu/llvm/include/llvm/Config/config.h.cmake
    U src/gnu/llvm/include/llvm/Config/AsmPrinters.def.in
    U src/gnu/llvm/include/llvm/Config/llvm-config.h.cmake
    U src/gnu/llvm/include/llvm/Option/Option.h
    U src/gnu/llvm/include/llvm/Option/ArgList.h
    U src/gnu/llvm/include/llvm/Option/OptSpecifier.h
    U src/gnu/llvm/include/llvm/Option/OptTable.h
    U src/gnu/llvm/include/llvm/Option/Arg.h
    U src/gnu/llvm/include/llvm/Option/OptParser.td
    U src/gnu/llvm/include/llvm/LTO/LTO.h
    U src/gnu/llvm/include/llvm/LTO/Config.h
    U src/gnu/llvm/include/llvm/LTO/LTOBackend.h
    U src/gnu/llvm/include/llvm/LTO/SummaryBasedOptimizations.h
    U src/gnu/llvm/include/llvm/LTO/Caching.h
    U src/gnu/llvm/include/llvm/LTO/legacy/ThinLTOCodeGenerator.h
    U src/gnu/llvm/include/llvm/LTO/legacy/LTOCodeGenerator.h
    U src/gnu/llvm/include/llvm/LTO/legacy/UpdateCompilerUsed.h
    U src/gnu/llvm/include/llvm/LTO/legacy/LTOModule.h
    U src/gnu/llvm/include/llvm/ToolDrivers/llvm-dlltool/DlltoolDriver.h
    U src/gnu/llvm/include/llvm/ToolDrivers/llvm-lib/LibDriver.h
    U src/gnu/llvm/include/llvm/ADT/StringExtras.h
    U src/gnu/llvm/include/llvm/ADT/EquivalenceClasses.h
    U src/gnu/llvm/include/llvm/ADT/DenseMap.h
    U src/gnu/llvm/include/llvm/ADT/SmallBitVector.h
    U src/gnu/llvm/include/llvm/ADT/SmallSet.h
    U src/gnu/llvm/include/llvm/ADT/SetVector.h
    U src/gnu/llvm/include/llvm/ADT/DAGDeltaAlgorithm.h
    U src/gnu/llvm/include/llvm/ADT/None.h
    U src/gnu/llvm/include/llvm/ADT/FunctionExtras.h
    U src/gnu/llvm/include/llvm/ADT/StringSwitch.h
    U src/gnu/llvm/include/llvm/ADT/SmallPtrSet.h
    U src/gnu/llvm/include/llvm/ADT/PointerSumType.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableList.h
    U src/gnu/llvm/include/llvm/ADT/IntrusiveRefCntPtr.h
    U src/gnu/llvm/include/llvm/ADT/DenseSet.h
    U src/gnu/llvm/include/llvm/ADT/Sequence.h
    U src/gnu/llvm/include/llvm/ADT/Triple.h
    U src/gnu/llvm/include/llvm/ADT/BitVector.h
    U src/gnu/llvm/include/llvm/ADT/StringRef.h
    U src/gnu/llvm/include/llvm/ADT/Hashing.h
    U src/gnu/llvm/include/llvm/ADT/Any.h
    U src/gnu/llvm/include/llvm/ADT/PriorityWorklist.h
    U src/gnu/llvm/include/llvm/ADT/AllocatorList.h
    U src/gnu/llvm/include/llvm/ADT/STLExtras.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableSet.h
    U src/gnu/llvm/include/llvm/ADT/edit_distance.h
    U src/gnu/llvm/include/llvm/ADT/iterator_range.h
    U src/gnu/llvm/include/llvm/ADT/GraphTraits.h
    U src/gnu/llvm/include/llvm/ADT/bit.h
    U src/gnu/llvm/include/llvm/ADT/simple_ilist.h
    U src/gnu/llvm/include/llvm/ADT/SetOperations.h
    U src/gnu/llvm/include/llvm/ADT/APFloat.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node_options.h
    U src/gnu/llvm/include/llvm/ADT/ilist_base.h
    U src/gnu/llvm/include/llvm/ADT/CachedHashString.h
    U src/gnu/llvm/include/llvm/ADT/BitmaskEnum.h
    U src/gnu/llvm/include/llvm/ADT/IntervalMap.h
    U src/gnu/llvm/include/llvm/ADT/TinyPtrVector.h
    U src/gnu/llvm/include/llvm/ADT/StringSet.h
    U src/gnu/llvm/include/llvm/ADT/IntEqClasses.h
    U src/gnu/llvm/include/llvm/ADT/PointerIntPair.h
    U src/gnu/llvm/include/llvm/ADT/ScopedHashTable.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node.h
    U src/gnu/llvm/include/llvm/ADT/APInt.h
    U src/gnu/llvm/include/llvm/ADT/ArrayRef.h
    U src/gnu/llvm/include/llvm/ADT/DepthFirstIterator.h
    U src/gnu/llvm/include/llvm/ADT/APSInt.h
    U src/gnu/llvm/include/llvm/ADT/StringMap.h
    U src/gnu/llvm/include/llvm/ADT/ilist.h
    U src/gnu/llvm/include/llvm/ADT/PackedVector.h
    U src/gnu/llvm/include/llvm/ADT/FoldingSet.h
    U src/gnu/llvm/include/llvm/ADT/Statistic.h
    U src/gnu/llvm/include/llvm/ADT/MapVector.h
    U src/gnu/llvm/include/llvm/ADT/VariadicFunction.h
    U src/gnu/llvm/include/llvm/ADT/BreadthFirstIterator.h
    U src/gnu/llvm/include/llvm/ADT/PostOrderIterator.h
    U src/gnu/llvm/include/llvm/ADT/PointerUnion.h
    U src/gnu/llvm/include/llvm/ADT/ilist_iterator.h
    U src/gnu/llvm/include/llvm/ADT/SmallVector.h
    U src/gnu/llvm/include/llvm/ADT/EpochTracker.h
    U src/gnu/llvm/include/llvm/ADT/DeltaAlgorithm.h
    U src/gnu/llvm/include/llvm/ADT/SmallString.h
    U src/gnu/llvm/include/llvm/ADT/DenseMapInfo.h
    U src/gnu/llvm/include/llvm/ADT/PointerEmbeddedInt.h
    U src/gnu/llvm/include/llvm/ADT/ImmutableMap.h
    U src/gnu/llvm/include/llvm/ADT/ilist_node_base.h
    U src/gnu/llvm/include/llvm/ADT/IndexedMap.h
    U src/gnu/llvm/include/llvm/ADT/SparseSet.h
    U src/gnu/llvm/include/llvm/ADT/Optional.h
    U src/gnu/llvm/include/llvm/ADT/SparseMultiSet.h
    U src/gnu/llvm/include/llvm/ADT/UniqueVector.h
    U src/gnu/llvm/include/llvm/ADT/Twine.h
    U src/gnu/llvm/include/llvm/ADT/ScopeExit.h
    U src/gnu/llvm/include/llvm/ADT/PriorityQueue.h
    U src/gnu/llvm/include/llvm/ADT/iterator.h
    U src/gnu/llvm/include/llvm/ADT/SCCIterator.h
    U src/gnu/llvm/include/llvm/ADT/SparseBitVector.h
    U src/gnu/llvm/include/llvm/Support/BinaryByteStream.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamRef.h
    U src/gnu/llvm/include/llvm/Support/LockFileManager.h
    U src/gnu/llvm/include/llvm/Support/Error.h
    U src/gnu/llvm/include/llvm/Support/DOTGraphTraits.h
    U src/gnu/llvm/include/llvm/Support/TargetSelect.h
    U src/gnu/llvm/include/llvm/Support/CommandLine.h
    U src/gnu/llvm/include/llvm/Support/Path.h
    U src/gnu/llvm/include/llvm/Support/CodeGenCoverage.h
    U src/gnu/llvm/include/llvm/Support/AlignOf.h
    U src/gnu/llvm/include/llvm/Support/raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/ARMTargetParser.def
    U src/gnu/llvm/include/llvm/Support/Parallel.h
    U src/gnu/llvm/include/llvm/Support/FormatProviders.h
    U src/gnu/llvm/include/llvm/Support/COM.h
    U src/gnu/llvm/include/llvm/Support/NativeFormatting.h
    U src/gnu/llvm/include/llvm/Support/ManagedStatic.h
    U src/gnu/llvm/include/llvm/Support/AArch64TargetParser.def
    U src/gnu/llvm/include/llvm/Support/TargetOpcodes.def
    U src/gnu/llvm/include/llvm/Support/JSON.h
    U src/gnu/llvm/include/llvm/Support/BuryPointer.h
    U src/gnu/llvm/include/llvm/Support/PointerLikeTypeTraits.h
    U src/gnu/llvm/include/llvm/Support/AMDHSAKernelDescriptor.h
    U src/gnu/llvm/include/llvm/Support/Recycler.h
    U src/gnu/llvm/include/llvm/Support/WithColor.h
    U src/gnu/llvm/include/llvm/Support/MathExtras.h
    U src/gnu/llvm/include/llvm/Support/ARMBuildAttributes.h
    U src/gnu/llvm/include/llvm/Support/ErrorOr.h
    U src/gnu/llvm/include/llvm/Support/Casting.h
    U src/gnu/llvm/include/llvm/Support/SymbolRemappingReader.h
    U src/gnu/llvm/include/llvm/Support/SMLoc.h
    U src/gnu/llvm/include/llvm/Support/ARMEHABI.h
    U src/gnu/llvm/include/llvm/Support/Locale.h
    U src/gnu/llvm/include/llvm/Support/Atomic.h
    U src/gnu/llvm/include/llvm/Support/VirtualFileSystem.h
    U src/gnu/llvm/include/llvm/Support/CodeGen.h
    U src/gnu/llvm/include/llvm/Support/Memory.h
    U src/gnu/llvm/include/llvm/Support/UniqueLock.h
    U src/gnu/llvm/include/llvm/Support/DataTypes.h
    U src/gnu/llvm/include/llvm/Support/TypeName.h
    U src/gnu/llvm/include/llvm/Support/PluginLoader.h
    U src/gnu/llvm/include/llvm/Support/Errno.h
    U src/gnu/llvm/include/llvm/Support/SmallVectorMemoryBuffer.h
    U src/gnu/llvm/include/llvm/Support/SwapByteOrder.h
    U src/gnu/llvm/include/llvm/Support/ErrorHandling.h
    U src/gnu/llvm/include/llvm/Support/DebugCounter.h
    U src/gnu/llvm/include/llvm/Support/Printable.h
    U src/gnu/llvm/include/llvm/Support/BranchProbability.h
    U src/gnu/llvm/include/llvm/Support/DataExtractor.h
    U src/gnu/llvm/include/llvm/Support/MachineValueType.h
    U src/gnu/llvm/include/llvm/Support/WindowsError.h
    U src/gnu/llvm/include/llvm/Support/LEB128.h
    U src/gnu/llvm/include/llvm/Support/Errc.h
    U src/gnu/llvm/include/llvm/Support/AArch64TargetParser.h
    U src/gnu/llvm/include/llvm/Support/StringPool.h
    U src/gnu/llvm/include/llvm/Support/CrashRecoveryContext.h
    U src/gnu/llvm/include/llvm/Support/KnownBits.h
    U src/gnu/llvm/include/llvm/Support/TarWriter.h
    U src/gnu/llvm/include/llvm/Support/MD5.h
    U src/gnu/llvm/include/llvm/Support/MemoryBuffer.h
    U src/gnu/llvm/include/llvm/Support/AtomicOrdering.h
    U src/gnu/llvm/include/llvm/Support/ARMAttributeParser.h
    U src/gnu/llvm/include/llvm/Support/SHA1.h
    U src/gnu/llvm/include/llvm/Support/Win64EH.h
    U src/gnu/llvm/include/llvm/Support/raw_sha1_ostream.h
    U src/gnu/llvm/include/llvm/Support/Allocator.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamArray.h
    U src/gnu/llvm/include/llvm/Support/JamCRC.h
    U src/gnu/llvm/include/llvm/Support/MipsABIFlags.h
    U src/gnu/llvm/include/llvm/Support/GraphWriter.h
    U src/gnu/llvm/include/llvm/Support/Mutex.h
    U src/gnu/llvm/include/llvm/Support/FileOutputBuffer.h
    U src/gnu/llvm/include/llvm/Support/FormattedStream.h
    U src/gnu/llvm/include/llvm/Support/CMakeLists.txt
    U src/gnu/llvm/include/llvm/Support/Timer.h
    U src/gnu/llvm/include/llvm/Support/circular_raw_ostream.h
    U src/gnu/llvm/include/llvm/Support/Program.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamWriter.h
    U src/gnu/llvm/include/llvm/Support/Signals.h
    U src/gnu/llvm/include/llvm/Support/TaskQueue.h
    U src/gnu/llvm/include/llvm/Support/ItaniumManglingCanonicalizer.h
    U src/gnu/llvm/include/llvm/Support/ToolOutputFile.h
    U src/gnu/llvm/include/llvm/Support/ARMTargetParser.h
    U src/gnu/llvm/include/llvm/Support/Host.h
    U src/gnu/llvm/include/llvm/Support/Compression.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamError.h
    U src/gnu/llvm/include/llvm/Support/CBindingWrapping.h
    U src/gnu/llvm/include/llvm/Support/X86TargetParser.def
    U src/gnu/llvm/include/llvm/Support/EndianStream.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTreeConstruction.h
    U src/gnu/llvm/include/llvm/Support/FormatCommon.h
    U src/gnu/llvm/include/llvm/Support/xxhash.h
    U src/gnu/llvm/include/llvm/Support/FileUtilities.h
    U src/gnu/llvm/include/llvm/Support/MemAlloc.h
    U src/gnu/llvm/include/llvm/Support/OnDiskHashTable.h
    U src/gnu/llvm/include/llvm/Support/LICENSE.TXT
    U src/gnu/llvm/include/llvm/Support/InitLLVM.h
    U src/gnu/llvm/include/llvm/Support/Format.h
    U src/gnu/llvm/include/llvm/Support/BinaryItemStream.h
    U src/gnu/llvm/include/llvm/Support/Endian.h
    U src/gnu/llvm/include/llvm/Support/CFGUpdate.h
    U src/gnu/llvm/include/llvm/Support/CheckedArithmetic.h
    U src/gnu/llvm/include/llvm/Support/SaveAndRestore.h
    U src/gnu/llvm/include/llvm/Support/ConvertUTF.h
    U src/gnu/llvm/include/llvm/Support/Regex.h
    U src/gnu/llvm/include/llvm/Support/Watchdog.h
    U src/gnu/llvm/include/llvm/Support/FileSystem.h
    U src/gnu/llvm/include/llvm/Support/ThreadLocal.h
    U src/gnu/llvm/include/llvm/Support/BinaryStream.h
    U src/gnu/llvm/include/llvm/Support/raw_os_ostream.h
    U src/gnu/llvm/include/llvm/Support/RandomNumberGenerator.h
    U src/gnu/llvm/include/llvm/Support/GenericDomTree.h
    U src/gnu/llvm/include/llvm/Support/TrigramIndex.h
    U src/gnu/llvm/include/llvm/Support/FormatAdapters.h
    U src/gnu/llvm/include/llvm/Support/YAMLTraits.h
    U src/gnu/llvm/include/llvm/Support/RecyclingAllocator.h
    U src/gnu/llvm/include/llvm/Support/YAMLParser.h
    U src/gnu/llvm/include/llvm/Support/Compiler.h
    U src/gnu/llvm/include/llvm/Support/Capacity.h
    U src/gnu/llvm/include/llvm/Support/MutexGuard.h
    U src/gnu/llvm/include/llvm/Support/Threading.h
    U src/gnu/llvm/include/llvm/Support/FormatVariadicDetails.h
    U src/gnu/llvm/include/llvm/Support/SourceMgr.h
    U src/gnu/llvm/include/llvm/Support/SystemUtils.h
    U src/gnu/llvm/include/llvm/Support/X86DisassemblerDecoderCommon.h
    U src/gnu/llvm/include/llvm/Support/type_traits.h
    U src/gnu/llvm/include/llvm/Support/ArrayRecycler.h
    U src/gnu/llvm/include/llvm/Support/ThreadPool.h
    U src/gnu/llvm/include/llvm/Support/thread.h
    U src/gnu/llvm/include/llvm/Support/GlobPattern.h
    U src/gnu/llvm/include/llvm/Support/LowLevelTypeImpl.h
    U src/gnu/llvm/include/llvm/Support/MSVCErrorWorkarounds.h
    U src/gnu/llvm/include/llvm/Support/TrailingObjects.h
    U src/gnu/llvm/include/llvm/Support/VersionTuple.h
    U src/gnu/llvm/include/llvm/Support/DynamicLibrary.h
    U src/gnu/llvm/include/llvm/Support/LineIterator.h
    U src/gnu/llvm/include/llvm/Support/ARMWinEH.h
    U src/gnu/llvm/include/llvm/Support/SpecialCaseList.h
    U src/gnu/llvm/include/llvm/Support/PrettyStackTrace.h
    U src/gnu/llvm/include/llvm/Support/StringSaver.h
    U src/gnu/llvm/include/llvm/Support/UnicodeCharRanges.h
    U src/gnu/llvm/include/llvm/Support/DJB.h
    U src/gnu/llvm/include/llvm/Support/RWMutex.h
    U src/gnu/llvm/include/llvm/Support/FileCheck.h
    U src/gnu/llvm/include/llvm/Support/Unicode.h
    U src/gnu/llvm/include/llvm/Support/BlockFrequency.h
    U src/gnu/llvm/include/llvm/Support/AMDGPUMetadata.h
    U src/gnu/llvm/include/llvm/Support/TargetParser.h
    U src/gnu/llvm/include/llvm/Support/CachePruning.h
    U src/gnu/llvm/include/llvm/Support/ScaledNumber.h
    U src/gnu/llvm/include/llvm/Support/TargetRegistry.h
    U src/gnu/llvm/include/llvm/Support/FormatVariadic.h
    U src/gnu/llvm/include/llvm/Support/Process.h
    U src/gnu/llvm/include/llvm/Support/Chrono.h
    U src/gnu/llvm/include/llvm/Support/Options.h
    U src/gnu/llvm/include/llvm/Support/Valgrind.h
    U src/gnu/llvm/include/llvm/Support/Debug.h
    U src/gnu/llvm/include/llvm/Support/BinaryStreamReader.h
    U src/gnu/llvm/include/llvm/Support/ScopedPrinter.h
    U src/gnu/llvm/include/llvm/Support/ReverseIteration.h
    U src/gnu/llvm/include/llvm/Support/Registry.h
    U src/gnu/llvm/include/llvm/Support/Solaris/sys/regset.h
    U src/gnu/llvm/include/llvm/DebugInfo/DIContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/DIPrinter.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/Symbolize.h
    U src/gnu/llvm/include/llvm/DebugInfo/Symbolize/SymbolizableModule.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRnglists.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAbbrev.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAcceleratorTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugInfoEntry.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFTypeUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFListTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugMacro.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFObject.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDie.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLoc.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDataExtractor.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAddressRange.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFCompileUnit.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFGdbIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugArangeSet.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugFrame.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAbbreviationDeclaration.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFSection.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFAttribute.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAddr.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugLine.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugAranges.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugPubTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFDebugRangeList.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFUnitIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFRelocMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFVerifier.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFFormValue.h
    U src/gnu/llvm/include/llvm/DebugInfo/DWARF/DWARFExpression.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFriend.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugStart.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDB.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBInjectedSource.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeTypedef.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBEnumChildren.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolAnnotation.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypePointer.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/UDTLayout.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBDataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolExe.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeDimension.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionSig.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBFrameData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBExtras.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUnknown.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolBlock.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBRawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeCustom.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeVTableShape.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeEnum.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFuncDebugEnd.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeManaged.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBuiltin.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolThunk.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/GenericError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/ConcreteSymbolEnumerator.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolLabel.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandDetails.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompilandEnv.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeUDT.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBLineNumber.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/IPDBSectionContrib.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeFunctionArg.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolUsingNamespace.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolFunc.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolPublicSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolCompiland.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBContext.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/PDBSymbolTypeBaseClass.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/InfoStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeEnum.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/RawConstants.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NamedStreamMap.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypePointer.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeCompilandSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PDBFileBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeFunctionSig.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/RawError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/ISectionContribVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/TpiStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeExeSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/InfoStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/GSIStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/Hash.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/TpiStreamBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/GlobalsStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/HashTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeBuiltin.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/RawTypes.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeSymbolEnumerator.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeTypedef.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/Formatters.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PDBStringTable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleList.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PDBFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/SymbolCache.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptor.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumModules.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeUDT.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/EnumTables.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/PublicsStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/DbiModuleDescriptorBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeVTShape.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeEnumGlobals.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeRawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/ModuleDebugStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/TpiHashing.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeTypeArray.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/NativeSession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/Native/SymbolStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIALineNumber.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumLineNumbers.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASectionContrib.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASession.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumDebugStreams.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSectionContribs.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIADataStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIATable.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAInjectedSource.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAError.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSymbols.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumInjectedSources.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIARawSymbol.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumFrameData.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumSourceFiles.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASupport.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAUtils.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAEnumTables.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIASourceFile.h
    U src/gnu/llvm/include/llvm/DebugInfo/PDB/DIA/DIAFrameData.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDumper.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeSymbolEmitter.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeHashing.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDeserializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugFrameDataSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbackPipeline.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/LazyRandomTypeCollection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeCollection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/ContinuationRecordBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewSymbols.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbacks.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeView.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/Line.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugChecksumsSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/GUID.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeIndexDiscovery.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/RecordSerialization.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeIndex.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolRVASubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/StringsAndChecksums.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugLinesSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordHelpers.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/GlobalTypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVSymbolVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordMapping.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewTypes.def
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/Formatters.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorDelegate.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolDumpDelegate.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/AppendingTypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewError.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/EnumTables.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugCrossExSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugCrossImpSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeTableCollection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SimpleTypeSerializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeDumpVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/RecordName.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/FunctionId.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolSerializer.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeStreamMerger.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugUnknownSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeRecordHelpers.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugInlineeLinesSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CVTypeVisitor.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/MergingTypeTableBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolVisitorCallbacks.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/TypeVisitorCallbackPipeline.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSymbolsSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewRecordIO.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/SymbolRecordMapping.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugStringTableSubsection.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/DebugSubsectionRecord.h
    U src/gnu/llvm/include/llvm/DebugInfo/CodeView/CodeViewRegisters.def
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFCommon.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFError.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MappedBlockStream.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/MSFBuilder.h
    U src/gnu/llvm/include/llvm/DebugInfo/MSF/IMSFFile.h
    U src/gnu/llvm/include/llvm/WindowsManifest/WindowsManifestMerger.h
    U src/gnu/llvm/include/llvm/IRReader/IRReader.h
    U src/gnu/llvm/include/llvm/XRay/FDRRecordConsumer.h
    U src/gnu/llvm/include/llvm/XRay/FDRTraceExpander.h
    U src/gnu/llvm/include/llvm/XRay/XRayRecord.h
    U src/gnu/llvm/include/llvm/XRay/Trace.h
    U src/gnu/llvm/include/llvm/XRay/YAMLXRayRecord.h
    U src/gnu/llvm/include/llvm/XRay/Profile.h
    U src/gnu/llvm/include/llvm/XRay/Graph.h
    U src/gnu/llvm/include/llvm/XRay/BlockIndexer.h
    U src/gnu/llvm/include/llvm/XRay/InstrumentationMap.h
    U src/gnu/llvm/include/llvm/XRay/FDRTraceWriter.h
    U src/gnu/llvm/include/llvm/XRay/FDRRecordProducer.h
    U src/gnu/llvm/include/llvm/XRay/FileHeaderReader.h
    U src/gnu/llvm/include/llvm/XRay/RecordPrinter.h
    U src/gnu/llvm/include/llvm/XRay/FDRRecords.h
    U src/gnu/llvm/include/llvm/XRay/BlockPrinter.h
    U src/gnu/llvm/include/llvm/XRay/FDRLogBuilder.h
    U src/gnu/llvm/include/llvm/XRay/BlockVerifier.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolMachO.h
    U src/gnu/llvm/include/llvm/MC/MCInstPrinter.h
    U src/gnu/llvm/include/llvm/MC/MCLabel.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfo.h
    U src/gnu/llvm/include/llvm/MC/MCInstrAnalysis.h
    U src/gnu/llvm/include/llvm/MC/MCLinkerOptimizationHint.h
    U src/gnu/llvm/include/llvm/MC/MCSymbol.h
    U src/gnu/llvm/include/llvm/MC/MCDwarf.h
    U src/gnu/llvm/include/llvm/MC/MCObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCCodePadder.h
    U src/gnu/llvm/include/llvm/MC/MCSectionMachO.h
    U src/gnu/llvm/include/llvm/MC/MCWinEH.h
    U src/gnu/llvm/include/llvm/MC/MCWasmObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCObjectStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCCodeView.h
    U src/gnu/llvm/include/llvm/MC/MCContext.h
    U src/gnu/llvm/include/llvm/MC/MCWin64EH.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoELF.h
    U src/gnu/llvm/include/llvm/MC/MachineLocation.h
    U src/gnu/llvm/include/llvm/MC/MCFixedLenDisassembler.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCTargetOptions.h
    U src/gnu/llvm/include/llvm/MC/MCAsmBackend.h
    U src/gnu/llvm/include/llvm/MC/MCMachObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCSchedule.h
    U src/gnu/llvm/include/llvm/MC/SectionKind.h
    U src/gnu/llvm/include/llvm/MC/StringTableBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCWinCOFFStreamer.h
    U src/gnu/llvm/include/llvm/MC/ConstantPools.h
    U src/gnu/llvm/include/llvm/MC/MCDirectives.h
    U src/gnu/llvm/include/llvm/MC/MCInstrItineraries.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoDarwin.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoWasm.h
    U src/gnu/llvm/include/llvm/MC/MCInst.h
    U src/gnu/llvm/include/llvm/MC/MCExpr.h
    U src/gnu/llvm/include/llvm/MC/MCFixup.h
    U src/gnu/llvm/include/llvm/MC/MCSection.h
    U src/gnu/llvm/include/llvm/MC/MCValue.h
    U src/gnu/llvm/include/llvm/MC/MCInstBuilder.h
    U src/gnu/llvm/include/llvm/MC/MCObjectFileInfo.h
    U src/gnu/llvm/include/llvm/MC/MCFixupKindInfo.h
    U src/gnu/llvm/include/llvm/MC/LaneBitmask.h
    U src/gnu/llvm/include/llvm/MC/SubtargetFeature.h
    U src/gnu/llvm/include/llvm/MC/MCFragment.h
    U src/gnu/llvm/include/llvm/MC/MCAssembler.h
    U src/gnu/llvm/include/llvm/MC/MCSubtargetInfo.h
    U src/gnu/llvm/include/llvm/MC/MCSectionELF.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolWasm.h
    U src/gnu/llvm/include/llvm/MC/MCCodeEmitter.h
    U src/gnu/llvm/include/llvm/MC/MCELFStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCInstrDesc.h
    U src/gnu/llvm/include/llvm/MC/MCTargetOptionsCommandFlags.inc
    U src/gnu/llvm/include/llvm/MC/MCRegisterInfo.h
    U src/gnu/llvm/include/llvm/MC/MCAsmInfoCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCELFObjectWriter.h
    U src/gnu/llvm/include/llvm/MC/MCSymbolELF.h
    U src/gnu/llvm/include/llvm/MC/MCWasmStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCInstrInfo.h
    U src/gnu/llvm/include/llvm/MC/MCSectionCOFF.h
    U src/gnu/llvm/include/llvm/MC/MCSectionWasm.h
    U src/gnu/llvm/include/llvm/MC/MCAsmMacro.h
    U src/gnu/llvm/include/llvm/MC/MCStreamer.h
    U src/gnu/llvm/include/llvm/MC/MCAsmLayout.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCParsedAsmOperand.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmLexer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/AsmCond.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCTargetAsmParser.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParser.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserUtils.h
    U src/gnu/llvm/include/llvm/MC/MCParser/AsmLexer.h
    U src/gnu/llvm/include/llvm/MC/MCParser/MCAsmParserExtension.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCRelocationInfo.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCExternalSymbolizer.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCDisassembler.h
    U src/gnu/llvm/include/llvm/MC/MCDisassembler/MCSymbolizer.h
    U src/gnu/llvm/include/llvm/Demangle/ItaniumDemangle.h
    U src/gnu/llvm/include/llvm/Demangle/MicrosoftDemangle.h
    U src/gnu/llvm/include/llvm/Demangle/Utility.h
    U src/gnu/llvm/include/llvm/Demangle/Demangle.h
    U src/gnu/llvm/include/llvm/Demangle/Compiler.h
    U src/gnu/llvm/include/llvm/Demangle/MicrosoftDemangleNodes.h
    U src/gnu/llvm/include/llvm/Demangle/StringView.h
    U src/gnu/llvm/include/llvm/BinaryFormat/COFF.h
    U src/gnu/llvm/include/llvm/BinaryFormat/Dwarf.h
    U src/gnu/llvm/include/llvm/BinaryFormat/Magic.h
    U src/gnu/llvm/include/llvm/BinaryFormat/ELF.h
    U src/gnu/llvm/include/llvm/BinaryFormat/MsgPackWriter.h
    U src/gnu/llvm/include/llvm/BinaryFormat/MsgPack.def
    U src/gnu/llvm/include/llvm/BinaryFormat/Dwarf.def
    U src/gnu/llvm/include/llvm/BinaryFormat/MsgPack.h
    U src/gnu/llvm/include/llvm/BinaryFormat/DynamicTags.def
    U src/gnu/llvm/include/llvm/BinaryFormat/WasmRelocs.def
    U src/gnu/llvm/include/llvm/BinaryFormat/MachO.h
    U src/gnu/llvm/include/llvm/BinaryFormat/Wasm.h
    U src/gnu/llvm/include/llvm/BinaryFormat/AMDGPUMetadataVerifier.h
    U src/gnu/llvm/include/llvm/BinaryFormat/MsgPackReader.h
    U src/gnu/llvm/include/llvm/BinaryFormat/MachO.def
    U src/gnu/llvm/include/llvm/BinaryFormat/MsgPackTypes.h
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/RISCV.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/Hexagon.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/ARC.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/SystemZ.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/Mips.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/AMDGPU.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/MSP430.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/Sparc.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/BPF.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/x86_64.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/AArch64.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/Lanai.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/PowerPC64.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/AVR.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/ARM.def
    U src/gnu/llvm/include/llvm/BinaryFormat/ELFRelocs/i386.def
    U src/gnu/llvm/include/llvm/LineEditor/LineEditor.h
    U src/gnu/llvm/include/llvm/AsmParser/SlotMapping.h
    U src/gnu/llvm/include/llvm/AsmParser/Parser.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar.h
    U src/gnu/llvm/include/llvm/Transforms/Coroutines.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize.h
    U src/gnu/llvm/include/llvm/Transforms/Utils.h
    U src/gnu/llvm/include/llvm/Transforms/ObjCARC.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation.h
    U src/gnu/llvm/include/llvm/Transforms/IPO.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/LoopVectorizationLegality.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/LoopVectorize.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/LoadStoreVectorizer.h
    U src/gnu/llvm/include/llvm/Transforms/Vectorize/SLPVectorizer.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombine.h
    U src/gnu/llvm/include/llvm/Transforms/InstCombine/InstCombineWorklist.h
    U src/gnu/llvm/include/llvm/Transforms/AggressiveInstCombine/AggressiveInstCombine.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/CrossDSOCFI.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionImport.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ElimAvailExtern.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/LowerTypeTests.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PassManagerBuilder.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/WholeProgramDevirt.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/SyntheticCountsPropagation.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/SCCP.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/HotColdSplitting.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/CalledValuePropagation.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/PartialInlining.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ConstantMerge.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalDCE.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ArgumentPromotion.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/InferFunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/SampleProfile.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/FunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/AlwaysInliner.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ThinLTOBitcodeWriter.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/StripDeadPrototypes.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/Inliner.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalOpt.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/DeadArgumentElimination.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/ForceFunctionAttrs.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/Internalize.h
    U src/gnu/llvm/include/llvm/Transforms/IPO/GlobalSplit.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ImportedFunctionsInliningStatistics.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopRotationUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/GlobalStatus.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/FunctionComparator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/AddDiscriminators.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BasicBlockUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BypassSlowDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnrollLoop.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ValueMapper.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Mem2Reg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/PromoteMemToReg.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BuildLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SanitizerStats.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SymbolRewriter.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/EscapeEnumerator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/NameAnonGlobals.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Local.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CanonicalizeAliases.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LowerMemIntrinsics.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/PredicateInfo.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdaterImpl.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/VNCoercion.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LowerInvoke.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/UnifyFunctionExitNodes.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ModuleUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CtorUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/FunctionImportUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopVersioning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/GuardUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/ASanStackFrameLayout.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Cloning.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/BreakCriticalEdges.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdater.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LoopSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/IntegerDivision.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SplitModule.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CallPromotionUtils.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SSAUpdaterBulk.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/EntryExitInstrumenter.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/CodeExtractor.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/Evaluator.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/SimplifyIndVar.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LCSSA.h
    U src/gnu/llvm/include/llvm/Transforms/Utils/LibCallsShrinkWrap.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SimpleLoopUnswitch.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerExpectIntrinsic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ConstantHoisting.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/CorrelatedValuePropagation.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopSimplifyCFG.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDataPrefetch.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SpeculateAroundPHIs.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/TailRecursionElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/CallSiteSplitting.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopRotation.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/ADCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopIdiomRecognize.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerGuardIntrinsic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/BDCE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/AlignmentFromAssumptions.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SCCP.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/IndVarSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopAccessAnalysisPrinter.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopUnrollAndJamPass.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/NaryReassociate.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SpeculativeExecution.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/PartiallyInlineLibCalls.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/NewGVN.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopSink.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopPredication.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GuardWidening.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/InstSimplifyPass.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LICM.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopInstSimplify.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Reassociate.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Float2Int.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Scalarizer.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GVN.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DeadStoreElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopPassManager.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SimplifyCFG.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/SROA.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/JumpThreading.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopStrengthReduce.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/GVNExpression.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/WarnMissedTransforms.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MakeGuardsExplicit.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopUnrollPass.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDeletion.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/IVUsersPrinter.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/EarlyCSE.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LowerAtomic.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/InductiveRangeCheckElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/RewriteStatepointsForGC.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/Sink.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MemCpyOptimizer.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DivRemPairs.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/MergedLoadStoreMotion.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopLoadElimination.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/LoopDistribute.h
    U src/gnu/llvm/include/llvm/Transforms/Scalar/DCE.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/InstrProfiling.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/ControlHeightReduction.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/GCOVProfiler.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/ThreadSanitizer.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/MemorySanitizer.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/BoundsChecking.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/PGOInstrumentation.h
    U src/gnu/llvm/include/llvm/Transforms/Instrumentation/CGProfile.h
    U src/gnu/llvm/include/llvm/Object/COFF.h
    U src/gnu/llvm/include/llvm/Object/Error.h
    U src/gnu/llvm/include/llvm/Object/ArchiveWriter.h
    U src/gnu/llvm/include/llvm/Object/ELF.h
    U src/gnu/llvm/include/llvm/Object/Decompressor.h
    U src/gnu/llvm/include/llvm/Object/WasmTraits.h
    U src/gnu/llvm/include/llvm/Object/Archive.h
    U src/gnu/llvm/include/llvm/Object/ModuleSymbolTable.h
    U src/gnu/llvm/include/llvm/Object/IRSymtab.h
    U src/gnu/llvm/include/llvm/Object/SymbolicFile.h
    U src/gnu/llvm/include/llvm/Object/WindowsResource.h
    U src/gnu/llvm/include/llvm/Object/CVDebugRecord.h
    U src/gnu/llvm/include/llvm/Object/StackMapParser.h
    U src/gnu/llvm/include/llvm/Object/Binary.h
    U src/gnu/llvm/include/llvm/Object/ObjectFile.h
    U src/gnu/llvm/include/llvm/Object/IRObjectFile.h
    U src/gnu/llvm/include/llvm/Object/MachO.h
    U src/gnu/llvm/include/llvm/Object/ELFTypes.h
    U src/gnu/llvm/include/llvm/Object/Wasm.h
    U src/gnu/llvm/include/llvm/Object/MachOUniversal.h
    U src/gnu/llvm/include/llvm/Object/ELFObjectFile.h
    U src/gnu/llvm/include/llvm/Object/SymbolSize.h
    U src/gnu/llvm/include/llvm/Object/COFFModuleDefinition.h
    U src/gnu/llvm/include/llvm/Object/RelocVisitor.h
    U src/gnu/llvm/include/llvm/Object/COFFImportFile.h
    U src/gnu/llvm/include/llvm/Testing/Support/Error.h
    U src/gnu/llvm/include/llvm/Testing/Support/SupportHelpers.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ObjectCache.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/ExecutionEngine.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Interpreter.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyldChecker.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/GenericValue.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OProfileWrapper.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RuntimeDyld.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/MCJIT.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/RTDyldMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/JITEventListener.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/OrcMCJITReplacement.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/SectionMemoryManager.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/JITSymbol.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ThreadSafeModule.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcABISupport.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LazyReexports.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RawByteChannel.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileOnDemandLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetRPCAPI.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IndirectionUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetClient.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/Legacy.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/JITTargetMachineBuilder.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRCompileLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RTDyldObjectLinkingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/NullResolver.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ExecutionUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RPCSerialization.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LazyEmittingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RPCUtils.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/Layer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/Core.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcError.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/OrcRemoteTargetServer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LLJIT.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/ObjectTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/LambdaResolver.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/IRTransformLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/RemoteObjectLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/GlobalMappingLayer.h
    U src/gnu/llvm/include/llvm/ExecutionEngine/Orc/CompileUtils.h
    U src/gnu/llvm/include/llvm/MCA/InstrBuilder.h
    U src/gnu/llvm/include/llvm/MCA/Instruction.h
    U src/gnu/llvm/include/llvm/MCA/Support.h
    U src/gnu/llvm/include/llvm/MCA/Context.h
    U src/gnu/llvm/include/llvm/MCA/HWEventListener.h
    U src/gnu/llvm/include/llvm/MCA/Pipeline.h
    U src/gnu/llvm/include/llvm/MCA/SourceMgr.h
    U src/gnu/llvm/include/llvm/MCA/Stages/ExecuteStage.h
    U src/gnu/llvm/include/llvm/MCA/Stages/RetireStage.h
    U src/gnu/llvm/include/llvm/MCA/Stages/EntryStage.h
    U src/gnu/llvm/include/llvm/MCA/Stages/Stage.h
    U src/gnu/llvm/include/llvm/MCA/Stages/DispatchStage.h
    U src/gnu/llvm/include/llvm/MCA/Stages/InstructionTables.h
    U src/gnu/llvm/include/llvm/MCA/HardwareUnits/HardwareUnit.h
    U src/gnu/llvm/include/llvm/MCA/HardwareUnits/Scheduler.h
    U src/gnu/llvm/include/llvm/MCA/HardwareUnits/ResourceManager.h
    U src/gnu/llvm/include/llvm/MCA/HardwareUnits/RetireControlUnit.h
    U src/gnu/llvm/include/llvm/MCA/HardwareUnits/LSUnit.h
    U src/gnu/llvm/include/llvm/MCA/HardwareUnits/RegisterFile.h
    U src/gnu/llvm/include/llvm/Target/TargetLoweringObjectFile.h
    U src/gnu/llvm/include/llvm/Target/TargetMachine.h
    U src/gnu/llvm/include/llvm/Target/TargetCallingConv.td
    U src/gnu/llvm/include/llvm/Target/GenericOpcodes.td
    U src/gnu/llvm/include/llvm/Target/Target.td
    U src/gnu/llvm/include/llvm/Target/TargetOptions.h
    U src/gnu/llvm/include/llvm/Target/TargetIntrinsicInfo.h
    U src/gnu/llvm/include/llvm/Target/CodeGenCWrappers.h
    U src/gnu/llvm/include/llvm/Target/TargetItinerary.td
    U src/gnu/llvm/include/llvm/Target/TargetSelectionDAG.td
    U src/gnu/llvm/include/llvm/Target/TargetPfmCounters.td
    U src/gnu/llvm/include/llvm/Target/TargetSchedule.td
    U src/gnu/llvm/include/llvm/Target/TargetInstrPredicate.td
    U src/gnu/llvm/include/llvm/Target/GlobalISel/RegisterBank.td
    U src/gnu/llvm/include/llvm/Target/GlobalISel/Target.td
    U src/gnu/llvm/include/llvm/Target/GlobalISel/SelectionDAGCompat.td
    U src/gnu/llvm/include/llvm/WindowsResource/ResourceScriptToken.h
    U src/gnu/llvm/include/llvm/WindowsResource/ResourceScriptTokenList.h
    U src/gnu/llvm/include/llvm/WindowsResource/ResourceProcessor.h
    U src/gnu/llvm/include/llvm/Analysis/ValueTracking.h
    U src/gnu/llvm/include/llvm/Analysis/LazyValueInfo.h
    U src/gnu/llvm/include/llvm/Analysis/OptimizationRemarkEmitter.h
    U src/gnu/llvm/include/llvm/Analysis/PtrUseVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/LoopPass.h
    U src/gnu/llvm/include/llvm/Analysis/ValueLattice.h
    U src/gnu/llvm/include/llvm/Analysis/GlobalsModRef.h
    U src/gnu/llvm/include/llvm/Analysis/SparsePropagation.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCInstKind.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryDependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfo.h
    U src/gnu/llvm/include/llvm/Analysis/LoopIterator.h
    U src/gnu/llvm/include/llvm/Analysis/LegacyDivergenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/PhiValues.h
    U src/gnu/llvm/include/llvm/Analysis/CallPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/CodeMetrics.h
    U src/gnu/llvm/include/llvm/Analysis/PostDominators.h
    U src/gnu/llvm/include/llvm/Analysis/MemorySSA.h
    U src/gnu/llvm/include/llvm/Analysis/Loads.h
    U src/gnu/llvm/include/llvm/Analysis/CFLAliasAnalysisUtils.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionNormalization.h
    U src/gnu/llvm/include/llvm/Analysis/LoopUnrollAnalyzer.h
    U src/gnu/llvm/include/llvm/Analysis/InstructionSimplify.h
    U src/gnu/llvm/include/llvm/Analysis/OrderedInstructions.h
    U src/gnu/llvm/include/llvm/Analysis/RegionInfo.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalIterator.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/StackSafetyAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/LoopAccessAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/IndirectCallVisitor.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraphSCCPass.h
    U src/gnu/llvm/include/llvm/Analysis/DivergenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpander.h
    U src/gnu/llvm/include/llvm/Analysis/CaptureTracking.h
    U src/gnu/llvm/include/llvm/Analysis/LoopInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/Trace.h
    U src/gnu/llvm/include/llvm/Analysis/TargetFolder.h
    U src/gnu/llvm/include/llvm/Analysis/LazyBlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/LazyBranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/Analysis/ConstantFolding.h
    U src/gnu/llvm/include/llvm/Analysis/TypeMetadataUtils.h
    U src/gnu/llvm/include/llvm/Analysis/DependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/LoopAnalysisManager.h
    U src/gnu/llvm/include/llvm/Analysis/CFLAndersAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/InstructionPrecedenceTracking.h
    U src/gnu/llvm/include/llvm/Analysis/ValueLatticeUtils.h
    U src/gnu/llvm/include/llvm/Analysis/IndirectCallPromotionAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/AliasSetTracker.h
    U src/gnu/llvm/include/llvm/Analysis/Lint.h
    U src/gnu/llvm/include/llvm/Analysis/CFG.h
    U src/gnu/llvm/include/llvm/Analysis/OrderedBasicBlock.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPass.h
    U src/gnu/llvm/include/llvm/Analysis/IVDescriptors.h
    U src/gnu/llvm/include/llvm/Analysis/RegionInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryLocation.h
    U src/gnu/llvm/include/llvm/Analysis/SyntheticCountsUtils.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfoImpl.h
    U src/gnu/llvm/include/llvm/Analysis/EHPersonalities.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysisEvaluator.h
    U src/gnu/llvm/include/llvm/Analysis/CFGPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/GuardUtils.h
    U src/gnu/llvm/include/llvm/Analysis/IteratedDominanceFrontier.h
    U src/gnu/llvm/include/llvm/Analysis/VectorUtils.h
    U src/gnu/llvm/include/llvm/Analysis/IntervalPartition.h
    U src/gnu/llvm/include/llvm/Analysis/DominanceFrontierImpl.h
    U src/gnu/llvm/include/llvm/Analysis/AliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/MemoryBuiltins.h
    U src/gnu/llvm/include/llvm/Analysis/DomPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/DOTGraphTraitsPass.h
    U src/gnu/llvm/include/llvm/Analysis/Passes.h
    U src/gnu/llvm/include/llvm/Analysis/ObjCARCAnalysisUtils.h
    U src/gnu/llvm/include/llvm/Analysis/ScopedNoAliasAA.h
    U src/gnu/llvm/include/llvm/Analysis/IVUsers.h
    U src/gnu/llvm/include/llvm/Analysis/BlockFrequencyInfo.h
    U src/gnu/llvm/include/llvm/Analysis/MemorySSAUpdater.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/CGSCCPassManager.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolutionExpressions.h
    U src/gnu/llvm/include/llvm/Analysis/ModuleSummaryAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/TypeBasedAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/RegionIterator.h
    U src/gnu/llvm/include/llvm/Analysis/InlineCost.h
    U src/gnu/llvm/include/llvm/Analysis/TargetTransformInfo.h
    U src/gnu/llvm/include/llvm/Analysis/RegionPrinter.h
    U src/gnu/llvm/include/llvm/Analysis/PHITransAddr.h
    U src/gnu/llvm/include/llvm/Analysis/CallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/SyncDependenceAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/MustExecute.h
    U src/gnu/llvm/include/llvm/Analysis/CmpInstAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/CFLSteensAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/ProfileSummaryInfo.h
    U src/gnu/llvm/include/llvm/Analysis/BasicAliasAnalysis.h
    U src/gnu/llvm/include/llvm/Analysis/AssumptionCache.h
    U src/gnu/llvm/include/llvm/Analysis/Interval.h
    U src/gnu/llvm/include/llvm/Analysis/DemandedBits.h
    U src/gnu/llvm/include/llvm/Analysis/ScalarEvolution.h
    U src/gnu/llvm/include/llvm/Analysis/TargetLibraryInfo.def
    U src/gnu/llvm/include/llvm/Analysis/BranchProbabilityInfo.h
    U src/gnu/llvm/include/llvm/Analysis/LazyCallGraph.h
    U src/gnu/llvm/include/llvm/Analysis/Utils/Local.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProf.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProf.h
    U src/gnu/llvm/include/llvm/ProfileData/GCOV.h
    U src/gnu/llvm/include/llvm/ProfileData/InstrProfData.inc
    U src/gnu/llvm/include/llvm/ProfileData/ProfileCommon.h
    U src/gnu/llvm/include/llvm/ProfileData/SampleProfReader.h
    U src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMappingWriter.h
    U src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMapping.h
    U src/gnu/llvm/include/llvm/ProfileData/Coverage/CoverageMappingReader.h
    U src/gnu/llvm/projects/CMakeLists.txt
    U src/gnu/llvm/projects/LLVMBuild.txt
    U src/gnu/llvm/unittests/CMakeLists.txt
    U src/gnu/llvm/unittests/unittest.cfg.in
    U src/gnu/llvm/unittests/IR/ModuleTest.cpp
    U src/gnu/llvm/unittests/IR/TypesTest.cpp
    U src/gnu/llvm/unittests/IR/InstructionsTest.cpp
    U src/gnu/llvm/unittests/IR/CFGBuilder.h
    U src/gnu/llvm/unittests/IR/VerifierTest.cpp
    U src/gnu/llvm/unittests/IR/ValueTest.cpp
    U src/gnu/llvm/unittests/IR/MDBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/IRBuilderTest.cpp
    U src/gnu/llvm/unittests/IR/DebugInfoTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantRangeTest.cpp
    U src/gnu/llvm/unittests/IR/UserTest.cpp
    U src/gnu/llvm/unittests/IR/PassBuilderCallbacksTest.cpp
    U src/gnu/llvm/unittests/IR/ConstantsTest.cpp
    U src/gnu/llvm/unittests/IR/CMakeLists.txt
    U src/gnu/llvm/unittests/IR/PatternMatch.cpp
    U src/gnu/llvm/unittests/IR/AttributesTest.cpp
    U src/gnu/llvm/unittests/IR/BasicBlockTest.cpp
    U src/gnu/llvm/unittests/IR/PassManagerTest.cpp
    U src/gnu/llvm/unittests/IR/MetadataTest.cpp
    U src/gnu/llvm/unittests/IR/AsmWriterTest.cpp
    U src/gnu/llvm/unittests/IR/DebugTypeODRUniquingTest.cpp
    U src/gnu/llvm/unittests/IR/CFGBuilder.cpp
    U src/gnu/llvm/unittests/IR/LegacyPassManagerTest.cpp
    U src/gnu/llvm/unittests/IR/DominatorTreeTest.cpp
    U src/gnu/llvm/unittests/IR/WaymarkTest.cpp
    U src/gnu/llvm/unittests/IR/ValueMapTest.cpp
    U src/gnu/llvm/unittests/IR/IntrinsicsTest.cpp
    U src/gnu/llvm/unittests/IR/ManglerTest.cpp
    U src/gnu/llvm/unittests/IR/ValueHandleTest.cpp
    U src/gnu/llvm/unittests/IR/UseTest.cpp
    U src/gnu/llvm/unittests/IR/DomTreeUpdaterTest.cpp
    U src/gnu/llvm/unittests/IR/DominatorTreeBatchUpdatesTest.cpp
    U src/gnu/llvm/unittests/IR/FunctionTest.cpp
    U src/gnu/llvm/unittests/TextAPI/ELFYAMLTest.cpp
    U src/gnu/llvm/unittests/TextAPI/CMakeLists.txt
    U src/gnu/llvm/unittests/Linker/LinkModulesTest.cpp
    U src/gnu/llvm/unittests/Linker/CMakeLists.txt
    U src/gnu/llvm/unittests/MI/CMakeLists.txt
    U src/gnu/llvm/unittests/MI/LiveIntervalTest.cpp
    U src/gnu/llvm/unittests/CodeGen/AArch64SelectionDAGTest.cpp
    U src/gnu/llvm/unittests/CodeGen/MachineInstrBundleIteratorTest.cpp
    U src/gnu/llvm/unittests/CodeGen/CMakeLists.txt
    U src/gnu/llvm/unittests/CodeGen/MachineOperandTest.cpp
    U src/gnu/llvm/unittests/CodeGen/DIEHashTest.cpp
    U src/gnu/llvm/unittests/CodeGen/ScalableVectorMVTsTest.cpp
    U src/gnu/llvm/unittests/CodeGen/LowLevelTypeTest.cpp
    U src/gnu/llvm/unittests/CodeGen/MachineInstrTest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/PatternMatchTest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/CMakeLists.txt
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/GISelMITest.h
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/CSETest.cpp
    U src/gnu/llvm/unittests/CodeGen/GlobalISel/LegalizerHelperTest.cpp
    U src/gnu/llvm/unittests/FuzzMutate/OperationsTest.cpp
    U src/gnu/llvm/unittests/FuzzMutate/StrategiesTest.cpp
    U src/gnu/llvm/unittests/FuzzMutate/CMakeLists.txt
    U src/gnu/llvm/unittests/FuzzMutate/RandomIRBuilderTest.cpp
    U src/gnu/llvm/unittests/FuzzMutate/ReservoirSamplerTest.cpp
    U src/gnu/llvm/unittests/Bitcode/CMakeLists.txt
    U src/gnu/llvm/unittests/Bitcode/BitstreamWriterTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitstreamReaderTest.cpp
    U src/gnu/llvm/unittests/Bitcode/BitReaderTest.cpp
    U src/gnu/llvm/unittests/Passes/PluginsTest.cpp
    U src/gnu/llvm/unittests/Passes/CMakeLists.txt
    U src/gnu/llvm/unittests/Passes/TestPlugin.cpp
    U src/gnu/llvm/unittests/Passes/TestPlugin.h
    U src/gnu/llvm/unittests/ObjectYAML/CMakeLists.txt
    U src/gnu/llvm/unittests/ObjectYAML/YAMLTest.cpp
    U src/gnu/llvm/unittests/Option/CMakeLists.txt
    U src/gnu/llvm/unittests/Option/Opts.td
    U src/gnu/llvm/unittests/Option/OptionParsingTest.cpp
    U src/gnu/llvm/unittests/ADT/STLExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/MappedIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/PackedVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallStringTest.cpp
    U src/gnu/llvm/unittests/ADT/SequenceTest.cpp
    U src/gnu/llvm/unittests/ADT/IListIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallSetTest.cpp
    U src/gnu/llvm/unittests/ADT/StringMapTest.cpp
    U src/gnu/llvm/unittests/ADT/IntrusiveRefCntPtrTest.cpp
    U src/gnu/llvm/unittests/ADT/IListNodeBaseTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableSetTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseSetTest.cpp
    U src/gnu/llvm/unittests/ADT/DAGDeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/StringSwitchTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseSetTest.cpp
    U src/gnu/llvm/unittests/ADT/BreadthFirstIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerSumTypeTest.cpp
    U src/gnu/llvm/unittests/ADT/TestGraph.h
    U src/gnu/llvm/unittests/ADT/StringRefTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerEmbeddedIntTest.cpp
    U src/gnu/llvm/unittests/ADT/IListNodeTest.cpp
    U src/gnu/llvm/unittests/ADT/APFloatTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableMapTest.cpp
    U src/gnu/llvm/unittests/ADT/BitmaskEnumTest.cpp
    U src/gnu/llvm/unittests/ADT/SimpleIListTest.cpp
    U src/gnu/llvm/unittests/ADT/DeltaAlgorithmTest.cpp
    U src/gnu/llvm/unittests/ADT/SmallPtrSetTest.cpp
    U src/gnu/llvm/unittests/ADT/SetVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/HashingTest.cpp
    U src/gnu/llvm/unittests/ADT/EquivalenceClassesTest.cpp
    U src/gnu/llvm/unittests/ADT/IListBaseTest.cpp
    U src/gnu/llvm/unittests/ADT/CMakeLists.txt
    U src/gnu/llvm/unittests/ADT/ArrayRefTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerIntPairTest.cpp
    U src/gnu/llvm/unittests/ADT/BumpPtrListTest.cpp
    U src/gnu/llvm/unittests/ADT/TripleTest.cpp
    U src/gnu/llvm/unittests/ADT/FoldingSet.cpp
    U src/gnu/llvm/unittests/ADT/FunctionExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/IteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/IntervalMapTest.cpp
    U src/gnu/llvm/unittests/ADT/RangeAdapterTest.cpp
    U src/gnu/llvm/unittests/ADT/MapVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/PointerUnionTest.cpp
    U src/gnu/llvm/unittests/ADT/IListTest.cpp
    U src/gnu/llvm/unittests/ADT/DepthFirstIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/PostOrderIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/SCCIteratorTest.cpp
    U src/gnu/llvm/unittests/ADT/IListSentinelTest.cpp
    U src/gnu/llvm/unittests/ADT/ScopeExitTest.cpp
    U src/gnu/llvm/unittests/ADT/BitVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/OptionalTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseMultiSetTest.cpp
    U src/gnu/llvm/unittests/ADT/StatisticTest.cpp
    U src/gnu/llvm/unittests/ADT/DenseMapTest.cpp
    U src/gnu/llvm/unittests/ADT/AnyTest.cpp
    U src/gnu/llvm/unittests/ADT/APIntTest.cpp
    U src/gnu/llvm/unittests/ADT/TinyPtrVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/MakeUniqueTest.cpp
    U src/gnu/llvm/unittests/ADT/TwineTest.cpp
    U src/gnu/llvm/unittests/ADT/FunctionRefTest.cpp
    U src/gnu/llvm/unittests/ADT/APSIntTest.cpp
    U src/gnu/llvm/unittests/ADT/SparseBitVectorTest.cpp
    U src/gnu/llvm/unittests/ADT/StringExtrasTest.cpp
    U src/gnu/llvm/unittests/ADT/ImmutableListTest.cpp
    U src/gnu/llvm/unittests/ADT/PriorityWorklistTest.cpp
    U src/gnu/llvm/unittests/ADT/VariadicFunctionTest.cpp
    U src/gnu/llvm/unittests/ADT/IntEqClassesTest.cpp
    U src/gnu/llvm/unittests/Support/CompressionTest.cpp
    U src/gnu/llvm/unittests/Support/SpecialCaseListTest.cpp
    U src/gnu/llvm/unittests/Support/BinaryStreamTest.cpp
    U src/gnu/llvm/unittests/Support/ErrnoTest.cpp
    U src/gnu/llvm/unittests/Support/JSONTest.cpp
    U src/gnu/llvm/unittests/Support/DebugTest.cpp
    U src/gnu/llvm/unittests/Support/TrailingObjectsTest.cpp
    U src/gnu/llvm/unittests/Support/TarWriterTest.cpp
    U src/gnu/llvm/unittests/Support/raw_sha1_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/ErrorOrTest.cpp
    U src/gnu/llvm/unittests/Support/CrashRecoveryTest.cpp
    U src/gnu/llvm/unittests/Support/ArrayRecyclerTest.cpp
    U src/gnu/llvm/unittests/Support/CommandLineTest.cpp
    U src/gnu/llvm/unittests/Support/TaskQueueTest.cpp
    U src/gnu/llvm/unittests/Support/FileOutputBufferTest.cpp
    U src/gnu/llvm/unittests/Support/Path.cpp
    U src/gnu/llvm/unittests/Support/SymbolRemappingReaderTest.cpp
    U src/gnu/llvm/unittests/Support/MathExtrasTest.cpp
    U src/gnu/llvm/unittests/Support/StringPool.cpp
    U src/gnu/llvm/unittests/Support/MemoryBufferTest.cpp
    U src/gnu/llvm/unittests/Support/raw_pwrite_stream_test.cpp
    U src/gnu/llvm/unittests/Support/GlobPatternTest.cpp
    U src/gnu/llvm/unittests/Support/NativeFormatTests.cpp
    U src/gnu/llvm/unittests/Support/ProcessTest.cpp
    U src/gnu/llvm/unittests/Support/Host.cpp
    U src/gnu/llvm/unittests/Support/ThreadLocalTest.cpp
    U src/gnu/llvm/unittests/Support/LEB128Test.cpp
    U src/gnu/llvm/unittests/Support/SwapByteOrderTest.cpp
    U src/gnu/llvm/unittests/Support/ItaniumManglingCanonicalizerTest.cpp
    U src/gnu/llvm/unittests/Support/ReverseIterationTest.cpp
    U src/gnu/llvm/unittests/Support/TypeTraitsTest.cpp
    U src/gnu/llvm/unittests/Support/FormatVariadicTest.cpp
    U src/gnu/llvm/unittests/Support/MD5Test.cpp
    U src/gnu/llvm/unittests/Support/CMakeLists.txt
    U src/gnu/llvm/unittests/Support/DataExtractorTest.cpp
    U src/gnu/llvm/unittests/Support/formatted_raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/Threading.cpp
    U src/gnu/llvm/unittests/Support/xxhashTest.cpp
    U src/gnu/llvm/unittests/Support/BranchProbabilityTest.cpp
    U src/gnu/llvm/unittests/Support/VersionTupleTest.cpp
    U src/gnu/llvm/unittests/Support/LineIteratorTest.cpp
    U src/gnu/llvm/unittests/Support/LockFileManagerTest.cpp
    U src/gnu/llvm/unittests/Support/EndianTest.cpp
    U src/gnu/llvm/unittests/Support/MemoryTest.cpp
    U src/gnu/llvm/unittests/Support/AlignOfTest.cpp
    U src/gnu/llvm/unittests/Support/VirtualFileSystemTest.cpp
    U src/gnu/llvm/unittests/Support/BlockFrequencyTest.cpp
    U src/gnu/llvm/unittests/Support/ProgramTest.cpp
    U src/gnu/llvm/unittests/Support/TimerTest.cpp
    U src/gnu/llvm/unittests/Support/EndianStreamTest.cpp
    U src/gnu/llvm/unittests/Support/ScaledNumberTest.cpp
    U src/gnu/llvm/unittests/Support/UnicodeTest.cpp
    U src/gnu/llvm/unittests/Support/TypeNameTest.cpp
    U src/gnu/llvm/unittests/Support/TrigramIndexTest.cpp
    U src/gnu/llvm/unittests/Support/CachePruningTest.cpp
    U src/gnu/llvm/unittests/Support/AllocatorTest.cpp
    U src/gnu/llvm/unittests/Support/DebugCounterTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLIOTest.cpp
    U src/gnu/llvm/unittests/Support/CheckedArithmeticTest.cpp
    U src/gnu/llvm/unittests/Support/RegexTest.cpp
    U src/gnu/llvm/unittests/Support/ManagedStatic.cpp
    U src/gnu/llvm/unittests/Support/ARMAttributeParser.cpp
    U src/gnu/llvm/unittests/Support/Casting.cpp
    U src/gnu/llvm/unittests/Support/DJBTest.cpp
    U src/gnu/llvm/unittests/Support/Chrono.cpp
    U src/gnu/llvm/unittests/Support/ParallelTest.cpp
    U src/gnu/llvm/unittests/Support/ReplaceFileTest.cpp
    U src/gnu/llvm/unittests/Support/ThreadPool.cpp
    U src/gnu/llvm/unittests/Support/raw_ostream_test.cpp
    U src/gnu/llvm/unittests/Support/TargetParserTest.cpp
    U src/gnu/llvm/unittests/Support/SourceMgrTest.cpp
    U src/gnu/llvm/unittests/Support/ErrorTest.cpp
    U src/gnu/llvm/unittests/Support/YAMLParserTest.cpp
    U src/gnu/llvm/unittests/Support/ConvertUTFTest.cpp
    U src/gnu/llvm/unittests/Support/DynamicLibrary/PipSqueak.h
    U src/gnu/llvm/unittests/Support/DynamicLibrary/ExportedFuncs.cpp
    U src/gnu/llvm/unittests/Support/DynamicLibrary/CMakeLists.txt
    U src/gnu/llvm/unittests/Support/DynamicLibrary/PipSqueak.cpp
    U src/gnu/llvm/unittests/Support/DynamicLibrary/DynamicLibraryTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.h
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFDebugInfoTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfUtils.h
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfGenerator.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFFormValueTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DWARFDebugLineTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/DWARF/DwarfUtils.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/HashTableTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/StringTableBuilderTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/NativeSymbolReuseTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/PDB/PDBApiTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/PDB/Inputs/empty.pdb
    U src/gnu/llvm/unittests/DebugInfo/CodeView/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/CodeView/RandomAccessVisitorTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/CodeView/TypeHashingTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/CodeView/TypeIndexDiscoveryTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/MSF/MappedBlockStreamTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/MSF/CMakeLists.txt
    U src/gnu/llvm/unittests/DebugInfo/MSF/MSFCommonTest.cpp
    U src/gnu/llvm/unittests/DebugInfo/MSF/MSFBuilderTest.cpp
    U src/gnu/llvm/unittests/XRay/ProfileTest.cpp
    U src/gnu/llvm/unittests/XRay/FDRRecordsTest.cpp
    U src/gnu/llvm/unittests/XRay/GraphTest.cpp
    U src/gnu/llvm/unittests/XRay/FDRBlockIndexerTest.cpp
    U src/gnu/llvm/unittests/XRay/FDRRecordPrinterTest.cpp
    U src/gnu/llvm/unittests/XRay/CMakeLists.txt
    U src/gnu/llvm/unittests/XRay/FDRTraceWriterTest.cpp
    U src/gnu/llvm/unittests/XRay/FDRBlockVerifierTest.cpp
    U src/gnu/llvm/unittests/XRay/FDRProducerConsumerTest.cpp
    U src/gnu/llvm/unittests/MC/TargetRegistry.cpp
    U src/gnu/llvm/unittests/MC/Disassembler.cpp
    U src/gnu/llvm/unittests/MC/StringTableBuilderTest.cpp
    U src/gnu/llvm/unittests/MC/CMakeLists.txt
    U src/gnu/llvm/unittests/MC/DwarfLineTables.cpp
    U src/gnu/llvm/unittests/Demangle/PartialDemangleTest.cpp
    U src/gnu/llvm/unittests/Demangle/CMakeLists.txt
    U src/gnu/llvm/unittests/Demangle/ItaniumDemangleTest.cpp
    U src/gnu/llvm/unittests/BinaryFormat/MsgPackWriterTest.cpp
    U src/gnu/llvm/unittests/BinaryFormat/MachOTest.cpp
    U src/gnu/llvm/unittests/BinaryFormat/DwarfTest.cpp
    U src/gnu/llvm/unittests/BinaryFormat/CMakeLists.txt
    U src/gnu/llvm/unittests/BinaryFormat/MsgPackReaderTest.cpp
    U src/gnu/llvm/unittests/BinaryFormat/TestFileMagic.cpp
    U src/gnu/llvm/unittests/BinaryFormat/MsgPackTypesTest.cpp
    U src/gnu/llvm/unittests/LineEditor/CMakeLists.txt
    U src/gnu/llvm/unittests/LineEditor/LineEditor.cpp
    U src/gnu/llvm/unittests/tools/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-exegesis/BenchmarkRunnerTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/PerfHelperTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-exegesis/ClusteringTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/RegisterValueTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/TargetTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/RegisterAliasingTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/SnippetGeneratorTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/AnalysisTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-exegesis/X86/BenchmarkResultTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/PowerPC/TargetTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/PowerPC/AnalysisTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/PowerPC/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-exegesis/ARM/AssemblerTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/ARM/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-exegesis/Common/AssemblerUtils.h
    U src/gnu/llvm/unittests/tools/llvm-exegesis/AArch64/TargetTest.cpp
    U src/gnu/llvm/unittests/tools/llvm-exegesis/AArch64/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-cfi-verify/CMakeLists.txt
    U src/gnu/llvm/unittests/tools/llvm-cfi-verify/GraphBuilder.cpp
    U src/gnu/llvm/unittests/tools/llvm-cfi-verify/FileAnalysis.cpp
    U src/gnu/llvm/unittests/AsmParser/AsmParserTest.cpp
    U src/gnu/llvm/unittests/AsmParser/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanLoopInfoTest.cpp
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanHCFGTest.cpp
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanDominatorTreeTest.cpp
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanTestBase.h
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanSlpTest.cpp
    U src/gnu/llvm/unittests/Transforms/Vectorize/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Vectorize/VPlanTest.cpp
    U src/gnu/llvm/unittests/Transforms/IPO/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/IPO/LowerTypeTests.cpp
    U src/gnu/llvm/unittests/Transforms/IPO/WholeProgramDevirt.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/BasicBlockUtilsTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/CMakeLists.txt
    U src/gnu/llvm/unittests/Transforms/Utils/IntegerDivisionTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/SSAUpdaterBulkTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ASanStackFrameLayoutTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/FunctionComparatorTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/CodeExtractorTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/LocalTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/CloningTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/UnrollLoopTest.cpp
    U src/gnu/llvm/unittests/Transforms/Utils/ValueMapperTest.cpp
    U src/gnu/llvm/unittests/Transforms/Scalar/LoopPassManagerTest.cpp
    U src/gnu/llvm/unittests/Transforms/Scalar/CMakeLists.txt
    U src/gnu/llvm/unittests/Object/SymbolicFileTest.cpp
    U src/gnu/llvm/unittests/Object/CMakeLists.txt
    U src/gnu/llvm/unittests/Object/SymbolSizeTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/ExecutionEngineTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMemoryManagerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTests.def
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITObjectCacheTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITMultipleModuleTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestAPICommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/MCJIT/MCJITTestBase.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/SymbolStringPoolTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/IndirectionUtilsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LegacyRTDyldObjectLinkingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LegacyCompileOnDemandLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CoreAPIsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/JITTargetMachineBuilderTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/QueueChannel.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcCAPITest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/CMakeLists.txt
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/OrcTestCommon.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ObjectTransformLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/QueueChannel.h
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/RemoteObjectLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/GlobalMappingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/RTDyldObjectLinkingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/ThreadSafeModuleTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LazyCallThroughAndReexportsTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LazyEmittingLayerTest.cpp
    U src/gnu/llvm/unittests/ExecutionEngine/Orc/LegacyAPIInteropTest.cpp
    U src/gnu/llvm/unittests/Target/CMakeLists.txt
    U src/gnu/llvm/unittests/Target/WebAssembly/WebAssemblyExceptionInfoTest.cpp
    U src/gnu/llvm/unittests/Target/WebAssembly/CMakeLists.txt
    U src/gnu/llvm/unittests/Target/AArch64/CMakeLists.txt
    U src/gnu/llvm/unittests/Target/AArch64/InstSizes.cpp
    U src/gnu/llvm/unittests/Analysis/CallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/MemoryBuiltinsTest.cpp
    U src/gnu/llvm/unittests/Analysis/DivergenceAnalysisTest.cpp
    U src/gnu/llvm/unittests/Analysis/CaptureTrackingTest.cpp
    U src/gnu/llvm/unittests/Analysis/BlockFrequencyInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/AliasSetTrackerTest.cpp
    U src/gnu/llvm/unittests/Analysis/AliasAnalysisTest.cpp
    U src/gnu/llvm/unittests/Analysis/ScalarEvolutionTest.cpp
    U src/gnu/llvm/unittests/Analysis/ProfileSummaryInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/BasicAliasAnalysisTest.cpp
    U src/gnu/llvm/unittests/Analysis/LoopInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/LazyCallGraphTest.cpp
    U src/gnu/llvm/unittests/Analysis/CMakeLists.txt
    U src/gnu/llvm/unittests/Analysis/OrderedBasicBlockTest.cpp
    U src/gnu/llvm/unittests/Analysis/MemorySSATest.cpp
    U src/gnu/llvm/unittests/Analysis/TBAATest.cpp
    U src/gnu/llvm/unittests/Analysis/UnrollAnalyzerTest.cpp
    U src/gnu/llvm/unittests/Analysis/ValueTrackingTest.cpp
    U src/gnu/llvm/unittests/Analysis/OrderedInstructionsTest.cpp
    U src/gnu/llvm/unittests/Analysis/PhiValuesTest.cpp
    U src/gnu/llvm/unittests/Analysis/TargetLibraryInfoTest.cpp
    U src/gnu/llvm/unittests/Analysis/SparsePropagation.cpp
    U src/gnu/llvm/unittests/Analysis/ValueLatticeTest.cpp
    U src/gnu/llvm/unittests/Analysis/CFGTest.cpp
    U src/gnu/llvm/unittests/Analysis/CGSCCPassManagerTest.cpp
    U src/gnu/llvm/unittests/Analysis/GlobalsModRefTest.cpp
    U src/gnu/llvm/unittests/Analysis/BranchProbabilityInfoTest.cpp
    U src/gnu/llvm/unittests/OptRemarks/CMakeLists.txt
    U src/gnu/llvm/unittests/OptRemarks/OptRemarksParsingTest.cpp
    U src/gnu/llvm/unittests/ProfileData/CMakeLists.txt
    U src/gnu/llvm/unittests/ProfileData/SampleProfTest.cpp
    U src/gnu/llvm/unittests/ProfileData/CoverageMappingTest.cpp
    U src/gnu/llvm/unittests/ProfileData/InstrProfTest.cpp
    U src/gnu/llvm/benchmarks/DummyYAML.cpp
    U src/gnu/llvm/benchmarks/CMakeLists.txt
    U src/gnu/llvm/runtimes/Components.cmake.in
    U src/gnu/llvm/runtimes/CMakeLists.txt
    U src/gnu/llvm/resources/windows_version_resource.rc
    
    8 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jLLVM:yesterday -jLLVM src/gnu/llvm

CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/01 10:37:25

Modified files:
	gnu/llvm/lib/Target/Mips: MipsAsmPrinter.cpp 
	gnu/llvm/lib/Target/Mips/MCTargetDesc: MipsTargetStreamer.cpp 
	gnu/llvm/lib/Target/X86: X86TargetMachine.cpp 
	gnu/llvm/tools/clang/lib/Driver/ToolChains: Clang.cpp 
	gnu/llvm/tools/clang/www: cxx_dr_status.html cxx_status.html 
	gnu/llvm/tools/lld/ELF: SyntheticSections.cpp Writer.cpp 

Log message:
Merge LLVM 8.0.1 release.

Tested in snaps and package builds
Tested on amd64 by naddy@
Tested on arm64 by patrick@
Tested on octeon by visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/01 10:40:03

Modified files:
	gnu/usr.bin/clang/include/clang/Basic: Version.inc 
	gnu/usr.bin/clang/include/clang/Config: config.h 
	gnu/usr.bin/clang/include/clang/intrin: Makefile 
	gnu/usr.bin/clang/include/lld/Common: Version.inc 
	gnu/usr.bin/clang/include/llvm/Config: config.h llvm-config.h.in 

Log message:
Update clang build infrastructure for LLVM 8.0.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/01 11:23:47

Modified files:
	sys/dev/fdt    : amlmmc.c 

Log message:
Use DMA descriptors if necessary.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/01 11:59:02

Modified files:
	sys/dev/fdt    : amlmmc.c 

Log message:
Use interrupt handler instead of polling for completion.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/01 12:04:25

Modified files:
	audio/libogg   : Makefile distinfo 
	audio/libogg/patches: patch-configure 

Log message:
update to 1.3.4: minor changes only


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/01 12:45:34

Modified files:
	x11/krusader   : Makefile distinfo 
	x11/krusader/pkg: PLIST 

Log message:
Update krusader to 2.7.2


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/01 12:53:10

Modified files:
	distrib/sets/lists/comp: clang.amd64 clang.arm64 clang.armv7 
	                         clang.i386 clang.loongson clang.macppc 
	                         clang.octeon clang.sgi clang.sparc64 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/01 12:54:54

Modified files:
	multimedia/phonon: Makefile distinfo 
	multimedia/phonon/patches: patch-CMakeLists_txt 
	                           patch-phonon_CMakeLists_txt 

Log message:
Update phonon for Qt4/KDE to 4.10.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/01 12:55:12

Modified files:
	multimedia/phonon-qt5: Makefile distinfo 
	multimedia/phonon-qt5/patches: patch-phonon_CMakeLists_txt 
	multimedia/phonon-qt5/pkg: PLIST 

Log message:
Update phonon for Qt5 to 4.10.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/01 12:56:02

Modified files:
	multimedia/phonon-backend/gstreamer: Makefile distinfo 
	multimedia/phonon-backend/gstreamer/patches: 
	                                             patch-CMakeLists_txt 

Log message:
Update GStreamer-based Phonon backend to 4.9.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/01 12:56:40

Modified files:
	multimedia/phonon-backend/vlc: Makefile distinfo 
	multimedia/phonon-backend/vlc/pkg: PLIST 

Log message:
Update VLC-based Phonon backend to 0.10.3


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/01 13:13:17

Modified files:
	sys/dev/fdt    : amlpinctrl.c 

Log message:
Write to the correct register when setting the output level for a GPIO pin.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/01 13:15:03

Modified files:
	mail/dovecot-pigeonhole: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
really update to Dovecot-pigeonhole 0.5.7.2 (I mistakenly committed
0.5.7.1 before, pointed out by Brad).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/01 13:28:32

Modified files:
	games/dxx-rebirth: Makefile 

Log message:
BUILD_DEPENDS on devel/boost,-main, it is picked up during the build.
No LIB_DEPENDS because it only uses headers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/01 13:47:56

Modified files:
	textproc/miller: Makefile distinfo 

Log message:
Update miller to 5.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/01 14:10:32

Modified files:
	devel/libbinio : Makefile distinfo 

Log message:
Update libbinio to 1.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/01 15:35:18

Modified files:
	sysutils/diffoscope: Makefile distinfo 
	sysutils/diffoscope/pkg: PLIST 

Log message:
Update to diffoscope-122


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/01 15:36:32

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190830


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/09/01 16:49:56

Modified files:
	.              : errata64.html errata65.html 

Log message:
release resume and frag6ecn errata.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/01 17:47:32

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
print comment when printing pubkey from private

bz#3052; ok dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/01 18:19:25

Modified files:
	usr.bin/ssh    : ssh-pkcs11.c 

Log message:
downgrade PKCS#11 "provider returned no slots" warning from log level
error to debug. This is common when attempting to enumerate keys on
smartcard readers with no cards plugged in. bz#3058 ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/01 20:35:08

Modified files:
	sys/arch/mips64/include: cpu.h 

Log message:
in non-MP, cpu_number() the #define should be 0UL; ok visa


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/01 20:35:33

Modified files:
	sys/arch/mips64/mips64: db_machdep.c 

Log message:
cpu number is unsigned (does not really matter)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/02 00:35:42

Modified files:
	meta/tor-browser: Makefile 

Log message:
No point in building the meta tor-browser port when tb-browser is
ONLY_FOR_ARCHS=i386 amd64.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/02 01:03:39

Modified files:
	security/suricata: Makefile 
	www/geckodriver: Makefile distinfo 
	www/newsboat   : Makefile distinfo 
Added files:
	security/suricata/patches: 
	                           patch-rust_vendor_libc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs 

Log message:
update libc-rs for sparc64

maintainers timeout


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/02 01:05:48

Modified files:
	infrastructure/mk: arch-defines.mk 
	lang/rust      : Makefile 

Log message:
add sparc64 in RUST_ARCHS (all rust ports take care of sparc64 now)
and enable lang/rust build on sparc64


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/02 01:08:01

Modified files:
	audio/pulseaudio: Makefile 

Log message:
portroach: ignore 12.99.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/02 02:16:49

Modified files:
	sys/dev/fdt    : amlpinctrl.c 

Log message:
Two additional pin configurations.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/02 02:21:15

Modified files:
	sys/dev/fdt    : amlmmc.c 

Log message:
A few more missing bits: power regulators, eMMC power sequencing,
MMC DDR52 support, clock gating.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/02 03:56:54

Modified files:
	mail/roundcubemail: Tag: OPENBSD_6_5 Makefile 

Log message:
oops, MFC'd too much - set back to default php version dependency.
spotted by landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/02 03:58:03

Modified files:
	mail/roundcubemail: Makefile 

Log message:
bump to make -current package version is higher than -stable


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/02 05:26:30

Modified files:
	sys/dev/pci/drm/i915: i915_gem.c 

Log message:
Release locks in error paths.  Spotted by semarie@

ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	mortimer@cvs.openbsd.org	2019/09/02 06:43:54

Modified files:
	libexec/ld.so/mips64: ldasm.S 

Log message:
Remove some duplicate symbol definitions.

ok visa@ guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/02 06:48:44

Modified files:
	usr.bin/netstat: mroute.c 

Log message:
The output of netstat -g was mangled.  Fix header line and print
format.
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/09/02 06:50:12

Modified files:
	sys/dev/pci    : if_iwm.c if_iwn.c 
	sys/net80211   : ieee80211.c 

Log message:
Reset the current wireless PHY mode to 'auto' when a scan begins if we
are in media autoselect mode.

The interface might have been switched to a fixed PHY mode during association
and keeping it fixed will mislead AP selection after roaming failure.

Problem found and diagnosed at CCC camp 2019
Tested by myself, fkr@, chris@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/09/02 06:54:21

Modified files:
	sbin/ifconfig  : ifconfig.c 
	sys/net80211   : ieee80211_ioctl.c ieee80211_ioctl.h 
	                 ieee80211_node.c ieee80211_node.h 
	                 ieee80211_pae_input.c ieee80211_proto.c 

Log message:
Make net80211 expose reasons for association failures to userland and have
ifconfig display them in 'scan' output and on the ieee80211 status line if
the failure is applicable to an already selected AP (e.g. wrong WPA key).

This will hopefully reduce the amount of help requests for what often
turn out to be trivial misconfiguration issues that were previously
hard to diagnose without debug mode.

ifconfig must be recompiled with the new ieee80211_ioctl.h to stay in
sync with the kernel. A full 'make build' will do the right thing!

Very helpful input by mpi@ and deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/02 07:08:49

Modified files:
	sys/dev/fdt    : sxiccmu.c 

Log message:
Implement setting the CPU clock for Allwinner A64 SoCs.
From Krystian Lewandowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/02 07:12:09

Modified files:
	sys/netinet    : ip_mroute.c 

Log message:
Fix a route use after free in multicast route.  Move the rt_mcast_del()
out of the rtable_walk().  This avoids recursion to prevent stack
overflow.  Also it allows freeing the route outside of the walk.
Now mrt_mcast_del() frees the route only when it is deleted from
the routing table.  If that fails, it must not be freed.  After the
route is returned by mfc_find(), it is reference counted.  Then we
need a rtfree(), but not in the other caes.
Move rt_timer_remove_all() into rt_mcast_del().
OK mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/02 07:15:38

Modified files:
	infrastructure/lib/DPB: Config.pm Host.pm MiniCurses.pm State.pm 
	infrastructure/lib/DPB/Core: Init.pm 

Log message:
tweak some socket details
- store a master_pid for dpb once during startup, so that it doesn't ever
change later.
- use it for socket name building
- in case a host is dead, show the socket name instead of the host
- adapt minicurses to highlight the full socket name (requires /)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/02 07:22:34

Modified files:
	infrastructure/lib/DPB/Core: Init.pm 

Log message:
show the socket name in the init file


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/02 08:07:45

Modified files:
	usr.bin/less   : charset.c cmdbuf.c funcs.h less.1 

Log message:
Delete what remains of the support for combining characters into
ligatures: it was incomplete (only for the Arabic script and only
for the single ligature LAM WITH ALEF) and it was implemented in a
way that is unsustainable (with a static table inside less).

If we ever want ligature support, we are better off making a fresh
start.  However, for languages like Arabic and Persian, even that
wouldn't really be useful without having bidirectional support first.

OK millert@
(and also considering comments from Mohammadreza Abdollahzadeh,
Evan Silberman, and benno@)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/02 09:24:39

Modified files:
	sys/dev/fdt    : sxiccmu_clocks.h 

Log message:
Implement setting the CPU clock for Allwinner A64 SoCs.
From Krystian Lewandowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/09/02 10:36:12

Modified files:
	usr.sbin/installboot: i386_installboot.c i386_installboot.h 
	                      i386_softraid.c 

Log message:
Fix copyright lines, the "one-inode file system" in i386_softraid.c is my
invention; and I have had little to do with the i386_installboot.[ch] files.
This was mixed up in the giant reshuffle a few years back. ok jsing@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/02 11:40:14

Modified files:
	productivity/tryton/5.0/sao: Makefile distinfo 
	productivity/tryton/5.0/tryton: Makefile distinfo 

Log message:
tryton 5.0: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/02 11:40:41

Modified files:
	productivity/tryton/5.2/sao: Makefile distinfo 
	productivity/tryton/5.2/tryton: Makefile distinfo 

Log message:
tryton 5.2: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/02 12:04:40

Log message:
    import games/thedarkmod
    tweaks and ok kirby@
    
    Description:
    
    A dark and moody stealth game, inspired by the "Thief" series by
    Looking Glass Studios, The Dark Mod includes creative new gameplay
    features, dozens of unique AI, and a complete set of custom art
    assets, allowing players and mappers alike to enjoy missions in a
    gothic steampunk universe. When you play The Dark Mod, you feel
    like you're playing a gothic stealth game...
    
    This game is first and foremost a toolkit, allowing fans and
    team-members to create their own stealth missions in a gothic
    steampunk environment. But there are already over 100 full missions
    for download, including some small campaigns, so it certainly feels
    like a game. The only difference is that you have to choose which
    missions to install and play.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190902
    
    N ports/games/thedarkmod/Makefile
    N ports/games/thedarkmod/distinfo
    N ports/games/thedarkmod/patches/patch-SConstruct
    N ports/games/thedarkmod/patches/patch-game_Entity_cpp
    N ports/games/thedarkmod/patches/patch-game_anim_Anim_Blend_cpp
    N ports/games/thedarkmod/patches/patch-game_pugixml_pugixml_cpp
    N ports/games/thedarkmod/patches/patch-game_pugixml_pugixml_hpp
    N ports/games/thedarkmod/patches/patch-idlib_Lib_cpp
    N ports/games/thedarkmod/patches/patch-idlib_math_Simd_h
    N ports/games/thedarkmod/patches/patch-idlib_math_Simd_cpp
    N ports/games/thedarkmod/patches/patch-renderer_qgl_h
    N ports/games/thedarkmod/patches/patch-sys_sys_public_h
    N ports/games/thedarkmod/patches/patch-framework_minizip_ioapi_c
    N ports/games/thedarkmod/patches/patch-framework_minizip_unzip_cpp
    N ports/games/thedarkmod/patches/patch-framework_minizip_zip_cpp
    N ports/games/thedarkmod/patches/patch-game_gamesys_SaveGame_cpp
    N ports/games/thedarkmod/patches/patch-idlib_Image_cpp
    N ports/games/thedarkmod/patches/patch-game_physics_Physics_RigidBody_cpp
    N ports/games/thedarkmod/patches/patch-idlib_math_Simd_AVX2_cpp
    N ports/games/thedarkmod/patches/patch-idlib_math_Simd_AVX_cpp
    N ports/games/thedarkmod/patches/patch-renderer_CinematicFFMpeg_cpp
    N ports/games/thedarkmod/patches/patch-renderer_CinematicFFMpeg_h
    N ports/games/thedarkmod/patches/patch-renderer_CinematicID_cpp
    N ports/games/thedarkmod/patches/patch-renderer_Image_files_cpp
    N ports/games/thedarkmod/patches/patch-renderer_RenderSystem_cpp
    N ports/games/thedarkmod/patches/patch-sound_snd_cache_cpp
    N ports/games/thedarkmod/patches/patch-sound_snd_decoder_cpp
    N ports/games/thedarkmod/patches/patch-sound_snd_emitter_cpp
    N ports/games/thedarkmod/patches/patch-sound_snd_system_cpp
    N ports/games/thedarkmod/patches/patch-sound_snd_world_cpp
    N ports/games/thedarkmod/patches/patch-sys_gllog_gl_extensions_cpp_m4
    N ports/games/thedarkmod/patches/patch-sys_linux_glimp_cpp
    N ports/games/thedarkmod/patches/patch-sys_linux_glimp_dlopen_cpp_m4
    N ports/games/thedarkmod/patches/patch-sys_posix_posix_main_cpp
    N ports/games/thedarkmod/patches/patch-sys_scons_SConscript_core
    N ports/games/thedarkmod/patches/patch-sys_scons_SConscript_darkmod
    N ports/games/thedarkmod/patches/patch-sys_scons_SConscript_extlibs
    N ports/games/thedarkmod/patches/patch-sys_scons_SConscript_idlib
    N ports/games/thedarkmod/patches/patch-sys_sys_local_cpp
    N ports/games/thedarkmod/patches/patch-tdm_update_SConscript_minizip
    N ports/games/thedarkmod/patches/patch-tdm_update_SConscript_tdm_update
    N ports/games/thedarkmod/patches/patch-tdm_update_SConstruct
    N ports/games/thedarkmod/patches/patch-tdm_update_libtdm_update_Util_cpp
    N ports/games/thedarkmod/patches/patch-tdm_update_libtdm_update_Zip_Zip_cpp
    N ports/games/thedarkmod/patches/patch-tools_compilers_roqvq_roq_cpp
    N ports/games/thedarkmod/files/thedarkmod.sh
    N ports/games/thedarkmod/files/tdm_update.sh
    N ports/games/thedarkmod/files/Darkmod.cfg
    N ports/games/thedarkmod/pkg/DESCR
    N ports/games/thedarkmod/pkg/PLIST
    N ports/games/thedarkmod/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/02 12:07:11

Modified files:
	games          : Makefile 

Log message:
+thedarkmod


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/02 12:11:46

Log message:
    import devel/nuget, the package manager for .NET
    tweaks and ok abieber@
    
    Description:
    
    NuGet is the package manager for .NET. The NuGet client tools provide the
    ability to produce and consume packages. The NuGet Gallery is the central
    package repository used by all package authors and consumers.
    
    For .NET (including .NET Core), the Microsoft-supported mechanism for sharing
    code is NuGet, which defines how packages for .NET are created, hosted, and
    consumed, and provides the tools for each of those roles.
    
    Put simply, a NuGet package is a single ZIP file with the .nupkg extension that
    contains compiled code (DLLs), other files related to that code, and a
    descriptive manifest that includes information like the package's version
    number. Developers with code to share create packages and publish them to a
    public or private host. Package consumers obtain those packages from suitable
    hosts, add them to their projects, and then call a package's functionality in
    their project code. NuGet itself then handles all of the intermediate details.
    
    Status:
    
    Vendor Tag:	thfr
    Release Tags:	thfr_20190902
    
    N ports/devel/nuget/Makefile
    N ports/devel/nuget/distinfo
    N ports/devel/nuget/files/nuget.sh
    N ports/devel/nuget/pkg/DESCR
    N ports/devel/nuget/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/02 12:12:44

Modified files:
	devel          : Makefile 

Log message:
+nuget


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/02 12:20:12

Modified files:
	games/godot    : Makefile 
Added files:
	games/godot/patches: patch-core_safe_refcount_h 

Log message:
use __atomic_* functions and unbreak build on ppc, by cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/02 12:24:42

Modified files:
	games/steamworks-nosteam: Makefile distinfo 
	games/steamworks-nosteam/pkg: PLIST 

Log message:
update steamworks-nosteam to 0.2.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/02 12:26:12

Modified files:
	audio/faudio   : Makefile distinfo 

Log message:
update to FAudio 19.09


CVSROOT:	/cvs
Module name:	ports
Changes by:	gilles@cvs.openbsd.org	2019/09/02 13:01:24

Modified files:
	mail/opensmtpd-filter-rspamd: Makefile distinfo 

Log message:
update to 0.1.1, passes authenticated username to rspamd

ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/02 13:17:43

Modified files:
	usr.sbin/smtpd : smtpc.c 

Log message:
in standalone smtp client, smtps schema should use ... smtps port

diff from Ross L Richardson <openbsd@rlr.id.au>


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/09/02 14:05:21

Modified files:
	usr.sbin/smtpd : smtp.h smtp_client.c smtpc.c 

Log message:
Request a new SSL structure for each TLS session.
Fix a crash reported by Ross L Richardson.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/02 14:55:08

Modified files:
	net/tinc       : Makefile distinfo 

Log message:
Update to 1.0.36

- Fix compiling tinc with certain versions of the OpenSSL library.
- Fix parsing some IPv6 addresses with :: in them.
- Fix GraphDumpFile output to handle node names starting with a digit.
- Fix a potential segmentation fault when fragmenting packets.

Take maintainer;
OK rsadowski


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/02 15:18:41

Modified files:
	lib/libc/gen   : Makefile.inc ftw.3 scandir.3 
	share/man/man5 : login.conf.5 spamd.conf.5 
	bin/chmod      : chflags.1 chgrp.1 chmod.1 chown.8 
	bin/cp         : cp.1 
	bin/ln         : symlink.7 
	bin/rm         : rm.1 
	sbin/dump      : dump.8 
	usr.bin/cap_mkdb: cap_mkdb.1 
	usr.bin/du     : du.1 
	usr.bin/find   : find.1 
	usr.bin/getcap : getcap.1 
	usr.sbin/mtree : mtree.8 
	usr.sbin/npppd/npppd: npppd-users.5 
	usr.sbin/sensorsd: sensorsd.conf.5 
Added files:
	lib/libc/gen   : cgetent.3 fts_open.3 opendir.3 user_from_uid.3 
Removed files:
	lib/libc/gen   : directory.3 fts.3 getcap.3 pwcache.3 

Log message:
More correction of section 3 layout. directory->opendir, fts->fts_open,
getcap->cgetent.  pwcache->user_from_uid. And then repair references.
ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/02 15:59:27

Modified files:
	usr.sbin/smtpd : to.c 

Log message:
the rule_to_text() function which is used to display rules when debug
tracing ruleset matching had a few "spacing" issues, fix it

reported by Reio Remma


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/02 16:17:28

Log message:
    Test multicast sender, receiver, router.  Minimal mcroute implmentation
    does not care about IGMP, it simply adds static multicast routes.
    Mutlicast routing needs at least two test machines.  Otherwise only
    send and receive on localhost is tested.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190903
    
    N src/regress/sys/netinet/mcast/Makefile
    N src/regress/sys/netinet/mcast/mcsend.c
    N src/regress/sys/netinet/mcast/README
    N src/regress/sys/netinet/mcast/mcrecv.c
    N src/regress/sys/netinet/mcast/mcroute.c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/02 16:23:11

Modified files:
	regress/sys/netinet: Makefile 

Log message:
Link multicast tests to regress build.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/02 16:53:44

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/02 17:40:29

Modified files:
	sys/arch/macppc/stand: Locore.c alloc.c libsa.h main.c net.c 
	                       ofdev.c ofdev.h openfirm.h 
	sys/arch/macppc/stand/boot.mac: fixcoff.c 

Log message:
Various fixes to make clang happy.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/02 17:46:46

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
constify an argument


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/02 18:00:04

Modified files:
	regress/sys/netinet/mcast: Makefile 

Log message:
Create remote log files in obj directory.


CVSROOT:	/cvs
Module name:	src
Changes by:	asou@cvs.openbsd.org	2019/09/02 20:28:25

Modified files:
	lib/libedit    : vi.c 

Log message:
Correct the length for argument of reallocarray(). This fix the SEGV
when launch the vi editor in vi mode. This fix is similar 1.63 from
NetBSD lib/libedit/vi.c.

OK schwarze@ yasuoka@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/02 22:25:10

Modified files:
	lib/libpcap    : Makefile pcap_open_live.3 
Added files:
	lib/libpcap    : pcap-filter.7 
Removed files:
	lib/libpcap    : pcap-filter.3 

Log message:
pcap-filter(3) is not a function, it is a language description.  It was
mostly cobbled together from a pre-mandoc tcpdump manual page, and desperately
needs some loving.  First step is to name it right.
Discussed with jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/02 22:32:59

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/02 22:47:47

Modified files:
	sys/arch/macppc/dev: mesh.c 

Log message:
correct indent that triggered clang to freak out; with jsg.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/02 22:48:00

Modified files:
	sys/arch/macppc/dev: zs.c 

Log message:
ansify functions
ok jsg


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/02 22:48:20

Modified files:
	usr.sbin/smtpd : smtpd.c smtpd.conf.5 

Log message:
Exectute procs and filters from /usr/local/libexec/smtpd/ if no absolute
path is given.

OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/02 22:55:01

Modified files:
	sys/dev/fdt    : amlclock.c 

Log message:
remove unreachable return
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 00:28:37

ports/www/firefox-esr-i18n/bn

Update of /cvs/ports/www/firefox-esr-i18n/bn
In directory cvs.openbsd.org:/tmp/cvs-serv95290/bn

Log Message:
Directory /cvs/ports/www/firefox-esr-i18n/bn added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/03 01:03:30

Modified files:
	usr.sbin/tcpdump: tcpdump.8 

Log message:
pcap-filter is now section 7;


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/03 01:32:34

Modified files:
	devel/glib2    : Makefile distinfo 
	devel/glib2/pkg: PLIST 

Log message:
Update to glib2-2.60.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/03 01:55:07

Modified files:
	sbin/slaacd    : frontend.c 

Log message:
It's perfectly normal for the SIOCGIFFLAGS and SIOCGIFXFLAGS to fail
when an interface is gone. Bubble the error up and let the callers
deal with it instead of exiting.
OK deraadt, benno


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:27:52

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
factor out confirm_overwrite(); ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:28:30

Modified files:
	usr.bin/ssh    : authfd.c 

Log message:
fix memleak in ssh_free_identitylist(); ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:29:15

Modified files:
	usr.bin/ssh    : authfd.c authfd.h 

Log message:
authfd: add function to check if key is in agent

This commit adds a helper function which allows the caller to
check if a given public key is present in ssh-agent.

work by Sebastian Kinne; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:29:58

Modified files:
	usr.bin/ssh    : auth2-pubkey.c misc.c misc.h 

Log message:
move skip_space() to misc.c and make it public; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:30:47

Modified files:
	usr.bin/ssh    : auth2-pubkey.c authfile.c authfile.h 

Log message:
move advance_past_options to authfile.c and make it public;
ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:31:21

Modified files:
	usr.bin/ssh    : sshkey.c sshkey.h 

Log message:
make get_sigtype public as sshkey_get_sigtype(); ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:32:11

Modified files:
	usr.bin/ssh    : auth-options.c misc.c misc.h 

Log message:
move authorized_keys option parsing helpsers to misc.c and make
them public; ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:34:20

Modified files:
	usr.bin/ssh    : ssh-keygen.1 ssh-keygen.c 
	usr.bin/ssh/ssh-keygen: Makefile 
Added files:
	usr.bin/ssh    : PROTOCOL.sshsig sshsig.c sshsig.h 

Log message:
sshsig: lightweight signature and verification ability for OpenSSH

This adds a simple manual signature scheme to OpenSSH.
Signatures can be made and verified using ssh-keygen -Y sign|verify

Signatures embed the key used to make them. At verification time, this
is matched via principal name against an authorized_keys-like list
of allowed signers.

Mostly by Sebastian Kinne w/ some tweaks by me

ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:35:27

Modified files:
	usr.bin/ssh    : PROTOCOL.sshsig ssh-keygen.1 ssh-keygen.c 
	                 sshsig.c sshsig.h 

Log message:
sshsig tweaks and improvements from and suggested by Markus

ok markus/me


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:37:06

Modified files:
	regress/usr.bin/ssh: agent-timeout.sh 

Log message:
only add plain keys to prevent any certs laying around
from confusing the test.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/03 02:37:45

Modified files:
	regress/usr.bin/ssh: Makefile 
Added files:
	regress/usr.bin/ssh: sshsig.sh 

Log message:
regress test for sshsig; feedback and ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/09/03 03:00:44

Modified files:
	sys/dev/pci    : if_bnxt.c 

Log message:
bnxt: Support MSI-X

Tested on a BCM57412

ok jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/03 03:17:10

Modified files:
	sys/dev/i2c    : ipmi_i2c.c 

Log message:
Avoid uninitialized variable; using a for loop like in siif_recvmsg() was
what I had intended to write anyway.

spotted-by & ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/03 04:00:19

Modified files:
	sys/arch/armv7/stand/efiboot: efidev.c 

Log message:
remove duplicate test introduced in rev 1.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/09/03 04:29:27

Modified files:
	x11/i3status   : Makefile 

Log message:
bump revision to cope with SIOCG80211NODE ABI break so that
connection strength is displayed again.

ok jasper


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/09/03 04:30:51

Modified files:
	x11/xfce4/xfce4-wavelan: Makefile 

Log message:
bump revision to cope with SIOCG80211NODE ABI break

ok jasper, landry


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/09/03 04:32:15

Modified files:
	usr.bin/ctfdump: ctfdump.c 

Log message:
Use 0 as exit value if no error has been found in the CTF section.

ok sunil@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/03 04:39:08

Modified files:
	sys/netmpls    : mpls_output.c 

Log message:
correct INET6 path in mpls_getttl() and avoid uninitialised variable
ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/03 04:50:12

Modified files:
	net/wireshark  : Makefile 

Log message:
bump REVISION for safety to trigger pkg_add -u to pick up new builds; ieee80211
structs were changed recently. probably not needed in this port but bumps are
cheaper than debug time.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/03 04:50:33

Modified files:
	net/kismet     : Makefile 

Log message:
bump REVISION for safety to trigger pkg_add -u to pick up new builds; ieee80211
structs were changed recently. probably not needed in this port but bumps are
cheaper than debug time.

use https while there.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/03 06:03:05

Modified files:
	usr.bin/mandoc : html.c 

Log message:
Make html_close_paragraph() more versatile, more robust, less
dependent on individual HTML elements, and simpler: don't just close
<p>, <pre>, and <a>, but any element that establishes phrasing
context.  This doesn't change output for any OpenBSD manual page,
but it will allow using this function more safely and at more places
in the future.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/03 06:13:41

Modified files:
	sys/arch/macppc/dev: mesh.c 

Log message:
Replace empty body of while loop with continue statement.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/03 06:30:34

Modified files:
	usr.bin/mandoc : html.c 

Log message:
oops, fix use after free in previous


CVSROOT:	/cvs
Module name:	ports
Changes by:	uaa@cvs.openbsd.org	2019/09/03 07:48:25

Modified files:
	geo/gpsbabel   : Makefile distinfo 
	geo/gpsbabel/patches: patch-Makefile_in 
	geo/gpsbabel/pkg: DESCR-main PLIST-main 
Added files:
	geo/gpsbabel/patches: patch-gbser_posix_cc 
	                      patch-gui_serial_unix_cc 
Removed files:
	geo/gpsbabel/patches: patch-configure_in patch-gbser_posix_c 
	                      patch-gui_serial_unix_cpp 

Log message:
1.4.4 -> 1.6.0.1

* babelweb HTML documantation (share/doc/gpsbabel/*.html) is
no longer supported because it requires new DocBook, DocBook-XSL
and Smarty template.

* patches follow new filenames of sourcecode, i.e
- gbser_posix.c -> gbser_posix.cc
- gui/serial_unix.cpp -> gui/serial_unix.cc
- configure.in -> (deleted)

ok sthen@, thanks to kirby@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/03 08:34:41

Modified files:
	sys/arch/powerpc/powerpc: pmap.c 

Log message:
some cleanup for clang; ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/03 08:34:53

Modified files:
	sys/arch/macppc/macppc: locore.S 

Log message:
Use cmplw mnemonic instead of cmpl with only 3 operands.  Make clang happy.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/03 08:35:23

Modified files:
	sys/arch/macppc/dev: pm_direct.c 

Log message:
delete incorrect casts, and a bit if ansi functions; ok jcs


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/03 08:37:22

Modified files:
	sys/arch/macppc/macppc: locore0.S ofwreal.S 

Log message:
only need one start: label; ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/03 09:09:39

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
Format .Nd with more logically with <span> rather than <div>; after all,
it is supposed to be a one-line description.  For the case where .Nd
generates flow content (which is very bad style but syntactically
valid), rely on the new feature of html_close_paragraph() to close
out the <span> prematurely, effectively moving the flow content out
of the .Nd for HTML presentation.  For the final closing, also rely
on the new html_close_paragraph() functionality, this time triggered
by the subsequent block, which will typically be .Sh SYNOPSIS.


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/09/03 09:12:32

Modified files:
	sys/arch/armv7/conf: Makefile.armv7 

Log message:
drop support for building with gcc; ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/09/03 09:27:43

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.14

- fix tag_list test failure on single-day-digit dates (patch by Evan Silberman)
- prevent theoretical double-free with non-OpenBSD asprintf (found by jasper@)
- fix NULL deref in got_error_from_errno via got_error_uuid (found by jasper@)
- make tog release its work tree lock before going into main loop
- 'got stage' writes to repository, fix unveil(2) call accordingly


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 10:22:56

Modified files:
	security/nss   : Makefile distinfo 

Log message:
Update to nss 3.46.

See https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/NSS_3.46_release_notes


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 10:25:03

Modified files:
	www/mozilla    : mozilla.port.mk 

Log message:
Bump dependencies for gecko 69:

- nss >= 3.45
- nspr >= 4.21
- sqlite >= 3.28

those have been in -current for a while already.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 10:25:31

Modified files:
	mail/mozilla-thunderbird: Makefile 
	www/seamonkey  : Makefile 

Log message:
Bump REVISION for mozilla.port.mk changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 10:27:04

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/mozilla-firefox/patches: 
	                             patch-security_manager_pki_resources_content_exceptionDialog_js 
	                             patch-widget_nsPrintSettingsImpl_cpp 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 69.0.

See https://www.mozilla.org/en-US/firefox/69.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-25/


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 10:31:12

Modified files:
	www/firefox-esr: Makefile distinfo 
	www/firefox-esr/files: all-openbsd.js 
	www/firefox-esr/patches: patch-intl_icu_source_Makefile_in 
	                         patch-js_src_jit_ProcessExecutableMemory_h 
	                         patch-storage_mozStorageConnection_cpp 
	www/firefox-esr/pkg: PLIST 
	www/firefox-esr-i18n: Makefile Makefile.inc distinfo 
Added files:
	www/firefox-esr/patches: patch-storage_mozStorageService_cpp 
	www/firefox-esr-i18n/bn: Makefile 
Removed files:
	www/firefox-esr/patches: 
	                         patch-netwerk_cache_nsDiskCacheDeviceSQL_cpp 
	                         patch-servo_components_style_build_gecko_rs 
	                         patch-servo_components_style_lib_rs 
	                         patch-servo_components_style_traits_lib_rs 
	www/firefox-esr-i18n/bn-BD: Makefile 
	www/firefox-esr-i18n/bn-IN: Makefile 

Log message:
Update firefox-esr to 68.1.0.

See https://www.mozilla.org/en-US/firefox/68.1.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-26/

Basically a copy of what was under www/mozilla-firefox, as 60esr will
soon be EOL, and we want to track 68esr in 6.6-stable.

As a side-effect, esr now uses pledge like mainline firefox.

The bn-BD & bn-IN lackpacks were merged into bn.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 10:34:15

Modified files:
	www/firefox-esr: Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to firefox-esr 60.9.0.

See https://www.mozilla.org/en-US/firefox/60.9.0/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-27/

That this will probably be the last update in the 60esr branch.

Note that i'm not providing binary packages updates for -stable anymore
on my repo, as solene@ took over that task. Thanks !


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/03 10:56:43

Modified files:
	games/thedarkmod: Makefile 

Log message:
mark BROKEN-i386, filas in Simd_SSE.cpp


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 11:15:09

Removed files:
	www/firefox-esr-i18n/as: Makefile 
	www/firefox-esr-i18n/en-ZA: Makefile 
	www/firefox-esr-i18n/gn: Makefile 
	www/firefox-esr-i18n/mai: Makefile 
	www/firefox-esr-i18n/ml: Makefile 
	www/firefox-esr-i18n/or: Makefile 
	www/firefox-esr-i18n/uz: Makefile 

Log message:
Garbage collect unlinked langpacks.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/03 11:51:52

Modified files:
	sys/arch/macppc/dev: adb.c akbd_machdep.c macintr.c openpic.c 
	                     pm_direct.c 
	sys/arch/macppc/macppc: autoconf.c clock.c conf.c machdep.c 
	                        ofw_machdep.c openfirm.c 

Log message:
a sprinkling of function ansification


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/03 12:05:17

ports/security/routersploit/patches

Update of /cvs/ports/security/routersploit/patches
In directory cvs.openbsd.org:/tmp/cvs-serv46623/patches

Log Message:
Directory /cvs/ports/security/routersploit/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/03 12:07:57

Modified files:
	usr.bin/mandoc : html.c 

Log message:
Wrap text and phrasing elements in paragraphs unless already
contained in flow containers; never put them directly into sections.
This helps to format paragraphs with the CSS class selector .Pp.

Suggested by bentley@ and also by Colin Watson <cjwatson at debian>
via Michael Stapelberg <stapelberg at debian>,
see https://github.com/Debian/debiman/issues/116


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/03 12:17:51

Modified files:
	regress/usr.bin/mandoc: Makefile.inc 
	regress/usr.bin/mandoc/char/space: zerowidth.out_html 
	regress/usr.bin/mandoc/char/unicode: ascii.out_html 
	                                     invalid.out_html 
	                                     latin1.out_html 
	                                     latin1diff.out_html 
	                                     named.out_html 
	                                     namediff.out_html 
	                                     nogroff.out_html 
	regress/usr.bin/mandoc/man/HP: literal.out_html 
	regress/usr.bin/mandoc/man/IP: literal.out_html 
	regress/usr.bin/mandoc/man/RS: literal.out_html 
	                               paragraph.out_html 
	regress/usr.bin/mandoc/man/SH: paragraph.out_html 
	regress/usr.bin/mandoc/man/SS: paragraph.out_html 
	regress/usr.bin/mandoc/man/SY: literal.out_html 
	regress/usr.bin/mandoc/man/TP: literal.out_html 
	regress/usr.bin/mandoc/mdoc/Bd: nf.out_html paragraph.out_html 
	regress/usr.bin/mandoc/mdoc/Bf: paragraph.out_html 
	regress/usr.bin/mandoc/mdoc/D1: spacing.out_html 
	regress/usr.bin/mandoc/mdoc/Rs: paragraph.out_html 
	regress/usr.bin/mandoc/mdoc/Sh: paragraph.out_html 
	regress/usr.bin/mandoc/roff/esc: f.out_html 
	regress/usr.bin/mandoc/roff/ft: badargs.out_html 
	regress/usr.bin/mandoc/roff/sp: fill-man.out_html 
	regress/usr.bin/mandoc/roff/string: dotT.out_html 

Log message:
adapt to new <p> output logic (html.c rev. 1.131)


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/03 12:33:39

Modified files:
	devel/cbindgen : Makefile distinfo 

Log message:
Update to cbindgen 0.9.1, required by gecko 70.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/03 13:56:42

Modified files:
	sys/arch/macppc/conf: Makefile.macppc 

Log message:
Add clang support.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/03 14:24:23

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Enable amlmmc(4).

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/09/03 14:51:49

Modified files:
	usr.bin/ssh    : ssh-keygen.c sshsig.c 

Log message:
repair typo and editing mishap


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/03 15:02:51

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : amlmmc.4 

Log message:
amlmmc(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/03 15:28:45

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
Shorten normal dmesg attach verbiage and expand SCSIDEBUG verbiage.

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/09/03 16:24:43

Modified files:
	lang/ruby/2.4  : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/ruby/2.4/pkg: Tag: OPENBSD_6_5 PLIST-main 
	lang/ruby/2.5  : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/ruby/2.5/pkg: Tag: OPENBSD_6_5 PLIST-main 
	lang/ruby/2.6  : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/ruby/2.6/pkg: Tag: OPENBSD_6_5 PLIST-main PLIST-ri_docs 

Log message:
Update to Ruby 2.4.7, 2.5.6, and 2.6.4

Fixes CVE-2012-6708 and CVE-2015-9251 by removing embedded version of JQuery
from RDoc.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/03 16:31:52

Modified files:
	sys/dev/fdt    : amlclock.c 

Log message:
Add support for getting the frequency of the CPU clocks.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/03 17:08:42

Modified files:
	usr.bin/less   : ch.c command.c edit.c forwback.c input.c less.h 
	                 line.c linenum.c os.c output.c screen.c 
	                 search.c signal.c tags.c ttyin.c 

Log message:
less uses a correct raceless signal method of indicating signal events in
a volatile sig_atomic_t variable, and then processing events in the mainloop.
But only one variable was used for 3 signals, with |= bit operations which
are signal interruptable!  Rewrite the code to use 3 independent variables
and cleanup how the mainloop observes indications.
ok schwarze


CVSROOT:	/cvs
Module name:	src
Changes by:	asou@cvs.openbsd.org	2019/09/03 18:00:49

Modified files:
	lib/libedit    : vi.c 

Log message:
Correct the length of read from file, wide character buffer, add NUL
terminate to read buffer. This fix the bug that does not run input
command entered by vi editor. This fix is come from NetBSD
lib/libedit/vi.c 1.46 and 1.47.

ok schwarze@ deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	ians@cvs.openbsd.org	2019/09/03 19:42:18

Modified files:
	.              : armv7.html 

Log message:
remove unsupported beagleboard (c4/xm) platform

spotted by jsg, ok jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/03 20:27:31

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/03 23:56:54

Modified files:
	usr.bin/ssh    : ssh-keygen.1 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/04 00:18:20

Modified files:
	devel/cbindgen : Makefile 

Log message:
keep libc-rs >= 0.2.63 for sparc64 compatibility

it is a manual setting to have while upstream doesn't use higher libc-rs
version.

don't bump REVISION as the build on sparc64 doesn't work with older
version, and on others platforms it doesn't change anything.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/04 00:31:08

Modified files:
	devel/cbindgen : Makefile distinfo 

Log message:
Use libc 0.2.63 for sparc64, reminded by semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/09/04 01:02:03

Modified files:
	usr.sbin/vmd   : vmd.c 

Log message:
vmd(8): memory leak in an error path

Found by Hiltjo Posthuma, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/04 01:28:27

Modified files:
	usr.sbin/smtpd : lka_filter.c lka_report.c parse.y 
	                 smtp_session.c smtpd.conf.5 smtpd.h 

Log message:
introduce the 'junk' builtin filter action which marks a session or
transaction as junked when a filter matches. this with the maildir
junk option allows classifying messages in Spam folder instead of
rejecting/disconnecting.

ok semarie@, eric@, martijn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/04 01:30:56

Modified files:
	net/wireguard-go: Makefile distinfo 
	net/wireguard-tools: Makefile distinfo 

Log message:
revert wireguard-{go,tools} updates. there appears to be breakage between
a combination of client/server OS/wireguard versions which I haven't
been able to pinpoint yet.

found the hard way by at least tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/04 01:38:20

Modified files:
	usr.sbin/smtpd : lka_filter.c 

Log message:
disallow proc filters from responding with junk action at commit

spotted by martijn@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/04 02:30:36

Modified files:
	usr.sbin/smtpd : lka_report.c lka_filter.c 

Log message:
bump version


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/04 03:19:39

Modified files:
	usr.bin/less   : lsystem.c 

Log message:
adjust a variable name in a comment after the reorg in signal.c rev. 1.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/09/04 03:37:49

Modified files:
	devel          : Makefile 
	lang           : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	devel/libf2c   : Makefile distinfo 
	devel/libf2c/patches: patch-g2c_hin 
	devel/libf2c/pkg: DESCR PLIST 
	lang/g77       : Makefile distinfo 
	lang/g77/patches: patch-gcc_Makefile_in patch-gcc_config_gcc 
	                  patch-gcc_f_g77spec_c patch-gcc_flow_c 
	                  patch-gcc_protector_c 
	lang/g77/pkg   : DESCR PFRAG.PIC PLIST 

Log message:
Remove g77 and libf2c

g77 was a fortran compiler based off gcc3.  Remove it since it isn't
used any more by the ports tree.

ok naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/04 03:51:23

Modified files:
	www/py-httpie  : Makefile distinfo 

Log message:
update to py-httpie 1.0.3, from Paco Esteban, ok kmos


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/04 03:52:48

Modified files:
	net/strongswan : Makefile distinfo 

Log message:
update to strongswan-5.8.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/09/04 04:45:29

ports/net/wireguard-go/patches

Update of /cvs/ports/net/wireguard-go/patches
In directory cvs.openbsd.org:/tmp/cvs-serv6521/patches

Log Message:
Directory /cvs/ports/net/wireguard-go/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/04 05:25:54

Modified files:
	sys/dev/ofw    : ofw_misc.c 

Log message:
Add comment.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/09/04 06:15:59

Modified files:
	security/sqlmap: Makefile distinfo 

Log message:
Small update for SQLMap to 1.3.9

https://github.com/sqlmapproject/sqlmap/releases

OK sebastia@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:22:03

Modified files:
	lang/go        : go.port.mk 

Log message:
Add support for MODGO_BINDIR to allow go applications to be installed in
an alternative location. Still defaults to bin/.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:24:42

ports/mail/opensmtpd-filters

Update of /cvs/ports/mail/opensmtpd-filters
In directory cvs.openbsd.org:/tmp/cvs-serv49446/opensmtpd-filters

Log Message:
Directory /cvs/ports/mail/opensmtpd-filters added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:24:42

ports/mail/opensmtpd-filters/rspamd

Update of /cvs/ports/mail/opensmtpd-filters/rspamd
In directory cvs.openbsd.org:/tmp/cvs-serv49446/opensmtpd-filters/rspamd

Log Message:
Directory /cvs/ports/mail/opensmtpd-filters/rspamd added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:24:42

ports/mail/opensmtpd-filters/senderscore

Update of /cvs/ports/mail/opensmtpd-filters/senderscore
In directory cvs.openbsd.org:/tmp/cvs-serv49446/opensmtpd-filters/senderscore

Log Message:
Directory /cvs/ports/mail/opensmtpd-filters/senderscore added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:24:43

ports/mail/opensmtpd-filters/rspamd/pkg

Update of /cvs/ports/mail/opensmtpd-filters/rspamd/pkg
In directory cvs.openbsd.org:/tmp/cvs-serv49446/opensmtpd-filters/rspamd/pkg

Log Message:
Directory /cvs/ports/mail/opensmtpd-filters/rspamd/pkg added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:24:43

ports/mail/opensmtpd-filters/senderscore/pkg

Update of /cvs/ports/mail/opensmtpd-filters/senderscore/pkg
In directory cvs.openbsd.org:/tmp/cvs-serv49446/opensmtpd-filters/senderscore/pkg

Log Message:
Directory /cvs/ports/mail/opensmtpd-filters/senderscore/pkg added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/09/04 06:27:38

Modified files:
	usr.sbin/pkg_add/OpenBSD: CollisionReport.pm 

Log message:
let collisionreport work better with FETCH_PACKAGES


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:27:42

Added files:
	mail/opensmtpd-filters: Makefile Makefile.inc 
	mail/opensmtpd-filters/rspamd: Makefile distinfo 
	mail/opensmtpd-filters/rspamd/pkg: DESCR PLIST README 
	mail/opensmtpd-filters/senderscore: Makefile distinfo 
	mail/opensmtpd-filters/senderscore/pkg: DESCR PLIST README 

Log message:
Move opensmtpd-filter-rspamd and opensmtpd-filter-senderscore to
mail/opensmtpd-filters and change the install directory to libexec/smtpd.

Idea OK by gilles@
OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:33:52

Modified files:
	mail           : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Hook up mail/opensmtpd-filters
Unhook mail/opensmtpd-filter-rspamd and mail/opensmtpd-filter-senderscore

register pkg renaming from filter-* to opensmtpd-filter-*.

Idea OK gilles@
OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/04 06:37:44

Removed files:
	mail/opensmtpd-filter-rspamd: Makefile distinfo 
	mail/opensmtpd-filter-rspamd/pkg: DESCR PLIST README 
	mail/opensmtpd-filter-senderscore: Makefile distinfo 
	mail/opensmtpd-filter-senderscore/pkg: DESCR PLIST README 

Log message:
Remove old mail/opensmtpd-filter-rspamd and mail/opensmtpd-filter-senderscore
in favour of the new mail/opensmtpd-filters/rspamd and
mail/opensmtpd-filters/senderscore.

OK gilles@ and sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/09/04 07:52:05

Modified files:
	.              : plus.html 

Log message:
plus for August 28 - September 4
OK florian


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/09/04 08:27:55

Modified files:
	lib/libc/sys   : gettimeofday.2 
	sys/kern       : kern_time.c 

Log message:
gettimeofday, settimeofday(2): limit timezone support

For gettimeofday(2), always copy out an empty timezone struct.  For
settimeofday(2), still copyin(9) the struct but ignore the contents.

In gettimeofday(2)'s case we have not changed the original BSD semantics:
the kernel only tracks UTC time without an offset for DST, so a zeroed
timezone struct is the correct thing to return to the caller.

Future work could move these out into libc as stubs for clock_gettime and
clock_settime(2).  But, definitely a "later" thing, given that we are in
beta.

Update the manpage to de-emphasize the timezone parameters for these
syscalls.

Discussed with tedu@, deraadt@, millert@, kettenis@, yasuoka@, jca@, and
guenther@.  Tested by job@.  Ports input from jca@ and sthen@.  Manpage
input from jca@.

ok jca@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/09/04 08:29:42

Modified files:
	sys/arch/alpha/conf: RAMDISK RAMDISKB RAMDISKBIG RAMDISKC 
	sys/arch/amd64/conf: RAMDISK RAMDISK_CD 
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/arch/armv7/conf: RAMDISK 
	sys/arch/hppa/conf: RAMDISK 
	sys/arch/i386/conf: RAMDISK RAMDISK_CD 
	sys/arch/landisk/conf: RAMDISK 
	sys/arch/loongson/conf: RAMDISK 
	sys/arch/luna88k/conf: RAMDISK 
	sys/arch/macppc/conf: RAMDISK 
	sys/arch/octeon/conf: BOOT RAMDISK 
	sys/arch/sgi/conf: RAMDISK-IP22 RAMDISK-IP26 RAMDISK-IP27 
	                   RAMDISK-IP28 RAMDISK-IP30 RAMDISK-IP32 
	sys/arch/sparc64/conf: RAMDISK RAMDISKU1 RAMDISKU5 

Log message:
Remove DST/TIMEZONE options(4) from kernel configs; ok jca@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/09/04 08:40:22

Modified files:
	usr.sbin/makefs/msdos: msdosfs_vfsops.c 
	sys/msdosfs    : msdosfs_conv.c 

Log message:
msdosfs: remove timezone support

This support is undocumented, only works if you're using the kernel
timezone, and breaks during a DST shift.  It also preferences file systems
managed by a Windows installation: many implementations, like ours, use
UTC by default (think: phones, digital cameras).

No complaints on tech@.

"good riddance" tedu@, "Yep." deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/04 09:14:41

Modified files:
	productivity/tryton: Makefile.inc 
	productivity/tryton/5.0: Makefile.inc 
	productivity/tryton/5.2: Makefile.inc 

Log message:
limit portroach on cdn server for tryton

"looks good" danj@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/04 10:11:58

Modified files:
	sys/netinet6   : ip6_mroute.c 

Log message:
Fix a route use after free in IPv6 multicast route.  Move the
mrt6_mcast6_del() out of the rtable_walk().  This avoids recursion
to prevent stack overflow.  Also it allows freeing the route outside
of the walk.  Now mrt6_mcast_del() frees the route only when it is
deleted from the routing table.  If that fails, it must not be
freed.  After the route is returned by mf6c_find(), it is reference
counted.  Then we need a rtfree(), but not in the other case.
Name mrt6_mcast_add() and mrt6_mcast_del() consistently.
Move rt_timer_remove_all() into mrt6_mcast_del().
Reported-by: syzbot+af7d510593d74c825960@syzkaller.appspotmail.com
OK mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/04 10:13:49

Modified files:
	sys/netinet6   : ip6_mroute.c 

Log message:
Add RCS Id.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/04 10:26:56

Modified files:
	textproc/ruby-rouge: Makefile distinfo 
	textproc/ruby-rouge/pkg: PLIST 

Log message:
Update ruby-rouge to 3.10.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/04 10:29:47

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/04 10:50:23

Modified files:
	net/wireguard-tools: Makefile distinfo 
	net/wireguard-go: Makefile distinfo 
Added files:
	net/wireguard-go/patches: patch-tun_tun_openbsd_go 

Log message:
re-update wireguard after tb@ found the offending commit in the upstream repository that broke it.
to be followed up

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/04 11:15:56

Modified files:
	sys/scsi       : st.c 

Log message:
The great density mode purge of 2006 (r1.62) was never carried through
to a logical conclusion. Start cleaning up the left overs.

First, delete the unused quirk ST_Q_BLKSIZE and simplify the one
condition referencing it in light of the fact that !ST_Q_BLKSIZE would
always be true.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/04 12:08:18

Modified files:
	shells/bash    : Makefile distinfo 

Log message:
update to 5.0 patchlevel 11


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/09/04 12:24:54

Modified files:
	databases/xapian-bindings: Tag: OPENBSD_6_5 Makefile 
	databases/xapian-bindings/pkg: Tag: OPENBSD_6_5 PLIST-ruby 

Log message:
Fix xapian ruby bindings after Ruby security update


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/04 12:41:33

Modified files:
	sys/scsi       : st.c 

Log message:
Various whitespace nits.

Reformat quirks array the way the autoindenter likes it to minimize
the effort needed to keep diffs short.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/04 13:09:41

Modified files:
	sys/scsi       : st.c 

Log message:
'quirks' field of struct modes is superfluous. There is only 1 mode. Just use
the 'quirks' field of struct quirksdata.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/04 14:03:12

Modified files:
	sys/scsi       : st.c 

Log message:
Hoist the quirks up another rung. drive_quirks is superfluous, just
store the discovered quirks in st_softc's 'quirks' field.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/04 14:24:04

Modified files:
	x11/i3         : Makefile 
	x11/i3/patches : patch-i3-nagbar_main_c 

Log message:
neuter pledges (committed to upstream code) with #if 0, some change in
the 4.16.1->4.17 timeframe is causing calls into cairo which do shm access.
shm is not possible in a pledged process.

reported by Ralf Horstmann; for more details see
https://marc.info/?l=openbsd-ports&m=156762440931634&w=2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/04 14:25:48

Modified files:
	x11/i3         : Makefile 
Added files:
	x11/i3/patches : patch-i3-msg_main_c patch-src_main_c 

Log message:
neuter pledges (committed to upstream code) with #if 0, some change in
the 4.16.1->4.17 timeframe is causing calls into cairo which do shm access.
shm is not possible in a pledged process.

reported by Ralf Horstmann; for more details see
https://marc.info/?l=openbsd-ports&m=156762440931634&w=2

(missing pieces after forgotten cvs add)


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/09/04 14:31:15

Modified files:
	usr.bin/ssh    : ssh_config.5 sshd_config.5 

Log message:
Call comma-separated lists as such to clarify semantics.

Options such as Ciphers take values that may be a list of ciphers; the
complete list, not indiviual elements, may be prefixed with a dash or plus
character to remove from or append to the default list, respectively.

Users might read the current text as if each elment took an optional prefix,
so tweak the wording from "values" to "list" to prevent such ambiguity for
all options supporting these semantics.

Fix instances missed in first commit.  ok jmc@ kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/04 14:54:05

Modified files:
	databases/freetds: Makefile distinfo 

Log message:
update to freetds-1.1.15


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/04 15:35:17

Log message:
    Import fonts/unifont, a free Unicode font from the GNU project.
    ok jasper@
    
    GNU Unifont is a font that contains glyphs for every printable code
    point in the Unicode Basic Multilingual Plane (BMP).
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190904
    
    N ports/fonts/unifont/Makefile
    N ports/fonts/unifont/distinfo
    N ports/fonts/unifont/pkg/DESCR
    N ports/fonts/unifont/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/04 15:35:37

Modified files:
	fonts          : Makefile 

Log message:
+unifont


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/04 15:40:54

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-8.0.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/04 15:56:34

Modified files:
	net/unifi/testing: Makefile distinfo 

Log message:
update unifi-testing to 5.11.45 RC


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/04 17:40:29

Modified files:
	sys/scsi       : st.c 

Log message:
Shuffle sdstart() and sdminphys() declarations closer to their friends.

Nuke pointless 'quirkdata' pointer in st_softc. We use the data once at
attach time and don't need to remember where we got it from.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/09/04 18:44:50

Modified files:
	faq/pf         : ftp.html 

Log message:
fix a broken link; reported by oldlaptop on freenode


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/04 18:59:36

Modified files:
	regress/lib/libcrypto/bn/general: Makefile bntest.c 

Log message:
Feed the bntest output to bc(1).  This checks the result of the big
num calculations and avoids lots of ugly output to stdout.  Remove
fflush(3) of stderr, it is unbuffered anyway.
with Moritz Buhl


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/04 19:50:35

Log message:
    Test IPv6 multicast sender, receiver, router.  Minimal mc6route
    implmentation does not care about ICMPv6, it simply adds static
    multicast routes.  Multicast routing needs at least two test machines.
    Otherwise only send and receive on localhost is tested.
    Currently receiving link-local packets via loopback does not work
    due to wrong scope id.
    Everything is mostly copied from IPv4 regress.
    
    Status:
    
    Vendor Tag:	bluhm
    Release Tags:	bluhm_20190905
    
    N src/regress/sys/netinet6/mcast6/Makefile
    N src/regress/sys/netinet6/mcast6/mc6recv.c
    N src/regress/sys/netinet6/mcast6/mc6route.c
    N src/regress/sys/netinet6/mcast6/mc6send.c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/04 20:35:46

Modified files:
	regress/sys/netinet6: Makefile 

Log message:
Link IPv6 multicast tests to regress build.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/04 20:37:17

Modified files:
	sys/scsi       : st.c 

Log message:
There can be only one -- mode.

So fold 'modeflags' field of st_softc into 'flags' field of same. Nuke
a bunch of dubious/obvious comments.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/04 20:44:36

Modified files:
	regress/sys/netinet/mcast: Makefile mcrecv.c mcroute.c mcsend.c 
	regress/sys/netinet6/mcast6: Makefile 

Log message:
Minimize differences between IPv4 and IPv6 multicast tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/04 21:04:45

Modified files:
	sys/scsi       : st.c 

Log message:
Nuke unused st_softc field 'numblks'.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/04 21:08:55

Modified files:
	sys/arch/powerpc/powerpc: pmap.c 

Log message:
Prepare the bat for kernels greater > 8MB of code, why because clang.
ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/04 22:55:32

Modified files:
	usr.bin/ssh    : sshsig.c sshsig.h 

Log message:
expose allowed_signers options parsing code in header for fuzzing

rename to make more consistent with philosophically-similar auth
options parsing API.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/04 23:06:34

Modified files:
	sys/arch/loongson/include: intr.h 
	sys/arch/mips64/mips64: interrupt.c softintr.c 
	sys/arch/octeon/include: intr.h 
	sys/arch/sgi/include: intr.h 

Log message:
Adjust interrupt priority levels on mips64 so that priorities
of soft interrupts are lower than priorities of hard interrupts.
This allows the delivery of hard interrupts while soft interrupts
are masked.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/04 23:31:38

Modified files:
	sys/arch/loongson/include: intr.h 
	sys/arch/mips64/mips64: interrupt.c 
	sys/arch/octeon/include: intr.h 
	sys/arch/sgi/include: intr.h 

Log message:
Implement splassert() on mips64.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/04 23:33:57

Modified files:
	sys/dev        : audio.c audio_if.h 
	share/man/man9 : audio.9 

Log message:
Add the set_blksz() and set_nblks() audio driver functions.

The first sets the block size in frames, which is necessarily common
to play and recording directions no matter the number of channels. The
second sets the number of blocks per buffer for the given
direction. Together, these two functions allow audio drivers to easily
set the block size, matching both playback and recording constraints.

The round_blocksize() didn't allow to do so because it returns the
block size in *bytes*. Since the driver doesn't know if it's called
for the play or for the record block size, it's impossible to
calculate the block size in all cases if play and record number of
channels are different.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/04 23:36:31

Modified files:
	sys/dev/pci    : azalia.c 

Log message:
Use the new set_{blksz,nblks}() interface to set the block size.

This simplifies the code and allows any block size supported by the
hardware to be used.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/04 23:38:40

Modified files:
	sys/dev/usb    : uaudio.c 

Log message:
Use the new set_blksz() interface to set the block size.

This simplifies the code and allows any block size multiple of 1ms to
be used when play and recording number of channels are not the same.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/04 23:42:59

Modified files:
	usr.bin/ssh    : sshsig.c 

Log message:
memleak on error path; found by libfuzzer


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/04 23:47:23

Modified files:
	usr.bin/ssh    : ssh-keygen.1 

Log message:
macro fix; ok djm


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/05 02:33:27

Modified files:
	security/routersploit: Makefile distinfo 
	security/routersploit/pkg: PLIST 
Added files:
	security/routersploit/patches: patch-rsf_py 
Removed files:
	security/routersploit/files: setup.py 

Log message:
Update to 3.4.0

lots of new things in here, switch to new GH_ACCOUNT
takeover MAINTAINER

OK gonzalo@, awolk@ (former MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	sf@cvs.openbsd.org	2019/09/05 02:41:20

Modified files:
	sys/dev/pci    : if_em_hw.c 

Log message:
em: Fix potential endless loop

If the NIC is in some error state (seen on a i219LM when em_read_phy_reg_ex()
returns at "MDI Error"), it can happen that we loop endlessly because the loop
variable is modified again somewhere down in the call stack. Use a separate
variable to make the attach fail with "Hardware Initialization Failed" instead
of hanging.

yes deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/05 03:25:13

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
only send ext_info for KEX_INITIAL; bz#2929 ok dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/05 03:35:19

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
sprinkle in some explicit errors here, otherwise the percolate all
the way up to dispatch_run_fatal() and lose all meaninful context

to help with bz#3063; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/05 04:05:51

Modified files:
	usr.bin/ssh    : ssh-pkcs11.c 

Log message:
if a PKCS#11 token returns no keys then try to login and refetch
them. Based on patch from Jakub Jelen; bz#2430 ok markus@


CVSROOT:	/cvs
Module name:	ports
Changes by:	feinerer@cvs.openbsd.org	2019/09/05 04:49:05

Modified files:
	multimedia/libv4l: Makefile distinfo 

Log message:
Update to libv4l 1.16.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 05:07:45

Modified files:
	textproc/py-feedparser: Makefile 
Added files:
	textproc/py-feedparser/patches: patch-feedparser_feedparser_py 

Log message:
fix _gen_georss_coords with python 3.7+, adapted from upstream commit
(there has been no release since 2015)

"PEP 479 is enabled for all code in Python 3.7, meaning that
StopIteration exceptions raised directly or indirectly in coroutines
and generators are transformed into RuntimeError exceptions."

unbreaks rss2email 3.x with feeds using geographic coords


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 05:49:08

Log message:
    add a separate misc/screen-shm port, based on the existing misc/screen port.
    this will allow removing the flavour from misc/screen allowing for a sane
    update of that port. further commit to follow will unhook misc/screen,shm,
    hook this in its place, and update the dependency in brltty.  ok jca@
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190905
    
    N ports/misc/screen-shm/Makefile
    N ports/misc/screen-shm/distinfo
    N ports/misc/screen-shm/patches/patch-Makefile_in
    N ports/misc/screen-shm/patches/patch-ansi_c
    N ports/misc/screen-shm/patches/patch-configure_in
    N ports/misc/screen-shm/patches/patch-doc_screen_1
    N ports/misc/screen-shm/patches/patch-extern_h
    N ports/misc/screen-shm/patches/patch-fileio_c
    N ports/misc/screen-shm/patches/patch-os_h
    N ports/misc/screen-shm/patches/patch-pty_c
    N ports/misc/screen-shm/patches/patch-sched_c
    N ports/misc/screen-shm/patches/patch-screen_c
    N ports/misc/screen-shm/patches/patch-screen_h
    N ports/misc/screen-shm/patches/patch-window_c
    N ports/misc/screen-shm/pkg/DESCR
    N ports/misc/screen-shm/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 05:50:48

Modified files:
	misc           : Makefile 
	misc/screen    : Makefile 
	misc/screen/pkg: DESCR 
	misc/brltty    : Makefile 
Removed files:
	misc/screen/patches: shmpatch-Makefile_in shmpatch-extern_h 
	                     shmpatch-sched_c shmpatch-screen_c 
	                     shmpatch-screen_h shmpatch-window_c 

Log message:
remove "shm" flavour from misc/screen, the same patched version of screen
is now available in misc/screen-shm instead.  ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/05 06:00:10

Modified files:
	sys/dev/fdt    : sxipio.c sxipio_pins.h 

Log message:
Add Allwinner H6 support.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/05 06:54:00

Modified files:
	regress/sys/netinet/arp: Makefile README arp_otherfake.py 
	                         arp_otherproxy.py 

Log message:
Name environment variables consistently.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/05 07:22:31

Modified files:
	sys/scsi       : scsi_tape.h 

Log message:
Nuke unused struct block_desc_cipher. The Eighties called and want
their "CIPHER ST150S (old drive)" devices back.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/05 07:34:55

Modified files:
	usr.bin/mandoc : html.c 

Log message:
Do not clear HTML_NOSPACE in print_indent().
I don't think there ever was a reason for doing so.

Besides, there is a discrepacy with respect to the point in the
document affected.  That flag controls whitespace at the current
formatting point.  But when HTML_BUFFER is in effect, the line break
and indentation is typically inserted one word further to the left.
Anything happening at that point to the left can't reasonably
influence spacing at the different point further to the right.

Among other effects, this change avoids some spurious line breaks
in HTML code at points where they weren't supposed to happen, line
breaks that in some cases caused undesirable, visible whitespace
when the resulting HTML was rendered.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/05 07:40:21

Modified files:
	regress/usr.bin/mandoc/eqn/nullary: roman.out_html 
	                                    symbol.out_html 

Log message:
adapt to print_indent() HTML_NOSPACE fix, html.c rev. 1.132


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	aoyama@cvs.openbsd.org	2019/09/05 08:03:08

Modified files:
	lib/libX11/src/util: makekeys.c 

Log message:
Fix gcc3 specific error. The diff is based on latest upstream change.

suggested by jsg@, tested on luna88k by me, ok by jsg@ and matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/05 09:01:17

Modified files:
	geo/mapproxy   : Makefile distinfo 
	geo/mapproxy/pkg: PLIST 

Log message:
Update to mapproxy 1.12.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/05 09:47:24

Modified files:
	devel/proj     : Makefile distinfo 
	devel/proj/pkg : PLIST 

Log message:
Update to proj 6.2.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:04:42

Added files:
	lib/libcrypto/ecdh: ecdh_kdf.c 

Log message:
Provide ECDH KDF for X9.63 as needed for CMS ECC.

From OpenSSL 1.1.1b.

ok tb@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:05:36

Modified files:
	lib/libcrypto/ecdh: ecdh_kdf.c 

Log message:
Remove ECDH_KDF_X9_62 wrapper.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:07:00

Modified files:
	lib/libcrypto/ecdh: ecdh_kdf.c 

Log message:
Restore per-file license/copyright removed in OpenSSL commit 4f22f40507f.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:10:11

Modified files:
	lib/libcrypto/ecdh: ecdh_kdf.c 

Log message:
style(9) and whitespace.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:12:15

Modified files:
	lib/libcrypto/ecdh: ecdh_kdf.c 

Log message:
Include correct header.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:12:36

Modified files:
	lib/libcrypto/ecdh: ech_locl.h 

Log message:
Provide prototype for ecdh_KDF_X9_63()


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:15:39

Modified files:
	lib/libcrypto/ecdh: ecdh_kdf.c 

Log message:
Replace OPENSSL_cleanse() with explicit_bzero().


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:16:05

Modified files:
	lib/libcrypto  : Makefile 

Log message:
Build ecdh_kdf.c


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:17:48

Modified files:
	lib/libcrypto/objects: obj_mac.num objects.txt 

Log message:
Add objects for ECDH schemes in RFC 5753.

Based on OpenSSL 1.1.1b.

ok inoguchi@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/05 10:20:26

Modified files:
	graphics/libraw: Makefile distinfo 
	graphics/libraw/patches: patch-internal_dcraw_common_cpp 
Removed files:
	graphics/libraw/patches: patch-internal_libraw_x3f_cpp 

Log message:
Update LibRaw to 0.19.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/05 10:23:49

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/pkg: PFRAG.arm 

Log message:
Package u-boot for the BananaPI M2 Ultra.

Also switch from ftp to https for source.

ok jsg@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/09/05 10:28:06

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
Revert iwm(4) to software WPA crypto because of apparent firmware issues.

For a small proportion of frames on 8265 we have observed firmware reporting
"not encrypted" even though in Wireshark these frames appear as regular
encrypted frames (rx_pkt_status=0xc0400007 type=0x8 subtype=0x80 m_len=1542).
This causes frame drops which do not occur with software crypto.

We might try again after a firmware upgrade. There seems to be no public
record of bug fixes made by Intel between firmware versions which degrades
our development process into pure trial-and-error. We need to waste our own
time to find out information which Intel should be providing to the public.
If anyone is aware of a source of such information, please let us know.

All this is of course very disappointing.

Problem reported by and debugged with help from solene@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/05 10:58:36

Modified files:
	sys/dev/fdt    : bcm2835_dog.c 

Log message:
Add missing RCS Id.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 11:35:06

Modified files:
	misc/screen    : Makefile distinfo 
	misc/screen/patches: patch-doc_screen_1 patch-pty_c 
Added files:
	misc/screen/patches: patch-configure_ac patch-osdef_h_in 
	                     patch-tty_sh 
Removed files:
	misc/screen/patches: patch-ansi_c patch-configure_in 
	                     patch-extern_h patch-fileio_c patch-os_h 
	                     patch-window_c 

Log message:
update to screen-4.6.2, tweak/ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/05 11:35:28

Modified files:
	sys/scsi       : st.c 

Log message:
Devices that have no quirks don't need to appear in the list of
devices with quirks.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/05 11:59:12

Modified files:
	sys/dev/pci    : uhci_pci.c 

Log message:
Supermicro X8DTH-i/6/iF/6F fails to attach uhci(4) via PCI and AHCI.
Result is a crash at power down.  Skip the activate function if
attach has failed.  Solution taken from ehci(4).
OK deraadt@ kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/05 12:27:19

Modified files:
	regress/sys/netinet/mcast: Makefile 
	regress/sys/netinet6/mcast6: Makefile 

Log message:
Ignore missing pseudo terminal for ssh when called from cron job.


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/05 12:38:30

Modified files:
	share/man/man4 : Makefile 
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	share/man/man4 : mvdog.4 
	sys/dev/fdt    : mvdog.c 

Log message:
Add mvdog(4), a driver to support the watchdog on the Armada 3700 SoC.
At the moment it only supports disabling the watchdog, which lets me
continue to work on the Turris Mox.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 12:47:53

Modified files:
	editors/vim    : Makefile distinfo 
	editors/vim/patches: patch-runtime_autoload_tar_vim 
	                     patch-runtime_filetype_vim 
	                     patch-runtime_syntax_fstab_vim 
	                     patch-runtime_syntax_make_vim 
	                     patch-src_configure_ac 
	editors/vim/pkg: PLIST-main 

Log message:
update to vim-8.1.1987


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/05 12:49:03

Modified files:
	sys/scsi       : st.c 

Log message:
Nuke some 25+year old comments that the oracles at delphi would have
found obscure. Repair a broken WangTEK 5150ES quirks entry that
apparently suffered some damage when imported in 1995. It never made
NetBSD/FreeBSD quirk lists at all.

Some whitespace tweaking to make everything line up.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 13:14:30

Modified files:
	sysutils/firmware/bwfm: Makefile 

Log message:
convenience target to update linux-firmware no longer needed; distfiles
are now available (and used by a couple of other of the fw ports)


CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/09/05 13:18:33

Modified files:
	sys/dev/wsfont : spleen12x24.h spleen16x32.h spleen32x64.h 

Log message:
Update Spleen kernel fonts to the latest released version, bringing
the following improvements:

- Character at position CB is 'E' with diaeresis, not with tilde (12x24 version)
- Character at position D6 is 'O' with diaeresis, not with tilde (12x24 version)
- Character at position DC is 'U' with diaeresis, not with tilde (12x24 version)
- Fix middle bar thickness in the upper case 'eth' character (12x24 version)
- Fix ring alignment for the 'A' and 'a' characters (16x32 and 32x64 versions)
- Fix tilde alignment in the 'o' with tilde character (32x64 version)
- Remove strain pixel on the '3' and 'k' characters (32x64 version)

OK deraadt@, mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 14:06:34

Modified files:
	telephony/asterisk: Makefile distinfo 

Log message:
update to asterisk-16.5.1

AST-2019-004 Crash when negotiating for T.38 with a declined stream (res_pjsip_t38.c)
AST-2019-005 Remote Crash Vulnerability in audio transcoding (bug introduced in 16.5.0)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 14:09:25

Modified files:
	telephony/asterisk: Tag: OPENBSD_6_5 Makefile distinfo 
	telephony/asterisk/pkg: Tag: OPENBSD_6_5 PLIST-main 

Log message:
update -stable to asterisk-16.5.1

AST-2019-004 Crash when negotiating for T.38 with a declined stream (res_pjsip_t38.c)
(-stable did not have asterisk-16.5.0 so AST-2019-005 did not apply here)


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/09/05 14:22:41

Modified files:
	mail/offlineimap: Makefile distinfo 

Log message:
Update OfflineIMAP to version 7.3.0.

reads OK to sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/05 14:47:50

Modified files:
	sys/dev/pci    : if_em_hw.c 

Log message:
Fix previous commit.

ok millert@, sf@, deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/05 15:01:22

Modified files:
	graphics/gdk-pixbuf2: Makefile 
	graphics/gdk-pixbuf2/pkg: PLIST 
	x11/gnome/librsvg: Makefile 
	x11/gnome/librsvg/pkg: PLIST 

Log message:
Rather than running "gdk-pixbuf-query-loaders --update-cache" directly
during unpack in gdk-pixbuf2 and ports using pixbuf loaders, define a
tag, and defer processing to the end of the pkg_add run.

This means that when doing "pkg_add -u", all files will be updated before
running the command, avoiding symbol conflicts when multiple versions of
X libraries are pulled in at the same time (often seen after X lib bumps).

OK'd a few weeks about by aja@ and reminded by pkg_add today ;)


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/09/05 16:01:14

Modified files:
	bin/ps         : ps.1 

Log message:
Document pledge keyword

OK millert


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/05 17:09:31

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/05 19:58:50

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
better error code for bad arguments; inspired by
https://github.com/openssh/openssh-portable/pull/144 by Ed Maste


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/05 21:30:42

Modified files:
	usr.bin/ssh    : kex.h 

Log message:
remove leakmalloc reference; we used this early when refactoring but
not since


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/09/05 22:24:06

Modified files:
	regress/usr.bin/ssh: principals-command.sh 

Log message:
Check for RSA support before using it for the user key, otherwise use
ed25519 which is supported when built without OpenSSL.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/05 22:53:27

Modified files:
	usr.bin/ssh    : auth-options.c auth.c auth2-chall.c 
	                 auth2-hostbased.c auth2-kbdint.c auth2-passwd.c 
	                 auth2-pubkey.c auth2.c hmac.c krl.c log.h mac.c 
	                 ssh-keygen.c ssh-keysign.c ssh-pkcs11-helper.c 
	                 ssh_api.c sshbuf-getput-basic.c 

Log message:
lots of things were relying on libcrypto headers to transitively
include various system headers (mostly stdlib.h); include them
explicitly


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/05 23:23:56

Modified files:
	usr.bin/ssh    : auth.h cipher.c cipher.h dh.c dh.h kex.h 
	                 kexgen.c monitor_wrap.h packet.h ssh-add.c 
	                 ssh-keygen.c ssh-keyscan.c ssh-keysign.c 
	                 ssh-pkcs11-helper.c ssh_api.c sshbuf.h sshkey.c 

Log message:
fixes for !WITH_OPENSSL compilation; ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/05 23:59:41

Modified files:
	usr.bin/ssh    : Makefile.inc 
	usr.bin/ssh/ssh-agent: Makefile 
	usr.bin/ssh/ssh-keygen: Makefile 
	usr.bin/ssh/ssh-pkcs11-helper: Makefile 

Log message:
avoid compiling certain files that deeply depend on libcrypto when
WITH_OPENSSL isn't set


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/06 00:08:11

Modified files:
	usr.bin/ssh    : dh.c 

Log message:
typo in previous


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/06 00:40:54

Modified files:
	sys/dev/fdt    : if_dwxe.c 

Log message:
zero hash bits early in dwxe_iff()
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/06 01:53:40

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
key conversion should fail for !openssl builds, not fall through to
the key generation code


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/06 02:23:56

Modified files:
	usr.sbin/smtpd : lka_filter.c lka_proc.c lka_report.c parse.y 
	                 smtpd.conf.5 smtpd.h 

Log message:
Add support for filter-reports. These allow filters to send freetext
reports to other filters/report handlers.
Builtin filters work via the new "report" keyword.
Proc filters can send reports via:
"report|<seconds.<microseconds>|smtp-in|<reqid>|<message>"
Subscribing to these reports can be done via the the "filter-report"
keyword.
The reports themselves contain the usual elements followed by:
<type>|<name>|<message>
Type can be builtin or proc.
Name is the process name for type proc and the filter name for type builtin.

OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	asou@cvs.openbsd.org	2019/09/06 02:39:27

Modified files:
	lib/libc/sys   : fcntl.2 

Log message:
Correct the description of EINTR and EINVAL. This looks like a mis-merge
in revision 1.30.

ok deraadt@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/06 02:44:21

Modified files:
	sys/dev/fdt    : mvclock.c 

Log message:
Add I2C clock gates.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/06 02:45:37

Modified files:
	share/man/man4 : Makefile 
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : files.fdt 
Added files:
	share/man/man4 : mviic.4 
	sys/dev/fdt    : mviic.c 

Log message:
Add mviic(4), a driver to support the I2C controller on the
Armada 3700 SoC.

With feedback from and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/06 03:38:19

Modified files:
	share/man/man4 : Makefile 
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/i2c    : files.i2c 
Added files:
	share/man/man4 : mcprtc.4 
	sys/dev/i2c    : mcp794xx.c 

Log message:
mcprtc(4), a driver for the Microchip MCP79400 RTC and similar variants.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/09/06 03:40:59

Modified files:
	usr.sbin/rad   : rad.8 

Log message:
this bit about soii and link-local addresses is no longer needed since
florian@ removed soii for link-local adresses in
sys/netinet6/in6_ifattach.c rev 1.114
ok florian@ sthen@ kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/06 04:09:35

Modified files:
	mail/exim      : Makefile distinfo 

Log message:
security update to Exim 4.92.2: CVE-2019-15846
"local or remote attacker can execute programs with root privileges"
from maintainer Renaud Allard


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/06 04:10:09

Modified files:
	mail/exim      : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
security update to Exim 4.92.2: CVE-2019-15846
"local or remote attacker can execute programs with root privileges"
from maintainer Renaud Allard


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/06 05:49:50

Modified files:
	graphics/jpeg  : Makefile distinfo 

Log message:
update to libjpeg-turbo-2.0.3


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/06 06:13:41

Modified files:
	sys/arch/amd64/amd64: cpu.c 

Log message:
fpuinit() comments should precede cpu_init() call


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/06 06:19:13

Modified files:
	sysutils/shmux : Makefile distinfo 
	sysutils/shmux/pkg: PLIST 

Log message:
Update to shmux 1.0.3

- Fix clang warnings.
- Fix BROKEN_POLL option on macOS.
- Switch to generic BSD license.
- Default to using -oLogLevel=ERROR with ssh.

OK sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/06 06:22:01

Modified files:
	sys/arch/alpha/alpha: trap.c 
	sys/arch/amd64/amd64: trap.c 
	sys/arch/arm64/arm64: trap.c 
	sys/arch/hppa/hppa: trap.c 
	sys/arch/i386/i386: trap.c 
	sys/arch/m88k/m88k: trap.c 
	sys/arch/mips64/mips64: trap.c 
	sys/arch/powerpc/powerpc: trap.c 
	sys/arch/sh/sh : trap.c 
	sys/arch/sparc64/sparc64: trap.c 
	sys/arch/arm/arm: fault.c 

Log message:
If uvm_map_inentry returns false then a signal has been delivered, and
userret() must be called on trap() exit to deliver it, rather than
repeating the same cause infinitely.  discovered by George Koehler
ok kettenis bluhm visa


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/06 06:23:49

Modified files:
	sys/arch/powerpc/powerpc: trap.c 

Log message:
oops incorrect goto label


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/06 06:55:26

Modified files:
	sys/arch/powerpc/powerpc: trap.c 

Log message:
oops the label is actually out:


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/06 07:10:44

Modified files:
	sys/arch/amd64/amd64: tsc.c 

Log message:
Only do the timecounter initialization on the primary CPU.  Avoids using a
bogus CPU frequency from a secondary CPU to set the TSC frequency.

ok deraadt@, mikeb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/06 07:28:32

Modified files:
	misc/screen-shm: Makefile 

Log message:
tell portroach to ignore


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/06 07:45:04

Modified files:
	sys/arch/powerpc/powerpc: trap.c 

Log message:
delete two decades of debugging code and further simplify the main
trap() switch statement
ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/09/06 08:45:34

Modified files:
	usr.bin/ssh    : kex.c readconf.c servconf.c ssh.c ssh_config.5 
	                 sshd_config.5 

Log message:
Allow prepending a list of algorithms to the default set by starting
the list with the '^' character, e.g.

HostKeyAlgorithms ^ssh-ed25519
Ciphers ^aes128-gcm@openssh.com,aes256-gcm@openssh.com

ok djm@ dtucker@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/06 08:50:23

Modified files:
	editors/vim    : Makefile 

Log message:
disable vim's new hidden dep on libcanberra; found by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/06 08:50:23

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/06 08:51:46

Modified files:
	devel/vim-taglist/patches: patch-plugin_taglist_vim 

Log message:
regen patches; no pkg change


CVSROOT:	/cvs
Module name:	src
Changes by:	naddy@cvs.openbsd.org	2019/09/06 09:07:19

Modified files:
	distrib/sets/lists/base: md.armv7 
	distrib/sets/lists/comp: gcc.armv7 md.armv7 
	share/mk       : bsd.own.mk 

Log message:
disable base-gcc on armv7, sets from deraadt@; ok deraadt@ kettenis@ jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/06 09:22:24

Modified files:
	sys/dev/fdt    : if_dwxe.c 

Log message:
missing ;
found by wilfried meindl
ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	jcs@cvs.openbsd.org	2019/09/06 09:27:26

Modified files:
	www/mozilla-firefox: Makefile 
Added files:
	www/mozilla-firefox/patches: patch-old-configure 

Log message:
Upstream combined --enable-sandbox and --enable-content-sandbox and
in the process, broke enabling the sandbox (pledge) on OpenBSD.

https://bugzilla.mozilla.org/show_bug.cgi?id=1579323

ok landry


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/06 10:06:30

Modified files:
	sys/arch/mips64/mips64: trap.c 

Log message:
Stop stack trace saving if the current subroutine is u_general or u_intr
because the next frame is in userspace.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/06 10:22:41

Modified files:
	sys/arch/mips64/mips64: trap.c 

Log message:
Do not stop prologue scan at branch instructions. This lets stack trace
saving work with the twisted code that clang occasionally emits; stack
frame setup can happen very late after blocks of conditional code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jcs@cvs.openbsd.org	2019/09/06 11:02:02

Log message:
    Import ruby-shims, a small utility to dynamically switch Ruby
    versions on a per-directory basis
    
    ok jeremy
    
    Status:
    
    Vendor Tag:	jcs
    Release Tags:	jcs_20190906
    
    N ports/devel/ruby-shims/Makefile
    N ports/devel/ruby-shims/pkg/DESCR
    N ports/devel/ruby-shims/pkg/PLIST
    N ports/devel/ruby-shims/files/rubyshim.sh
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jcs@cvs.openbsd.org	2019/09/06 11:06:47

Modified files:
	devel          : Makefile 

Log message:
+= ruby-shims


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/06 11:13:22

Modified files:
	www/firefox-esr: Makefile 
Added files:
	www/firefox-esr/patches: patch-old-configure 

Log message:
Apply jcs@'s sandboxing fix to esr too.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/06 11:41:05

Modified files:
	lib/libcrypto/pem: pem_lib.c 

Log message:
Handle CMS PEM headers.

ok inoguchi@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/06 11:59:25

Modified files:
	lib/libcrypto  : Makefile 
	lib/libcrypto/ec: ec.h ec_err.c ec_pmeth.c 

Log message:
Add various macros and controls for EC_PKEY_CTX.

These are needed for the upcoming EC CMS support (nothing else appears
to use them). This largely syncs our ec_pmeth.c with OpenSSL 1.1.1b.

With input from inoguchi@ and tb@.

ok inoguchi@ tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/06 12:49:49

Modified files:
	net/ktorrent   : Makefile distinfo 

Log message:
Update ktorrent to 5.1.2

Move devel/kf5/{karchive,kcmutils} from BUILD_DEPEND/RUN_DEPENDS  to
LIB_DEPENDS and fix order LIB_DEPENDS.

Remove "USE_NINJA = samurai". if we run into bulk build issues again, we have
to revert this part.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/06 12:54:57

Modified files:
	x11/i3-gaps    : Makefile 
	x11/i3-gaps/patches: patch-i3-nagbar_main_c 
Added files:
	x11/i3-gaps/patches: patch-i3-msg_main_c patch-src_main_c 

Log message:
Sync with i3 port

"neuter pledges (committed to upstream code) with #if 0, some change in
the 4.16.1->4.17 timeframe is causing calls into cairo which do shm access.
shm is not possible in a pledged process.

reported by Ralf Horstmann; for more details see
https://marc.info/?l=openbsd-ports&m=156762440931634&w=2" -- sthen@

Spotted by sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/06 13:18:24

Modified files:
	share/man/man4 : iic.4 

Log message:
Mention imxiic(4), mviic(4), rkiic(4), sxitwi(4) and mcprtc(4).

Requested by and ok jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/06 13:25:08

Modified files:
	bin/chmod      : chown.8 
	usr.bin/dc     : dc.1 
	usr.bin/mail   : mail.1 
	usr.bin/mesg   : mesg.1 
	usr.bin/nm     : nm.1 
	sbin/umount    : umount.8 
	usr.bin/write  : write.1 
	lib/libc/compat-43: creat.3 
	lib/libc/sys   : write.2 
	lib/libm/man   : cos.3 
	share/man/man5 : core.5 utmp.5 
	usr.bin/sort   : sort.1 

Log message:
More Version 1 AT&T UNIX history.
This became possible because copies of the original v1 manuals
have shown up on the Internet some time ago.
Reminded by Sevan Janiyan <venture37 at geeklan dot co dot uk>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/06 14:28:24

Modified files:
	devel/kdevelop : Makefile distinfo 
	devel/kdevelop/pkg: PLIST 

Log message:
Update kdevelop to 5.4.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/06 14:47:23

Modified files:
	fonts/spleen   : Makefile distinfo 

Log message:
Update spleen to 1.2.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/09/06 15:30:32

Modified files:
	usr.sbin/config: cmd.c ukcutil.c ukc.h config.8 
	sys/kern       : subr_userconf.c 
	share/man/man4 : options.4 
	share/man/man8 : boot_config.8 

Log message:
options(4), config(8): drop dst/timezone knobs; ok kettenis@ deraadt@ jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/06 16:10:18

Modified files:
	math/coq       : Makefile distinfo 
	math/coq/patches: patch-Makefile_ide patch-configure_ml 
	math/coq/pkg   : PFRAG.dynlink-native PFRAG.native PLIST 
Removed files:
	math/coq/patches: patch-Makefile_install 

Log message:
Upgrade to 8.10beta2, which supports OCaml 4.08.

no objections krw@, please commit daniel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/09/06 17:31:45

Modified files:
	lang/janet     : Makefile distinfo 
	lang/janet/patches: patch-Makefile 
	lang/janet/pkg : PLIST 

Log message:
Update janet to 1.3.0.

Release notes: https://github.com/janet-lang/janet/releases/tag/v1.3.0


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/06 18:39:30

Modified files:
	sys/dev/pci/drm/i915: intel_device_info.c 

Log message:
drm/i915: fix broadwell EU computation

From Lionel Landwerlin
a3eb2eba2f79950b788342562604d36c5a260da7 in linux 4.19.y/4.19.70
63ac3328f0d1d37f286e397b14d9596ed09d7ca5 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/06 18:43:05

Modified files:
	sys/dev/pci/drm/i915: i915_vgpu.c 

Log message:
drm/i915: Don't deballoon unused ggtt drm_mm_node in linux guest

From Xiong Zhang
c7615333645de572cae573da0a92dd3fc8e099e0 in linux 4.19.y/4.19.70
0a3dfbb5cd9033752639ef33e319c2f2863c713a in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/06 18:48:55

Modified files:
	sys/dev/pci/drm/include/linux: dma-mapping.h 

Log message:
define away dma_set_max_seg_size()
needed for a future linux 4.19 change


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/06 18:51:40

Modified files:
	sys/dev/pci/drm/i915: i915_drv.c 

Log message:
drm/i915: Call dma_set_max_seg_size() in i915_driver_hw_probe()

From Lyude Paul
68b58d3924645356415ae4f6922da8fa14ea1642 in linux 4.19.y/4.19.70
32f0a982650b123bdab36865617d3e03ebcacf3b in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/06 19:15:41

Modified files:
	sys/scsi       : st.c 

Log message:
Various struct/variables "modes" -> "mode" since there is only one.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/09/06 19:23:24

Modified files:
	sys/conf       : param.c 
	sys/sys        : kernel.h 

Log message:
Remove tz, the kernel timezone.

After removing timezone support from date(1), msdosfs, gettimeofday(2),
settimeofday(2), boot_config(8), config(8), and introducing kern.utc_offset
sysctl(2) to replace the DST/TIMEZONE options(4) to support running the RTC
at an offset from UTC, the kernel timezone is unused and we can delete it.

With this commit the kernel timezone now appears to be extinct in
upstream BSD, though it does survive in XNU:

https://github.com/opensource-apple/xnu/blob/0a798f6738bc1db01281fc08ae024145e84df927/bsd/conf/param.c#L83

Prompted by tedu@ some time back, and inspired by NetBSD and FreeBSD's
work in this area.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/06 19:27:02

Modified files:
	sys/scsi       : st.c 

Log message:
Nuke unused flag ST_BLOCK_SET.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/06 19:47:48

Modified files:
	sys/scsi       : st.c 

Log message:
ST_Q_FORCE_BLKSIZE is superfluous since it is only used in combination with
a non-zero value of blksize in the quirkdata. So just check for non-zero
value of blksize, as is already done for density.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/06 20:07:08

Modified files:
	sys/scsi       : st.c 

Log message:
ST_USER_BLKSIZE and ST_QUIRK_BLKSIZE are only tested as an or'd pair.
Ditto for ST_USER_DENSITY and ST_QUIRK_DENSITY. Thus the origin of the
value stored in the mode is irrelevant. Just use two flags
(ST_MODE_BLKSIZE and ST_MODE_DENSITY) instead of the existing four.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/06 20:13:10

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190903


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/06 20:30:40

Modified files:
	sys/scsi       : st.c 

Log message:
Tweak some comments and code layout to make MTSETBSIZE and MTSETDENSITY
cases look the same.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/07 01:02:29

Modified files:
	emulators/mame : Makefile distinfo 
	emulators/mame/patches: patch-makefile patch-scripts_genie_lua 

Log message:
Update mame to 0.213.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/07 01:23:56

Modified files:
	games/pysol    : Makefile distinfo 
	games/pysol/pkg: PLIST 

Log message:
Update to pysol 2.6.4, from wen heping.

While here add commented out scaffolding to run tests, not enabled yet.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 02:46:41

Modified files:
	lang/crystal   : Makefile distinfo 

Log message:
Update to crystal-0.30.1.

from Wesley Moxam (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/09/07 03:11:14

Modified files:
	usr.sbin/vmd   : vmd.h 
	usr.sbin/vmctl : vmctl.c 

Log message:
Remove unused VMD_DISK_INVALID message type and mark it obsolete.

ok mlarkin@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 04:02:19

Modified files:
	etc/rc.d       : rc.subr 

Log message:
Remove dependency on basename(1).

prodded by deraadt@
ok kn@ deraadt@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/07 04:28:27

Modified files:
	usr.bin/stat   : stat.1 
	lib/libc/sys   : brk.2 
	lib/libc/stdio : fflush.3 
	share/man/man4 : tty.4 
	share/man/man5 : dir.5 

Log message:
more Version 1 AT&T UNIX history:
a few cases that weren't altogether straightforward;
tweak and OK jmc@, OK sobrado@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 05:08:51

Modified files:
	x11/gtk+3      : Makefile distinfo 
	x11/gtk+3/patches: patch-gtk_gtkfilechooserwidget_c 
	x11/gtk+3/pkg  : PLIST-main 

Log message:
Update to gtk+3-3.24.11.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 05:28:46

Modified files:
	sysutils/consul: Makefile distinfo 

Log message:
Update to consul-1.6.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 05:28:58

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.8.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/07 05:48:33

Modified files:
	x11/e17        : Makefile.inc 
	x11/e17/e      : distinfo 
	x11/e17/e_dbus : distinfo 
	x11/e17/ecore  : distinfo 
	x11/e17/edje   : distinfo 
	x11/e17/eet    : distinfo 
	x11/e17/efreet : distinfo 
	x11/e17/eina   : distinfo 
	x11/e17/eio    : distinfo 
	x11/e17/elementary: distinfo 
	x11/e17/embryo : distinfo 
	x11/e17/emotion: distinfo 
	x11/e17/ethumb : distinfo 
	x11/e17/evas   : distinfo 

Log message:
Fix master site.
Switch to .tar.bz2 because only this format is still available.
Comparing the decompressed .tar.gz and .tar.bz2 shows the .tar files to
be identical.
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 05:50:40

Modified files:
	x11/gnome/librsvg: Makefile distinfo 

Log message:
Update to librsvg-2.44.15.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 05:51:39

Modified files:
	x11/gnome/amtk : Makefile distinfo 
	x11/gnome/amtk/pkg: PLIST 

Log message:
Update to amtk-5.0.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 06:18:09

Modified files:
	textproc/gspell: Makefile distinfo 
	textproc/gspell/pkg: PLIST 

Log message:
Update to gspell-1.8.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 06:18:21

Modified files:
	x11/gnome/amtk : Makefile 

Log message:
Forgot to regen WANTLIB in previous.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/07 07:16:48

Modified files:
	x11/e17        : Makefile.inc 
	x11/e17/e      : Makefile 
	x11/e17/e_dbus : Makefile 
	x11/e17/ecore  : Makefile 
	x11/e17/edje   : Makefile 
	x11/e17/eet    : Makefile 
	x11/e17/efreet : Makefile 
	x11/e17/eina   : Makefile 
	x11/e17/eio    : Makefile 
	x11/e17/elementary: Makefile 
	x11/e17/embryo : Makefile 
	x11/e17/emotion: Makefile 
	x11/e17/ethumb : Makefile 
	x11/e17/evas   : Makefile 

Log message:
switch HOMEPAGE to https


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/07 07:27:23

Modified files:
	sys/dev/ofw    : ofw_misc.c ofw_misc.h 

Log message:
Add an I2C framework, so that nodes that need to use I2C but
are not children of the I2C controller are able to use it.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/07 07:27:40

Modified files:
	sys/dev/fdt    : mviic.c 

Log message:
Register mviic(4) in the I2C framework.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/07 07:29:08

Modified files:
	sys/dev/ofw    : ofw_misc.c ofw_misc.h 

Log message:
Add an SFP framework which allows SFP providers to provide a
method to access its pages.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/07 07:32:36

Modified files:
	sys/dev/fdt    : files.fdt 
	sys/arch/arm64/conf: GENERIC RAMDISK 
Added files:
	sys/dev/fdt    : sfp.c 

Log message:
Add sfp(4), a driver that allows talking to SFPs connected over
an I2C bus and provides a method to read its pages over the SFP
framework.

Feedback from dlg@
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/07 07:33:00

Modified files:
	sys/dev/fdt    : if_mvneta.c 

Log message:
Retrieve SFP information using the SFP framework.

Feedback from dlg@
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/07 07:46:20

Modified files:
	sys/arch/amd64/amd64: mainbus.c 
	sys/arch/amd64/conf: GENERIC RAMDISK RAMDISK_CD files.amd64 
	sys/arch/amd64/pci: acpipci.c pci_machdep.c 
	sys/dev/acpi   : acpi.c acpivar.h 

Log message:
Revert acpipci(4) changes.  Too many systems are broken.  We'll try again
after 6.6 as been released.  The acpireg.h change stays behind.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/07 07:58:58

Modified files:
	sys/arch/octeon/conf: BOOT GENERIC RAMDISK files.octeon 
	sys/arch/octeon/dev: octeon_iobus.c 
	sys/arch/octeon/include: octeonreg.h 
Added files:
	sys/arch/octeon/dev: octpcie.c 

Log message:
Add a driver for the PCIe controller found on OCTEON II and OCTEON III.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/07 08:00:32

Modified files:
	share/man/man4/man4.octeon: Makefile 
Added files:
	share/man/man4/man4.octeon: octpcie.4 

Log message:
Add a manual page for octpcie(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/07 08:01:27

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/07 08:02:31

Modified files:
	share/man/man4 : pci.4 

Log message:
Mention octpcie(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/07 08:03:52

Modified files:
	sys/arch/octeon/conf: BOOT GENERIC RAMDISK 

Log message:
Enable nvme(4) on octeon.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/07 09:26:08

Modified files:
	sys/scsi       : st.c 

Log message:
Fold st_identify_drive() into stattach().


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 09:48:31

Modified files:
	sysutils/consul-template: Makefile distinfo 

Log message:
Update to consul-template-0.20.1.
- take over MAINTAINER

ok jasper@ (former maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 09:51:00

Log message:
    Import libsigc++30-3.0.0.
    
    (can be installed alongside devel/libsigc++-2)
    
    libsigc++ implements a typesafe callback system for standard C++. It
    allows you to define signals and to connect those signals to any
    callback function, either global or a member function, regardless of
    whether it is static or virtual.
    
    ok robert@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20190907
    
    N ports/devel/libsigc++30/distinfo
    N ports/devel/libsigc++30/Makefile
    N ports/devel/libsigc++30/pkg/DESCR
    N ports/devel/libsigc++30/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 09:52:14

Modified files:
	devel          : Makefile 

Log message:
+libsigc++30


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 09:53:52

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.327.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 09:55:24

Modified files:
	misc/osinfo/osinfo-db: Makefile distinfo 
	misc/osinfo/osinfo-db/pkg: PLIST 

Log message:
Update to osinfo-db-20190905.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 10:01:13

Modified files:
	net/py-libcloud: Makefile distinfo 
	net/py-libcloud/pkg: PLIST 

Log message:
Update to py-libcloud-2.6.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 10:15:25

Modified files:
	textproc/enchant2: Makefile distinfo 

Log message:
Update to enchant2-2.2.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 10:16:36

Modified files:
	print/qpdf     : Makefile distinfo 
	print/qpdf/pkg : PLIST 

Log message:
Update to qpdf-9.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 10:28:08

Modified files:
	print/cups-filters: Makefile distinfo 

Log message:
Update to cups-filters-1.25.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 10:29:48

Modified files:
	x11/dbus-python: Makefile distinfo 

Log message:
Update to py-dbus-1.2.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 10:31:31

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-261.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 10:46:01

Modified files:
	security/libgcrypt: Makefile distinfo 
	security/libgcrypt/patches: patch-configure_ac 
	                            patch-random_jitterentropy-base_c 
	security/libgcrypt/pkg: PLIST 

Log message:
SECURITY update to libgcrypt-1.8.5.
- Add mitigation against an ECDSA timing attack [CVE-2019-13627]


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:06:41

Modified files:
	sysutils/amazon-ecs-cli: Makefile distinfo 

Log message:
Update to ecs-cli-1.16.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/07 11:11:53

Modified files:
	devel/frama-c  : Makefile distinfo 
	devel/frama-c/patches: patch-Makefile patch-configure_in 
	devel/frama-c/pkg: PFRAG.dynlink-native PFRAG.native PLIST 

Log message:
Update to 19.0, which supports OCaml 4.08.

OK (ports-wise) jca@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:18:55

Modified files:
	security/libgcrypt: Tag: OPENBSD_6_5 Makefile 
Added files:
	security/libgcrypt/patches: Tag: OPENBSD_6_5 
	                            patch-cipher_dsa-common_c 
	                            patch-cipher_dsa_c 
	                            patch-cipher_ecc-ecdsa_c 
	                            patch-cipher_ecc-gost_c 
	                            patch-cipher_pubkey-internal_h 
	                            patch-mpi_ec_c 

Log message:
- SECURITY mitigation against an ECDSA timing attack [CVE-2019-13627].
- Improve ECDSA unblinding.


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/09/07 11:24:37

Modified files:
	lang/compcert  : Makefile distinfo 

Log message:
Update to commit d3eba507 for ocaml 4.08.1 support.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:28:09

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.224.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:28:21

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.224.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:28:39

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.234.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:40:54

Modified files:
	net/bro        : Makefile distinfo 

Log message:
SECURITY update to zeek-2.6.4.

- The NTLM analyzer did not properly handle AV Pair sequences that were
either empty or unterminated, resulting in invalid memory access or
heap buffer over-read.  The NTLM analyzer is enabled by default and
used in the analysis of SMB, DCE/RPC, and GSSAPI protocols.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:42:43

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-digitalocean: Makefile distinfo 
	sysutils/terraform/provider-opsgenie: Makefile distinfo 
	sysutils/terraform/provider-vault: Makefile distinfo 

Log message:
Update some terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:47:04

Modified files:
	net/bro        : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
SECURITY update to bro-2.6.4.

- The NTLM analyzer did not properly handle AV Pair sequences that were
either empty or unterminated, resulting in invalid memory access or
heap buffer over-read.  The NTLM analyzer is enabled by default and
used in the analysis of SMB, DCE/RPC, and GSSAPI protocols.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:48:15

Modified files:
	net/bro        : Makefile 

Log message:
Bump to be ahead of stable. This is usually not needed but here we will
have a PKGNAME change between 6.5 and 6.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 11:53:23

Modified files:
	www/epiphany   : Makefile distinfo 

Log message:
Update to epiphany-3.32.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/07 12:45:02

Modified files:
	sysutils/findlib: Makefile distinfo 

Log message:
update to 1.8.1

ok krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/07 12:57:47

Modified files:
	usr.sbin/rad   : frontend.c 

Log message:
Do not try to send router advertisements on interfaces that have no link.
Keeps log noise down on carp backup interfaces.
Reported by matthieu
Previous version OK deraadt
Input & OK benno


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/07 13:05:12

Modified files:
	x11/gnome/accerciser: Makefile distinfo 
Removed files:
	x11/gnome/accerciser/patches: patch-configure 

Log message:
Update to accerciser-3.34.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/07 13:05:44

Modified files:
	sys/arch/amd64/amd64: machdep.c 

Log message:
We can't call cpu_ucode_apply() before we call cpu_ucode_setup().
Fallout spotted by naddy@

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/09/07 13:32:44

Modified files:
	lang/gcc       : Makefile.inc 
	lang/gcc/8     : Makefile 
	lang/gcc/8/patches: patch-gcc_config_i386_i386_c 
Removed files:
	lang/gcc       : DESCR-g77 DESCR-java 

Log message:
Minor cleanups:
- remove no-longer needed g77 and java subpackages.
- remove an outdated patch comment
- move HOMEPAGE from http -> https
- bump all subpackages due to HOMEPAGE change

ok pascal@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/07 13:38:57

Modified files:
	www/minitube   : Makefile distinfo 
	www/minitube/patches: patch-minitube_pro 
	www/minitube/pkg: PLIST 
Removed files:
	www/minitube/patches: patch-src_iconutils_cpp 
	                      patch-src_mainwindow_cpp 
	                      patch-src_mediaview_cpp 

Log message:
update to minitube-3.1, unbreaking playback


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/07 13:39:24

Modified files:
	www/minitube   : Makefile 

Log message:
https HOMEPAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/09/07 14:09:35

Modified files:
	sysutils/xxhash: Makefile 
	sysutils/xxhash/patches: patch-Makefile 

Log message:
Avoid DT_SONAME hardcoding.��


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/09/07 15:45:37

Modified files:
	.              : events.html 
Added files:
	papers         : vbsdcon2019-care-and-feeding.pdf 

Log message:
Move vBSDcon to a past event and add a PDF of my slides.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/07 17:32:43

Modified files:
	lang/gcc/8     : Makefile 

Log message:
REVISION must not go back


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/08 01:21:21

Modified files:
	x11/lablgtk3   : Makefile 

Log message:
add RUN_DEPENDS for graphics/ocaml-cairo, move C libraries to LIB_DEPENDS.
This should fix failing math/coq.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/08 04:07:03

Modified files:
	multimedia/gstreamer1/mm: Makefile 

Log message:
Drop MODGCC4_ARCHS; it shouldn't be needed as the default value is to list
all supported archs.

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/08 04:08:59

Modified files:
	graphics/ffmpeg: Makefile distinfo 
	x11/mplayer    : Makefile 
Added files:
	graphics/ffmpeg/patches: patch-libavcodec_allcodecs_c 
Removed files:
	graphics/ffmpeg/patches: patch-fftools_ffplay_c 
	                         patch-libavformat_matroskadec_c 

Log message:
Update to FFmpeg 4.2.1.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/08 04:15:24

Modified files:
	x11/gnome/gdl  : Makefile distinfo 

Log message:
Update to gdl-3.34.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/09/08 04:40:39

Modified files:
	devel/llvm     : Makefile distinfo 
	devel/llvm/patches: 
	                    patch-lib_Target_Mips_MCTargetDesc_MipsTargetStreamer_cpp 
	                    patch-lib_Target_X86_X86TargetMachine_cpp 
	                    patch-tools_clang_lib_Driver_ToolChains_Clang_cpp 
	                    patch-tools_lld_ELF_SyntheticSections_cpp 
	                    patch-tools_lld_ELF_Writer_cpp 
	devel/include-what-you-use: Makefile 
	lang/clang     : clang.port.mk 

Log message:
Update to llvm-8.0.1

Similar diff from Brad; bulk build by ajacoutot@


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/08 07:30:46

Modified files:
	usr.sbin/sysmerge: sysmerge.sh 

Log message:
Have sm_install() use install -F (fsync).


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/09/08 08:05:53

Modified files:
	editors/libreoffice: Makefile distinfo 

Log message:
update to 6.2.7.1


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/08 10:45:21

Modified files:
	sys/dev/fdt    : sxiccmu.c sxiccmu_clocks.h 

Log message:
Add Allwinner H6 support.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/08 10:48:59

Modified files:
	graphics/graphene: Makefile distinfo 

Log message:
Update to graphene-1.10.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	landry@cvs.openbsd.org	2019/09/08 10:57:17

Modified files:
	etc/etc.sparc64: login.conf 

Log message:
Bump datasize-cur to 4Gb for pbuild class on sparc64, rust is a pig.

ok semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/08 11:00:05

Modified files:
	lib/libcrypto/ec: ec_ameth.c 

Log message:
Add CMS ECC support.

This brings in EC code from OpenSSL 1.1.1b, with style(9) and whitespace
cleanups. All of this code is currently under OPENSSL_NO_CMS hence is a
no-op.

ok inoguchi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/09/08 11:07:31

Modified files:
	net/wireguard-go: Makefile distinfo 
Removed files:
	net/wireguard-go/patches: patch-tun_tun_openbsd_go 

Log message:
update to wireguard-go-0.0.20190908 which contains the proper upstream
fix for our local patch.

ok jasper (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/09/08 11:10:21

Modified files:
	devel/got      : Makefile distinfo 
	devel/got/pkg  : PLIST 

Log message:
update to got-0.15

- use author name/email from ~/.gitconfig if GOT_AUTHOR is not set
- obtain repo format version and commit author name/email from .git/config
- fix line-wrap for lines spanning the terminal in tog diff view
- make 'got status' ignore inaccessible directories (reported by semarie)
- unstage may need to write to repository; fix unveil(2) call accordingly
- fix modified files not shown by 'got status' after committing staged changes


CVSROOT:	/cvs
Module name:	src
Changes by:	daniel@cvs.openbsd.org	2019/09/08 11:13:44

Modified files:
	share/man/man1 : Makefile 

Log message:
Only install the gcc-local(1) and clang-local(1) man pages if we also have
the corresponding compiler on a given platform.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	daniel@cvs.openbsd.org	2019/09/08 11:20:51

Modified files:
	share/man/man1 : Makefile 

Log message:
reverting for now; requested by deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/09/08 11:40:02

Modified files:
	lang/gambit    : Makefile 

Log message:
Unbreak on macppc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/08 13:19:06

Modified files:
	print/cups     : Makefile 
	print/cups/pkg : README-main 

Log message:
Add section about drivers.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/09/08 16:43:15

Modified files:
	regress/sys/kern/unveil: syscalls.c 

Log message:
Pull out and expand openat tests into their own routine.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/08 16:43:46

Modified files:
	games/bcd      : bcd.6 

Log message:
Be more specific regarding which encoding this simulator generates:
the existing text encouraged the misconception that punched card
encodings were somehow standardized, which they were not.  Lots of
different encodings existed, and the one simulated here was a
proprietary one of one specific vendor (GE).  Also correct the
history: the folks at Bell Labs already played with this.

HISTORY mistake noticed by Sevan Janiyan <venture37 at geeklan
dot co dot uk>, who also agrees with the final patch.

tweak and OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/08 16:50:59

Modified files:
	lib/libc/sys   : brk.2 

Log message:
sbrk(2) already existed in Version 4 AT&T UNIX;
source: https://minnie.tuhs.org/cgi-bin/utree.pl?file=V4/man/man2/break.2
pointed out by Sevan Janiyan <venture37 at geeklan dot co dot uk>


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/08 19:35:43

Modified files:
	sys/dev/pci/drm: drm_fb_helper.c 

Log message:
When no display outputs are connected on boot linux 4.19 drm relies on
deferred setup to handle the console framebuffer where as linux 4.4 drm
created a 1024x768 console framebuffer in this situation.

As we only handle setting up rasops and wsdisplay on attach go back to
the old behaviour for now so a display can be connected after booting
with none attached to interact with the console.

This partly reverts linux commit
drm/fb-helper: Support deferred setup
ca91a2758fcef6635626993557dd51cfbb6dd134

Reported and tested by Marcus MERIGHI.
Tested by and ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/08 19:37:27

Modified files:
	sys/scsi       : st.c 

Log message:
Tweak some comments to be useful. Sort switch cases into
numerical order. Move bit of logic before calling
st_unmount() into st_unmount().


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/09/08 20:31:19

Modified files:
	usr.bin/ssh    : scp.c 

Log message:
Fix potential truncation warning.  ok deraadt.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/09/08 20:57:20

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Specify the right opcode when trying to set the Interface Step Sequence ID.
Newer firmware (version 14.25) doesn't allow the driver to create TIS
contexts without setting the ISSI, but earlier firmware doesn't seem to care.
Big thanks to Xiaofeng Liu from Mellanox support who identified the problem.

fixes problems first reported by patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/08 22:42:10

Modified files:
	games/widelands: Makefile 

Log message:
Unbreak widelands build

Remove CXXFLAGS from CONFIGURE_ENV to avoid a lot of warnings.
sparc64 might still be broken, but let's give it a try.

ok naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/09/09 01:44:45

Modified files:
	mail/courier-imap: Makefile distinfo 
	mail/courier-imap/pkg: PLIST-main 

Log message:
Update to 5.0.8
documentation fixes


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/09 01:53:19

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Use a zero width space to prevent mandoc warning about trailing
delimeters in Ql, from orbea at riseup dot net in GitHub issue 1892.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/09 01:57:31

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Put default keys in alphabetical order, from Barry Rountree.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/09 02:00:44

Modified files:
	graphics/gdk-pixbuf2: Makefile distinfo 
	graphics/gdk-pixbuf2/pkg: PLIST 

Log message:
Update to gdk-pixbuf-2.38.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/09 02:01:21

Modified files:
	usr.bin/tmux   : tmux.1 window-copy.c 

Log message:
Add cursor-down-and-cancel, from Mark Kelly.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/09 02:15:59

Modified files:
	graphics/simple-scan: Makefile distinfo 
	graphics/simple-scan/pkg: PLIST 

Log message:
Update to simple-scan-3.34.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/09 03:38:04

Modified files:
	sys/dev/pci    : mfii.c 

Log message:
revert back to using 0x6c for the reply post index register.

this was mistakenly committed as part of the powerdown hook stuff,
and caused "older" chips like SAS2208s to get stuck in biowait.

reported by Mischa <obsdml at high5 dot nl> and hrvoje popovski
discussed with jmatthew@ and alex wilson.
fix tested by me on a SAS3508 and SAS2208


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/09/09 05:10:10

Modified files:
	sysutils/bacula: Makefile 
Added files:
	sysutils/bacula/patches: 
	                         patch-src_cats_make_catalog_backup_pl_in 

Log message:
fix the catalog backup script on OpenBSD when using PostgreSQL:

psql(1) will fail if the current working directory is not accessible which
is /nonexistent for the _bacula user so chdir(2) to the bacula working dir
before executing psql(1)

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/09 05:47:25

Modified files:
	usr.bin/tmux   : tmux.1 

Log message:
Clarify server options slightly.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/09 07:50:06

Modified files:
	usr.bin/signify: signify.c 

Log message:
use PATH_MAX instead of 1024; ok tedu


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/09 10:49:03

Modified files:
	lib/libcrypto  : Makefile 

Log message:
Install the openssl/cms.h header.

This header includes OPENSSL_NO_CMS guards, so even if things find the
header it provides no useful content (and other code should technically
also be using OPENSSL_NO_CMS...).

ok deraadt@ inoguchi@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/09 10:49:34

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
Sync for openssl/cms.h.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/09 11:56:00

Modified files:
	lib/libcrypto/ec: ec_ameth.c 

Log message:
Move #include <openssl/cms.h> to more appropriate location (since it is
now being installed).


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/09 11:56:21

Modified files:
	lib/libcrypto/err: err_all.c 

Log message:
Load CMS error strings.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/09 12:02:12

Modified files:
	sys/scsi       : st.c 

Log message:
Lots of st->flags checking in a mix of old school and ISSET() makes
code harder to read. Switch to ISSET() where obvious.

No change to executable.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/09/09 12:06:26

Modified files:
	lib/libcrypto/dsa: dsa_pmeth.c 
	lib/libcrypto/ec: ec_pmeth.c 
	lib/libcrypto/evp: evp.h 
	lib/libcrypto/rsa: rsa_pmeth.c 

Log message:
Provide EVP_PKEY_CTX_get_signature_md() macro and implement the
EVP_PKEY_CTRL_GET_MD control for DSA, EC and RSA.

This is used by the upcoming RSA CMS code.

ok inoguchi@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/09 12:25:48

Modified files:
	sys/scsi       : st.c 

Log message:
Lots of st->flags bit clearing in a mix of old school and CLR() makes
code harder to read. Switch to CLR().

No change to executable.


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/09/09 12:50:35

Modified files:
	www/mozilla-firefox: Makefile 
	www/mozilla-firefox/files: all-openbsd.js 

Log message:
Disable DoH by default.  While encrypting DNS might be a good thing,
sending all DNS traffic to Cloudflare by default is not a good idea.
Applications should respect OS configured settings.
The DoH settings still can be overriden if needed. ok landry@ job@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/09 12:59:20

Modified files:
	sys/scsi       : st.c 

Log message:
Continue bit twiddling tweaks. Use SET() with st->flags.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/09 13:19:05

Modified files:
	infrastructure/templates: Makefile.template 

Log message:
Add explanatory comments to several entries

ok bcallah@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/09 13:23:48

Modified files:
	devel/py-arrow : Makefile distinfo 

Log message:
Update devel/py-arrow 0.14.5 -> 0.14.7

From Wen Heping. Thank you!


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/09 14:00:27

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 
	sys/dev/fdt    : imxsrc.c 

Log message:
Attach imxsrc(4) early and raise its priority to make sure it beats
syscon(4).

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/09 14:00:51

Modified files:
	sys/dev/fdt    : imxsrc.c 

Log message:
Update the bindings for imxsrc(4), since they changed when they were
upstreamed.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/09 14:02:27

Modified files:
	etc            : daily 
	sys/sys        : acct.h 
	sys/uvm        : uvm_map.c 
	share/man/man5 : acct.5 
	usr.bin/lastcomm: lastcomm.1 lastcomm.c 

Log message:
Inform about system call memory write protection and stack mapping
violations in system accounting.  This will help to find missbehaving
programs and possible attacks.  The flags bit field is full, so
recycle the PDP-11 compatibility on VAX.  lastcomm(1) prints the
AMAP flag as 'M'.  daily(8) prints a list of affected processes.
OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/09/09 14:26:16

Modified files:
	lib/libcrypto/ec: ec_ameth.c 

Log message:
Plug memory leak in error paths. Found while comparing this file
with OpenSSL 1.1.1's version which contains a similar fix.

ok jsing


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/09 15:07:21

Added files:
	x11/e17/elementary/patches: 
	                            patch-data_themes_widgets_flipselector_edc 

Log message:
Remove UTF-8 non-breaking spaces that snuck in.  embryo_cc's lexer
can't handle input bytes with the top bit set.  On signed char
architectures they are accidentally skipped, on aarch64 the parser
later fails with an assert().


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/09/09 15:15:16

Modified files:
	devel/llvm     : Makefile 
	devel/llvm/pkg : PFRAG.no-powerpc-main 

Log message:
Sort PLIST

from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/09 15:36:14

Modified files:
	net/py-slixmpp : Makefile 
	textproc/py-humanize: Makefile 
	www/tootstream : Makefile 

Log message:
Changing these ports MAINTAINER to my openbsd.org address


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/09 17:28:42

Modified files:
	sys/scsi       : st.c 

Log message:
SET/CLR/ISSET all at once for the far less numerous link->flags.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/09 17:35:08

Modified files:
	sysutils/diffoscope: Makefile distinfo 
	sysutils/diffoscope/patches: patch-tests_utils_tools_py 

Log message:
Update to diffoscope-123


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/10 01:03:16

Modified files:
	usr.sbin/smtpd : lka_report.c 

Log message:
simplify lka reporting functions by moving the reqid inside the broadcast
function: reqid is a mandatory part of the header. lka reporting functions
now only append their own specific parameters.

ok martijn@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/10 01:39:39

Modified files:
	sys/dev        : audio.c 

Log message:
If the requensted block size is too large, then use half the
buffer size instead of failing. Problem found and fix tested
by Joe Davis <me at jo.ie>, thanks!


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/10 01:49:15

Modified files:
	sys/dev/pci    : azalia.c 

Log message:
Prevents the block size from exceeding the requested one when a huge
block size is requested. This avoids exceeding half the buffer size.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/10 01:50:33

Modified files:
	usr.bin/tmux   : cmd-parse.y cmd-queue.c format.c key-bindings.c 
	                 window-copy.c 

Log message:
Set up format tree for %if, GitHub issue 1896.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/09/10 05:21:24

Modified files:
	comms/xastir   : Makefile 
Added files:
	comms/xastir/patches: patch-src_gps_c 

Log message:
Stop passing a timezone param to settimeofday(2)

Historical, and useless in this port since timezone information is
always zero.  xastir is the only user of the timezone argument that
I could spot.  ok cheloha@ abieber@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/09/10 06:08:26

Modified files:
	usr.sbin/smtpd : smtp_client.c 

Log message:
immediatly close the connection if the cert is not valid, rather than
ending the smtp session.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 06:58:55

Modified files:
	sys/scsi       : st.c 

Log message:
SET/CLR/ISSET all at once for st->quirks, and a few other rare flags.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/09/10 07:19:25

Modified files:
	net/dnscrypt-proxy: Makefile distinfo 
	net/dnscrypt-proxy/patches: 
	                            patch-dnscrypt-proxy_example-dnscrypt-proxy_toml 

Log message:
Update to dnscrypt-proxy-2.0.27.

Changelog can be found at
https://github.com/jedisct1/dnscrypt-proxy/blob/2.0.27/ChangeLog.

From Nam Nguyen <namn AT berkeley DOT edu> (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/10 07:50:33

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
	devel/quirks/pkg: PLIST 

Log message:
Add a quirk to avoid collisions after switching ghc to @define-tag/@tag.

From espie@, who is currently afk.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/10 07:51:31

Modified files:
	lang/ghc       : Makefile ghc.port.mk 
	lang/ghc/pkg   : PLIST 
	archivers/hs-zip-archive: Makefile 
	archivers/hs-zip-archive/pkg: PLIST 
	archivers/hs-zlib: Makefile 
	archivers/hs-zlib/pkg: PLIST 
	audio/hs-libmpd: Makefile 
	audio/hs-libmpd/pkg: PLIST 
	databases/hs-HDBC: Makefile 
	databases/hs-HDBC/pkg: PLIST 
	databases/hs-HDBC-sqlite3: Makefile 
	databases/hs-HDBC-sqlite3/pkg: PLIST 
	devel/cpphs    : Makefile 
	devel/cpphs/pkg: PLIST-lib 
	devel/hs-ConfigFile: Makefile 
	devel/hs-ConfigFile/pkg: PLIST 
	devel/hs-FindBin: Makefile 
	devel/hs-FindBin/pkg: PLIST 
	devel/hs-HUnit : Makefile 
	devel/hs-HUnit/pkg: PLIST 
	devel/hs-MissingH: Makefile 
	devel/hs-MissingH/pkg: PLIST 
	devel/hs-QuickCheck: Makefile 
	devel/hs-QuickCheck/pkg: PLIST 
	devel/hs-ansi-terminal: Makefile 
	devel/hs-ansi-terminal/pkg: PLIST 
	devel/hs-ansi-wl-pprint: Makefile 
	devel/hs-ansi-wl-pprint/pkg: PLIST 
	devel/hs-async : Makefile 
	devel/hs-async/pkg: PLIST 
	devel/hs-base16-bytestring: Makefile 
	devel/hs-base16-bytestring/pkg: PLIST 
	devel/hs-base64-bytestring: Makefile 
	devel/hs-base64-bytestring/pkg: PLIST 
	devel/hs-cereal: Makefile 
	devel/hs-cereal/pkg: PLIST 
	devel/hs-cmdargs: Makefile 
	devel/hs-cmdargs/pkg: PLIST 
	devel/hs-conduit: Makefile 
	devel/hs-conduit/pkg: PLIST 
	devel/hs-constraints: Makefile 
	devel/hs-constraints/pkg: PLIST 
	devel/hs-convertible: Makefile 
	devel/hs-convertible/pkg: PLIST 
	devel/hs-data-default: Makefile 
	devel/hs-data-default/pkg: PLIST 
	devel/hs-data-ordlist: Makefile 
	devel/hs-data-ordlist/pkg: PLIST 
	devel/hs-dlist : Makefile 
	devel/hs-dlist/pkg: PLIST 
	devel/hs-echo  : Makefile 
	devel/hs-echo/pkg: PLIST 
	devel/hs-edit-distance: Makefile 
	devel/hs-edit-distance/pkg: PLIST 
	devel/hs-enclosed-exceptions: Makefile 
	devel/hs-enclosed-exceptions/pkg: PLIST 
	devel/hs-exceptions: Makefile 
	devel/hs-exceptions/pkg: PLIST 
	devel/hs-extensible-exceptions: Makefile 
	devel/hs-extensible-exceptions/pkg: PLIST 
	devel/hs-fgl   : Makefile 
	devel/hs-fgl/pkg: PLIST 
	devel/hs-hashable: Makefile 
	devel/hs-hashable/pkg: PLIST 
	devel/hs-hinotify: Makefile 
	devel/hs-hinotify/pkg: PLIST 
	devel/hs-hslogger: Makefile 
	devel/hs-hslogger/pkg: PLIST 
	devel/hs-lifted-async: Makefile 
	devel/hs-lifted-async/pkg: PLIST 
	devel/hs-lifted-base: Makefile 
	devel/hs-lifted-base/pkg: PLIST 
	devel/hs-mmap  : Makefile 
	devel/hs-mmap/pkg: PLIST 
	devel/hs-mmorph: Makefile 
	devel/hs-mmorph/pkg: PLIST 
	devel/hs-monad-control: Makefile 
	devel/hs-monad-control/pkg: PLIST 
	devel/hs-mtl   : Makefile 
	devel/hs-mtl/pkg: PLIST 
	devel/hs-nats  : Makefile 
	devel/hs-nats/pkg: PLIST 
	devel/hs-network: Makefile 
	devel/hs-network/pkg: PLIST 
	devel/hs-network-uri: Makefile 
	devel/hs-network-uri/pkg: PLIST 
	devel/hs-old-locale: Makefile 
	devel/hs-old-locale/pkg: PLIST 
	devel/hs-old-time: Makefile 
	devel/hs-old-time/pkg: PLIST 
	devel/hs-parsec: Makefile 
	devel/hs-parsec/pkg: PLIST 
	devel/hs-primitive: Makefile 
	devel/hs-primitive/pkg: PLIST 
	devel/hs-random: Makefile 
	devel/hs-random/pkg: PLIST 
	devel/hs-regex-applicative: Makefile 
	devel/hs-regex-applicative/pkg: PLIST 
	devel/hs-regex-base: Makefile 
	devel/hs-regex-base/pkg: PLIST 
	devel/hs-regex-compat: Makefile 
	devel/hs-regex-compat/pkg: PLIST 
	devel/hs-regex-compat-tdfa: Makefile 
	devel/hs-regex-compat-tdfa/pkg: PLIST 
	devel/hs-regex-posix: Makefile 
	devel/hs-regex-posix/pkg: PLIST 
	devel/hs-regex-tdfa: Makefile 
	devel/hs-regex-tdfa/pkg: PLIST 
	devel/hs-resourcet: Makefile 
	devel/hs-resourcet/pkg: PLIST 
	devel/hs-sandi : Makefile 
	devel/hs-sandi/pkg: PLIST 
	devel/hs-scientific: Makefile 
	devel/hs-scientific/pkg: PLIST 
	devel/hs-semigroups: Makefile 
	devel/hs-semigroups/pkg: PLIST 
	devel/hs-shelly: Makefile 
	devel/hs-shelly/pkg: PLIST 
	devel/hs-split : Makefile 
	devel/hs-split/pkg: PLIST 
	devel/hs-stm   : Makefile 
	devel/hs-stm/pkg: PLIST 
	devel/hs-syb   : Makefile 
	devel/hs-syb/pkg: PLIST 
	devel/hs-system-fileio: Makefile 
	devel/hs-system-fileio/pkg: PLIST 
	devel/hs-system-filepath: Makefile 
	devel/hs-system-filepath/pkg: PLIST 
	devel/hs-tagged: Makefile 
	devel/hs-tagged/pkg: PLIST 
	devel/hs-tar   : Makefile 
	devel/hs-tar/pkg: PLIST 
	devel/hs-temporary: Makefile 
	devel/hs-temporary/pkg: PLIST 
	devel/hs-test-framework: Makefile 
	devel/hs-test-framework/pkg: PLIST 
	devel/hs-test-framework-hunit: Makefile 
	devel/hs-test-framework-hunit/pkg: PLIST 
	devel/hs-test-framework-quickcheck2: Makefile 
	devel/hs-test-framework-quickcheck2/pkg: PLIST 
	devel/hs-text  : Makefile 
	devel/hs-text/pkg: PLIST 
	devel/hs-tf-random: Makefile 
	devel/hs-tf-random/pkg: PLIST 
	devel/hs-transformers-base: Makefile 
	devel/hs-transformers-base/pkg: PLIST 
	devel/hs-transformers-compat: Makefile 
	devel/hs-transformers-compat/pkg: PLIST 
	devel/hs-unix-compat: Makefile 
	devel/hs-unix-compat/pkg: PLIST 
	devel/hs-utf8-string: Makefile 
	devel/hs-utf8-string/pkg: PLIST 
	devel/hs-vector: Makefile 
	devel/hs-vector/pkg: PLIST 
	devel/hs-void  : Makefile 
	devel/hs-void/pkg: PLIST 
	devel/shellcheck: Makefile 
	devel/shellcheck/pkg: PLIST-lib 
	graphics/hs-colour: Makefile 
	graphics/hs-colour/pkg: PLIST 
	graphics/hs-graphviz: Makefile 
	graphics/hs-graphviz/pkg: PLIST 
	net/hs-HTTP    : Makefile 
	net/hs-HTTP/pkg: PLIST 
	net/hs-hostname: Makefile 
	net/hs-hostname/pkg: PLIST 
	security/hs-SHA: Makefile 
	security/hs-SHA/pkg: PLIST 
	security/hs-crypto-api: Makefile 
	security/hs-crypto-api/pkg: PLIST 
	security/hs-cryptohash: Makefile 
	security/hs-cryptohash/pkg: PLIST 
	security/hs-cryptohash-sha256: Makefile 
	security/hs-cryptohash-sha256/pkg: PLIST 
	security/hs-digest: Makefile 
	security/hs-digest/pkg: PLIST 
	security/hs-ed25519: Makefile 
	security/hs-ed25519/pkg: PLIST 
	security/hs-entropy: Makefile 
	security/hs-entropy/pkg: PLIST 
	security/hs-hackage-security: Makefile 
	security/hs-hackage-security/pkg: PLIST 
	textproc/hs-HaXml: Makefile 
	textproc/hs-HaXml/pkg: PLIST 
	textproc/hs-attoparsec: Makefile 
	textproc/hs-attoparsec/pkg: PLIST 
	textproc/hs-bytestring-show: Makefile 
	textproc/hs-bytestring-show/pkg: PLIST 
	textproc/hs-json: Makefile 
	textproc/hs-json/pkg: PLIST 
	textproc/hs-libxml-sax: Makefile 
	textproc/hs-libxml-sax/pkg: PLIST 
	textproc/hs-polyparse: Makefile 
	textproc/hs-polyparse/pkg: PLIST 
	textproc/hs-stringsearch: Makefile 
	textproc/hs-stringsearch/pkg: PLIST 
	textproc/hs-wl-pprint-text: Makefile 
	textproc/hs-wl-pprint-text/pkg: PLIST 
	textproc/hs-xml: Makefile 
	textproc/hs-xml/pkg: PLIST 
	textproc/hs-xml-types: Makefile 
	textproc/hs-xml-types/pkg: PLIST 
	www/hs-html    : Makefile 
	www/hs-html/pkg: PLIST 
	x11/hs-X11     : Makefile 
	x11/hs-X11/pkg : PLIST 
	x11/hs-X11-xft : Makefile 
	x11/hs-X11-xft/pkg: PLIST 
	x11/hs-dbus    : Makefile 
	x11/hs-dbus/pkg: PLIST 
	x11/hs-xmonad-contrib: Makefile 
	x11/hs-xmonad-contrib/pkg: PLIST 
	x11/xmonad     : Makefile 
	x11/xmonad/pkg : PLIST-lib 

Log message:
Switch ghc and hs-ports from @exec/@unexec to @define-tag/@tag.

ghc and the hs-packages now simply include the necessary (haskell)
package description files in lib/ghc/package.conf.d and update the
package.cache by running ghc-pkg recache at the end. register and
unregister scripts are no longer needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/10 07:52:42

Modified files:
	print/poppler  : Makefile distinfo 
	print/poppler/patches: patch-poppler_Form_cc 
	print/poppler/pkg: PLIST-main 

Log message:
Update to poppler-0.80.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/10 08:04:25

Modified files:
	lang/lucee     : Makefile distinfo 

Log message:
update to lucee-5.3.3.62


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/10 08:09:17

Modified files:
	math/coq       : Makefile 

Log message:
BUILD_DEPENDS on bash


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 08:16:36

Modified files:
	sys/scsi       : st.c 

Log message:
!ISSET() for various flags.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/10 08:35:32

Modified files:
	usr.bin/ldap   : aldap.c 
	usr.sbin/ypldap: aldap.c 

Log message:
During libutil/ber.c r1.12 I made sure that every element that's requested
by ber_scanf_elements must exist.

aldap.c apparently abused the old behaviour by always trying to retrieve
the referral element, which according to RFC4511 section 4.1.9 is optional.

This diff only requests the referral element if we get a referral response.

OK rob@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 09:44:43

Modified files:
	sys/scsi       : st.c 

Log message:
Last (?) small bit twiddling modernization.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 10:08:43

Modified files:
	sys/scsi       : st.c 

Log message:
check pointer against NULL and error values against 0.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 10:55:42

Modified files:
	sys/scsi       : st.c 

Log message:
Some stray bit twiddles that were using yet another idiom.


CVSROOT:	/cvs
Module name:	src
Changes by:	millert@cvs.openbsd.org	2019/09/10 12:20:07

Modified files:
	usr.bin/locate/locate: updatedb.sh 

Log message:
Skip fcodes parent dir permission check if writing to stdout.
Fixes building the locate db from /etc/weekly.
OK semarie@ kn@ kmos@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/10 12:35:17

Modified files:
	regress/usr.sbin/syslogd: args-selector-syslog.pl 

Log message:
Fix race in syslogd test.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 12:45:45

Modified files:
	sys/scsi       : st.c 

Log message:
Explicitly check error results against 0.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/10 13:01:24

Modified files:
	regress/usr.bin/lastcomm: LICENSE Makefile crash.c 
Added files:
	regress/usr.bin/lastcomm: pivot.h stackmap.c 

Log message:
Test that lastcomm(1) shows M flag if the stack pointer was not in
stack memory.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 13:04:36

Modified files:
	sys/scsi       : st.c 

Log message:
return is not a funciton call. Avoid pointless parenthesis.


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/09/10 13:09:14

Modified files:
	proto/xorgproto/include/X11/extensions: randrproto.h 

Log message:
MFC: randrproto: Fix missing #undef RRLease

fixes build with gcc3. Problem noticed and fix confirmed by aoyama@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/09/10 13:14:03

Modified files:
	lib/fontconfig/src: shlib_version 
	lib/libXft     : Makefile.bsd-wrapper 
	lib/libXfont2  : Makefile.bsd-wrapper 
	lib/freetype   : CMakeLists.txt ChangeLog ChangeLog.20 
	                 ChangeLog.21 ChangeLog.22 ChangeLog.23 
	                 ChangeLog.24 ChangeLog.25 ChangeLog.26 
	                 ChangeLog.27 ChangeLog.28 Jamfile Jamrules 
	                 Makefile README README.git autogen.sh 
	                 modules.cfg shlib_version vms_make.com 
	lib/freetype/builds: detect.mk exports.mk freetype.mk 
	                     link_dos.mk link_std.mk modules.mk 
	                     toplevel.mk 
	lib/freetype/builds/amiga: README makefile makefile.os4 
	                           smakefile 
	lib/freetype/builds/amiga/include/config: ftconfig.h ftmodule.h 
	lib/freetype/builds/amiga/src/base: ftdebug.c ftsystem.c 
	lib/freetype/builds/ansi: ansi-def.mk ansi.mk 
	lib/freetype/builds/beos: beos-def.mk beos.mk detect.mk 
	lib/freetype/builds/cmake: iOS.cmake testbuild.sh 
	lib/freetype/builds/compiler: ansi-cc.mk bcc-dev.mk bcc.mk 
	                              emx.mk gcc-dev.mk gcc.mk intelc.mk 
	                              unix-lcc.mk visualage.mk 
	                              visualc.mk watcom.mk win-lcc.mk 
	lib/freetype/builds/dos: detect.mk dos-def.mk dos-emx.mk 
	                         dos-gcc.mk dos-wat.mk 
	lib/freetype/builds/mac: README freetype-Info.plist ftmac.c 
	lib/freetype/builds/os2: detect.mk os2-def.mk os2-dev.mk 
	                         os2-gcc.mk 
	lib/freetype/builds/symbian: bld.inf freetype.mmp 
	lib/freetype/builds/unix: configure.ac configure.raw detect.mk 
	                          freetype-config.in freetype2.m4 
	                          ft-munmap.m4 ftconfig.h ftconfig.in 
	                          ftsystem.c install.mk unix-cc.in 
	                          unix-def.in unix-dev.mk unix-lcc.mk 
	                          unix.mk unixddef.mk 
	lib/freetype/builds/vms: ftconfig.h ftsystem.c 
	lib/freetype/builds/wince: ftdebug.c 
	lib/freetype/builds/wince/vc2005-ce: freetype.vcproj index.html 
	lib/freetype/builds/wince/vc2008-ce: freetype.vcproj index.html 
	lib/freetype/builds/windows: detect.mk ftdebug.c w32-bcc.mk 
	                             w32-bccd.mk w32-dev.mk w32-gcc.mk 
	                             w32-icc.mk w32-intl.mk w32-lcc.mk 
	                             w32-mingw32.mk w32-vcc.mk 
	                             w32-wat.mk win32-def.mk 
	lib/freetype/builds/windows/vc2010: freetype.vcxproj 
	                                    freetype.vcxproj.filters 
	                                    index.html 
	lib/freetype/builds/windows/visualc: freetype.dsp freetype.sln 
	                                     freetype.vcproj index.html 
	lib/freetype/builds/windows/visualce: freetype.dsp 
	                                      freetype.vcproj index.html 
	lib/freetype/devel: ft2build.h ftoption.h 
	lib/freetype/docs: CHANGES CUSTOMIZE DEBUG INSTALL.ANY 
	                   INSTALL.CROSS INSTALL.GNU INSTALL.UNIX 
	                   INSTALL.VMS MAKEPP TODO VERSIONS.TXT 
	                   documentation.html formats.txt 
	                   freetype-config.1 ft2faq.html raster.txt 
	                   release 
	lib/freetype/docs/design: design-2.html design-3.html 
	                          design-4.html design-5.html 
	lib/freetype/docs/glyphs: glyphs-6.html glyphs-7.html 
	lib/freetype/docs/tutorial: example4.cpp example4.pro 
	                            example5.cpp example5.svg step1.html 
	                            step2.html step3.html 
	lib/freetype/include: ft2build.h 
	lib/freetype/include/freetype: Makefile freetype.h ftadvanc.h 
	                               ftbbox.h ftbdf.h ftbitmap.h 
	                               ftbzip2.h ftcache.h ftchapters.h 
	                               ftcid.h ftdriver.h fterrdef.h 
	                               fterrors.h ftfntfmt.h ftgasp.h 
	                               ftglyph.h ftgxval.h ftgzip.h 
	                               ftimage.h ftincrem.h ftlcdfil.h 
	                               ftlist.h ftlzw.h ftmac.h ftmm.h 
	                               ftmodapi.h ftmoderr.h ftotval.h 
	                               ftoutln.h ftparams.h ftpfr.h 
	                               ftrender.h ftsizes.h ftsnames.h 
	                               ftstroke.h ftsynth.h ftsystem.h 
	                               fttrigon.h fttypes.h ftwinfnt.h 
	                               t1tables.h ttnameid.h tttables.h 
	                               tttags.h 
	lib/freetype/include/freetype/config: ftconfig.h ftheader.h 
	                                      ftmodule.h ftoption.h 
	                                      ftstdlib.h 
	lib/freetype/include/freetype/internal: autohint.h cffotypes.h 
	                                        cfftypes.h ftcalc.h 
	                                        ftdebug.h ftdrv.h 
	                                        ftgloadr.h fthash.h 
	                                        ftmemory.h ftobjs.h 
	                                        ftpsprop.h ftrfork.h 
	                                        ftserv.h ftstream.h 
	                                        fttrace.h ftvalid.h 
	                                        internal.h psaux.h 
	                                        pshints.h sfnt.h 
	                                        t1types.h tttypes.h 
	lib/freetype/include/freetype/internal/services: svbdf.h 
	                                                 svcfftl.h 
	                                                 svcid.h 
	                                                 svfntfmt.h 
	                                                 svgldict.h 
	                                                 svgxval.h 
	                                                 svkern.h 
	                                                 svmetric.h 
	                                                 svmm.h 
	                                                 svotval.h 
	                                                 svpfr.h 
	                                                 svpostnm.h 
	                                                 svprop.h 
	                                                 svpscmap.h 
	                                                 svpsinfo.h 
	                                                 svsfnt.h 
	                                                 svttcmap.h 
	                                                 svtteng.h 
	                                                 svttglyf.h 
	                                                 svwinfnt.h 
	lib/freetype/src: Jamfile 
	lib/freetype/src/autofit: Jamfile afangles.c afangles.h afblue.c 
	                          afblue.cin afblue.dat afblue.h 
	                          afblue.hin afcjk.c afcjk.h afcover.h 
	                          afdummy.c afdummy.h aferrors.h 
	                          afglobal.c afglobal.h afhints.c 
	                          afhints.h afindic.c afindic.h 
	                          aflatin.c aflatin.h aflatin2.c 
	                          aflatin2.h afloader.c afloader.h 
	                          afmodule.c afmodule.h afranges.c 
	                          afranges.h afscript.h afshaper.c 
	                          afshaper.h afstyles.h aftypes.h 
	                          afwarp.c afwarp.h afwrtsys.h autofit.c 
	                          module.mk rules.mk 
	lib/freetype/src/base: Jamfile ftadvanc.c ftbase.c ftbase.h 
	                       ftbbox.c ftbdf.c ftbitmap.c ftcalc.c 
	                       ftcid.c ftdbgmem.c ftdebug.c ftfntfmt.c 
	                       ftfstype.c ftgasp.c ftgloadr.c ftglyph.c 
	                       ftgxval.c fthash.c ftinit.c ftlcdfil.c 
	                       ftmac.c ftmm.c ftobjs.c ftotval.c 
	                       ftoutln.c ftpatent.c ftpfr.c ftpsprop.c 
	                       ftrfork.c ftsnames.c ftstream.c 
	                       ftstroke.c ftsynth.c ftsystem.c 
	                       fttrigon.c fttype1.c ftutil.c ftwinfnt.c 
	                       rules.mk 
	lib/freetype/src/bdf: Jamfile bdf.h bdfdrivr.c bdfdrivr.h 
	                      bdferror.h bdflib.c 
	lib/freetype/src/bzip2: Jamfile ftbzip2.c rules.mk 
	lib/freetype/src/cache: Jamfile ftcache.c ftcbasic.c ftccache.c 
	                        ftccache.h ftccback.h ftccmap.c 
	                        ftcerror.h ftcglyph.c ftcglyph.h 
	                        ftcimage.c ftcimage.h ftcmanag.c 
	                        ftcmanag.h ftcmru.c ftcmru.h ftcsbits.c 
	                        ftcsbits.h rules.mk 
	lib/freetype/src/cff: Jamfile cff.c cffcmap.c cffcmap.h 
	                      cffdrivr.c cffdrivr.h cfferrs.h cffgload.c 
	                      cffgload.h cffload.c cffload.h cffobjs.c 
	                      cffobjs.h cffparse.c cffparse.h cfftoken.h 
	                      module.mk rules.mk 
	lib/freetype/src/cid: Jamfile ciderrs.h cidgload.c cidgload.h 
	                      cidload.c cidload.h cidobjs.c cidobjs.h 
	                      cidparse.c cidparse.h cidriver.c 
	                      cidriver.h cidtoken.h module.mk rules.mk 
	                      type1cid.c 
	lib/freetype/src/gxvalid: Jamfile README gxvalid.c gxvalid.h 
	                          gxvbsln.c gxvcommn.c gxvcommn.h 
	                          gxverror.h gxvfeat.c gxvfeat.h 
	                          gxvfgen.c gxvjust.c gxvkern.c 
	                          gxvlcar.c gxvmod.c gxvmod.h gxvmort.c 
	                          gxvmort.h gxvmort0.c gxvmort1.c 
	                          gxvmort2.c gxvmort4.c gxvmort5.c 
	                          gxvmorx.c gxvmorx.h gxvmorx0.c 
	                          gxvmorx1.c gxvmorx2.c gxvmorx4.c 
	                          gxvmorx5.c gxvopbd.c gxvprop.c 
	                          gxvtrak.c module.mk rules.mk 
	lib/freetype/src/gzip: Jamfile ftgzip.c infblock.c infcodes.c 
	                       inflate.c rules.mk 
	lib/freetype/src/lzw: Jamfile ftlzw.c ftzopen.c ftzopen.h 
	                      rules.mk 
	lib/freetype/src/otvalid: Jamfile module.mk otvalid.c otvalid.h 
	                          otvbase.c otvcommn.c otvcommn.h 
	                          otverror.h otvgdef.c otvgpos.c 
	                          otvgpos.h otvgsub.c otvjstf.c 
	                          otvmath.c otvmod.c otvmod.h rules.mk 
	lib/freetype/src/pcf: Jamfile pcf.h pcfdrivr.c pcfdrivr.h 
	                      pcferror.h pcfread.c pcfutil.c 
	lib/freetype/src/pfr: Jamfile module.mk pfr.c pfrcmap.c 
	                      pfrcmap.h pfrdrivr.c pfrdrivr.h pfrerror.h 
	                      pfrgload.c pfrgload.h pfrload.c pfrload.h 
	                      pfrobjs.c pfrobjs.h pfrsbit.c pfrsbit.h 
	                      pfrtypes.h rules.mk 
	lib/freetype/src/psaux: Jamfile afmparse.c afmparse.h 
	                        cffdecode.c cffdecode.h module.mk 
	                        psarrst.c psarrst.h psaux.c psauxerr.h 
	                        psauxmod.c psauxmod.h psblues.c 
	                        psblues.h psconv.c psconv.h pserror.c 
	                        pserror.h psfixed.h psfont.c psfont.h 
	                        psft.c psft.h psglue.h pshints.c 
	                        pshints.h psintrp.c psintrp.h psobjs.c 
	                        psobjs.h psread.c psread.h psstack.c 
	                        psstack.h pstypes.h rules.mk t1cmap.c 
	                        t1cmap.h t1decode.c t1decode.h 
	lib/freetype/src/pshinter: Jamfile module.mk pshalgo.c pshalgo.h 
	                           pshglob.c pshglob.h pshinter.c 
	                           pshmod.c pshmod.h pshnterr.h pshrec.c 
	                           pshrec.h rules.mk 
	lib/freetype/src/psnames: Jamfile module.mk psmodule.c 
	                          psmodule.h psnamerr.h psnames.c 
	                          pstables.h rules.mk 
	lib/freetype/src/raster: Jamfile ftmisc.h ftraster.c ftraster.h 
	                         ftrend1.c ftrend1.h module.mk raster.c 
	                         rasterrs.h rules.mk 
	lib/freetype/src/sfnt: Jamfile module.mk pngshim.c pngshim.h 
	                       rules.mk sfdriver.c sfdriver.h sferrors.h 
	                       sfnt.c sfobjs.c sfobjs.h ttbdf.c ttbdf.h 
	                       ttcmap.c ttcmap.h ttcmapc.h ttkern.c 
	                       ttkern.h ttload.c ttload.h ttmtx.c 
	                       ttmtx.h ttpost.c ttpost.h ttsbit.c 
	                       ttsbit.h 
	lib/freetype/src/smooth: Jamfile ftgrays.c ftgrays.h ftsmerrs.h 
	                         ftsmooth.c ftsmooth.h module.mk 
	                         rules.mk smooth.c 
	lib/freetype/src/tools: afblue.pl apinames.c glnames.py 
	                        update-copyright-year 
	lib/freetype/src/truetype: Jamfile module.mk rules.mk truetype.c 
	                           ttdriver.c ttdriver.h tterrors.h 
	                           ttgload.c ttgload.h ttgxvar.c 
	                           ttgxvar.h ttinterp.c ttinterp.h 
	                           ttobjs.c ttobjs.h ttpload.c ttpload.h 
	                           ttsubpix.c ttsubpix.h 
	lib/freetype/src/type1: Jamfile module.mk rules.mk t1afm.c 
	                        t1afm.h t1driver.c t1driver.h t1errors.h 
	                        t1gload.c t1gload.h t1load.c t1load.h 
	                        t1objs.c t1objs.h t1parse.c t1parse.h 
	                        t1tokens.h type1.c 
	lib/freetype/src/type42: Jamfile module.mk rules.mk t42drivr.c 
	                         t42drivr.h t42error.h t42objs.c 
	                         t42objs.h t42parse.c t42parse.h 
	                         t42types.h type42.c 
	lib/freetype/src/winfonts: Jamfile fnterrs.h module.mk rules.mk 
	                           winfnt.c winfnt.h 
Added files:
	lib/freetype   : ChangeLog.29 Symbols.map 
	lib/freetype/builds/vms: vmslib.dat 
	lib/freetype/docs: DOCGUIDE 
	lib/freetype/include/freetype: ftcolor.h 
	lib/freetype/include/freetype/internal: wofftypes.h 
	lib/freetype/src/base: ftcolor.c fterrors.c 
	lib/freetype/src/sfnt: sfwoff.c sfwoff.h ttcolr.c ttcolr.h 
	                       ttcpal.c ttcpal.h 
Removed files:
	lib/freetype/builds/windows/vc2005: freetype.sln freetype.vcproj 
	                                    index.html 
	lib/freetype/builds/windows/vc2008: freetype.sln freetype.vcproj 
	                                    index.html 
	lib/freetype/docs/reference: README ft2-auto_hinter.html 
	                             ft2-base_interface.html 
	                             ft2-basic_types.html 
	                             ft2-bdf_fonts.html 
	                             ft2-bitmap_handling.html 
	                             ft2-bzip2.html 
	                             ft2-cache_subsystem.html 
	                             ft2-cff_driver.html 
	                             ft2-cid_fonts.html 
	                             ft2-computations.html 
	                             ft2-error_code_values.html 
	                             ft2-error_enumerations.html 
	                             ft2-font_formats.html 
	                             ft2-gasp_table.html 
	                             ft2-glyph_management.html 
	                             ft2-glyph_stroker.html 
	                             ft2-glyph_variants.html 
	                             ft2-gx_validation.html 
	                             ft2-gzip.html 
	                             ft2-header_file_macros.html 
	                             ft2-header_inclusion.html 
	                             ft2-incremental.html ft2-index.html 
	                             ft2-lcd_filtering.html 
	                             ft2-list_processing.html 
	                             ft2-lzw.html ft2-mac_specific.html 
	                             ft2-module_management.html 
	                             ft2-multiple_masters.html 
	                             ft2-ot_validation.html 
	                             ft2-outline_processing.html 
	                             ft2-parameter_tags.html 
	                             ft2-pcf_driver.html 
	                             ft2-pfr_fonts.html 
	                             ft2-properties.html 
	                             ft2-quick_advance.html 
	                             ft2-raster.html ft2-sfnt_names.html 
	                             ft2-sizes_management.html 
	                             ft2-system_interface.html 
	                             ft2-t1_cid_driver.html ft2-toc.html 
	                             ft2-truetype_engine.html 
	                             ft2-truetype_tables.html 
	                             ft2-tt_driver.html 
	                             ft2-type1_tables.html 
	                             ft2-user_allocation.html 
	                             ft2-version.html 
	                             ft2-winfnt_fonts.html 
	lib/freetype/src/autofit: afpic.c afpic.h 
	lib/freetype/src/base: basepic.c basepic.h ftapi.c ftpic.c 
	lib/freetype/src/cff: cffpic.c cffpic.h 
	lib/freetype/src/pshinter: pshpic.c pshpic.h 
	lib/freetype/src/psnames: pspic.c pspic.h 
	lib/freetype/src/raster: rastpic.c rastpic.h 
	lib/freetype/src/sfnt: sfntpic.c sfntpic.h 
	lib/freetype/src/smooth: ftspic.c ftspic.h 
	lib/freetype/src/tools/docmaker: content.py docbeauty.py 
	                                 docmaker.py formatter.py 
	                                 sources.py tohtml.py utils.py 
	lib/freetype/src/tools/ftfuzzer: README ftfuzzer.cc ftmutator.cc 
	                                 rasterfuzzer.cc runinput.cc 
	lib/freetype/src/truetype: ttpic.c ttpic.h 

Log message:
Update to freetype 2.10.1. Tested by semarie@ and naddy@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/09/10 13:14:52

Modified files:
	distrib/sets/lists/xbase: mi 
	distrib/sets/lists/xshare: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/09/10 13:17:29

Modified files:
	.              : MODULES 3RDPARTY 

Log message:
update


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/10 13:30:12

Modified files:
	usr.sbin/smtpd : lka_filter.c 

Log message:
do not use tree_xget() between filters resume as a session may legitimately
go away due to a disconnection before a filter responds.

diff from martijn@, committing on his behalf


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/10 13:35:35

Modified files:
	usr.bin/tmux   : window.c 

Log message:
Make client exit if pane where input is going is closed.


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/09/10 13:36:12

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
Do not decrement the number of VMs counter twice in one of vm_create()
error paths. If creation of the first VM fails, the counter will wrap
around to a huge value. The same value could later be passed to malloc()
through vm_get_info() causing a panic.

While here, only decrement the same counter in vm_teardown() if the VM
has a valid ID. Otherwise it has not been accounted for.

ok mlarkin@

Reported-by: syzbot+d325bc014d9eca9f36d0@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/10 13:44:32

Modified files:
	lib/libcrypto/man: EVP_PKEY_CTX_ctrl.3 

Log message:
document EVP_PKEY_CTX_get_signature_md(3);
jsing@ provided it in evp.h rev. 1.77


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/10 13:58:13

Modified files:
	regress/usr.sbin/syslogd: LICENSE Syslogd.pm 
	                          args-client-tcp-error.pl 

Log message:
Fix more races in syslogd test.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/10 14:55:27

Removed files:
	lang/ghc/files : fixup-hs-plist 

Log message:
fixup-hs-plist is no longer needed.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/10 16:35:07

Modified files:
	regress/usr.sbin/syslogd: Makefile RSyslogd.pm funcs.pl 

Log message:
If rsyslogd is not installed, explicitly skip these syslogd
compatibility tests.  Fix some races and increase the timeout for
rsyslog tests.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 16:39:13

Modified files:
	sys/scsi       : st.c 

Log message:
No need to check for ST_MOUNTED before calling st_mount_tape() AND in
st_mount_tape(). Just keep the latter.

st_mount_tape() is called from inside stopen() which has already found
the relevant st_softc(), incremented the device reference count, and
checked if it is dying. No need to repeast that in
st_mount_tape(). Just pass the st_softc.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/10 16:43:29

Modified files:
	lib/libexpat/lib: xmlparse.c 

Log message:
Fix heap overflow in libexpat 2.2.7 triggered by XML_GetCurrentLineNumber
(or XML_GetCurrentColumnNumber), and deny internal entities closing
the doctype; CVE-2019-15903
fixed in commit c20b758c332d9a13afbbb276d30db1d183a85d43
OK tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/10 17:07:46

Modified files:
	sys/scsi       : st.c 

Log message:
Shuffle a couple of lines to make the device -> st_softc dances look
the same.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/10 17:55:14

Modified files:
	security/openssl/1.0.2: Makefile distinfo 

Log message:
update to openssl-1.0.2t


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/10 17:55:24

Modified files:
	security/openssl/1.1: Makefile distinfo 
	security/openssl/1.1/patches: 
	                              patch-Configurations_unix-Makefile_tmpl 
	security/openssl/1.1/pkg: PLIST 

Log message:
update to openssl-1.1.1d


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/10 18:10:38

Modified files:
	www/sblg       : Makefile distinfo 

Log message:
update to sblg-0.5.6, from maintainer Bryan Vyhmeister


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/10 18:15:43

Modified files:
	mail/rss2email : Makefile distinfo 
	mail/rss2email/pkg: DESCR PLIST 
Added files:
	mail/rss2email/pkg: README 
Removed files:
	mail/rss2email/files: r2e 

Log message:
major update (rewrite) to rss2email 3.10, from Kaashif Hymabaccus (with
slight tweaks from me) who takes maintainer

N.B. config and feed db are not compatible with the previous version,
run "r2e list > ~/r2e.txt" and "r2e opmlexport > ~/r2e.opml" to keep plain
copies of these before updating, and follow pkg-readme after updating.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/09/10 18:19:57

Modified files:
	faq            : current.html 

Log message:
mention rss2email update - save plaintext feed list first


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/09/10 18:40:54

Modified files:
	plan9/plan9port: Makefile distinfo 
	plan9/plan9port/patches: patch-INSTALL 
	plan9/plan9port/pkg: PLIST 
Removed files:
	plan9/plan9port/patches: patch-bin_web 

Log message:
update to the latest github commit
e995a0c101863688d5f14649ae3de45a7c43789c

zap patch-bin_web merged upstream

patch from Patrick Marchand <pmarchand@evolix.ca>, thanks!
with some tweaks by me.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/09/10 19:37:57

Modified files:
	net/p5-Net-Frame-Layer-IPv6: Makefile distinfo 
	net/p5-Net-Frame-Layer-IPv6/pkg: PLIST 

Log message:
update to 1.08
OK afresh1@

from wen heping, thanks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/09/10 19:58:08

Modified files:
	net/p5-Net-Frame-Layer-ICMPv6: Makefile distinfo 

Log message:
update to 1.11
OK afresh1@

from wen heping


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/09/10 20:03:33

Modified files:
	net/p5-Net-Frame-Dump: Makefile distinfo 

Log message:
update to 1.17
OK afresh1@

from wen heping


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/09/10 20:14:08

Modified files:
	net/p5-Net-Frame-Layer-IPv6: Makefile 

Log message:
fix TEST_POD


CVSROOT:	/cvs
Module name:	ports
Changes by:	gsoares@cvs.openbsd.org	2019/09/10 20:18:52

Modified files:
	net/p5-Net-Frame: Makefile distinfo 
	net/p5-Net-Frame/pkg: PLIST 

Log message:
update to 1.21

from wen heping
with some tweaks


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/09/10 21:22:39

Modified files:
	devel/cppcheck : Makefile distinfo 
	devel/cppcheck/pkg: PLIST 

Log message:
update to cppcheck 1.89
tested by Hiltjo Posthuma ok gsoares@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/10 22:19:19

Modified files:
	usr.sbin/smtpd : ioev.h lka_report.c smtp_session.c smtpd.h 

Log message:
Sprinkle around some __attribute__((__format__ (printf(...))).

OK gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/11 00:43:17

Modified files:
	usr.bin/tmux   : format.c tmux.1 

Log message:
Add window_marked_flag, GitHub issue 1887.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/09/11 02:59:12

Modified files:
	sys/dev/pci    : if_iwn.c 

Log message:
Ignore empty Tx queue slots in iwn_tx_done(). Prevents a NULL dereference.
crash reported by mlarkin@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/11 03:05:53

Modified files:
	infrastructure/bin: update-plist 
	infrastructure/lib/OpenBSD: FS2.pm 

Log message:
add tag support for ghc


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/11 06:30:35

Modified files:
	sys/kern       : subr_extent.c 
	regress/sys/kern/extent: extest.awk extest.exp tests 

Log message:
Make it possible to free overlapping regions (effectively allowing
freeing parts of regions that are already free) when the EX_CONFLICTOK
flag is passed to extent_free.

ok jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/11 07:42:35

Modified files:
	plan9/plan9port: Makefile 
	plan9/plan9port/pkg: DESCR 

Log message:
Omit platform support bits in DESCR

As of ONLY_FOR_ARCHS we support more than x86;  as for the rest this list
is probably outdated/incomplete as well and generally providese little to
no information, so remove it.

OK gsoares


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/09/11 08:11:42

Log message:
    import unbound 1.9.3, thanks gonzalo@ dtucker@ for tests.
    
    Status:
    
    Vendor Tag:	NLNETLABS
    Release Tags:	UNBOUND_1_9_3
    
    U src/usr.sbin/unbound/ac_pkg_swig.m4
    U src/usr.sbin/unbound/config.guess
    C src/usr.sbin/unbound/config.h.in
    U src/usr.sbin/unbound/ax_pthread.m4
    U src/usr.sbin/unbound/acx_python.m4
    C src/usr.sbin/unbound/configure.ac
    U src/usr.sbin/unbound/acx_nlnetlabs.m4
    C src/usr.sbin/unbound/Makefile.in
    C src/usr.sbin/unbound/configure
    U src/usr.sbin/unbound/install-sh
    U src/usr.sbin/unbound/README.md
    U src/usr.sbin/unbound/LICENSE
    U src/usr.sbin/unbound/README
    U src/usr.sbin/unbound/systemd.m4
    U src/usr.sbin/unbound/config.sub
    U src/usr.sbin/unbound/aclocal.m4
    U src/usr.sbin/unbound/ltmain.sh
    U src/usr.sbin/unbound/validator/val_nsec.c
    U src/usr.sbin/unbound/validator/val_nsec3.h
    U src/usr.sbin/unbound/validator/validator.h
    U src/usr.sbin/unbound/validator/val_anchor.h
    U src/usr.sbin/unbound/validator/val_utils.c
    U src/usr.sbin/unbound/validator/validator.c
    U src/usr.sbin/unbound/validator/val_neg.h
    C src/usr.sbin/unbound/validator/autotrust.c
    U src/usr.sbin/unbound/validator/val_kentry.h
    U src/usr.sbin/unbound/validator/val_sigcrypt.c
    U src/usr.sbin/unbound/validator/val_kcache.h
    U src/usr.sbin/unbound/validator/val_nsec.h
    U src/usr.sbin/unbound/validator/val_anchor.c
    U src/usr.sbin/unbound/validator/val_utils.h
    U src/usr.sbin/unbound/validator/val_secalgo.c
    U src/usr.sbin/unbound/validator/val_kcache.c
    U src/usr.sbin/unbound/validator/val_secalgo.h
    U src/usr.sbin/unbound/validator/val_nsec3.c
    U src/usr.sbin/unbound/validator/val_neg.c
    U src/usr.sbin/unbound/validator/autotrust.h
    U src/usr.sbin/unbound/validator/val_kentry.c
    U src/usr.sbin/unbound/validator/val_sigcrypt.h
    C src/usr.sbin/unbound/services/modstack.c
    U src/usr.sbin/unbound/services/view.h
    U src/usr.sbin/unbound/services/localzone.c
    U src/usr.sbin/unbound/services/mesh.h
    U src/usr.sbin/unbound/services/listen_dnsport.c
    U src/usr.sbin/unbound/services/view.c
    U src/usr.sbin/unbound/services/listen_dnsport.h
    U src/usr.sbin/unbound/services/outside_network.c
    C src/usr.sbin/unbound/services/authzone.c
    U src/usr.sbin/unbound/services/modstack.h
    U src/usr.sbin/unbound/services/outbound_list.c
    U src/usr.sbin/unbound/services/outbound_list.h
    U src/usr.sbin/unbound/services/outside_network.h
    U src/usr.sbin/unbound/services/localzone.h
    C src/usr.sbin/unbound/services/mesh.c
    U src/usr.sbin/unbound/services/authzone.h
    U src/usr.sbin/unbound/services/cache/infra.h
    U src/usr.sbin/unbound/services/cache/dns.c
    U src/usr.sbin/unbound/services/cache/dns.h
    U src/usr.sbin/unbound/services/cache/rrset.c
    U src/usr.sbin/unbound/services/cache/infra.c
    U src/usr.sbin/unbound/services/cache/rrset.h
    U src/usr.sbin/unbound/iterator/iter_resptype.h
    U src/usr.sbin/unbound/iterator/iter_fwd.c
    U src/usr.sbin/unbound/iterator/iter_utils.c
    U src/usr.sbin/unbound/iterator/iterator.c
    U src/usr.sbin/unbound/iterator/iter_scrub.h
    U src/usr.sbin/unbound/iterator/iter_resptype.c
    U src/usr.sbin/unbound/iterator/iter_delegpt.c
    U src/usr.sbin/unbound/iterator/iter_fwd.h
    U src/usr.sbin/unbound/iterator/iter_hints.h
    U src/usr.sbin/unbound/iterator/iter_scrub.c
    U src/usr.sbin/unbound/iterator/iter_donotq.h
    U src/usr.sbin/unbound/iterator/iter_priv.c
    U src/usr.sbin/unbound/iterator/iter_hints.c
    U src/usr.sbin/unbound/iterator/iterator.h
    U src/usr.sbin/unbound/iterator/iter_priv.h
    U src/usr.sbin/unbound/iterator/iter_donotq.c
    U src/usr.sbin/unbound/iterator/iter_utils.h
    U src/usr.sbin/unbound/iterator/iter_delegpt.h
    U src/usr.sbin/unbound/doc/requirements.txt
    C src/usr.sbin/unbound/doc/unbound-checkconf.8.in
    U src/usr.sbin/unbound/doc/FEATURES
    C src/usr.sbin/unbound/doc/Changelog
    U src/usr.sbin/unbound/doc/README.tests
    C src/usr.sbin/unbound/doc/example.conf.in
    C src/usr.sbin/unbound/doc/libunbound.3.in
    C src/usr.sbin/unbound/doc/unbound.conf.5.in
    U src/usr.sbin/unbound/doc/README.DNS64
    U src/usr.sbin/unbound/doc/README.svn
    U src/usr.sbin/unbound/doc/control_proto_spec.txt
    U src/usr.sbin/unbound/doc/TODO
    C src/usr.sbin/unbound/doc/unbound-host.1.in
    C src/usr.sbin/unbound/doc/unbound.8.in
    C src/usr.sbin/unbound/doc/unbound-anchor.8.in
    U src/usr.sbin/unbound/doc/LICENSE
    C src/usr.sbin/unbound/doc/README
    U src/usr.sbin/unbound/doc/unbound.doxygen
    U src/usr.sbin/unbound/doc/CREDITS
    C src/usr.sbin/unbound/doc/unbound-control.8.in
    N src/usr.sbin/unbound/doc/README.ipset.md
    U src/usr.sbin/unbound/sldns/parseutil.h
    U src/usr.sbin/unbound/sldns/wire2str.h
    U src/usr.sbin/unbound/sldns/sbuffer.c
    U src/usr.sbin/unbound/sldns/parseutil.c
    U src/usr.sbin/unbound/sldns/keyraw.h
    U src/usr.sbin/unbound/sldns/sbuffer.h
    U src/usr.sbin/unbound/sldns/keyraw.c
    U src/usr.sbin/unbound/sldns/parse.h
    U src/usr.sbin/unbound/sldns/rrdef.h
    U src/usr.sbin/unbound/sldns/parse.c
    U src/usr.sbin/unbound/sldns/str2wire.h
    U src/usr.sbin/unbound/sldns/rrdef.c
    U src/usr.sbin/unbound/sldns/pkthdr.h
    U src/usr.sbin/unbound/sldns/wire2str.c
    C src/usr.sbin/unbound/sldns/str2wire.c
    U src/usr.sbin/unbound/edns-subnet/subnet-whitelist.c
    U src/usr.sbin/unbound/edns-subnet/subnetmod.c
    U src/usr.sbin/unbound/edns-subnet/subnetmod.h
    U src/usr.sbin/unbound/edns-subnet/addrtree.h
    U src/usr.sbin/unbound/edns-subnet/edns-subnet.c
    U src/usr.sbin/unbound/edns-subnet/edns-subnet.h
    U src/usr.sbin/unbound/edns-subnet/subnet-whitelist.h
    U src/usr.sbin/unbound/edns-subnet/addrtree.c
    C src/usr.sbin/unbound/smallapp/unbound-control.c
    C src/usr.sbin/unbound/smallapp/unbound-checkconf.c
    U src/usr.sbin/unbound/smallapp/unbound-anchor.c
    U src/usr.sbin/unbound/smallapp/worker_cb.c
    U src/usr.sbin/unbound/smallapp/unbound-host.c
    U src/usr.sbin/unbound/smallapp/unbound-control-setup.sh.in
    C src/usr.sbin/unbound/libunbound/libunbound.c
    U src/usr.sbin/unbound/libunbound/ubsyms.def
    U src/usr.sbin/unbound/libunbound/unbound.h
    U src/usr.sbin/unbound/libunbound/worker.h
    U src/usr.sbin/unbound/libunbound/libworker.c
    U src/usr.sbin/unbound/libunbound/unbound-event.h
    C src/usr.sbin/unbound/libunbound/context.c
    C src/usr.sbin/unbound/libunbound/context.h
    U src/usr.sbin/unbound/libunbound/libworker.h
    C src/usr.sbin/unbound/respip/respip.c
    U src/usr.sbin/unbound/respip/respip.h
    U src/usr.sbin/unbound/testcode/checklocks.c
    U src/usr.sbin/unbound/testcode/streamtcp.1
    U src/usr.sbin/unbound/testcode/unitregional.c
    U src/usr.sbin/unbound/testcode/memstats.c
    U src/usr.sbin/unbound/testcode/perf.c
    U src/usr.sbin/unbound/testcode/testpkts.c
    U src/usr.sbin/unbound/testcode/replay.h
    U src/usr.sbin/unbound/testcode/unitldns.c
    U src/usr.sbin/unbound/testcode/petal.c
    U src/usr.sbin/unbound/testcode/do-tests.sh
    U src/usr.sbin/unbound/testcode/lock_verify.c
    U src/usr.sbin/unbound/testcode/readhex.h
    U src/usr.sbin/unbound/testcode/unitneg.c
    U src/usr.sbin/unbound/testcode/unitauth.c
    U src/usr.sbin/unbound/testcode/streamtcp.c
    U src/usr.sbin/unbound/testcode/run_vm.sh
    U src/usr.sbin/unbound/testcode/unitecs.c
    U src/usr.sbin/unbound/testcode/unitanchor.c
    U src/usr.sbin/unbound/testcode/unitmsgparse.c
    U src/usr.sbin/unbound/testcode/delayer.c
    U src/usr.sbin/unbound/testcode/mini_tpkg.sh
    U src/usr.sbin/unbound/testcode/unitmain.h
    U src/usr.sbin/unbound/testcode/readhex.c
    U src/usr.sbin/unbound/testcode/fake_event.h
    U src/usr.sbin/unbound/testcode/checklocks.h
    U src/usr.sbin/unbound/testcode/unitmain.c
    U src/usr.sbin/unbound/testcode/pktview.c
    U src/usr.sbin/unbound/testcode/testpkts.h
    U src/usr.sbin/unbound/testcode/asynclook.c
    U src/usr.sbin/unbound/testcode/unitverify.c
    U src/usr.sbin/unbound/testcode/unitlruhash.c
    U src/usr.sbin/unbound/testcode/unitdname.c
    U src/usr.sbin/unbound/testcode/replay.c
    U src/usr.sbin/unbound/testcode/unitslabhash.c
    U src/usr.sbin/unbound/testcode/mini_tdir.sh
    U src/usr.sbin/unbound/testcode/fake_event.c
    U src/usr.sbin/unbound/testcode/signit.c
    U src/usr.sbin/unbound/testcode/testbound.c
    U src/usr.sbin/unbound/dnscrypt/dnscrypt.m4
    U src/usr.sbin/unbound/dnscrypt/dnscrypt.c
    U src/usr.sbin/unbound/dnscrypt/dnscrypt_config.h.in
    U src/usr.sbin/unbound/dnscrypt/cert.h
    U src/usr.sbin/unbound/dnscrypt/dnscrypt.h
    U src/usr.sbin/unbound/daemon/worker.h
    U src/usr.sbin/unbound/daemon/cachedump.c
    C src/usr.sbin/unbound/daemon/daemon.c
    U src/usr.sbin/unbound/daemon/remote.c
    C src/usr.sbin/unbound/daemon/stats.c
    C src/usr.sbin/unbound/daemon/worker.c
    U src/usr.sbin/unbound/daemon/daemon.h
    U src/usr.sbin/unbound/daemon/remote.h
    C src/usr.sbin/unbound/daemon/unbound.c
    U src/usr.sbin/unbound/daemon/acl_list.h
    U src/usr.sbin/unbound/daemon/cachedump.h
    U src/usr.sbin/unbound/daemon/stats.h
    U src/usr.sbin/unbound/daemon/acl_list.c
    U src/usr.sbin/unbound/dnstap/dnstap.h
    U src/usr.sbin/unbound/dnstap/dnstap_config.h.in
    U src/usr.sbin/unbound/dnstap/dnstap.c
    U src/usr.sbin/unbound/dnstap/dnstap.proto
    U src/usr.sbin/unbound/dnstap/dnstap.m4
    U src/usr.sbin/unbound/dns64/dns64.h
    U src/usr.sbin/unbound/dns64/dns64.c
    U src/usr.sbin/unbound/ipsecmod/ipsecmod.h
    U src/usr.sbin/unbound/ipsecmod/ipsecmod.c
    U src/usr.sbin/unbound/ipsecmod/ipsecmod-whitelist.h
    U src/usr.sbin/unbound/ipsecmod/ipsecmod-whitelist.c
    U src/usr.sbin/unbound/util/ub_event.c
    U src/usr.sbin/unbound/util/ub_event_pluggable.c
    C src/usr.sbin/unbound/util/winsock_event.c
    U src/usr.sbin/unbound/util/rbtree.h
    U src/usr.sbin/unbound/util/module.h
    U src/usr.sbin/unbound/util/configyyrename.h
    U src/usr.sbin/unbound/util/edns.h
    U src/usr.sbin/unbound/util/timehist.c
    U src/usr.sbin/unbound/util/tcp_conn_limit.c
    U src/usr.sbin/unbound/util/locks.h
    U src/usr.sbin/unbound/util/rtt.c
    U src/usr.sbin/unbound/util/as112.c
    U src/usr.sbin/unbound/util/tube.h
    U src/usr.sbin/unbound/util/ub_event.h
    U src/usr.sbin/unbound/util/net_help.h
    U src/usr.sbin/unbound/util/edns.c
    U src/usr.sbin/unbound/util/log.c
    C src/usr.sbin/unbound/util/configparser.y
    U src/usr.sbin/unbound/util/rbtree.c
    U src/usr.sbin/unbound/util/regional.h
    U src/usr.sbin/unbound/util/module.c
    U src/usr.sbin/unbound/util/alloc.c
    C src/usr.sbin/unbound/util/config_file.h
    U src/usr.sbin/unbound/util/random.c
    U src/usr.sbin/unbound/util/timehist.h
    C src/usr.sbin/unbound/util/config_file.c
    C src/usr.sbin/unbound/util/fptr_wlist.c
    U src/usr.sbin/unbound/util/fptr_wlist.h
    U src/usr.sbin/unbound/util/netevent.h
    U src/usr.sbin/unbound/util/alloc.h
    C src/usr.sbin/unbound/util/configlexer.lex
    U src/usr.sbin/unbound/util/tube.c
    U src/usr.sbin/unbound/util/tcp_conn_limit.h
    U src/usr.sbin/unbound/util/regional.c
    C src/usr.sbin/unbound/util/mini_event.c
    C src/usr.sbin/unbound/util/net_help.c
    U src/usr.sbin/unbound/util/as112.h
    U src/usr.sbin/unbound/util/rtt.h
    U src/usr.sbin/unbound/util/mini_event.h
    C src/usr.sbin/unbound/util/iana_ports.inc
    U src/usr.sbin/unbound/util/random.h
    U src/usr.sbin/unbound/util/netevent.c
    U src/usr.sbin/unbound/util/log.h
    U src/usr.sbin/unbound/util/locks.c
    U src/usr.sbin/unbound/util/winsock_event.h
    U src/usr.sbin/unbound/util/storage/lookup3.h
    U src/usr.sbin/unbound/util/storage/dnstree.c
    U src/usr.sbin/unbound/util/storage/lookup3.c
    U src/usr.sbin/unbound/util/storage/lruhash.c
    U src/usr.sbin/unbound/util/storage/lruhash.h
    U src/usr.sbin/unbound/util/storage/dnstree.h
    U src/usr.sbin/unbound/util/storage/slabhash.h
    U src/usr.sbin/unbound/util/storage/slabhash.c
    U src/usr.sbin/unbound/util/data/packed_rrset.h
    U src/usr.sbin/unbound/util/data/msgencode.h
    U src/usr.sbin/unbound/util/data/msgparse.h
    U src/usr.sbin/unbound/util/data/packed_rrset.c
    C src/usr.sbin/unbound/util/data/msgreply.c
    C src/usr.sbin/unbound/util/data/msgencode.c
    U src/usr.sbin/unbound/util/data/dname.h
    U src/usr.sbin/unbound/util/data/msgreply.h
    U src/usr.sbin/unbound/util/data/msgparse.c
    U src/usr.sbin/unbound/util/data/dname.c
    U src/usr.sbin/unbound/util/shm_side/shm_main.h
    U src/usr.sbin/unbound/util/shm_side/shm_main.c
    U src/usr.sbin/unbound/cachedb/cachedb.h
    U src/usr.sbin/unbound/cachedb/cachedb.c
    U src/usr.sbin/unbound/cachedb/redis.h
    U src/usr.sbin/unbound/cachedb/redis.c
    N src/usr.sbin/unbound/ipset/ipset.c
    N src/usr.sbin/unbound/ipset/ipset.h
    
    40 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jNLNETLABS:yesterday -jNLNETLABS src/usr.sbin/unbound

CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/09/11 08:13:27

Modified files:
	usr.sbin/unbound: Makefile.in config.h.in configure configure.ac 
	usr.sbin/unbound/daemon: daemon.c stats.c unbound.c worker.c 
	usr.sbin/unbound/doc: Changelog README example.conf.in 
	                      libunbound.3.in unbound-anchor.8.in 
	                      unbound-checkconf.8.in 
	                      unbound-control.8.in unbound-host.1.in 
	                      unbound.8.in unbound.conf.5.in 
	usr.sbin/unbound/libunbound: context.c context.h libunbound.c 
	usr.sbin/unbound/respip: respip.c 
	usr.sbin/unbound/services: authzone.c mesh.c modstack.c 
	usr.sbin/unbound/sldns: str2wire.c 
	usr.sbin/unbound/smallapp: unbound-checkconf.c unbound-control.c 
	usr.sbin/unbound/util: config_file.c config_file.h 
	                       configlexer.lex configparser.y 
	                       fptr_wlist.c iana_ports.inc mini_event.c 
	                       net_help.c winsock_event.c 
	usr.sbin/unbound/util/data: msgencode.c msgreply.c 
	usr.sbin/unbound/validator: autotrust.c 

Log message:
merge unbound 1.9.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/11 08:50:46

Added files:
	devel/quirks/files/Quirks: ghc.pm 

Log message:
no cookie for kili, forgot to cvs add
no build -> no bump


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/09/11 09:01:40

Modified files:
	regress/sys/kern/unveil: syscalls.c 
	sys/kern       : kern_unveil.c vfs_lookup.c 
	sys/sys        : namei.h 

Log message:
Fix unveil for relative lookups in the non AT_FDCWD case

Issue spotted by Benjamin Baier <programmer@netzbasis.de> with relative
path lookups from openat(2). Lacking a current working directory unveil,
operations using the *at functions could fail when not crossing an unveil,
since an initial covering unveil was not found.

This corrects this so we walk up from the directory vnode to find a
covering unveil at the start of non AT_FDCWD lookups, and adds regress
for this case.

ok bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/11 09:20:30

Modified files:
	usr.sbin/tcpdump: print-cdp.c 

Log message:
CDP's Native-VLAN-ID does not need a substraction.
While here add a link to the documentation.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/09/11 10:55:54

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vm_teardown() must be serialized since it modifies the global vmm_softc
structure. Therefore grab the appropriate lock before calling the same
function. This issue has been known for a while and reported before but
lacking a way to easily reproduce it; until syzkaller came up with a
reproducer.

ok mlarkin@

Reported-by: syzbot+39ff060789d93be0084f@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/11 11:53:53

Modified files:
	devel/libsigc++-2: Makefile 

Log message:
PORTROACH: only track version 2.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/11 14:06:26

Modified files:
	usr.sbin/smtpd : lka_filter.c 

Log message:
when replace tree_xget() with tree_get() ... actually use tree_get() so the
change actually does something.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/11 14:57:43

Modified files:
	security/pecl-libsodium: Makefile distinfo 

Log message:
update to pecl-libsodium-2.0.22


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/11 15:03:51

Log message:
    import ports/sysutils/py-distro, ok kmos@
    
    distro provides information about the OS distribution it runs on, such
    as a reliable machine-readable ID, or version information.
    
    It is the recommended replacement for Python's original
    platform.linux_distribution function (which will be removed in Python
    3.8). It also provides much more functionality which isn't necessarily
    Python bound, like a command-line interface.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190911
    
    N ports/sysutils/py-distro/Makefile
    N ports/sysutils/py-distro/distinfo
    N ports/sysutils/py-distro/pkg/DESCR
    N ports/sysutils/py-distro/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/11 15:05:19

Modified files:
	sysutils       : Makefile 

Log message:
+py-distro


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/11 15:06:22

Modified files:
	security/letsencrypt: Makefile.inc 
	security/letsencrypt/client: Makefile distinfo 
	security/letsencrypt/py-acme: distinfo 

Log message:
update to certbot/py-acme 0.38.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/11 15:16:31

Modified files:
	www/minitube   : Makefile 

Log message:
fixup LIB_DEPENDS


CVSROOT:	/cvs
Module name:	ports
Changes by:	bluhm@cvs.openbsd.org	2019/09/11 15:49:09

Modified files:
	devel/p5-File-Find-Object: Makefile distinfo 
Removed files:
	devel/p5-File-Find-Object/patches: patch-MANIFEST 

Log message:
update p5-File-Find-Object-Rule to 0.3.4
from wen heping


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/11 19:17:38

Modified files:
	sys/net        : bpf.c bpf.h 
	share/man/man9 : bpf_mtap.9 

Log message:
make bpf_mtap_hdr take a const void *, not a caddr_t.

this makes it easier to call at least, and makes it consistent with
bpf_tap_hdr.

ok stsp@ sashan@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/11 19:25:14

Modified files:
	sys/net        : bpf.c 

Log message:
we don't need to cast hdr arguments to caddr_t for bpf_mtap_hdr anymore.

pointed out by naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/11 19:27:03

Modified files:
	sys/net        : if_tun.c 

Log message:
let userland write up to hardmtu bytes, not just mtu bytes.

this brings tun in line with pretty much every other driver we have
where we let interfaces rx whatever they can.

while here make sure userland provides enough bytes for the link
header, which is the 4 byte address family for tun(4), and an
ethernet header for tap(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/11 19:28:29

Modified files:
	sys/net        : if_tun.c 

Log message:
knf for the switch statement in tun_dev_kqfilter.

no functional change.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/11 20:02:55

Modified files:
	sys/net        : if_tpmr.c 

Log message:
pf_test can return PF_PASS, but set the mbuf to NULL.

check for this like every other caller to pf_test so we don't go
on to pass NULL to m_prepend. that causes a fault.

chris@ gave me an excellent bug report. -msave-args is pretty great.


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/09/11 20:10:07

Modified files:
	security/ghidra: Makefile 
	security/ghidra/patches: patch-GPL_nativeBuildProperties_gradle 

Log message:
Ghidra's build system prefers g++ over clang, which is not what we want on a
clang-based platform like amd64.  This commit makes Ghidra build with clang by:

* Adding a clang toolChains block in nativeBuildProperties.gradle
* Adding COMPILER="base-clang ports-clang"
* Updating WANTLIB by replacing libstdc++ with ${COMPILER_LIBCXX}

In addition, honor CXX by setting tools.cppCompiler.executable and
tools.linker.executable in nativeBuildProperties.gradle to ${CXX}.  Also print
those variables so that we can confirm that they are set properly.

Lastly, add --stacktrace to the gradle command to facilitate future debugging.

Thanks to daniel@ for bringing this to my attention, naddy@ for his detailed
report of the g++ and CXX issues, and sthen@ for suggesting a possible fix.

ok naddy@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/11 20:53:57

Modified files:
	x11/worker     : Makefile distinfo 

Log message:
Update to worker-4.1.0
Changelog: http://www.boomerangsworld.de/cms/worker/changes.html#org4f8ea5f


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/11 21:17:13

Modified files:
	sys/arch/armv7/sunxi: sxie.c 
	sys/dev/fdt    : if_dwge_fdt.c 

Log message:
Prepare for the emac/gmac "phy" property being renamed to "phy-handle"
in a large number of allwinner device trees in arm-soc/for-next which is
expected to be merged into linux 5.4-rc1.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/09/11 22:23:59

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
Use unsigned types for queue counters and mask them appropriately before
writing to doorbell registers.  Now it should work for more than a couple
of billion packets.  While here, actually set up the timeout to refill
the rx ring if it's empty, and remove the unused rx consumer counter.

chris@ reminded me this was still a problem
ok dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/12 02:14:26

Modified files:
	sbin/unwind/libunbound: config.h 
	sbin/unwind/libunbound/libunbound: context.c context.h 
	                                   libunbound.c 
	sbin/unwind/libunbound/respip: respip.c 
	sbin/unwind/libunbound/services: authzone.c mesh.c modstack.c 
	sbin/unwind/libunbound/sldns: str2wire.c 
	sbin/unwind/libunbound/util: config_file.c config_file.h 
	                             configlexer.c configlexer.lex 
	                             configparser.h configparser.y 
	                             fptr_wlist.c iana_ports.inc 
	                             mini_event.c net_help.c 
	                             winsock_event.c 
	sbin/unwind/libunbound/util/data: msgencode.c msgencode.h 
	                                  msgreply.c 
	sbin/unwind/libunbound/validator: autotrust.c 

Log message:
Update to libunbound 1.9.3
Heavy lifting by sthen with updating in-tree unbound(8)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/12 02:14:59

Modified files:
	net/wireshark  : Makefile distinfo 

Log message:
update to wireshark-3.0.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/12 02:16:10

Modified files:
	net/wireshark  : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
update to wireshark-3.0.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/12 02:43:46

Modified files:
	fonts/spleen   : Makefile distinfo 

Log message:
Update spleen to 1.3.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/09/12 06:55:07

Modified files:
	sys/dev/ic     : ar5008.c ar9003.c ath.c atw.c bwi.c malo.c 
	                 pgt.c rt2560.c rt2661.c rt2860.c rtw.c 
	sys/dev/pci    : if_ipw.c if_iwi.c if_iwm.c if_iwn.c if_rtwn.c 
	                 if_wpi.c 
	sys/dev/usb    : if_athn_usb.c if_otus.c if_rsu.c if_run.c 
	                 if_urtwn.c if_zyd.c 
	sys/net80211   : ieee80211_input.c ieee80211_proto.h 

Log message:
Make wireless drivers call if_input() only once per interrupt.

This reduces drops caused by the ifq pressure drop mechanism and hence
increases throughput. Such drops are visible with e.g. 'netstat -dnI iwm0'.

Not all affected drivers have been tested yet but these changes are largely
mechanical and should be safe. As usual, please report any regressions.

With help from dlg@ and mpi@

Problem found by robert@
Tested by robert, jmc, Tracey Emer, Matthias Schmidt, florian, Bj��rn Ketelaars
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/12 07:42:45

Modified files:
	misc/tpwireless: Makefile 
	misc/tpwireless/src: tpwireless.c 

Log message:
tpwireless requires machdep.allowaperture=1 or running before securelevel
is set (e.g. in single-user mode)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/09/12 08:16:18

Modified files:
	net/openconnect: Makefile distinfo 

Log message:
Update to openconnect-8.05.

Security update, which fixes a buffer overflow in HTTP chunked encoding
handling, when the chunk length was mishandled (CVE-2019-16239).

Changelog can be found at
https://www.infradead.org/openconnect/changelog.html.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/09/12 08:17:34

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
Update CVE entry for net/openconnect.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/09/12 08:19:43

Modified files:
	net/openconnect: Tag: OPENBSD_6_5 Makefile distinfo 
	net/openconnect/pkg: Tag: OPENBSD_6_5 PLIST 

Log message:
Update to openconnect-8.05.

Security update, which fixes a buffer overflow in HTTP chunked encoding
handling, when the chunk length was mishandled (CVE-2019-16239).

Changelog can be found at
https://www.infradead.org/openconnect/changelog.html.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/12 09:33:57

Modified files:
	lib/libexpat/lib: Tag: OPENBSD_6_5 xmlparse.c 

Log message:
Fix heap overflow in libexpat 2.2.6 triggered by XML_GetCurrentLineNumber
(or XML_GetCurrentColumnNumber), and deny internal entities closing
the doctype; CVE-2019-15903
fixed in commit c20b758c332d9a13afbbb276d30db1d183a85d43
OK tb@, Sebastian Pipping

OpenBSD 6.5 errata 011


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/12 09:34:20

Modified files:
	lib/libexpat/lib: Tag: OPENBSD_6_4 xmlparse.c 

Log message:
Fix heap overflow in libexpat 2.2.6 triggered by XML_GetCurrentLineNumber
(or XML_GetCurrentColumnNumber), and deny internal entities closing
the doctype; CVE-2019-15903
fixed in commit c20b758c332d9a13afbbb276d30db1d183a85d43
OK tb@, Sebastian Pipping

OpenBSD 6.4 errata 024


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/12 09:41:38

Modified files:
	www/youtube-dl : Makefile distinfo 

Log message:
update to youtube-dl 2019.09.12.1, from Hiltjo Posthuma following an earlier update
to 2019.09.01 from Mikolaj Kucharski, various fixes including youtube


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/12 09:47:49

Modified files:
	multimedia/mediainfo: Makefile distinfo 

Log message:
maintenance update to 19.09


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/12 10:34:30

Modified files:
	net/bird/1     : Makefile distinfo 

Log message:
bugfix update to bird-1.6.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/12 10:34:40

Modified files:
	net/bird/2     : Makefile distinfo 

Log message:
bugfix update to bird-2.0.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 12:48:30

Modified files:
	lang/go        : Makefile distinfo 
	lang/go/pkg    : PLIST 
Added files:
	lang/go/patches: patch-src_cmd_link_internal_ld_lib_go 
Removed files:
	lang/go/patches: patch-src_cmd_link_internal_loadelf_ldelf_go 
	                 patch-src_runtime_os_openbsd_go 

Log message:
Update lang/go to Go 1.13.

ok abieber@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 12:49:45

Modified files:
	devel/go-sys   : Makefile distinfo 
	devel/go-sys/pkg: PLIST 

Log message:
Update devel/go-sys.

This updates devel/go-sys to a point around the Go 1.13 release.

ok abieber@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 12:50:31

Modified files:
	textproc/go-text: Makefile distinfo 
	textproc/go-text/pkg: PLIST 

Log message:
Update textproc/go-text.

This updates textproc/go-text to a point around the Go 1.13 release.

ok abieber@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 12:51:19

Modified files:
	security/go-crypto: Makefile distinfo 
	security/go-crypto/pkg: PLIST 

Log message:
Update security/go-crypto.

This updates security/go-crypto to a point around the Go 1.13 release.

ok abieber@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 12:52:16

Modified files:
	net/go-net     : Makefile distinfo 
	net/go-net/pkg : PLIST 

Log message:
Update net/go-net.

This updates net/go-net to a point around the Go 1.13 release.

ok abieber@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 13:01:30

ports/www/hugo/patches

Update of /cvs/ports/www/hugo/patches
In directory cvs.openbsd.org:/tmp/cvs-serv44596/patches

Log Message:
Directory /cvs/ports/www/hugo/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 13:02:59

Added files:
	www/hugo/patches: 
	                  patch-vendor_github_com_tdewolff_minify_v2_common_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_css_css_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_html_buffer_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_html_html_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_html_table_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_js_js_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_json_json_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_minify_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_svg_buffer_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_svg_svg_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_svg_table_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_xml_buffer_go 
	                  patch-vendor_github_com_tdewolff_minify_v2_xml_xml_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_buffer_buffer_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_buffer_lexer_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_buffer_reader_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_buffer_streamlexer_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_buffer_writer_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_common_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_css_lex_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_css_parse_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_css_util_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_html_lex_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_html_util_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_js_lex_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_json_parse_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_strconv_float_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_strconv_int_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_util_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_xml_lex_go 
	                  patch-vendor_github_com_tdewolff_parse_v2_xml_util_go 

Log message:
Make www/hugo compile with Go 1.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 13:03:46

ports/net/go-ipfs/patches

Update of /cvs/ports/net/go-ipfs/patches
In directory cvs.openbsd.org:/tmp/cvs-serv85604/patches

Log Message:
Directory /cvs/ports/net/go-ipfs/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 13:05:23

Modified files:
	net/go-ipfs    : Makefile 
Added files:
	net/go-ipfs/patches: 
	                     patch-vendor_golang_org_x_xerrors_adaptor_go 
	                     patch-vendor_golang_org_x_xerrors_adaptor_go1_12_go 
	                     patch-vendor_golang_org_x_xerrors_adaptor_go1_13_go 
	                     patch-vendor_golang_org_x_xerrors_format_go 
	                     patch-vendor_golang_org_x_xerrors_format_go1_12_go 
	                     patch-vendor_golang_org_x_xerrors_format_go1_13_go 
	                     patch-vendor_golang_org_x_xerrors_frame_go 
	                     patch-vendor_golang_org_x_xerrors_frame_go1_12_go 

Log message:
Make net/go-ipfs build with Go 1.13.

This effectively brings in a985d3407aa71f30cf86696ee0a2f409709f22e1 from
golang.org/x/xerrors.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 13:07:01

Modified files:
	sysutils/consul: Makefile 
Added files:
	sysutils/consul/patches: 
	                         patch-vendor_github_com_envoyproxy_protoc-gen-validate_validate_validate_pb_go 

Log message:
Make sysutils/consul build with Go 1.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/12 13:07:56

Modified files:
	net/mattermost-server: Makefile 

Log message:
Make net/mattermost-server build with Go 1.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/12 13:51:43

Modified files:
	net/curl       : Makefile distinfo 
	net/curl/pkg   : PLIST 

Log message:
Update to 7.66.0.

Includes security fixes for:
CVE-2019-5481 (not applicable to our port)
CVE-2019-5482: TFTP small blocksize heap buffer overflow

curl command: support parallel transfers with -Z


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/12 14:40:48

Modified files:
	net/curl       : Tag: OPENBSD_6_5 Makefile 
	net/curl/patches: Tag: OPENBSD_6_5 patch-lib_tftp_c 

Log message:
Security fix:
CVE-2019-5482: TFTP small blocksize heap buffer overflow


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/09/12 14:50:54

Modified files:
	www/sope       : Makefile distinfo 

Log message:
bugfix update to 4.0.8
ok sebastia@ (Mantainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/09/12 14:52:23

Modified files:
	www/sogo       : Makefile distinfo 
	www/sogo/pkg   : PLIST 

Log message:
bugfix update to 4.0.8
ok sebastia@ (Mantainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/09/12 15:13:05

Modified files:
	sysutils/rsyslog: Makefile distinfo 

Log message:
update to version 8.1908.0

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	remi@cvs.openbsd.org	2019/09/12 15:21:25

Modified files:
	sysutils/netshot: Makefile distinfo 
	sysutils/netshot/patches: patch-netshot_conf 
	sysutils/netshot/pkg: PLIST 
Added files:
	sysutils/netshot/pkg: README 

Log message:
Update netshot to version 0.14.0.

The port now depends exclusively on Java 1.8. Netshot uses nashorn which
was deprecated after Java 1.8. It might work with later Java versions but
this has not been tested yet.

inputs and OK stehn@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/09/12 16:22:53

Modified files:
	sys/dev/pci    : mpiireg.h mpii.c 

Log message:
SAS3 controllers have a maximum size for sgl chain segments, and the
controller faults if you exceed it, so instead use multiple chain
segments in the same request frame layout.

tested on a SAS3008 (max chain size 8), where MAXPHYS io would occasionally
cause faults
ok dlg@ krw@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/12 19:31:24

Modified files:
	sys/net        : if_tun.c 

Log message:
tweak tun/tap kn_data to be more consistent with everything else.

for EVFILT_READ, kn_data is now like FIONREAD and reports how many
bytes there are to read. previously it would report how many packets
were available to read, which is not something i've seen anywhere
else.

for EVFILT_WRITE, report the max number of bytes a write can do.
previously it was if_mtu bytes, now it is if_hdrlen + if_hardmtu
bytes, which is the same as what the write path uses as it's maximum
message size.

discussed with and ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/12 19:47:51

Modified files:
	sys/net        : if_pflog.c 

Log message:
avoid the use of a custom bpf copy function.

currently pflog prepares a pfloghdr and then passes that, the
original mbuf, and a pflog copy function to bpf. bpf matches on the
original packet, and then if bpf decides it wants the packet it
uses the custom function to copy the packet for userland to read.
the custom function patches the packet so you see the packet after
nat and rdr and af-to and so on. however, this means bpf is matching
on the original packet and reporting a patched packet.

this is also the only use of a custom copy function in the tree,
and it relies on some behaviours that should be internal to bpf to
get away with it.

this pulls the patching up so it's done before the packet is given
to bpf. this simplifies the code a bit, and means bpf is now matching
on and reporting the same packet. removing this custom copy code
also means that we can get rid of that functionality from the
bpf_mtap_hdr function.

ok sashan@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/12 22:07:42

Modified files:
	usr.bin/ssh    : ssh_config.5 

Log message:
clarify that ConnectTimeout applies both to the TCP connection and to
the protocol handshake/KEX. From Jean-Charles Longuet via Github PR140


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/12 22:27:35

Modified files:
	usr.bin/ssh    : ssh.c ssh_config.5 sshconnect.c sshconnect.h 

Log message:
allow %n to be expanded in ProxyCommand strings

From Zachary Harmany via github.com/openssh/openssh-portable/pull/118
ok dtucker@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/12 22:31:19

Modified files:
	usr.bin/ssh    : sshconnect.c 

Log message:
whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/09/12 22:36:43

Modified files:
	usr.bin/ssh    : auth-options.c ssh_api.c 

Log message:
Plug mem leaks on error paths, based in part on github pr#120 from
David Carlier.  ok djm@.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/12 22:52:34

Modified files:
	usr.bin/ssh    : ssh_config.5 

Log message:
clarify that IdentitiesOnly also applies to the default ~/.ssh/id_*
keys; bz#3062


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/12 23:47:20

Modified files:
	astro/kstars   : Makefile distinfo 
	astro/kstars/pkg: PLIST 

Log message:
Update kstars to 3.3.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/09/13 02:05:44

Modified files:
	devel/jd-gui   : Makefile distinfo 

Log message:
update jd-gui to 1.6.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/13 02:12:57

Modified files:
	graphics/libansilove: Makefile distinfo 

Log message:
Update libansilove to 1.1.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/09/13 02:25:06

Modified files:
	devel/jadx     : Makefile distinfo 
	devel/jadx/patches: patch-bin_jadx 
	devel/jadx/pkg : PLIST 
Added files:
	devel/jadx/patches: patch-bin_jadx-gui 

Log message:
update jadx to 1.0.0.
fix the jadx script and jadx-gui.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/13 03:04:05

Modified files:
	net/profanity  : Makefile distinfo 
	net/profanity/pkg: DESCR 
Added files:
	net/profanity/patches: patch-configure_ac 

Log message:
Update profanity to 0.7.0

This update includes OMEMO support

Initial diff from Lucas <lucas AT sexy DOT is> (thanks!) with AUTOMAKE_VERSION
tweaks by sthen@ (thanks!).

OK kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/13 03:04:07

Modified files:
	lang/go        : Makefile distinfo 

Log message:
Update the lang/go binary bootstrap to Go 1.13.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/09/13 03:42:45

Modified files:
	devel/py-xlsxwriter: Makefile distinfo 

Log message:
update xlsxwriter to 1.2.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/13 03:54:46

Modified files:
	www            : Makefile 
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 
Removed files:
	www/p5-WWW-Curl: Makefile distinfo 
	www/p5-WWW-Curl/patches: patch-Makefile_PL 
	www/p5-WWW-Curl/pkg: DESCR PLIST 

Log message:
retire p5-WWW-Curl, nothing depends on it, it has not been updated upstream
in some time, and has had to receive several patches to maintain compatibility
with curl and Perl updates. prompted by being broken again by the recent curl
update. ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/13 04:28:54

Modified files:
	net/unifi/stable: Makefile distinfo 

Log message:
update to unifi-5.10.27


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/13 04:48:25

Modified files:
	net/unifi/testing: Makefile distinfo 
	net/unifi/testing/pkg: PLIST 

Log message:
update to unifi-5.11.46


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/13 06:58:08

Modified files:
	devel/py-rfc6555: Makefile 
Added files:
	devel/py-rfc6555/patches: patch-tests_test_create_connection_py 
	                          patch-tests_test_ipv6_py 

Log message:
Modify devel/py-rfc6555 to use python 3's built-in mock rather than the
backport devel/py-mock.

Patches to test upstreamed so will be unnecessary in a future release.

Input and ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/13 07:00:48

Modified files:
	devel/py-configargparse: Makefile 

Log message:
Remove devel/py-mock from TEST_DEPENDS for python3 FLAVOR. python 3.4+
have mock built-in. Test code already will fail over to built-in mock.

Since just touching TEST_DEPENDS, no need to bump REVISION

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/09/13 07:05:50

Modified files:
	sysutils/restic: Makefile 

Log message:
Make restic build with Go 1.13

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/09/13 07:06:19

Modified files:
	sysutils/restic-rest-server: Makefile 

Log message:
Make restic-rest-server build with Go 1.13.

OK sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/09/13 07:14:47

Modified files:
	.              : plus.html 

Log message:
plus for 9/5 - 9/12
ok florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/09/13 07:22:03

Modified files:
	security/keybase: Makefile 
Removed files:
	security/keybase/patches: 
	                          patch-go_kbfs_libkbfs_folder_branch_ops_go 

Log message:
Fix keybase build.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/13 09:05:17

Modified files:
	mail/mozilla-thunderbird: Makefile distinfo 
	mail/mozilla-thunderbird/patches: 
	                                  patch-mozilla_js_src_jit_ProcessExecutableMemory_h 
	                                  patch-mozilla_security_manager_pki_resources_content_exceptionDialog_js 
	                                  patch-mozilla_storage_mozStorageConnection_cpp 
	mail/mozilla-thunderbird/pkg: PLIST-lightning PLIST-main 
	mail/thunderbird-i18n: Makefile.inc distinfo 
Added files:
	mail/mozilla-thunderbird/patches: 
	                                  patch-storage_mozStorageService_cpp 

Log message:
Update to thunderbird 68.1.0.

See https://www.thunderbird.net/en-US/thunderbird/68.1.0/releasenotes/
and https://www.thunderbird.net/en-US/thunderbird/68.0/releasenotes/ for
the full releases notes
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-28/ and
https://www.mozilla.org/en-US/security/advisories/mfsa2019-29/ (not yet
up, but probably similar to mfsa2019-26 for firefox-esr 68.1.0)

Update to 68.1.0 now so that we can track releases for 6.6-stable.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/13 09:47:47

Modified files:
	share/man/man9 : audio.9 tc_init.9 

Log message:
fix markup of the return types of function pointers;
found with mandoc -T lint


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/13 10:18:33

Modified files:
	devel/jdk/11   : Makefile 

Log message:
Add missing build depend on archivers/gtar. okay naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/13 10:47:29

Modified files:
	graphics/krita : Makefile distinfo 
	graphics/krita/pkg: PLIST 

Log message:
Update krita to 4.2.6


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/13 10:59:34

Modified files:
	devel/gmake    : Makefile 
	devel/gmake/patches: patch-job_c patch-job_h 
Added files:
	devel/gmake/patches: patch-main_c patch-remote-cstms_c 

Log message:
Replace homegrown 'keep SIGCHLD blocked' solution with upstream fix:

Only unblock fatal signals after child invocation
http://git.savannah.gnu.org/cgit/make.git/commit/?id=78b5fec6898c26956d00548427cda1101cb80f8a

okay naddy@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	matthieu@cvs.openbsd.org	2019/09/13 13:11:23

Modified files:
	lib/freetype   : Makefile 

Log message:
Fix build with gcc3 which doesn't support symbol visibility.

Reposrted and tested by aoyama@


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/13 13:18:48

Modified files:
	usr.bin/mandoc : mdoc_validate.c 
	regress/usr.bin/mandoc/mdoc/Fo: warn.in warn.out_ascii 
	                                warn.out_lint warn.out_markdown 

Log message:
Improve validation of function names:
1. Relax checking to accept function types of the form
"ret_type (fname)(args)" (suggested by Yuri Pankov <yuripv dot net>).
2. Tighten checking to require the closing parenthesis.


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/13 13:23:57

Modified files:
	regress/usr.bin/mandoc/mdoc/Fo: warn.out_lint 

Log message:
oops, commit correct version of the expected results


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/14 00:20:27

Modified files:
	usr.sbin/smtpd : mta.c 

Log message:
in mta_relay_cmp() properly check that authlabel or backupname are not NULL
before comparing their value with other relays

diff from Caspar Schutijser <caspar@schutijser.com>


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/14 01:23:54

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.707.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	anton@cvs.openbsd.org	2019/09/14 01:34:23

Modified files:
	mail/mdsort    : Makefile distinfo 

Log message:
Update to mdsort-4.2.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/09/14 05:38:46

Modified files:
	distrib/miniroot: install.sub 

Log message:
Support quoted SSIDs

Instead of ignoring SSIDs containing whitespaces, slightly adjust the
commands to take everything in between 'nwid ' and ' chan' as SSID; if it
has double quotes at start *and* end, simply remove those.

This enables users to select networks such as "Unitymedia WifiSpot" and
"FRITZ!Box 7490" for example which are common among the quoted ones at
least in germany.

The only SSIDs known to break this are those containing " chan " as this
substring is used as delimiter.  Picking "some chan 4 me" would therefore
result in _nwid being assigned '"some' (literal double quote), but that
seems reasonably acceptable compared to the current behaviour.

Input rpe
"Yes please" stsp


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/09/14 07:16:50

Modified files:
	lib/libc/stdlib: malloc.3 

Log message:
Add comment line saying S is described vaguely on purpose.
Prompted by guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/14 07:30:49

Modified files:
	sys/scsi       : sd.c 

Log message:
Typo in comment. scsi_size() is actually sd_size().


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/09/14 11:32:43

Modified files:
	.              : errata64.html errata65.html 

Log message:
release expat errata.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/14 11:34:46

Modified files:
	devel/cargo    : cargo.port.mk 

Log message:
make "modcargo-metadata" target to work with PORTS_PRIVSEP

ok jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/14 11:47:01

Modified files:
	usr.bin/chpass : chpass.c 
	usr.bin/doas   : doas.c 
	usr.bin/encrypt: encrypt.c 
	usr.bin/passwd : local_passwd.c 
	usr.bin/su     : su.c 

Log message:
correct some unveil(2) violations due to "login.conf.db" access (the .db version
of "login.conf"), and stat(2) on _PATH_MASTERPASSWD_LOCK (via pw_mkdb(3)).

problem initially noted by myself for passwd(1)
millert@ reported similar problem on chpass(1), su(1), doas(1) and encrypt(1)
mestre@ noted chpass(1) too

ok mestre@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/14 13:13:17

Modified files:
	games/jumpnbump: Makefile distinfo 
	games/jumpnbump/patches: patch-Makefile 
	games/jumpnbump/pkg: PLIST 

Log message:
Update to jumpnbump-1.61; the Python stuff is no longer built, so it goes
away.
Rest of the changelog: https://gitlab.com/LibreGames/jumpnbump/-/tags/1.61


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/14 13:16:09

Modified files:
	games/wtf      : Makefile distinfo 

Log message:
Update to wtf-20190909


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/14 14:14:26

Modified files:
	print/poppler  : Makefile 

Log message:
Let print/poppler *build* depend on devel/boost.

When boost is detected during configure time, poppler uses small_vector,
which is a header-only class of boost. This can lead to build
failures if boost is removed (e.g. by dpb) shortly after the build
of poppler starts, as noticed by naddy@.

This doesn't restrict the arches where poppler can be built, because
it c++11 is needed anyway (noted by sthen@).


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/09/14 15:04:40

Modified files:
	build          : mirrors.dat 

Log message:
add mirror.labkom.id


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/09/14 15:05:02

Modified files:
	.              : ftp.html ftplist httpslist anoncvs.html 
	                 cvsync.html 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/14 15:10:48

Modified files:
	net/dhcpcd     : Makefile distinfo 

Log message:
update to dhcpcd-8.0.6, including a fix for a potential DoS introduced
in dhcpcd-8.0.3 (post-OpenBSD 6.5)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/14 15:18:18

Modified files:
	sysutils/monit : Makefile distinfo 
	sysutils/monit/patches: patch-Makefile_in 

Log message:
update to monit-5.26.0, from maintainer Caspar Schutijser


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/14 15:30:41

Modified files:
	lang/go        : go.port.mk 

Log message:
poison GOPROXY in the environment during ports build, ports aren't
allowed to access the network at build time and this makes failures
obvious even if you don't use (recommended) PORTS_PRIVSEP.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/14 15:41:15

Modified files:
	textproc/miller: Makefile distinfo 

Log message:
Update miller to 5.6.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/14 16:26:55

Modified files:
	devel/ccache   : Makefile distinfo 

Log message:
update to ccache-3.7.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/14 17:40:40

Log message:
    import ports/net/doh, https://github.com/curl/doh - a simple client
    (using libcurl) for testing DNS-over-HTTPS servers.  comments/ok gsoares@
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190915
    
    N ports/net/doh/Makefile
    N ports/net/doh/distinfo
    N ports/net/doh/pkg/DESCR
    N ports/net/doh/pkg/PLIST
    N ports/net/doh/patches/patch-Makefile
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/14 17:41:56

Modified files:
	net/doh        : Makefile 
	net/doh/pkg    : PLIST 

Log message:
regen PLIST (readme added)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/14 17:42:13

Modified files:
	net            : Makefile 

Log message:
+doh


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/14 18:08:46

Modified files:
	usr.bin/mandoc : mdoc_html.c 

Log message:
Fix line breaking in no-fill mode (.Bd -unfilled/<pre>),
which apparently didn't work since the .Pp/<p> reorg.
The new logic is more similar to what the terminal formatter does:

1. Before a node that starts a new mdoc(7) input line,
start a new HTML output line.
2. An empty input line or a .Pp causes an empty output line.
3. Nothing needs to be done at the end of a node.

Severe misformatting was reported in table(5) by
Edgar Pettijohn <edgar at pettijohn dash web dot com> on misc@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/14 18:20:11

Modified files:
	www/links+     : Makefile distinfo 

Log message:
Update to links+-2.20.1
Changelog: http://links.twibright.com/download/ChangeLog
From MAINTAINER Tim Meunier


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/09/14 19:57:19

Modified files:
	sys/dev/pci    : if_iavf.c 

Log message:
Implement hardware vlan tagging.  Packets delivered to virtual functions
get the tag stripped and copied into the rx descriptor unconditionally,
so for symmetry we should tag outgoing packets with the tx descriptor.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/14 20:00:35

Modified files:
	lang/go        : Makefile distinfo 
	infrastructure/mk: arch-defines.mk 

Log message:
Enable Go on aarch64/arm64.

ok phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/09/14 20:04:00

Modified files:
	lang/go        : go.port.mk 
	net/mattermost-server: Makefile 
	sysutils/restic: Makefile 
	sysutils/restic-rest-server: Makefile 

Log message:
Set GO111MODULE=off via go.port.mk to prevent external access being
attempted during builds.

Fixes several other packages that break during build.

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/15 00:48:29

Modified files:
	sys/arch/octeon/octeon: cn3xxx.dts cn3xxx_dts.S 

Log message:
Add the pip unit into the fdt blob.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/15 00:57:05

Modified files:
	sys/arch/octeon/conf: files.octeon 
Added files:
	sys/arch/octeon/dev: octpip.c 

Log message:
Add a driver for the packet input processing unit. For now, the purpose
of this piece of code is to facilitate the use of fdt.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/15 01:15:14

Modified files:
	sys/arch/octeon/conf: GENERIC RAMDISK files.octeon 
	sys/arch/octeon/dev: cn30xxgmx.c octeon_iobus.c 

Log message:
Attach packet interfaces to octpip to use fdt.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/15 01:23:38

Modified files:
	share/man/man4/man4.octeon: Makefile 
Added files:
	share/man/man4/man4.octeon: cn30xxgmx.4 octpip.4 

Log message:
Add manual pages for cn30xxgmx(4) and octpip(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/15 01:25:18

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/15 01:28:04

Modified files:
	share/man/man4/man4.octeon: cnmac.4 

Log message:
Xr cn30xxgmx 4


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 04:15:54

Modified files:
	devel/libsigc++-2: Makefile 

Log message:
Fix PORTROACH.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 05:05:32

Modified files:
	textproc/enchant2: Makefile distinfo 

Log message:
Update to enchant2-2.2.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 05:07:37

Modified files:
	x11/dbus-python: Makefile distinfo 

Log message:
Update to py-dbus-1.2.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 05:12:14

Modified files:
	textproc/asciinema: Makefile distinfo 
	textproc/asciinema/pkg: PLIST 

Log message:
Update to asciinema-2.0.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 05:12:39

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-262.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 05:57:10

Modified files:
	security/p11-kit: Makefile distinfo 
Removed files:
	security/p11-kit/patches: patch-common_compat_c 

Log message:
Update to p11-kit-0.23.17.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/09/15 06:06:20

Modified files:
	usr.sbin/vmctl : vmctl.8 

Log message:
Use (egress) in nat-to example

Without parentheses, this rule evaluates to the static list of
addresses at loadtime;  this can be a problem when the machine's
network is not fully established when pf.conf is loaded.

From pf.conf(5):
When the interface name is surrounded by parentheses, the rule is
automatically updated whenever the interface changes its address.
The ruleset does not need to be reloaded.
This is especially useful with NAT.

This syncs vmctl(8) with the VMM FAQ.

Pointed out by Matthias Schmidt, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 06:14:01

Modified files:
	productivity/gnucash: Makefile distinfo 
	productivity/gnucash/pkg: PLIST 
Removed files:
	productivity/gnucash/patches: patch-CMakeLists_txt 
	                              patch-gnucash_register_register-gnome_gnucash-style_c 

Log message:
Update to gnucash-3.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/15 06:25:41

Modified files:
	etc/etc.amd64  : fbtab 
	etc/etc.arm64  : fbtab 
	etc/etc.hppa   : fbtab 
	etc/etc.i386   : fbtab 
	etc/etc.loongson: fbtab 
	etc/etc.luna88k: fbtab 
	etc/etc.macppc : fbtab 
	etc/etc.octeon : fbtab 
	etc/etc.sgi    : fbtab 
	etc/etc.sparc64: fbtab 

Log message:
Add ttyC4 to lost of devices to change when logging in on ttyC0 (and in
some cases also the serial console) such that X can use it as its VT
when running without root privileges.

ok jsg@, matthieu@


CVSROOT:	/cvs
Module name:	xenocara
Changes by:	kettenis@cvs.openbsd.org	2019/09/15 06:31:08

Modified files:
	xserver/hw/xfree86/common: xf86AutoConfig.c 

Log message:
Add modesetting driver as a fall-back when appropriate such that we can
use it when running withour root privileges which prevents us from
scanning the PCI bus.

This makes startx(1)/xinit(1) work again on modern systems with inteldrm(4),
radeondrm(4) and amdgpu(4).  In some cases this will result in using a
different driver than with xenodm(4) which may expose issues (e.g. when
we prefer the intel Xorg driver) or loss of acceleration (e.g. older
cards supported by radeondrm(4)).

ok jsg@, matthieu@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/15 06:37:01

Modified files:
	databases/mariadb: Makefile distinfo 
	databases/mariadb/patches: patch-storage_connect_reldef_cpp 
	databases/mariadb/pkg: PLIST-server PLIST-tests 

Log message:
update to MariaDB 10.3.18, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 06:48:35

Modified files:
	x11/gnome/file-roller: Makefile distinfo 

Log message:
Update to file-roller-3.32.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/09/15 06:57:38

Modified files:
	www/gitea      : Makefile distinfo 

Log message:
Update gitea 1.9.0 -> 1.9.3
Release notes: https://github.com/go-gitea/gitea/releases/tag/v1.9.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 07:04:42

Modified files:
	graphics/gthumb: Makefile distinfo 

Log message:
Update to gthumb-3.8.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 07:04:56

Modified files:
	x11/gnome/aisleriot: Makefile distinfo 

Log message:
Update to aisleriot-3.22.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/15 07:25:36

Modified files:
	devel/py-protobuf: Makefile distinfo 
	devel/py-protobuf/pkg: PLIST 

Log message:
Update to py-protobuf 3.9.1

A more recent version is required for my upcoming devel/angr
update.

Tested by and OK edd


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/15 07:29:50

Modified files:
	devel/angr     : Makefile.inc 
	devel/angr/py-ailment: distinfo 
	devel/angr/py-ailment/pkg: PLIST 
	devel/angr/py-angr: Makefile distinfo 
	devel/angr/py-angr/patches: 
	                            patch-angr_knowledge_plugins_functions_function_py 
	                            patch-setup_py 
	devel/angr/py-angr/pkg: PLIST 
	devel/angr/py-archinfo: distinfo 
	devel/angr/py-claripy: distinfo 
	devel/angr/py-claripy/pkg: PLIST 
	devel/angr/py-cle: distinfo 
	devel/angr/py-cle/pkg: PLIST 
	devel/angr/py-pyvex: distinfo 
	security/angrop: Makefile distinfo 
Removed files:
	devel/angr/py-cle/patches: patch-setup_py 

Log message:
Update angr to 8.19.7.25

Mostly just bugfixes;  there is no changelog, so please have a look at
https://github.com/angr/angr/commits/master/

"Go ahead" jasper


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 07:33:57

Modified files:
	devel/libsoup  : Makefile distinfo 

Log message:
Update to libsoup-2.66.3.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/15 07:39:35

Added files:
	security/nss/patches: patch-nss_lib_freebl_Makefile 

Log message:
fix aarch64 build by adding gcm-aarch64.c to the source files regardless
of the operating system; ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 07:43:00

Modified files:
	x11/gnome/eog-plugins: Makefile distinfo 
	x11/gnome/eog-plugins/pkg: PLIST 

Log message:
Update to eog-plugins-3.26.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 07:43:15

Modified files:
	textproc/gtranslator: Makefile distinfo 

Log message:
Update to gtranslator-3.34.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 07:49:36

Modified files:
	textproc/gtranslator: Makefile 

Log message:
Oops, I forgot to regen WANTLIB in previous.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 08:07:32

Modified files:
	multimedia/py-chromecast: Makefile distinfo 
	multimedia/py-chromecast/pkg: PLIST 

Log message:
Update to py3-chromecast-4.0.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 08:27:13

Modified files:
	textproc/libical: Makefile distinfo 
	textproc/libical/patches: patch-CMakeLists_txt 

Log message:
Update to libical-3.0.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/15 09:00:30

Modified files:
	sys/scsi       : sd.c 

Log message:
With the recent fixes to SCSI version detection we reproduced a
problem encountered by FreeBSD and Linux when they started to try
issuing READ CAPACITY 16 commands to 'newer' devices. i.e. some USB
devices return bad data instead of an error when they can't handle the
command.

Reproduce the FreeBSD solution (r233746 by mav@) by issuing READ
CAPACITY 16 commands only to devices that claim to be REALLY new
(a.k.a. newer than SPC-2, a.k.a. newer than SCSI-3), or which indicate
they really are bigger than can be reported via READ CAPACITY 10.

Should fix some USB devices claiming to have 71,776,119,061,217,281 or
33,601,071,049,867,265 sectors.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/15 09:20:51

Modified files:
	security/nss/patches: patch-nss_lib_freebl_Makefile 

Log message:
Add link to upstream bug report


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 09:52:06

Modified files:
	x11/gnome/tracker: Makefile distinfo 
	x11/gnome/tracker/pkg: PLIST 
Added files:
	x11/gnome/tracker/patches: 
	                           patch-tests_functional-tests_test-runner_sh_in 
Removed files:
	x11/gnome/tracker/patches: 
	                           patch-tests_functional-tests_test-runner_sh 

Log message:
Update to meta-tracker-2.3.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/15 09:52:14

Modified files:
	sys/dev/ic     : dwc_gmac.c dwc_gmac_reg.h 

Log message:
Mask all MMC interrupts.  This prevents an interrupt storm when one of the
counters reaches the half-way point (i.e. after receiving 2GB of packet
data).  Fixes the problem discovered and reported by kurt@

ok jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 10:03:31

Modified files:
	multimedia/libvpx/patches: patch-build_make_Makefile 
	                           patch-configure patch-examples_mk 
	                           patch-libs_mk 
	                           patch-vpx_ports_arm_cpudetect_c 

Log message:
Patch syncing and comment tweaking in a patch.

from Brad (maintainer).


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 10:08:42

Modified files:
	x11/gnome/tracker-miners: Makefile distinfo 
	x11/gnome/tracker-miners/pkg: PLIST 
Added files:
	x11/gnome/tracker-miners/patches: 
	                                  patch-src_libtracker-miners-common_meson_build 
	                                  patch-tests_functional-tests_test-runner_sh_in 
Removed files:
	x11/gnome/tracker-miners/patches: 
	                                  patch-tests_functional-tests_test-runner_sh 

Log message:
Update to tracker-miners-2.3.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/15 10:37:26

Modified files:
	productivity/tryton/5.0/carrier_weight: Makefile distinfo 
	productivity/tryton/5.0/carrier_weight/pkg: PLIST 
	productivity/tryton/5.0/proteus: Makefile distinfo 
	productivity/tryton/5.0/proteus/pkg: PLIST 
	productivity/tryton/5.0/sao: Makefile distinfo 
	productivity/tryton/5.0/sao/files: sao-dependencies.sh 
	productivity/tryton/5.0/tryton: Makefile distinfo 
	productivity/tryton/5.0/trytond: Makefile distinfo 

Log message:
tryton 5.0: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 10:38:27

Modified files:
	x11/gnome/tracker-miners/patches: 
	                                  patch-src_libtracker-miners-common_meson_build 

Log message:
Merged upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/15 10:42:39

Modified files:
	productivity/tryton/5.2/carrier_weight: Makefile distinfo 
	productivity/tryton/5.2/carrier_weight/pkg: PLIST 
	productivity/tryton/5.2/proteus: Makefile distinfo 
	productivity/tryton/5.2/proteus/pkg: PLIST 
	productivity/tryton/5.2/sao: Makefile distinfo 
	productivity/tryton/5.2/sao/files: sao-dependencies.sh 
	productivity/tryton/5.2/tryton: Makefile distinfo 
	productivity/tryton/5.2/trytond: Makefile distinfo 

Log message:
tryton 5.2: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 10:43:22

Modified files:
	x11/gnome/grilo: Makefile distinfo 
	x11/gnome/grilo/patches: patch-src_meson_build 

Log message:
Update to grilo-0.3.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 10:43:34

Modified files:
	x11/gnome/grilo-plugins: Makefile distinfo 
	x11/gnome/grilo-plugins/patches: patch-meson_build 

Log message:
Update to grilo-plugins-0.3.10.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/09/15 11:23:23

Log message:
    Add mail/p5-Mail-AuthenticationResults
    
    Mail::AuthenticationResults provides object-oriented authentication-results
    email headers. This parser copes with most styles of Authentication-Results
    header seen in the wild, but is not yet fully RFC7601 compliant.
    
    From wen heping <wenheping2000 () hotmail ! com> (takes MAINTAINER)
    OK with tweaks giovanni@
    
    Status:
    
    Vendor Tag:	afresh1
    Release Tags:	afresh1_20190915
    
    N ports/mail/p5-Mail-AuthenticationResults/Makefile
    N ports/mail/p5-Mail-AuthenticationResults/distinfo
    N ports/mail/p5-Mail-AuthenticationResults/pkg/DESCR
    N ports/mail/p5-Mail-AuthenticationResults/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/09/15 11:23:47

Modified files:
	mail           : Makefile 

Log message:
+p5-Mail-AuthenticationResults


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/09/15 13:23:29

Modified files:
	usr.sbin/relayd: check_tcp.c check_tls.c config.c parse.y 
	                 relayd.c relayd.conf.5 relayd.h util.c 

Log message:
Add support for binary protocol health checking. Feedback and guidance from
benno@ and reky@. Man page tweaks from jmc@.

ok benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/15 15:29:40

Modified files:
	print/poppler  : Makefile 

Log message:
add boost as a RUN_DEPENDS too, pointed out by Jan Beich, ok kili


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/15 15:42:57

Modified files:
	usr.bin/tmux   : format-draw.c options-table.c style.c tmux.1 
	                 tmux.h 

Log message:
Add push-default and pop-default in styles to change the default colours
and attributes and use them to restore the previous behaviour of
window-status-style being the default for window-status-format in the
status line. From John Drouhard in GitHub issue 1912.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 15:46:20

ports/textproc/asciinema/patches

Update of /cvs/ports/textproc/asciinema/patches
In directory cvs.openbsd.org:/tmp/cvs-serv3664/patches

Log Message:
Directory /cvs/ports/textproc/asciinema/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/15 15:46:45

Added files:
	textproc/asciinema/patches: patch-setup_py 

Log message:
Forgot to cvs add.

reported by naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	rob@cvs.openbsd.org	2019/09/15 20:47:07

Modified files:
	.              : 66.html 

Log message:
Mention new binary protocol health checking in relayd(8).


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/09/15 21:23:02

Modified files:
	usr.bin/ssh    : ssh-keygen.1 ssh-keygen.c 

Log message:
Allow testing signature syntax and validity without verifying that
a signature came from a trusted signer. To discourage accidental or
unintentional use, this is invoked by the deliberately ugly option name
"check-novalidate"

from Sebastian Kinne


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/09/15 23:33:48

Modified files:
	devel/py-xlsxwriter: Makefile distinfo 

Log message:
update xlsxwriter to 1.2.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/09/15 23:37:57

Modified files:
	security/pdf-parser: Makefile distinfo 

Log message:
update pdf-parser to 0.7.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/16 00:02:53

Modified files:
	productivity/gnucash: Makefile 
	productivity/gnucash/pkg: PLIST 

Log message:
Don't run glib-compile-schemas; pkg_add will do that for us.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/16 00:04:27

Modified files:
	audio/pulseaudio: Makefile distinfo 
	audio/pulseaudio/patches: patch-configure_ac 
	                          patch-src_Makefile_am 
	                          patch-src_daemon_caps_c 
	                          patch-src_daemon_pulseaudio-system_conf 
	                          patch-src_modules_module-detect_c 
	                          patch-src_pulse_util_c 
	                          patch-src_pulsecore_core-util_c 
	audio/pulseaudio/pkg: PLIST 

Log message:
Update to pulseaudio-13.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/16 00:09:10

Modified files:
	textproc/gtranslator: Makefile 

Log message:
Missing LDEP on devel/json-glib.


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/09/16 00:24:18

Modified files:
	lang/sbcl      : Makefile distinfo 

Log message:
Update to sbcl-1.5.5

Diff from Timo Myyr�� <timo.myyra@bittivirhe.fi> (thank you)
ok maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/09/16 00:54:43

Modified files:
	mail/enigmail  : Makefile distinfo 
	mail/enigmail/patches: patch-Makefile 

Log message:
Update to 2.1.2
added compatibility with TB 68.x
ok landry@ on a previous version if the diff


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/16 05:49:05

Modified files:
	sys/dev/fdt    : rkclock.c 

Log message:
Add RK3399 GMAC clock.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/16 06:22:03

Modified files:
	textproc/lgrind: Makefile 
	textproc/lgrind/patches: patch-lgrind_c 

Log message:
be slightly more strict in recognizing numbers
this allows $self to print normally in perl


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/16 07:27:14

Modified files:
	usr.bin/tmux   : key-bindings.c menu.c 

Log message:
Change menu key bindings to Up and Down and also close it on any mouse
press if opened by key.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/16 08:16:17

Modified files:
	security/nss   : Makefile 
Added files:
	security/nss/patches: patch-nss_tests_policy_policy_sh 
	                      patch-nss_tests_ssl_ssl_sh 

Log message:
Fix regression tests:
* Export UID, which is stripped by env -i; used by checks if user is root.
* Run tests with bash.  Various scripts use bash features.
* Replace unportable grep expression.

ok landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 08:57:34

Modified files:
	sys/dev/pci/drm/i915: intel_dp.c 

Log message:
drm/i915: Re-apply "Perform link quality check, unconditionally during long pulse"

From Jan-Marek Glogowski
c09d675f294b64c607ed87c946698836db2b9530 in linux 4.19.y/4.19.73
3cf71bc9904d7ee4a25a822c5dcb54c7804ea388 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 08:59:24

Modified files:
	sys/dev/pci/drm/amd/amdgpu: gfx_v9_0.c 

Log message:
drm/amdgpu/gfx9: Update gfx9 golden settings.

From Feifei Xu
bcc3bd761ab5f2d4539f396a1fd7d0c7dbd955c9 in linux 4.19.y/4.19.73
54d682d9a5b357eb711994fa94ef1bc44d7ce9d9 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:01:14

Modified files:
	sys/dev/pci/drm/amd/amdgpu: gfx_v9_0.c 

Log message:
drm/amdgpu: Update gc_9_0 golden settings.

From Feifei Xu
8e91cc7f7f916d5ce310026591d549aa5bf5952d in linux 4.19.y/4.19.73
c55045adf7210d246a016c961916f078ed31a951 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:04:35

Modified files:
	sys/dev/pci/drm/i915: intel_dp_mst.c 

Log message:
drm/i915: Fix intel_dp_mst_best_encoder()

From Lyude Paul
4b2dfc0e2d44e7fdd8fd5d6b1d25eef0c10cf3f7 in linux 4.19.y/4.19.73
a9f9ca33d1fe9325f414914be526c0fc4ba5281c in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:07:03

Modified files:
	sys/dev/pci/drm/i915: i915_reg.h intel_display.c 

Log message:
drm/i915: Rename PLANE_CTL_DECOMPRESSION_ENABLE

From Dhinakaran Pandiyan
8ccbb1d24c26ab7cf1bcd94d5cd75377bea95ec0 in linux 4.19.y/4.19.73
53867b46fa8443713b3aee520d6ca558b222d829 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:08:41

Modified files:
	sys/dev/pci/drm/amd/powerplay/hwmgr: smu_helper.c 

Log message:
powerplay: Respect units on max dcfclk watermark

From David Francis
5faabd22ed64df5c581f5224fcdbf822ab60a152 in linux 4.19.y/4.19.73
f191415b24a3ad3fa22088af7cd7fc328a2f469f in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:10:56

Modified files:
	sys/dev/pci/drm/amd/powerplay/hwmgr: smu_helper.c 

Log message:
drm/amd/pp: Fix truncated clock value when set watermark

From Rex Zhu
853dc0759586fb6a8cb3b2a659493d63796fe0f1 in linux 4.19.y/4.19.73
4d454e9ffdb1ef5a51ebc147b5389c96048db683 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:12:36

Modified files:
	sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm_mst_types.c 

Log message:
drm/amd/dm: Understand why attaching path/tile properties are needed

From Lyude Paul
016218ef6bb057ac494ea59caeb928492c2fcb6e in linux 4.19.y/4.19.73
04ac4b0ed412f65230b456fcd9aa07e13befff89 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:14:54

Modified files:
	sys/dev/pci/drm/i915: i915_gem.c 

Log message:
drm/i915: Restore sane defaults for KMS on GEM error load

From Chris Wilson
b185bde520d5feb8fc750107d4cda32262fd92bf in linux 4.19.y/4.19.73
7ed43df720c007d60bee6d81da07bcdc7e4a55ae in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:16:47

Modified files:
	sys/dev/pci/drm/i915: i915_gem.c intel_display.c 

Log message:
drm/i915: Cleanup gt powerstate from gem

From Chris Wilson
d88b01d04c6a16dee1fa172db5064af2768b33a7 in linux 4.19.y/4.19.73
30b710840e4b9c9699d3d4b33fb19ad8880d4614 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:18:48

Modified files:
	sys/dev/pci/drm: drm_vblank.c 
	sys/dev/pci/drm/include/drm: drm_device.h drm_vblank.h 

Log message:
drm/vblank: Allow dynamic per-crtc max_vblank_count

From Ville Syrjala
2b4f567912ad5f6653c557e424ee1bf85d8b6266 in linux 4.19.y/4.19.73
ed20151a7699bb2c77eba3610199789a126940c4 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:20:57

Modified files:
	sys/dev/pci/drm/i915: i915_gem.c 

Log message:
drm/i915: Handle vm_mmap error during I915_GEM_MMAP ioctl with WC set

From Joonas Lahtinen
6423a2ad57097eb29758afa87f9c8b5b4fd06c1b in linux 4.19.y/4.19.73
ebfb6977801da521d8d5d752d373a187e2a2b9b3 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:22:46

Modified files:
	sys/dev/pci/drm/i915: i915_gem.c 

Log message:
drm/i915: Sanity check mmap length against object size

From Chris Wilson
fba4f7c118e4a8c0eb23e8eccaca1f1a30892506 in linux 4.19.y/4.19.73
000c4f90e3f0194eef218ff2c6a8fd8ca1de4313 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:24:29

Modified files:
	sys/dev/pci/drm/amd/amdkfd: kfd_device.c 

Log message:
drm/amdkfd: Add missing Polaris10 ID

From Kent Russell
90772cf588380e6253b8d820ed6c3a7933950181 in linux 4.19.y/4.19.73
0a5a9c276c335870a1cecc4f02b76d6d6f663c8b in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:26:20

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_vce.c 

Log message:
drm/amdgpu: fix ring test failure issue during s3 in vce 3.0 (V2)

From Louis Li
7abeffff7bc33f86da68ca3bfc0fee881b3ab7de in linux 4.19.y/4.19.73
ce0e22f5d886d1b56c7ab4347c45b9ac5fcc058d in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:27:54

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_vcn.c uvd_v6_0.c uvd_v7_0.c 

Log message:
drm/amdgpu/{uvd,vcn}: fetch ring's read_ptr after alloc

From Shirish S
f276beb324cc1c60dc3495dc03a927a70c1aa5c7 in linux 4.19.y/4.19.73
517b91f4cde3043d77b2178548473e8545ef07cb in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/16 09:29:48

Modified files:
	sys/dev/pci/drm/i915: intel_cdclk.c 

Log message:
drm/i915: Make sure cdclk is high enough for DP audio on VLV/CHV

From Ville Syrjala
057cdb6f0f47c643905df5557fdf9d56f46d2931 in linux 4.19.y/4.19.73
a8f196a0fa6391a436f63f360a1fb57031fdf26c in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	jcs@cvs.openbsd.org	2019/09/16 09:47:17

Modified files:
	x11/xdimmer    : Makefile distinfo 

Log message:
xdimmer 1.6


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/16 10:34:14

Modified files:
	sys/scsi       : scsi_all.h scsiconf.c 

Log message:
Update list of device types with combination of FreeBSD and
SPC-5. Add/Fix comments.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/16 10:50:08

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
Correct two places where sha256 was used explicitly rather than using
the _CIPHER variable the rest of the file uses.

ok solene kn


CVSROOT:	/cvs
Module name:	src
Changes by:	espie@cvs.openbsd.org	2019/09/16 11:30:16

Modified files:
	usr.bin/lex    : config.h 

Log message:
fix lex build to actually get assert under proper conditions.

from Michael Mikonos

okay millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/16 12:02:32

Added files:
	geo/pdal/patches: patch-pdal_util_CMakeLists_txt 

Log message:
Readd patch making sure we dont pick up libexecinfo if present at
configure time, which has been a running gag.
Build breakage reported by ajacoutot@, thanks !


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2019/09/16 12:25:29

Modified files:
	.              : 66.html 

Log message:
fill the opensmtpd part


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/09/16 13:39:47

Modified files:
	usr.sbin/arp   : arp.c 

Log message:
Simplify function detection

To determine which "function" (get, set, ...) is requested, use getopt(3)'s
result directly as ndp(8) does instead of translating everyting into
internal F_* defines and back again.

Avoids one level of indirection, chops 22 lines of code and brings both
tools closer together.

OK bluhm


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/09/16 14:23:48

Modified files:
	sysutils/neofetch: Makefile distinfo 
Removed files:
	sysutils/neofetch/patches: patch-neofetch 

Log message:
neofetch: update to 6.1.0
Changelog:
https://github.com/dylanaraps/neofetch/releases/tag/6.1.0

OK bcallah@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/09/16 14:49:28

Modified files:
	usr.sbin/arp   : arp.c 

Log message:
Zap unused h_errno

Revision 1.84 removed the last user;  no object change.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/16 15:48:23

Modified files:
	audio/pulseaudio: Makefile 

Log message:
Missing BDEP on textproc/p5-XML-Parser.

breakage reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/09/17 03:22:51

Modified files:
	textproc/mupdf : Makefile 
	textproc/mupdf/patches: patch-platform_x11_pdfapp_c 

Log message:
Fix off-by-one that broke the ' ' key for going from the penultimate to
the last page. See https://bugs.ghostscript.com/show_bug.cgi?id=701615

Add back mapping for the backspace key.

reported by espie and stsp
ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/17 07:39:59

Modified files:
	mail/p5-Mail-DKIM: Makefile distinfo 

Log message:
update to p5-Mail-DKIM-0.56, from wen heping, ok giovanni@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/09/17 10:19:02

Log message:
    import nsd 4.2.2, ok florian@
    
    Status:
    
    Vendor Tag:	NLNETLABS
    Release Tags:	NSD_4_2_2
    
    C src/usr.sbin/nsd/nsec3.h
    C src/usr.sbin/nsd/udbzone.c
    C src/usr.sbin/nsd/rbtree.h
    C src/usr.sbin/nsd/udbradtree.c
    U src/usr.sbin/nsd/lookup3.h
    U src/usr.sbin/nsd/configyyrename.h
    U src/usr.sbin/nsd/tsig.h
    C src/usr.sbin/nsd/edns.h
    U src/usr.sbin/nsd/iterated_hash.c
    C src/usr.sbin/nsd/nsd.conf.5.in
    C src/usr.sbin/nsd/namedb.c
    U src/usr.sbin/nsd/answer.h
    C src/usr.sbin/nsd/difffile.h
    C src/usr.sbin/nsd/nsd-checkzone.c
    C src/usr.sbin/nsd/dbaccess.c
    C src/usr.sbin/nsd/dbcreate.c
    C src/usr.sbin/nsd/region-allocator.c
    C src/usr.sbin/nsd/dns.c
    C src/usr.sbin/nsd/xfrd.c
    C src/usr.sbin/nsd/zonec.c
    C src/usr.sbin/nsd/axfr.c
    C src/usr.sbin/nsd/nsec3.c
    C src/usr.sbin/nsd/query.h
    C src/usr.sbin/nsd/nsd.h
    C src/usr.sbin/nsd/lookup3.c
    C src/usr.sbin/nsd/config.h.in
    C src/usr.sbin/nsd/edns.c
    C src/usr.sbin/nsd/server.c
    C src/usr.sbin/nsd/util.h
    C src/usr.sbin/nsd/xfrd-disk.h
    C src/usr.sbin/nsd/configparser.y
    C src/usr.sbin/nsd/rbtree.c
    C src/usr.sbin/nsd/rrl.c
    C src/usr.sbin/nsd/xfrd-tcp.h
    C src/usr.sbin/nsd/zlexer.lex
    C src/usr.sbin/nsd/zonec.h
    C src/usr.sbin/nsd/namedb.h
    U src/usr.sbin/nsd/rdata.h
    C src/usr.sbin/nsd/configure.ac
    C src/usr.sbin/nsd/nsd-control-setup.sh.in
    U src/usr.sbin/nsd/ipc.h
    C src/usr.sbin/nsd/acx_nlnetlabs.m4
    C src/usr.sbin/nsd/remote.c
    C src/usr.sbin/nsd/options.c
    C src/usr.sbin/nsd/Makefile.in
    C src/usr.sbin/nsd/mkinstalldirs
    C src/usr.sbin/nsd/nsd-mem.c
    C src/usr.sbin/nsd/nsd-checkconf.c
    C src/usr.sbin/nsd/dns.h
    C src/usr.sbin/nsd/xfr-inspect.c
    C src/usr.sbin/nsd/packet.h
    C src/usr.sbin/nsd/udb.h
    C src/usr.sbin/nsd/xfrd-notify.h
    C src/usr.sbin/nsd/radtree.h
    C src/usr.sbin/nsd/tsig-openssl.c
    C src/usr.sbin/nsd/configure
    C src/usr.sbin/nsd/xfrd.h
    C src/usr.sbin/nsd/install-sh
    C src/usr.sbin/nsd/configlexer.lex
    C src/usr.sbin/nsd/nsd.c
    C src/usr.sbin/nsd/udbzone.h
    C src/usr.sbin/nsd/mini_event.c
    C src/usr.sbin/nsd/dname.h
    C src/usr.sbin/nsd/remote.h
    C src/usr.sbin/nsd/netio.h
    C src/usr.sbin/nsd/LICENSE
    C src/usr.sbin/nsd/rdata.c
    C src/usr.sbin/nsd/difffile.c
    C src/usr.sbin/nsd/radtree.c
    U src/usr.sbin/nsd/iterated_hash.h
    U src/usr.sbin/nsd/tsig-openssl.h
    U src/usr.sbin/nsd/buffer.c
    C src/usr.sbin/nsd/systemd.m4
    C src/usr.sbin/nsd/rrl.h
    C src/usr.sbin/nsd/ipc.c
    C src/usr.sbin/nsd/answer.c
    C src/usr.sbin/nsd/zparser.y
    C src/usr.sbin/nsd/xfrd-notify.c
    U src/usr.sbin/nsd/dname.c
    C src/usr.sbin/nsd/udb.c
    C src/usr.sbin/nsd/udbradtree.h
    C src/usr.sbin/nsd/mini_event.h
    U src/usr.sbin/nsd/axfr.h
    C src/usr.sbin/nsd/query.c
    C src/usr.sbin/nsd/nsd-control.8.in
    C src/usr.sbin/nsd/options.h
    C src/usr.sbin/nsd/nsd.8.in
    C src/usr.sbin/nsd/netio.c
    C src/usr.sbin/nsd/util.c
    C src/usr.sbin/nsd/nsd-control.c
    C src/usr.sbin/nsd/region-allocator.h
    C src/usr.sbin/nsd/nsd-checkconf.8.in
    C src/usr.sbin/nsd/xfrd-tcp.c
    C src/usr.sbin/nsd/buffer.h
    C src/usr.sbin/nsd/xfrd-disk.c
    C src/usr.sbin/nsd/tsig.c
    C src/usr.sbin/nsd/packet.c
    C src/usr.sbin/nsd/nsd.conf.sample.in
    C src/usr.sbin/nsd/nsd-checkzone.8.in
    C src/usr.sbin/nsd/dnstap/dnstap.h
    U src/usr.sbin/nsd/dnstap/dnstap_config.h.in
    C src/usr.sbin/nsd/dnstap/dnstap_collector.c
    C src/usr.sbin/nsd/dnstap/dnstap_collector.h
    C src/usr.sbin/nsd/dnstap/dnstap.c
    C src/usr.sbin/nsd/dnstap/dnstap.proto
    U src/usr.sbin/nsd/dnstap/dnstap.m4
    
    92 conflicts created by this import.
    Use the following command to help the merge:
    
    cvs checkout -jNLNETLABS:yesterday -jNLNETLABS src/usr.sbin/nsd

CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/09/17 10:19:35

Modified files:
	usr.sbin/nsd   : config.h.in configlexer.lex configparser.y 
	                 configure configure.ac dns.c ipc.c mini_event.c 
	                 nsd-checkconf.8.in nsd-checkconf.c 
	                 nsd-checkzone.8.in nsd-checkzone.c 
	                 nsd-control.8.in nsd-control.c nsd.8.in nsd.c 
	                 nsd.conf.5.in nsd.conf.sample.in nsd.h 
	                 options.c options.h query.c remote.c server.c 
	                 tsig.c util.c util.h xfrd-disk.c xfrd-notify.c 
	                 xfrd-tcp.c xfrd.c zlexer.lex zonec.c zonec.h 
	                 zparser.y 

Log message:
merge 4.2.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/17 10:46:08

Modified files:
	net/scamper    : Makefile distinfo 
	net/scamper/pkg: PLIST 

Log message:
update to scamper-20190916


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/09/17 14:47:21

Modified files:
	security/keybase: Makefile 
	security/keybase/pkg: DESCR README 

Log message:
Explain the kbfsfuse modes in the README. OK abieber@ (MAINTAINER).


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/17 14:48:38

Modified files:
	textproc/c2html: Makefile 

Log message:
Remove one defunct entry in MASTER_SITES.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/17 15:57:24

Modified files:
	regress/sys/netinet6/frag6: LICENSE 
Added files:
	regress/sys/netinet6/frag6: frag6_maxpacket.py 
	                            frag6_maxpacket0.py 

Log message:
Send ping6 fragment that ends behind ipv6 max packet size.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/17 16:24:08

Modified files:
	regress/usr.sbin/syslogd: Makefile funcs.pl syslogd.pl 

Log message:
Rsyslogd TLS client side is unreliable.  Disable compatiblity test.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/17 18:17:50

Modified files:
	security/exploitdb: Makefile distinfo 
	security/exploitdb/pkg: PLIST 

Log message:
update to 2019-09-17


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/17 18:36:21

Modified files:
	sysutils/facter: Makefile distinfo 
	sysutils/facter/patches: patch-lib_CMakeLists_txt 

Log message:
simple update to 3.14.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/09/17 20:16:40

Modified files:
	java/gradle    : Makefile distinfo 
	java/gradle/pkg: PLIST 

Log message:
Update to Gradle 5.6.2.

https://docs.gradle.org/5.6.2/release-notes.html

ok abieber@ rpointel@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/18 01:40:32

Modified files:
	textproc/p5-PDF-API2: Makefile distinfo 

Log message:
update to p5-PDF-API2-2.036, from wen heping


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/18 01:41:35

Modified files:
	net/p5-Net-BGP : Makefile distinfo 

Log message:
update to p5-Net-BGP-0.17, from wen heping


CVSROOT:	/cvs
Module name:	src
Changes by:	solene@cvs.openbsd.org	2019/09/18 02:38:06

Modified files:
	etc/etc.amd64  : sysctl.conf 

Log message:
Add explanation about the default value of sysctl key
machdep.pwraction

ok jmc millert


CVSROOT:	/cvs
Module name:	src
Changes by:	solene@cvs.openbsd.org	2019/09/18 02:39:06

Modified files:
	etc/examples   : sysctl.conf 

Log message:
Correct sysctl section is 2

ok jmc millert


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/18 03:44:38

Modified files:
	usr.bin/snmp   : snmp.c snmp.h snmpc.c 

Log message:
Move snmp packaging and unpackaging to their own function.
In preparation for SNMPv3/USM support.

Feedback and OK jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/18 03:48:14

Modified files:
	usr.bin/snmp   : Makefile snmp.1 snmp.c snmp.h snmpc.c 
Added files:
	usr.bin/snmp   : usm.c usm.h 

Log message:
Initial SNMPv3/USM support.
This commit only implements noAuthNoPriv.

Feedback and OK jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/18 03:52:47

Modified files:
	usr.bin/snmp   : Makefile snmp.1 snmp.c snmp.h snmpc.c usm.c 
	                 usm.h 

Log message:
Add support for SNMPv3/USM authentication.
net-snmp's -3k is supported via the -k parameter, -3m is not supported.

Feedback and OK jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/18 03:54:36

Modified files:
	usr.bin/snmp   : snmp.1 snmp.c snmp.h snmpc.c usm.c usm.h 

Log message:
Add support for SNMPv3/USM privacy.
net-snmp's -3K is supported via the -K parameter, -3K is not supported.

Feedback and OK jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/18 03:59:05

Modified files:
	usr.bin/snmp   : usm.c 

Log message:
Add support for some HP LaserJet systems. These systems don't return the
boots and time on probing, but only return those on a fully encrypted
packet. Add a minor workaround for these systems.

Feedback and OK jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/18 04:03:55

Modified files:
	regress/usr.sbin/snmpd: snmpd.sh 

Log message:
Let snmpd's regress test make use of our very own brand new SNMPv3/USM
support in snmp(1).


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/18 04:59:37

Modified files:
	net/wireguard-tools: Makefile 
	net/wireguard-tools/pkg: README 

Log message:
consistently use tun0 as the sample device name

from Bjorn Ketelaars


CVSROOT:	/cvs
Module name:	src
Changes by:	rob@cvs.openbsd.org	2019/09/18 05:00:46

Modified files:
	regress/lib/libutil/ber: ber_test.c 

Log message:
Correct spelling in comment.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/09/18 05:26:30

Modified files:
	usr.sbin/smtpd : dns.c mta.c mta_session.c smtpc.c smtpd.h ssl.h 
	usr.sbin/smtpd/smtp: Makefile 
	usr.sbin/smtpd/smtpd: Makefile 
Added files:
	usr.sbin/smtpd : ssl_verify.c 

Log message:
Implement server certificate validation in smtp(1).
Check certificate against MX name in smtpd(8) mta.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/18 05:37:58

Modified files:
	usr.bin/tmux   : spawn.c 

Log message:
Do not set uninitialized signal mask when creating an empty pane.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/18 05:45:49

Modified files:
	sys/scsi       : scsi_all.h 

Log message:
Update struct inquiry_data with latest flags and remove flags that we didn't use and
are now (SPC-4+) marked as "reserved" instead of just "obsolete". Whitespace tweaks
to line stuff up.

Mostly following FreeBSD.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/18 07:32:16

Modified files:
	games/devilutionx: Makefile distinfo 
	games/devilutionx/patches: patch-CMakeLists_txt 
	                           patch-SourceS_miniwin_h 
	                           patch-Source_engine_cpp 
	                           patch-Source_init_cpp patch-defs_h 
Removed files:
	games/devilutionx/patches: patch-Source_fault_cpp 
	                           patch-Source_render_cpp 

Log message:
Update to a newer checkout of devilutionx. This one has fixed support for
TCP multiplayer (among additional updates).
From Nam Nguyen, who did the multiplayer fixing work for upstream.
ok brynet@


CVSROOT:	/cvs
Module name:	www
Changes by:	gilles@cvs.openbsd.org	2019/09/18 09:03:38

Modified files:
	.              : 66.html 

Log message:
smtpd also gained proxy-v2 support


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/18 09:09:05

Modified files:
	usr.bin/tmux   : key-bindings.c 

Log message:
Up and Down are already used, use < and > instead.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/18 10:34:03

Log message:
    import ports/www/e2guardian, from Henry Jensen, hints on replacing
    sigtimedwait from robert@, OK robert@
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20190918
    
    N ports/www/e2guardian/Makefile
    N ports/www/e2guardian/distinfo
    N ports/www/e2guardian/patches/patch-configs_contentscanners_clamdscan_conf_in
    N ports/www/e2guardian/patches/patch-configs_e2guardian_conf_in
    N ports/www/e2guardian/patches/patch-configs_e2guardianf1_conf_in
    N ports/www/e2guardian/patches/patch-src_BaseSocket_hpp
    N ports/www/e2guardian/patches/patch-src_FatController_cpp
    N ports/www/e2guardian/patches/patch-src_LOptionContainer_cpp
    N ports/www/e2guardian/patches/patch-src_String_cpp
    N ports/www/e2guardian/patches/patch-configure_ac
    N ports/www/e2guardian/pkg/e2guardian.rc
    N ports/www/e2guardian/pkg/DESCR
    N ports/www/e2guardian/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/18 10:34:51

Modified files:
	infrastructure/db: user.list 
	www            : Makefile 

Log message:
+e2guardian


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/18 10:58:06

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 69.0.1.

See https://www.mozilla.org/en-US/firefox/69.0.1/releasenotes/
Fixes https://www.mozilla.org/en-US/security/advisories/mfsa2019-31/


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/18 11:49:37

Modified files:
	math/coq       : Makefile 
	devel/cil      : Makefile 
	devel/coccinelle: Makefile 
	devel/dune     : Makefile 
	devel/frama-c  : Makefile 
	devel/ocaml-biniou: Makefile 
	devel/ocaml-cppo: Makefile 
	devel/ocaml-easy-format: Makefile 
	devel/ocaml-graph: Makefile 
	devel/ocaml-menhir: Makefile 
	devel/ocaml-ocamlbuild: Makefile 
	devel/ocaml-parmap: Makefile 
	devel/ocaml-pcre: Makefile 
	devel/ocaml-yojson: Makefile 
	graphics/ocaml-cairo: Makefile 
	graphics/pdfsandwich: Makefile 
	lang/ocaml-camlp4: Makefile 
	lang/ocaml-camlp5: Makefile 
	math/ocaml-num : Makefile 
	math/ocaml-zarith: Makefile 
	net/mldonkey   : Makefile 
	net/unison/2.4x: Makefile 
	net/unison/2.5x: Makefile 
	sysutils/findlib: Makefile 
	sysutils/opam  : Makefile 
	textproc/bibtex2html: Makefile 
	textproc/hevea : Makefile 
	x11/kde-applications/kalzium: Makefile 
	x11/lablgtk2   : Makefile 
	lang/ocaml     : Makefile distinfo 
	lang/ocaml/pkg : PFRAG.native-main PLIST-main 
Added files:
	devel/ocaml-ocamlbuild/patches: patch-Makefile 
	net/unison/2.4x/patches: patch-files_ml patch-recon_ml 
	                         patch-system_system_generic_ml 
	net/unison/2.5x/patches: patch-files_ml patch-recon_ml 
	                         patch-system_system_generic_ml 
	lang/ocaml/patches: patch-configure_ac 
Removed files:
	lang/ocaml/patches: patch-configure 

Log message:
Upgrade lang/ocaml to 4.08.1

* net unison needed some patchign to avoid deprecated library functions.
* all ports depending on the exact version of OCaml need revision bumps.
* net/unison needed some help to avoid deprecated library functions.

ok krw@, testing on i386 and ok daniel@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/18 13:12:30

Modified files:
	devel/dune     : Makefile distinfo 
	devel/dune/pkg : PFRAG.native PLIST 

Log message:
Update devel/dune to 1.11.3

ok krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/18 13:42:59

Modified files:
	lang/ocaml-camlp4: Makefile distinfo 

Log message:
Update and unbreak lang/ocaml-camlp4

ok krw@, avsm@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/09/18 14:27:53

Modified files:
	usr.sbin/relayd: parse.y 

Log message:
remove old log options 'log update/all' that were replaced with 'log
state changes/host checks/connection' some time ago.  ok reyk@
claudio@ on first version, kn@ noticed that the tokens could be
removed too.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/09/18 15:14:39

Modified files:
	security/nss   : Makefile 

Log message:
UID is not an environment variable at all, but a built-in bash variable


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/18 17:52:32

Modified files:
	sys/dev/pci    : if_ipw.c if_iwi.c if_iwm.c if_iwn.c if_wpi.c 

Log message:
don't hand roll bpf_mtap_hdr functionality, just use bpf_mtap_hdr.

the radiotap code prepends a big struct to the packets, and wires
them up with the packet by putting an mbuf on the stack and using
that as the head of an mbuf chain. bpf_mtap_hdr does the chain head
thing for us, so shrink this code by calling the bpf function.

there's some other drivers that do this too, so if anyone wants a
free commit they should go looking in the other wireless drivers
and do the same change.

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/09/18 19:49:48

Modified files:
	www/p5-Dancer-Plugin-Database-Core: Makefile distinfo 

Log message:
Update www/p5-Dancer-Plugin-Database-Core to 0.20

From wen heping <wenheping2000 () hotmail ! com>
OK and fixes cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	lteo@cvs.openbsd.org	2019/09/18 20:02:17

Modified files:
	java/gradle    : Makefile 
	java/gradle/pkg: PLIST 

Log message:
Introduce a variable called GRADLE_JAR to replace the Gradle version number in
the PLIST to make future PLIST diffs less noisy.

suggested by and ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/18 23:02:28

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Move device buffer allocation to its own routines.

This makes the code more readable and the routine available for other
uses. No behavior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/18 23:04:34

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Move device slot convertions setup in its own routine.

No behabior change.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/18 23:10:19

Modified files:
	usr.bin/sndiod : dev.c 

Log message:
Don't attempt to join/expand nonexistent channels.

If the (hardware) device has fewer channels than the exposed
sub-device, then join/expand only to channels that exist on the
device.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/18 23:29:26

Modified files:
	www/mozilla-firefox/patches: patch-old-configure 

Log message:
add link to upstream commit


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/19 01:27:13

Modified files:
	sysutils/exoscale-cli: Makefile distinfo 

Log message:
Update to exoscale-cli-1.5.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/19 01:30:31

Modified files:
	net/py-botocore: Makefile distinfo 
	net/py-botocore/pkg: PLIST 

Log message:
Update to py-botocore-1.12.231.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/19 01:30:41

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.231.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/19 01:31:03

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.241.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/19 01:35:36

Modified files:
	usr.sbin/smtpd : mda_variables.c smtpd.h 

Log message:
unescape / and ^ in the general delivery case, they only need to be for
maildir

ok eric@


CVSROOT:	/cvs
Module name:	ports
Changes by:	otto@cvs.openbsd.org	2019/09/19 01:38:14

Modified files:
	devel/boost    : Makefile 
	devel/boost/patches: 
	                     patch-boost_context_pooled_fixedsize_stack_hpp 
Added files:
	devel/boost/patches: patch-libs_context_build_Jamfile_v2 
	                     patch-libs_context_src_asm_jump_ppc32_sysv_elf_gas_S 
	                     patch-libs_context_src_asm_make_ppc32_sysv_elf_gas_S 
	                     patch-libs_context_src_asm_ontop_ppc32_sysv_elf_gas_S 

Log message:
- Fix userland context switching on powerpc, OpenBSDs ABI differs from the Linux one.
- Fix error in fixed size stack allocator.
Heavy lifting done by George Koehler. ok sthen@ rsadowski@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/19 02:56:38

Modified files:
	usr.bin/tmux   : tty.c 

Log message:
Do not use bright when emulating 256 colours on an 8 colour terminal
because it is also bold on some terminals. GitHub issue 1914.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/19 03:02:30

Modified files:
	usr.bin/tmux   : cmd-break-pane.c cmd-new-session.c 
	                 cmd-new-window.c cmd-respawn-window.c 
	                 options-table.c resize.c server-client.c 
	                 spawn.c tmux.1 tmux.h 

Log message:
Add a "latest" window-size option which tries to size windows based on
the most recently used client. From Tommie Gannert in GitHub issue 1869
based on earlier changes from me.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/19 05:10:55

Modified files:
	sys/dev/pci/drm: drm_panel_orientation_quirks.c 

Log message:
drm: panel-orientation-quirks: Add extra quirk table entry for GPD MicroPC

From Hans de Goede
d13a836d787d79571e51d23e0cf2e6d569047135 in linux 4.19.y/4.19.74
dae1ccee012ea7514af8e4a88429844157aca7dc in mainline linux


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/19 05:26:36

Modified files:
	textproc/ruby-rouge: Makefile distinfo 
	textproc/ruby-rouge/pkg: PLIST 

Log message:
Update ruby-rouge to 3.11.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/19 06:03:00

Modified files:
	lang/mono      : Makefile distinfo 
	lang/mono/patches: patch-configure_ac 
	                   patch-external_corefx_src_Native_Unix_System_Native_pal_io_c 
	                   patch-mono_mini_main_c 
	                   patch-mono_utils_mono-threads-coop_c 
	lang/mono/pkg  : PLIST 
Added files:
	lang/mono/patches: patch-mcs_class_corlib_System_IO_Path_cs 

Log message:
update mono to 5.20.1.34
add small fix for duplicate directory separators in relative paths
(GitHub issue #15407)
ok robert@ (maintainer), solene@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/19 06:18:47

Modified files:
	distrib/miniroot: install.sub 

Log message:
reset watchdog timeout between each installation of sets (and no just between fetch&verify)

ok sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	solene@cvs.openbsd.org	2019/09/19 07:17:22

Modified files:
	faq            : faq13.html 

Log message:
Replace /dev/audio by /dev/audio0
because /dev/audio symlink has been removed 2 releases ago

ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/19 07:33:57

Modified files:
	devel/libinotify: Makefile 
	devel/libinotify/pkg: PLIST 
Added files:
	devel/libinotify/patches: patch-libinotify_pc_in 

Log message:
re-instate the installation of the pkgconfig file, as needed by an upcoming polybar port

ok kirby@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/19 07:59:22

Log message:
    Import fonts/siji, an iconic bitmap font based on Stlarch with additional
    glyphs.
    ok jasper@
    
    Siji is an iconic bitmap font based on the Stlarch font with additional
    glyphs.
    
    It inherits additional glyphs from Sm4tik xbm icon pack, Lokaltog
    Symbols font, xbm-icon font, Uushi font, FontAwesome, and Tewi font with
    personal additions.
    
    Status:
    
    Vendor Tag:	bcallah
    Release Tags:	bcallah_20190919
    
    N ports/fonts/siji/Makefile
    N ports/fonts/siji/distinfo
    N ports/fonts/siji/pkg/DESCR
    N ports/fonts/siji/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/19 07:59:39

Modified files:
	fonts          : Makefile 

Log message:
+siji


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/19 08:21:27

Log message:
    Import aom-1.0.0.20190901.
    
    AOMedia Video 1 (AV1), is an open, royalty-free video coding format
    designed for video transmissions over the Internet. It is being
    developed by the Alliance for Open Media (AOMedia), a consortium of
    firms from the semiconductor industry, video on demand providers, and
    web browser developers, founded in 2015.
    
    from Brad
    ok sthen@
    
    Status:
    
    Vendor Tag:	brad
    Release Tags:	ajacoutot_20190919
    
    N ports/multimedia/aom/Makefile
    N ports/multimedia/aom/distinfo
    N ports/multimedia/aom/patches/patch-build_cmake_aom_optimization_cmake
    N ports/multimedia/aom/patches/patch-build_cmake_aom_configure_cmake
    N ports/multimedia/aom/patches/patch-aom_ports_arm_cpudetect_c
    N ports/multimedia/aom/patches/patch-aom_ports_ppc_cpudetect_c
    N ports/multimedia/aom/pkg/DESCR
    N ports/multimedia/aom/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/19 08:22:32

Modified files:
	multimedia     : Makefile 

Log message:
+aom


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/19 08:40:53

Modified files:
	usr.sbin/smtpd : report_smtp.c 

Log message:
in tx-mail / tx-rcpt reports, do not pass the brackets <> and remove any
of the MAIL FROM / RCPT TO options. filters use the mail-from and rcpt-to
hooks to retrieve these should they need it.

fixes bogus tx-mail / tc-rcpt reports


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/19 08:46:47

Modified files:
	net/isc-bind   : Makefile distinfo 
	net/isc-bind/patches: patch-lib_isc_unix_socket_c 

Log message:
update to isc-bind-9.11.11


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/19 10:00:59

Modified files:
	usr.sbin/smtpd : envelope.c smtp_session.c to.c 

Log message:
second attempt at fixing how we display inet6 addresses in smtpd. this diff
is simpler than my initial reverted attempt, corrects the likely reason for
the initial revert and has been running successfully for the day on my MX
with tons of incoming and outgoing inet6 trafic.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/19 10:07:33

Modified files:
	sys/scsi       : scsi_disk.h 

Log message:
Add new (a.k.a SBC-4) flags/fields to struct scsi_read_cap_16. Adopt
more concise nameing convention roughly adopted from FreeBSD as
tweaked by SBC-4. Keep older names when they are currently in use
elsewhere.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/19 10:36:07

Modified files:
	graphics/mojoshader: Makefile distinfo 
	graphics/mojoshader/patches: patch-CMakeLists_txt 
	graphics/mojoshader/pkg: PLIST 
Added files:
	graphics/mojoshader/patches: patch-mojoshader_opengl_c 

Log message:
update mojoshader to changeset 1214

This allows running most recent FNA games to run (e.g. Sumico,
Unexplored).

No regressions on testing with FNA games, including:

Apotheon, At the Gates, Axiom Verge, Celeste, CometStriker, Dust AET,
FEZ, Flinthook, Flotilla, Hacknet, Rogue Legacy, Owlboy, Salt and
Sanctuary


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/19 11:48:21

Modified files:
	sys/scsi       : safte.c scsiconf.h 

Log message:
Introduce and use convenience SID_REPOONSE_FORMAT() define.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/19 12:49:40

Modified files:
	regress/sys/netinet/frag: frag_refrag.py 
	regress/sys/netinet6/frag6: frag6_refrag.py 

Log message:
Make checksum comparison more robust.  0xffff is the same as 0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/19 13:15:55

Modified files:
	www/firefox-esr: Makefile 
	www/firefox-esr/pkg: README 

Log message:
Sync pkg-readme with the one from mozilla-firefox.
Prompted by a mail from gjones5555 at netscape dot net


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/19 13:50:49

Modified files:
	sys/dev/fdt    : rkclock.c rkclock_clocks.h 

Log message:
Add RK3328 GMAC clocks.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/19 17:23:59

Modified files:
	usr.sbin/tcpdump: print-ip.c print-ip6.c 

Log message:
print the IPs on ESP packets.

this was lost when tcpdump learnt to look inside udpencap.

found by, and ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/09/19 20:59:18

Modified files:
	sys/kern       : kern_timeout.c 

Log message:
timeout(9): use CLR/ISSET/SET consistently

While here in timeout_add(9), use KASSERT for brevity.

CLR/ISSET/SET bits ok krw@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/09/19 21:28:34

Modified files:
	math/coq       : Makefile distinfo 
	math/coq/pkg   : PFRAG.dynlink-native PFRAG.native PLIST 

Log message:
- Update to beta3 to pickup a few bug fixes.
- Make the regression tests more verbose like we used but lost in one
of the recent updates.

ok Yozo Toda (MAINTAINER)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/20 00:43:46

Modified files:
	sys/dev/fdt    : rkclock.c rkclock_clocks.h 

Log message:
More RK3328 GMAC clock tweaking.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/20 02:18:42

Log message:
    import polybar-3.4.0
    
    Polybar is a fast and easy to use tool for creating status bars.
    Polybar aims to help users build beautiful and highly customizable
    status bars for their desktop environment, without the need of having a
    black belt in shell scripting.
    
    currently not all the OS-specific modules support OpenBSD (cpu does work now).
    the remainder of modules will be worked on
    
    Status:
    
    Vendor Tag:	jasper
    Release Tags:	jasper_20192009
    
    N ports/x11/polybar/Makefile
    N ports/x11/polybar/distinfo
    N ports/x11/polybar/patches/patch-cmake_03-libs_cmake
    N ports/x11/polybar/patches/patch-include_modules_cpu_hpp
    N ports/x11/polybar/patches/patch-src_utils_file_cpp
    N ports/x11/polybar/patches/patch-lib_i3ipcpp_CMakeLists_txt
    N ports/x11/polybar/patches/patch-src_modules_cpu_cpp
    N ports/x11/polybar/pkg/DESCR
    N ports/x11/polybar/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/20 02:20:49

Modified files:
	x11            : Makefile 

Log message:
add polybar

the original import was based on an initial port and OK'd by bcallah@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/20 02:54:33

Modified files:
	x11/polybar    : Makefile 
Added files:
	x11/polybar/patches: patch-src_modules_temperature_cpp 

Log message:
make the temperature module work by reading the acpitz sensor value


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/20 03:21:05

Modified files:
	x11/polybar    : Makefile 

Log message:
add missing BDEP on py-sphinx


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/09/20 03:38:22

Modified files:
	sys/arch/amd64/amd64: pmap.c 

Log message:
KNF/whitespace fixes


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/20 05:22:23

Modified files:
	mail/opensmtpd-filters: Makefile.inc 

Log message:
Make the variable assignment in Makefile.inc "?=" instead of "=".

Requested by jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	daniel@cvs.openbsd.org	2019/09/20 05:32:16

Modified files:
	lang/compcert  : Makefile distinfo 
	lang/compcert/patches: patch-configure 

Log message:
Update to CompCert 3.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/20 06:05:56

Modified files:
	regress/sys/uvm: Makefile 

Log message:
Regress mmap_hint usually passes, enable it.


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/20 06:11:05

Log message:
    Import libopensmtpd
    
    libopensmtpd is an libevent based library which allows for easy writing
    of opensmtpd filter applications in C.
    
    OK jasper@
    
    Status:
    
    Vendor Tag:	martijn
    Release Tags:	martijn_20190920
    
    N ports/mail/opensmtpd-filters/libopensmtpd/Makefile
    N ports/mail/opensmtpd-filters/libopensmtpd/distinfo
    N ports/mail/opensmtpd-filters/libopensmtpd/pkg/DESCR
    N ports/mail/opensmtpd-filters/libopensmtpd/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/09/20 06:37:04

Modified files:
	sbin/ifconfig  : ifconfig.8 

Log message:
Document the output of 'ifconfig scan' in client mode.
ok mlarkin


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/20 06:42:56

Log message:
    Import opensmtpd-filter-dnsbl
    
    filter-dnsbl is an opensmtpd filter that checks the sender's IP address
    against one or more dnsbl lists to flag or reject spam messages at session time.
    
    OK jasper@
    
    Status:
    
    Vendor Tag:	martijn
    Release Tags:	martijn_20190920
    
    N ports/mail/opensmtpd-filters/dnsbl/Makefile
    N ports/mail/opensmtpd-filters/dnsbl/distinfo
    N ports/mail/opensmtpd-filters/dnsbl/pkg/DESCR
    N ports/mail/opensmtpd-filters/dnsbl/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/20 06:45:43

Modified files:
	regress/sys/uvm: Makefile 
	regress/sys/uvm/wx_syscall: Makefile 

Log message:
Run regress wx_syscall if /usr/obj is mounted wxallowed.
Otherwise skip the test.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/20 06:52:30

Modified files:
	regress/sys/uvm/mmap_4g: mmap_4g.c 

Log message:
Fix compiler warning and whitespace.


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/20 06:57:48

Log message:
    Import opensmtpd-filter-dkimsign
    
    filter-dkim is an opensmtpd filter that signs email with a dkim signature.
    
    OK jasper@
    
    Status:
    
    Vendor Tag:	martijn
    Release Tags:	martijn_20190920
    
    N ports/mail/opensmtpd-filters/dkimsign/Makefile
    N ports/mail/opensmtpd-filters/dkimsign/distinfo
    N ports/mail/opensmtpd-filters/dkimsign/pkg/DESCR
    N ports/mail/opensmtpd-filters/dkimsign/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/20 07:00:35

Modified files:
	mail/opensmtpd-filters: Makefile 

Log message:
Hook up libopensmtpd, opensmtpd-filter-dnsbl and opensmtpd-filter-dkim.

OK jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/20 07:20:12

Modified files:
	regress/usr.sbin/syslogd: Makefile 

Log message:
REGRESS_SKIP_TARGETS was spelled incorrectly.
reported by Moritz Buhl


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/20 07:33:21

Modified files:
	sysutils/diffoscope: Makefile distinfo 

Log message:
Update to diffoscope-125


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/09/20 07:34:55

Modified files:
	editors/libreoffice: Makefile distinfo 
	editors/libreoffice/patches: patch-RepositoryExternal_mk 
	                             patch-basic_source_classes_sbxmod_cxx 
	                             patch-basic_source_runtime_methods_cxx 
	                             patch-bridges_source_cpp_uno_gcc3_linux_intel_share_hxx 
	                             patch-configure 
	                             patch-connectivity_Library_mysqlc_mk 
	                             patch-desktop_Executable_soffice_bin_mk 
	                             patch-desktop_source_app_app_cxx 
	                             patch-external_cppunit_UnpackedTarball_cppunit_mk 
	                             patch-external_liblangtag_ExternalProject_liblangtag_mk 
	                             patch-external_libqxp_UnpackedTarball_libqxp_mk 
	                             patch-external_libwps_ExternalProject_libwps_mk 
	                             patch-external_pdfium_UnpackedTarball_pdfium_mk 
	                             patch-external_pdfium_pdfium-openbsd_patch 
	                             patch-sal_osl_unx_sockimpl_hxx 
	                             patch-sal_osl_unx_thread_cxx 
	                             patch-sdext_Module_sdext_mk 
	                             patch-shell_source_unix_exec_shellexec_cxx 
	                             patch-solenv_gbuild_platform_com_GCC_defs_mk 
	                             patch-solenv_gbuild_platform_unxgcc_mk 
	                             patch-vcl_Library_vclplug_gen_mk 
	                             patch-vcl_Library_vclplug_gtk3_mk 
	                             patch-vcl_Library_vclplug_gtk_mk 
	                             patch-vcl_source_app_svapp_cxx 
	                             patch-vcl_source_salmain_salmain_cxx 
	                             patch-vcl_unx_generic_app_geninst_cxx 
	editors/libreoffice/pkg: PLIST-i18n-ca PLIST-kde PLIST-main 
Added files:
	editors/libreoffice/patches: 
	                             patch-sw_source_filter_ww8_ww8par_cxx 
	                             patch-sw_source_filter_ww8_ww8toolbar_cxx 
	                             patch-vcl_Library_vclplug_gtk3_kde5_mk 
	                             patch-vcl_Library_vclplug_kde5_mk 
	                             patch-vcl_Library_vclplug_qt5_mk 
	                             patch-vcl_qt5_Qt5Instance_cxx 
	                             patch-vcl_unx_kde5_KDE5SalInstance_cxx 
Removed files:
	editors/libreoffice/patches: 
	                             patch-stoc_source_corereflection_criface_cxx 
	                             patch-vcl_Library_vclplug_kde4_mk 

Log message:
update to libreoffice 6.3.1.2;

kde4 support has been removed so the port moves to kde5


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/20 08:07:13

Modified files:
	regress/sys/kern/setuid: Makefile 

Log message:
Improve handling of nosuid mount option, temporary directory and
super user permissions.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/20 08:37:25

Modified files:
	devel/cmake    : Makefile distinfo 
	devel/cmake/patches: patch-Source_cmGlobalGenerator_cxx 

Log message:
Update cmake to 3.15.3

Release notes:
https://cmake.org/cmake/help/v3.15/release/3.15.htm

No OpenBSD relevant changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/20 08:51:52

Modified files:
	lang/flang/libpgmath: Makefile distinfo 
	lang/flang/libpgmath/patches: patch-lib_common_CMakeLists_txt 
	lang/flang/flang: Makefile distinfo 
	lang/flang/flang/patches: patch-runtime_flang_CMakeLists_txt 
Added files:
	lang/flang/flang/patches: 
	                          patch-tools_flang2_flang2exe_ompaccel_cpp 

Log message:
Update to the latest flang. Note the minor bump on libpgmath.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/20 08:54:12

Modified files:
	fonts/font-awesome: Makefile distinfo 

Log message:
Update font-awesome to 5.11.1


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/20 08:58:52

Modified files:
	sys/arch/octeon/dev: cn30xxgmx.c 

Log message:
Pass interface number as an explicit parameter to avoid decoding.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/20 09:01:30

Modified files:
	sys/arch/octeon/dev: cn30xxipd.c cn30xxipdvar.h 

Log message:
Remove an unused function.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/20 09:35:42

Modified files:
	sys/scsi       : scsi_base.c sd.c 

Log message:
Print inquiry and read capacity (10 and 16) data under SCSIDEBUG.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/20 10:03:28

Modified files:
	x11/tellico    : Makefile distinfo 
	x11/tellico/pkg: PLIST 

Log message:
Bugfix update tellico to 3.2.1

changelog: http://tellico-project.org/tellico-321-released


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/20 10:04:59

Modified files:
	www/tidyp      : Makefile 

Log message:
Remove defunct HOMEPAGE and switch to using GitHub project URL instead.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/20 10:36:57

Modified files:
	productivity/gnucash: Makefile 

Log message:
BUILD_DEPENDS+=shells/bash


CVSROOT:	/cvs
Module name:	ports
Changes by:	gilles@cvs.openbsd.org	2019/09/20 10:41:53

Modified files:
	mail/opensmtpd-filters/rspamd: Makefile distinfo 
	mail/opensmtpd-filters/rspamd/pkg: README 

Log message:
bump filter-rspamd to 0.1.2

ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/09/20 10:44:33

Modified files:
	sys/kern       : kern_timeout.c 

Log message:
timeout(9): process-context timeouts can be late

Move the check for lateness earlier in the softclock() loop so every
timeout is checked before being run.

While here, remove an unsafe DEBUG printf(9).  You can't safely printf(9)
within a mutex, and the print itself isn't even particularly useful.

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/20 11:21:05

Modified files:
	editors/vim    : Makefile distinfo 

Log message:
update to vim-8.1.2061


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/20 11:46:05

Modified files:
	usr.sbin/smtpd : config.c lka_session.c mta.c mta_session.c 
	                 parse.y smtpd.conf.5 smtpd.h 
	usr.sbin/smtpd/smtpd: Makefile 
Added files:
	usr.sbin/smtpd : srs.c 

Log message:
teach smtpd how to do SRS so hosts that act as forwarders don't break SPF.
this basic implementation does SRS0/SRS1 encoding/decoding, validating time
and checksums.

with insight from semarie@, ok eric@ and millert@


CVSROOT:	/cvs
Module name:	www
Changes by:	florian@cvs.openbsd.org	2019/09/20 12:35:14

Modified files:
	.              : plus.html 

Log message:
" vs ' in href src


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/20 12:47:23

Modified files:
	usr.sbin/smtpd : smtpd.conf.5 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/20 12:50:58

Modified files:
	usr.bin/ssh    : ssh-keygen.1 

Log message:
new sentence, new line;


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/20 13:58:43

Modified files:
	sys/dev/fdt    : rkclock.c rkclock_clocks.h 

Log message:
Add RK3288 GMAC clock.


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/20 14:04:44

Added files:
	net/mldonkey/patches: patch-src_utils_net_geoip_ml 

Log message:
Fix building with OCaml 4.08


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/20 14:45:28

Modified files:
	sys/dev/fdt    : rkclock.c rkclock_clocks.h 

Log message:
Start using the generic clock code on RK3288 as well by switching over the
SDMMC clock.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/20 14:46:15

Modified files:
	sys/dev/fdt    : dwmmc.c 

Log message:
DMA works on the RK3288 as well, so unconditionally enable it.


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/09/20 15:08:13

Modified files:
	.              : plus.html 

Log message:
plus for Sept. 13 - 19
tweak and ok florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	bru@cvs.openbsd.org	2019/09/20 15:21:47

Modified files:
	sys/dev/pckbc  : pms.c pmsreg.h 

Log message:
Extend the identification and validation of elantech-v4 packets to the
"crc-enabled" format.

ok awolk@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/09/20 15:40:41

Modified files:
	misc/memcached : Makefile distinfo 

Log message:
Update to 1.5.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/09/20 15:45:48

Modified files:
	net/p5-Net-Whois-Raw: Makefile distinfo 

Log message:
bugfix update to 2.99022


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/09/20 16:34:32

Modified files:
	emulators/mgba : Makefile 
	emulators/mgba/patches: patch-src_platform_sdl_main_c 

Log message:
Once again underlying graphics driver variations necessitate a broader pledge.

This time the culprit is DRI3 message passing, which requires sendfd.

The mgba pledge is now:

stdio rpath wpath cpath fattr sendfd prot_exec drm audio

Reported by thfr@ who has a nicer graphics card than I do.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/20 16:42:05

Modified files:
	sys/dev/fdt    : sxiccmu.c sxiccmu_clocks.h 

Log message:
Add A20 GMAC clocks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/20 17:21:15

Modified files:
	games/steamworks-nosteam: Makefile distinfo 
	games/steamworks-nosteam/pkg: PLIST 

Log message:
update to steamworks-nosteam 0.3.0

This includes an additional stub library (libsteamwrapper) which allows
running the game Growing Pains and potentially others that make use of
this type of intermediary library.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/20 18:12:15

Modified files:
	sys/scsi       : scsi_all.h scsi_base.c 

Log message:
Expand scsi_inquiry_data to 96 bytes to include new fields. If the
device claims to have more than the 36 bytes of SCSI2 data, issue a
2nd INQUIRY (under SCSIDEBUG!) to get up to 96 bytes of data.

Add some length sanity checks to debug output. Print VPD data under
SCSIDEBUG.


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/09/20 18:48:32

Modified files:
	www/p5-Dancer2-Plugin-Database: Makefile distinfo 

Log message:
Update www/p5-Dancer2-Plugin-Database to 2.17

From wen heping <wenheping2000 () hotmail ! com>
OK cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/09/20 18:59:31

Modified files:
	www/p5-Dancer2-Plugin-Auth-Tiny: Makefile distinfo 

Log message:
Update www/p5-Dancer2-Plugin-Auth-Tiny 0.008

From wen heping <wenheping2000 () hotmail ! com>
OK with tweaks from cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	afresh1@cvs.openbsd.org	2019/09/20 19:00:58

Modified files:
	www/p5-Dancer2-Plugin-Auth-Tiny: Makefile 

Log message:
Correct license marker in p5-Dancer2-Plugin-Auth-Tiny

Noticed by cwen@, missed by me


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/20 22:42:46

Modified files:
	usr.bin/sndiod : dev.c dev.h fdpass.c midi.c midi.h miofile.c 
	                 miofile.h siofile.c siofile.h sndiod.8 sndiod.c 
	                 utils.c utils.h 

Log message:
Allow switching between devices without disconnecting clients.

The new -F option allows alternate device to be specified.  If the
device is disconnected, the one given with the last -f or -F options
will be used instead. Similarly, the new -Q option allows an alternate
MIDI port to be specified.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/20 22:52:07

Modified files:
	usr.bin/sndiod : sndiod.c 

Log message:
Lower the default audio block size from 20ms to 10ms.

Then new default block size is supported by virtually all devices
which allows switching between devices without further configuration.
The buffer size remains the same, so this change won't affect audio
stability.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/09/20 23:03:34

Modified files:
	usr.bin/sndiod : sndiod.8 

Log message:
Fix missing word in -F and -Q descriptions.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/20 23:49:38

Modified files:
	usr.bin/sndiod : sndiod.8 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/21 00:04:22

Modified files:
	share/man/man7 : ascii.7 

Log message:
add STANDARDS section;
similar to a diff sent in by <Masanori dot Ogino at gmail dot com>,
but using the up-to-date reference rather than one from 30 years ago;
OK jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/21 00:40:49

Modified files:
	usr.sbin/smtpd : srs.c 

Log message:
there is no need to compute timestamp for SRS1: remove dead assignments.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/21 01:46:53

Modified files:
	usr.sbin/smtpd : ca.c 

Log message:
properly initialize errstr before going to fail label.

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/21 02:10:44

Modified files:
	usr.sbin/smtpd : lka_report.c 

Log message:
in report_smtp_broadcast(), the direction is expected to be "smtp-in" or
"smtp-out", but if something else happen, the `struct dict *d' will be
uninitialized when used in `dict_xget(d, event)'.

makes a logic error in smtpd to be visible instead of accessing uninitialized
memory.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/09/21 02:48:05

Modified files:
	games/openttd  : Makefile distinfo 

Log message:
Update to openttd-1.9.3

ok bentley@ bcallah@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/21 03:01:52

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
remove dead assignment

ok gilles@


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/21 03:04:08

Modified files:
	usr.sbin/smtpd : smtpc.c 

Log message:
remove dead assignment.

the return code of ssl_check_name() doesn't need to be checked as `match' is
always initialized to 0, and get 1 only on success.

ok gilles@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/09/21 03:35:09

Modified files:
	graphics/rawtherapee: Makefile distinfo 
	graphics/rawtherapee/patches: patch-CMakeLists_txt 

Log message:
update to rawtherapee-5.7


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/21 08:33:37

Modified files:
	graphics/spirv-tools: Makefile 

Log message:
Needs python3 at build time.
CMake Error at /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
Could NOT find PythonInterp (missing: PYTHON_EXECUTABLE) (Required is at
least version "3")


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/21 09:01:26

Modified files:
	sys/dev/fdt    : sxiccmu.c 

Log message:
Implement setting the CPU clock for Allwinner A10/A20 SoCs.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/21 09:36:57

Modified files:
	sys/dev/fdt    : sxitemp.c 

Log message:
Register sxitemp(4) as a thermal sensor with the thermal zone support code.
From Krystian Lewandowski.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/21 09:55:29

Modified files:
	sys/dev/fdt    : sxits.c 

Log message:
Register sxits(4) as a thermal sensor with the thermal zone support code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/21 09:56:20

Modified files:
	archivers/libzip: Makefile distinfo 

Log message:
Update to libzip-1.5.2
Changelog: https://libzip.org/news/release-1.5.2.html

Explicitly disable all crypto backends other than in-base LibreSSL.

ok rsadowski@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/21 09:57:03

Modified files:
	sys/arch/arm/mainbus: mainbus.c 

Log message:
Enable thermal zone handling code.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/21 10:23:26

Modified files:
	geo/py-laspy   : Makefile distinfo 

Log message:
Update geo/py-laspy 1.5.1 -> 1.6.0

From Wen Heping. Thanks yet again!

OK landry


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/21 15:28:23

ports/games/jbrickshooter/patches

Update of /cvs/ports/games/jbrickshooter/patches
In directory cvs.openbsd.org:/tmp/cvs-serv52573/patches

Log Message:
Directory /cvs/ports/games/jbrickshooter/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/21 15:30:39

Modified files:
	games/jbrickshooter: Makefile 
Added files:
	games/jbrickshooter/patches: patch-build_xml 

Log message:
Update javac source and target variables so this can be build with the
1.8 or 11 jdk.


CVSROOT:	/cvs
Module name:	src
Changes by:	kurt@cvs.openbsd.org	2019/09/21 16:14:34

Modified files:
	etc/etc.arm64  : login.conf 

Log message:
Increase datasize limit for ports building on arm64 in preparation
for enabling devel/jdk/11 there.

okay phessler@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/21 18:04:21

Modified files:
	mail/mutt      : Makefile distinfo 

Log message:
update to mutt-1.12.2


CVSROOT:	/cvs
Module name:	src
Changes by:	miko@cvs.openbsd.org	2019/09/21 18:47:13

Modified files:
	usr.bin/lex    : scan.l 

Log message:
Apply a patch from upstream to avoid triggering assert() in sf_pop()
when input contains an unbalanced ')' in the rules section.

ok millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/21 19:16:39

Modified files:
	sbin/sysctl    : sysctl.c 

Log message:
Let sysctl(1) work in single-user mode. Same diff applied by florian@
to ps(1).

Noted by kettenis@. florian@'s fix pointed out by maestre@.

ok maestre@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/21 19:34:32

Added files:
	lang/flang/libpgmath/patches: patch-lib_common_pgstdinit_h 

Log message:
Fix libpgmath build on arm64. Upstream changed the definition of size_t on
!amd64 to be unsigned int, which doesn't fly here.

No change on amd64; this fix fixes a preprocessor branch that is only
followed on arm64.

Noticed from the latest aarch64 bulk build log.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/21 22:43:24

Modified files:
	sys/arch/octeon/dev: octpcie.c 

Log message:
Ignore non-host ports silently.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/21 23:13:59

Modified files:
	sys/arch/octeon/dev: cn30xxpip.c cn30xxpipreg.h 

Log message:
Simplify stat register access.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/21 23:16:05

Modified files:
	sys/arch/octeon/dev: cn30xxpip.c 

Log message:
Remove unused register dump lists.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/09/21 23:28:20

Modified files:
	sysutils/u-boot: Makefile 

Log message:
use https HOMEPAGE, set MODPY_VERSION for python3 and remove
pre-build stage

part of a patch from kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 01:36:58

Modified files:
	misc/osinfo/osinfo-db: Makefile distinfo 

Log message:
Update to osinfo-db-20190920.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 01:41:57

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-263.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 01:46:40

Modified files:
	sysutils/serf  : Makefile distinfo 

Log message:
Update to (hashicorp-)serf-0.8.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 01:50:20

Modified files:
	sysutils/terraform/terraform: Makefile distinfo 

Log message:
Update to terraform-0.12.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 01:51:27

Modified files:
	print/qpdf     : Makefile distinfo 

Log message:
Update to qpdf-9.0.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 01:55:27

Modified files:
	sysutils/consul: Makefile distinfo 

Log message:
Update to consul-1.6.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 02:05:27

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.233.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 02:05:49

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.233.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 02:06:26

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.243.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 02:32:18

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 
	sysutils/terraform/provider-heroku: Makefile distinfo 
	sysutils/terraform/provider-opsgenie: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 02:38:57

Modified files:
	distrib/miniroot: install.sub 

Log message:
Add code to handle future sysupgrade(8) change where the tool will be
responsible for creating auto_upgrade.conf.
No behavior change intended.

While here, add missing `-x' to usage().

tested by and ok florian@, ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 02:45:58

Modified files:
	multimedia/aom/patches: patch-aom_ports_ppc_cpudetect_c 

Log message:
Fix typo.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 02:47:28

Modified files:
	graphics/ffmpeg: Makefile 
	graphics/ffmpeg/patches: patch-libavcodec_allcodecs_c 

Log message:
Enable support for the aom AV1 encoder.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/09/22 02:47:54

Modified files:
	sys/arch/amd64/amd64: vmm.c 

Log message:
vmm(4): fix a wrong comment in vmmopen()


CVSROOT:	/cvs
Module name:	www
Changes by:	espie@cvs.openbsd.org	2019/09/22 02:52:30

Modified files:
	.              : events.html 
Added files:
	papers         : eurobsdcon2019-plist.pdf 

Log message:
add my slides before the talk so I don't forget


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/09/22 03:10:55

Modified files:
	x11/grantlee-qt5: Makefile 
	x11/grantlee-qt5/patches: patch-CMakeLists_txt 

Log message:
grantlee-qt5: unbreak with ports-gcc
Remove '-ansi' from cxxflags as it implies c++98 with gcc,
and grantlee wants c++11.

OK rsadowski@


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/22 03:20:44

Modified files:
	misc/most      : Makefile distinfo 
	misc/most/pkg  : PLIST 

Log message:
Update most to 5.1.0.

Notable changes:

- Switch MASTER_SITES to jedsoft.org
- Remove skipv directive for portroach as it's not necessary anymore

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/22 03:20:46

Modified files:
	multimedia/aom/patches: patch-aom_ports_arm_cpudetect_c 

Log message:
Correct function name.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/22 03:25:27

Modified files:
	devel/perltidy : Makefile distinfo 
	devel/perltidy/pkg: PLIST 

Log message:
Update perltidy to 20190915.

OK sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/22 03:39:28

Modified files:
	sysutils/u-boot: Makefile 

Log message:
Revert switch to Python 3 in previous commit

u-boot still uses Python 2 in various places that cannot be controlled from
our Makefile but require patching;  it also uses Python 2 specific syntax.

OK jsg


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/09/22 04:37:07

Modified files:
	lang           : Makefile 

Log message:
Re-hook sbcl-threads flavor

ok from maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	edd@cvs.openbsd.org	2019/09/22 05:37:04

Modified files:
	lang/pypy      : Makefile distinfo 
	lang/pypy/pkg  : PLIST 

Log message:
Update lang/pypy to version 7.1.1.

Diff from Laurence Tratt. Tested by myself and kn@.

OK kn@, thanks all.


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/22 05:49:53

Modified files:
	usr.sbin/smtpd : parse.y 

Log message:
few corrections on srs grammar

ok gilles@


CVSROOT:	/cvs
Module name:	www
Changes by:	patrick@cvs.openbsd.org	2019/09/22 06:49:09

Modified files:
	.              : events.html 
Added files:
	papers         : eurobsdcon2019-bwfm.pdf 

Log message:
Add EuroBSDcon 2019 bwfm(4) slides.


CVSROOT:	/cvs
Module name:	www
Changes by:	patrick@cvs.openbsd.org	2019/09/22 07:01:07

Modified files:
	.              : events.html 

Log message:
Move EuroBSDcon 2019 to past events.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/22 07:13:48

Modified files:
	net/wireshark  : Makefile distinfo 
	net/wireshark/patches: patch-CMakeLists_txt 

Log message:
update to wireshark-3.0.5 and garbage-collect some remnants of the "no_qt"
pseudoflavour.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/22 07:14:04

Modified files:
	net/wireshark  : Tag: OPENBSD_6_5 Makefile distinfo 
	net/wireshark/patches: Tag: OPENBSD_6_5 patch-CMakeLists_txt 

Log message:
update to wireshark-3.0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/22 08:35:18

Modified files:
	games/devilutionx: Makefile 

Log message:
DevilutionX is C++14; set COMPILER appropriately. From sparc64 bulk logs.


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/22 08:46:55

Modified files:
	games/fnaify   : Makefile distinfo 
	games/fnaify/pkg: PLIST README 

Log message:
update to fnaify 2.0


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/22 09:05:37

Modified files:
	sys/arch/arm64/dev: ampintc.c 

Log message:
Fix ampintc_cpuinit() prototype.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2019/09/22 09:10:21

Modified files:
	.              : events.html 
Added files:
	papers         : eurobsdcon2019-gameoftrees.pdf 

Log message:
add slides for Game of Trees, with some addtional text not used during the talk


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/22 09:17:03

Modified files:
	sys/arch/arm/cortex: ampintc.c 

Log message:
Reduce diffs to arm64 version of this.  Mostly whitespace changes.
No functional changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/22 09:19:50

Modified files:
	devel/py-urwid : Makefile distinfo 

Log message:
Update py-urwid to 2.0.1

Prodded by <clematis at insiberia dot net> as new requirement for net/toot.

OK kmos


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/22 09:25:15

Modified files:
	net/toot       : Makefile distinfo 
	net/toot/pkg   : PLIST 

Log message:
Update toot to 0.24.0

- Add toot tui, new and improved TUI implemented written with the help of
the urwid library
- Deprecate toot curses. It will show a deprecation notice when started.
To be removed in a future release
- Add --editor option to toot post to allow composing toots in an editor
- Add user agent string to all requests, fixes interaction with instances
protected by Cloudflare

Initial diff, DESCR update, prodding and tests from
< clematis at insiberia dot net>, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/22 09:29:26

Modified files:
	math/py-mpmath : Makefile distinfo 
	math/py-mpmath/pkg: PLIST 

Log message:
Update math/py-mpmath 0.19 -> 1.1.0

From Wen Heping once again. Thank you.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/22 09:34:27

Modified files:
	net/toot       : Makefile 
	net/toot/pkg   : DESCR 

Log message:
Actually update DESCR, drop useless version specs


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/22 09:35:16

Modified files:
	devel/pudb     : Makefile 

Log message:
Fix tests for devel/pudb.

They didn't run previously "0 tests run". This fixes that.

OK kn


CVSROOT:	/cvs
Module name:	ports
Changes by:	thfr@cvs.openbsd.org	2019/09/22 09:46:26

Modified files:
	devel/sdl2     : Makefile distinfo 
	devel/sdl2/patches: patch-Makefile_in patch-src_SDL_c 
	                    patch-src_joystick_SDL_gamecontroller_c 
	                    patch-src_video_SDL_egl_c 
Removed files:
	devel/sdl2/patches: patch-src_joystick_bsd_SDL_sysjoystick_c 

Log message:
update to sdl2 2.0.10

testing and ok brynet@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/22 09:46:37

Modified files:
	lang/abcl      : Makefile 

Log message:
This version is not compatible with jdk-11. Adjust MODJAVA_VER to 1.8 only.

Okay Timo Myyra <timo.myyra@bittivirhe.fi> MAINTAINER


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/09/22 10:32:01

Modified files:
	build          : mirrors.dat 

Log message:
add mirror.linux.pizza, a new mirror in Sk��vde, Sweden
thanks to Jonathan S��lea


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/09/22 10:32:16

Modified files:
	.              : ftp.html ftplist httpslist 
	openbgpd       : ftp.html 
	openssh        : ftp.html portable.html 
	openntpd       : portable.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/22 11:19:07

Modified files:
	www/mozilla    : mozilla.port.mk 
	www/tor-browser/browser: Makefile 
	www/firefox-esr: Makefile 
	www/mozilla-firefox: Makefile 
	www/seamonkey  : Makefile 
	mail/mozilla-thunderbird: Makefile 

Log message:
factor some common parts into mozilla.port.mk and fix DPB_PROPERTIES which
is supposed to be "lonesome" on i386 because parts of the build take a lot of
ram, but actually ended up as "lonesome parallel" due to a +=. hoping this
will reduce the frequent build failures on i386.  ok landry


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/22 11:59:03

Modified files:
	net/unison/2.4x: Makefile 
	net/unison/2.4x/pkg: README 
	net/unison/2.5x: Makefile 
	net/unison/2.5x/pkg: README 

Log message:
Add instructions how to build unison with fixed OCaml version via OPAM.

reviewed by sthen@, ok bket@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/22 12:10:44

Modified files:
	mail/geary     : Makefile distinfo 
	mail/geary/patches: 
	                    patch-test_engine_imap-db_imap-db-database-test_vala 
	mail/geary/pkg : PLIST 

Log message:
Update to geary 3.34.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/22 12:29:54

Modified files:
	net/unison/2.4x/pkg: README 
	net/unison/2.5x/pkg: README 

Log message:
Correct the instructions to set OPAMROOT. Problem reported by Laurence Tratt.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/22 13:13:46

Modified files:
	sys/arch/arm/cortex: ampintc.c 

Log message:
Make the code that calculates the min/max priorities identical to the arm64
version.  The divergence was probably an accident and the arm64 code makes
more sense and is better tested.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/22 13:34:56

Modified files:
	net/weechat    : Makefile distinfo 
	net/weechat/patches: patch-tests_CMakeLists_txt 
Removed files:
	net/weechat/patches: patch-src_core_hook_wee-hook-timer_h 
	                     patch-src_plugins_CMakeLists_txt 
	                     patch-src_plugins_python_CMakeLists_txt 

Log message:
Update weechat to 2.6

With this update we switch from py2 to py3 as default. See changlog:
https://weechat.org/news/107/20190908-Version-2.6/
https://weechat.org/files/changelog/ChangeLog-2.6.html


CVSROOT:	/cvs
Module name:	www
Changes by:	bluhm@cvs.openbsd.org	2019/09/22 13:36:35

Modified files:
	.              : events.html 
Added files:
	papers         : eurobsdcon2019-perform-slides.pdf 

Log message:
Add EuroBSDCon 2019 performance measuring slides.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/22 14:15:51

Modified files:
	lang/pypy      : Makefile 

Log message:
Use find -delete and Python's -m compileall properly

Replace xargs dances with cleaner builtin options;  no PLIST change.

Input and OK sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/22 15:39:53

Modified files:
	games/valyriatear: Makefile distinfo 
	games/valyriatear/patches: patch-src_CMakeLists_txt 
	games/valyriatear/pkg: PLIST 
Removed files:
	games/valyriatear/patches: patch-src_common_options_handler_cpp 
	                           patch-src_engine_system_cpp 
	                           patch-src_engine_video_video_cpp 
	                           patch-src_luabind_luabind_detail_object_rep_hpp 
	                           patch-src_luabind_luabind_object_hpp 
	                           patch-src_main_cpp 
	                           patch-src_main_options_cpp 
	                           patch-src_utils_utils_files_cpp 

Log message:
Update to valyriatear-1.1.0
Changelog: https://github.com/ValyriaTear/ValyriaTear/releases/tag/1.1.0
ok solene@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/22 15:44:04

ports/devel/bpython/patches

Update of /cvs/ports/devel/bpython/patches
In directory cvs.openbsd.org:/tmp/cvs-serv72308/patches

Log Message:
Directory /cvs/ports/devel/bpython/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/22 15:46:07

Modified files:
	devel/bpython  : Makefile 
Added files:
	devel/bpython/patches: patch-bpython_test_test_args_py 

Log message:
Enable tests for devel/bpython

Originally there was no python3 flavor of py-twisted. It has
existed now for a while, so enable the tests.

Also patch 3 tests to be skipped since they just hang forever.

ok bcallah


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/09/23 01:18:04

Modified files:
	www/chromium   : Makefile distinfo 
	www/chromium/patches: patch-BUILD_gn patch-base_BUILD_gn 
	                      patch-base_debug_debugger_posix_cc 
	                      patch-base_debug_stack_trace_posix_cc 
	                      patch-base_files_file_util_posix_cc 
	                      patch-base_process_process_metrics_h 
	                      patch-base_process_process_metrics_posix_cc 
	                      patch-base_process_process_posix_cc 
	                      patch-base_system_sys_info_posix_cc 
	                      patch-base_test_launcher_test_launcher_cc 
	                      patch-build_config_compiler_BUILD_gn 
	                      patch-build_gn_run_binary_py 
	                      patch-build_toolchain_gcc_toolchain_gni 
	                      patch-cc_BUILD_gn 
	                      patch-chrome_app_chrome_content_browser_overlay_manifest_cc 
	                      patch-chrome_app_chrome_main_cc 
	                      patch-chrome_app_chrome_main_delegate_cc 
	                      patch-chrome_app_chromium_strings_grd 
	                      patch-chrome_app_generated_resources_grd 
	                      patch-chrome_app_google_chrome_strings_grd 
	                      patch-chrome_app_settings_strings_grdp 
	                      patch-chrome_app_theme_chrome_unscaled_resources_grd 
	                      patch-chrome_browser_about_flags_cc 
	                      patch-chrome_browser_browser_process_impl_cc 
	                      patch-chrome_browser_browser_process_impl_h 
	                      patch-chrome_browser_browser_resources_grd 
	                      patch-chrome_browser_chrome_browser_main_cc 
	                      patch-chrome_browser_chrome_content_browser_client_cc 
	                      patch-chrome_browser_chrome_content_browser_client_h 
	                      patch-chrome_browser_custom_handlers_protocol_handler_registry_cc 
	                      patch-chrome_browser_devtools_devtools_eye_dropper_cc 
	                      patch-chrome_browser_download_chrome_download_manager_delegate_cc 
	                      patch-chrome_browser_download_download_item_model_cc 
	                      patch-chrome_browser_extensions_BUILD_gn 
	                      patch-chrome_browser_extensions_api_settings_private_prefs_util_cc 
	                      patch-chrome_browser_extensions_api_webrtc_logging_private_webrtc_logging_private_api_cc 
	                      patch-chrome_browser_extensions_browser_context_keyed_service_factories_cc 
	                      patch-chrome_browser_extensions_external_provider_impl_cc 
	                      patch-chrome_browser_flag_descriptions_cc 
	                      patch-chrome_browser_flag_descriptions_h 
	                      patch-chrome_browser_media_webrtc_webrtc_log_uploader_cc 
	                      patch-chrome_browser_media_webrtc_webrtc_logging_handler_host_cc 
	                      patch-chrome_browser_media_webrtc_webrtc_logging_handler_host_h 
	                      patch-chrome_browser_metrics_chrome_browser_main_extra_parts_metrics_cc 
	                      patch-chrome_browser_metrics_chrome_metrics_service_client_cc 
	                      patch-chrome_browser_net_system_network_context_manager_cc 
	                      patch-chrome_browser_notifications_notification_display_service_impl_cc 
	                      patch-chrome_browser_password_manager_password_store_factory_cc 
	                      patch-chrome_browser_platform_util_linux_cc 
	                      patch-chrome_browser_policy_configuration_policy_handler_list_factory_cc 
	                      patch-chrome_browser_prefs_browser_prefs_cc 
	                      patch-chrome_browser_prefs_pref_service_incognito_whitelist_cc 
	                      patch-chrome_browser_profiles_profile_impl_cc 
	                      patch-chrome_browser_resources_plugin_metadata_plugins_linux_json 
	                      patch-chrome_browser_resources_settings_appearance_page_appearance_page_html 
	                      patch-chrome_browser_safe_browsing_incident_reporting_incident_reporting_service_cc 
	                      patch-chrome_browser_signin_signin_util_cc 
	                      patch-chrome_browser_ssl_ssl_error_controller_client_cc 
	                      patch-chrome_browser_sync_chrome_sync_client_cc 
	                      patch-chrome_browser_task_manager_sampling_task_group_cc 
	                      patch-chrome_browser_task_manager_sampling_task_group_sampler_cc 
	                      patch-chrome_browser_task_manager_sampling_task_manager_impl_cc 
	                      patch-chrome_browser_ui_browser_command_controller_cc 
	                      patch-chrome_browser_ui_sad_tab_cc 
	                      patch-chrome_browser_ui_startup_startup_browser_creator_cc 
	                      patch-chrome_browser_ui_tab_helpers_cc 
	                      patch-chrome_browser_ui_toolbar_app_menu_model_cc 
	                      patch-chrome_browser_ui_views_accelerator_table_cc 
	                      patch-chrome_browser_ui_views_first_run_dialog_cc 
	                      patch-chrome_browser_ui_views_frame_browser_view_cc 
	                      patch-chrome_browser_ui_views_frame_opaque_browser_frame_view_cc 
	                      patch-chrome_browser_ui_views_frame_system_menu_model_builder_cc 
	                      patch-chrome_browser_ui_views_tabs_new_tab_button_cc 
	                      patch-chrome_browser_ui_views_tabs_tab_drag_controller_cc 
	                      patch-chrome_browser_ui_webui_chrome_web_ui_controller_factory_cc 
	                      patch-chrome_browser_ui_webui_settings_settings_localized_strings_provider_cc 
	                      patch-chrome_common_chrome_features_cc 
	                      patch-chrome_common_chrome_features_h 
	                      patch-chrome_common_chrome_paths_cc 
	                      patch-chrome_common_chrome_paths_h 
	                      patch-chrome_common_chrome_switches_cc 
	                      patch-chrome_common_chrome_switches_h 
	                      patch-chrome_common_pref_names_cc 
	                      patch-chrome_common_pref_names_h 
	                      patch-chrome_common_webui_url_constants_cc 
	                      patch-chrome_common_webui_url_constants_h 
	                      patch-chrome_renderer_chrome_content_renderer_client_cc 
	                      patch-chrome_test_BUILD_gn 
	                      patch-chrome_test_chromedriver_chrome_launcher_cc 
	                      patch-chromecast_browser_cast_browser_main_parts_cc 
	                      patch-chromecast_browser_cast_content_browser_client_cc 
	                      patch-components_autofill_core_browser_autofill_experiments_cc 
	                      patch-components_autofill_core_browser_personal_data_manager_cc 
	                      patch-components_autofill_core_common_autofill_util_cc 
	                      patch-components_cookie_config_cookie_store_util_cc 
	                      patch-components_crash_content_app_BUILD_gn 
	                      patch-components_crash_core_common_BUILD_gn 
	                      patch-components_download_internal_common_base_file_cc 
	                      patch-components_feature_engagement_public_event_constants_cc 
	                      patch-components_feature_engagement_public_event_constants_h 
	                      patch-components_metrics_BUILD_gn 
	                      patch-components_network_session_configurator_browser_network_session_configurator_cc 
	                      patch-components_new_or_sad_tab_strings_grdp 
	                      patch-components_policy_resources_policy_templates_json 
	                      patch-components_policy_tools_generate_policy_source_py 
	                      patch-components_storage_monitor_BUILD_gn 
	                      patch-content_app_content_main_runner_impl_cc 
	                      patch-content_browser_browser_child_process_host_impl_cc 
	                      patch-content_browser_browser_main_loop_cc 
	                      patch-content_browser_builtin_service_manifests_cc 
	                      patch-content_browser_gpu_gpu_process_host_cc 
	                      patch-content_browser_media_media_internals_cc 
	                      patch-content_browser_renderer_host_input_input_device_change_observer_cc 
	                      patch-content_browser_renderer_host_render_message_filter_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_cc 
	                      patch-content_browser_renderer_host_render_process_host_impl_h 
	                      patch-content_browser_renderer_host_render_widget_host_view_aura_cc 
	                      patch-content_browser_renderer_host_render_widget_host_view_event_handler_cc 
	                      patch-content_browser_service_manager_service_manager_context_cc 
	                      patch-content_browser_webui_shared_resources_data_source_cc 
	                      patch-content_common_user_agent_cc 
	                      patch-content_gpu_gpu_main_cc 
	                      patch-content_ppapi_plugin_ppapi_blink_platform_impl_cc 
	                      patch-content_ppapi_plugin_ppapi_blink_platform_impl_h 
	                      patch-content_public_common_common_param_traits_macros_h 
	                      patch-content_public_common_content_features_cc 
	                      patch-content_public_common_content_switches_cc 
	                      patch-content_public_common_content_switches_h 
	                      patch-content_renderer_media_stream_processed_local_audio_source_cc 
	                      patch-content_renderer_render_thread_impl_cc 
	                      patch-content_renderer_renderer_blink_platform_impl_cc 
	                      patch-content_renderer_renderer_blink_platform_impl_h 
	                      patch-content_shell_BUILD_gn 
	                      patch-content_shell_browser_shell_browser_context_cc 
	                      patch-content_shell_browser_shell_browser_main_parts_cc 
	                      patch-device_bluetooth_BUILD_gn 
	                      patch-extensions_browser_api_messaging_message_service_cc 
	                      patch-extensions_common_feature_switch_cc 
	                      patch-google_apis_gcm_engine_heartbeat_manager_cc 
	                      patch-gpu_command_buffer_common_gpu_memory_buffer_support_cc 
	                      patch-gpu_command_buffer_service_external_vk_image_backing_cc 
	                      patch-gpu_command_buffer_service_external_vk_image_gl_representation_cc 
	                      patch-gpu_ipc_service_gpu_init_cc 
	                      patch-gpu_ipc_service_gpu_watchdog_thread_cc 
	                      patch-gpu_ipc_service_gpu_watchdog_thread_h 
	                      patch-gpu_vulkan_generate_bindings_py 
	                      patch-gpu_vulkan_vulkan_function_pointers_cc 
	                      patch-gpu_vulkan_vulkan_function_pointers_h 
	                      patch-headless_lib_browser_headless_content_browser_client_cc 
	                      patch-headless_lib_browser_headless_content_browser_client_h 
	                      patch-headless_lib_browser_headless_request_context_manager_cc 
	                      patch-ipc_ipc_channel_h 
	                      patch-media_audio_BUILD_gn 
	                      patch-media_base_scopedfd_helper_h 
	                      patch-media_base_video_frame_cc 
	                      patch-media_base_video_frame_h 
	                      patch-media_capture_video_linux_v4l2_capture_delegate_cc 
	                      patch-media_capture_video_video_capture_device_client_cc 
	                      patch-media_mojo_services_gpu_mojo_media_client_cc 
	                      patch-media_video_gpu_memory_buffer_video_frame_pool_cc 
	                      patch-net_BUILD_gn 
	                      patch-net_base_network_change_notifier_cc 
	                      patch-net_base_network_change_notifier_posix_cc 
	                      patch-net_proxy_resolution_proxy_resolution_service_cc 
	                      patch-net_socket_udp_socket_posix_cc 
	                      patch-net_url_request_url_request_context_builder_cc 
	                      patch-pdf_pdfium_pdfium_engine_cc 
	                      patch-remoting_base_chromoting_event_cc 
	                      patch-remoting_host_host_attributes_cc 
	                      patch-remoting_host_host_details_cc 
	                      patch-remoting_host_it2me_it2me_native_messaging_host_main_cc 
	                      patch-remoting_host_me2me_desktop_environment_cc 
	                      patch-remoting_host_remoting_me2me_host_cc 
	                      patch-services_device_usb_BUILD_gn 
	                      patch-services_network_BUILD_gn 
	                      patch-services_network_network_context_cc 
	                      patch-services_network_network_service_cc 
	                      patch-services_network_network_service_h 
	                      patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_cc 
	                      patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_h 
	                      patch-services_video_capture_broadcasting_receiver_cc 
	                      patch-third_party_angle_BUILD_gn 
	                      patch-third_party_angle_src_libANGLE_Display_cpp 
	                      patch-third_party_angle_src_libANGLE_renderer_driver_utils_h 
	                      patch-third_party_angle_third_party_vulkan-loader_BUILD_gn 
	                      patch-third_party_blink_renderer_core_html_canvas_canvas_async_blob_creator_cc 
	                      patch-third_party_blink_renderer_core_inspector_inspector_memory_agent_cc 
	                      patch-third_party_blink_renderer_core_layout_layout_view_cc 
	                      patch-third_party_blink_renderer_platform_BUILD_gn 
	                      patch-third_party_blink_renderer_platform_fonts_font_cache_cc 
	                      patch-third_party_blink_renderer_platform_fonts_font_cache_h 
	                      patch-third_party_blink_renderer_platform_fonts_skia_font_cache_skia_cc 
	                      patch-third_party_blink_renderer_platform_heap_thread_state_cc 
	                      patch-third_party_boringssl_BUILD_generated_gni 
	                      patch-third_party_ffmpeg_BUILD_gn 
	                      patch-third_party_perfetto_src_tracing_core_tracing_service_impl_cc 
	                      patch-third_party_skia_src_sksl_SkSLString_h 
	                      patch-third_party_sqlite_BUILD_gn 
	                      patch-third_party_sqlite_amalgamation_sqlite3_c 
	                      patch-third_party_swiftshader_src_Main_SwiftConfig_cpp 
	                      patch-third_party_swiftshader_src_OpenGL_libEGL_libEGL_cpp 
	                      patch-third_party_swiftshader_third_party_llvm-7_0_configs_linux_include_llvm_Config_config_h 
	                      patch-third_party_webrtc_BUILD_gn 
	                      patch-third_party_webrtc_modules_audio_device_BUILD_gn 
	                      patch-third_party_webrtc_rtc_base_BUILD_gn 
	                      patch-third_party_webrtc_rtc_base_network_cc 
	                      patch-third_party_webrtc_rtc_base_platform_thread_types_cc 
	                      patch-third_party_webrtc_system_wrappers_BUILD_gn 
	                      patch-third_party_webrtc_webrtc_gni 
	                      patch-third_party_zlib_BUILD_gn 
	                      patch-tools_gn_tools_gn_args_cc 
	                      patch-tools_json_schema_compiler_feature_compiler_py 
	                      patch-tools_protoc_wrapper_protoc_wrapper_py 
	                      patch-ui_base_resource_resource_bundle_cc 
	                      patch-ui_events_devices_x11_device_data_manager_x11_cc 
	                      patch-ui_gfx_BUILD_gn 
	                      patch-ui_gfx_font_fallback_linux_cc 
	                      patch-ui_gfx_mojo_buffer_types_struct_traits_h 
	                      patch-ui_gl_BUILD_gn 
	                      patch-ui_gl_generate_bindings_py 
	                      patch-ui_message_center_views_message_popup_view_cc 
	                      patch-ui_native_theme_native_theme_base_cc 
	                      patch-ui_native_theme_native_theme_h 
	                      patch-ui_views_bubble_bubble_dialog_delegate_view_cc 
	                      patch-ui_views_controls_label_cc 
	                      patch-ui_views_controls_textfield_textfield_cc 
	                      patch-ui_views_corewm_tooltip_aura_cc 
	                      patch-ui_views_examples_widget_example_cc 
	                      patch-ui_views_widget_desktop_aura_desktop_window_tree_host_platform_cc 
	                      patch-ui_views_window_custom_frame_view_cc 
	                      patch-ui_webui_resources_js_cr_js 
	                      patch-v8_src_api_api_cc 
	                      patch-v8_src_base_platform_platform-posix_cc 
	                      patch-v8_tools_run_py 
	www/chromium/pkg: PLIST 
Added files:
	www/chromium/files: pledge.utility_audio pledge.utility_network 
	                    unveil.utility_audio unveil.utility_network 
	www/chromium/patches: patch-base_base_switches_cc 
	                      patch-base_base_switches_h 
	                      patch-base_memory_platform_shared_memory_region_h 
	                      patch-base_memory_platform_shared_memory_region_posix_cc 
	                      patch-base_memory_protected_memory_h 
	                      patch-base_memory_protected_memory_posix_cc 
	                      patch-base_syslog_logging_cc 
	                      patch-chrome_browser_background_background_mode_manager_cc 
	                      patch-chrome_browser_policy_browser_signin_policy_handler_cc 
	                      patch-chrome_browser_send_tab_to_self_send_tab_to_self_client_service_cc 
	                      patch-chrome_browser_sharing_click_to_call_feature_cc 
	                      patch-chrome_browser_sharing_click_to_call_feature_h 
	                      patch-chrome_browser_ui_ui_features_cc 
	                      patch-chrome_browser_ui_ui_features_h 
	                      patch-chrome_browser_ui_views_tabs_tab_cc 
	                      patch-chrome_common_media_cdm_host_file_path_cc 
	                      patch-components_autofill_core_common_autofill_payments_features_cc 
	                      patch-components_feature_engagement_public_feature_constants_cc 
	                      patch-components_feature_engagement_public_feature_constants_h 
	                      patch-components_feature_engagement_public_feature_list_cc 
	                      patch-components_feature_engagement_public_feature_list_h 
	                      patch-content_browser_scheduler_responsiveness_jank_monitor_cc 
	                      patch-content_browser_scheduler_responsiveness_watcher_cc 
	                      patch-extensions_shell_browser_api_runtime_shell_runtime_api_delegate_cc 
	                      patch-extensions_shell_browser_shell_extensions_api_client_cc 
	                      patch-extensions_shell_browser_shell_extensions_api_client_h 
	                      patch-extensions_shell_common_switches_cc 
	                      patch-extensions_shell_common_switches_h 
	                      patch-media_gpu_libyuv_image_processor_cc 
	                      patch-media_gpu_linux_platform_video_frame_utils_cc 
	                      patch-media_mojo_clients_mojo_video_encode_accelerator_cc 
	                      patch-media_mojo_interfaces_video_frame_struct_traits_cc 
	                      patch-net_nqe_network_quality_estimator_cc 
	                      patch-net_url_request_url_fetcher_cc 
	                      patch-net_url_request_url_fetcher_h 
	                      patch-net_url_request_url_request_context_cc 
	                      patch-net_url_request_url_request_context_h 
	                      patch-services_audio_service_factory_cc 
	                      patch-third_party_perfetto_include_perfetto_ext_base_event_fd_h 
	                      patch-third_party_perfetto_include_perfetto_ext_base_thread_utils_h 
	                      patch-third_party_swiftshader_src_System_SharedLibrary_hpp 
	                      patch-tools_json_schema_compiler_cpp_bundle_generator_py 
Removed files:
	www/chromium/patches: patch-base_debug_stack_trace_h 
	                      patch-chrome_browser_ui_browser_window_h 
	                      patch-content_browser_BUILD_gn 
	                      patch-content_browser_memory_memory_monitor_cc 
	                      patch-content_renderer_render_process_impl_cc 
	                      patch-headless_lib_browser_headless_request_context_manager_h 
	                      patch-services_network_public_cpp_features_cc 
	                      patch-third_party_perfetto_include_perfetto_base_event_h 
	                      patch-third_party_perfetto_include_perfetto_base_thread_utils_h 
	                      patch-third_party_perfetto_include_perfetto_base_watchdog_posix_h 
	                      patch-ui_views_widget_desktop_aura_desktop_window_tree_host_x11_cc 

Log message:
update to 77.0.3865.90;

This update enables two new process types, the network and audio processes
which are also pledge'd and unveil'd.
These processes come with their own pledge and unveil config files for
the time being so that we can shrink or extend their rights as needed.


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/23 02:34:07

Modified files:
	regress/usr.bin/lastcomm: Makefile 
Added files:
	regress/usr.bin/lastcomm: callstack.c syscallwx.c trapstack.c 
Removed files:
	regress/usr.bin/lastcomm: stackmap.c 

Log message:
Add lastcomm(1) test for system call from writeable memory.  This
requires that /usr/obj is mounted wxallowed, otherwise the test is
skipped.  Split the stack map test into two stack pointer validation
tests, one during syscall and one in the trap handler.
Currently the tests during system call fail on amd64 as the signal
handler is not executed properly.  On i386 and arm64 they pass.  On
armv7 something else is broken.


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/09/23 03:41:34

Modified files:
	devel/got      : Makefile distinfo 

Log message:
Update to got-0.16:

- replace fgetln(3) with getline(3) for portability (patch by Steven McDonald)
- fix implicit time.h includes (patch by Steven McDonald)
- fix tiny memory leaks and other minor bugs found by jj@ with scan-build
- fix missing error checks (found by jj@ with scan-build and by Steven McDonald)
- avoid a couple of potential NULL derefs (found by jj@ with scan-build)
- fix cosmetic display issues involving \n and TABs in tog(1)


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/23 05:00:42

Modified files:
	sys/net        : rtsock.c 

Log message:
Do more sanity checks when accepting socket addresses in routing
messages from user land.  Inspect length field early in rtm_xaddrs().
Strings must be NUL terminated.  The socket address type and length
depend on the routing message type.  Currently checks are not super
strict to avoid too much user land fallout.
OK mpi@
Reported-by: syzbot+638dbf7851da8e255af5@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/23 06:04:10

Modified files:
	editors/libreoffice: Makefile 

Log message:
mark BROKEN-i386 for now to avoid wasting time in bulks


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/23 06:30:30

Modified files:
	textproc/miller: Makefile distinfo 

Log message:
Update miller to 5.6.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bcallah@cvs.openbsd.org	2019/09/23 07:19:13

Modified files:
	editors/dte    : Makefile distinfo 

Log message:
Update to dte-1.9
Changelog: https://craigbarnes.gitlab.io/dte/releases.html


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/23 07:27:37

Modified files:
	devel/py-monotonic: Makefile distinfo 
	devel/py-monotonic/pkg: PLIST 

Log message:
Update devel/py-monotonic 1.3 -> 1.5

Update to latest. Drop the python3 flavor since it is a backport of
functionality from later Python 3.x (already swept our tree to eliminate
Python3 consumers). Anything Python 3.x new that uses py-monotonic
should be fixed to use time.monotonic instead.

OK sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/23 07:31:15

Modified files:
	www/py-mako    : Makefile distinfo 

Log message:
Update www/py-www 1.0.14 -> 1.1.0

Update to latest version and remove py-mock for the python3 flavor
while we're here. (It's not needed).

OK sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/23 07:38:23

Modified files:
	devel/py-testpath: Makefile distinfo 
	devel/py-testpath/pkg: PLIST 
Added files:
	devel/py-testpath/patches: patch-setup_py 

Log message:
Update devel/py-testpath 0.3.1 -> 0.4.2

bring us up to date. Switch over to using MODPY_SETUPTOOLS and
MODPY_PYTEST which removes the need for py-nose in TEST_DEPENDS.
Drop the unnecessary MODPY_FLAVOR off of py-pathlib since that is
in a conditional for Python 3 only.

Moving to MODPY_SETUPTOOLS requires patching setup.py to use
setuptools rather than the obsolete distutils.

OK sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/23 07:39:27

Modified files:
	java/jna       : Makefile 

Log message:
This version is not compatible with jdk-11. Adjust MODJAVA_VER to 1.8 only.

okay jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/23 07:41:39

Modified files:
	devel/py-buildbot: Makefile.inc 
	devel/py-buildbot/buildbot: distinfo 
	devel/py-buildbot/buildbot/pkg: PLIST 
	devel/py-buildbot/console-view: distinfo 
	devel/py-buildbot/grid-view: distinfo 
	devel/py-buildbot/pkg: distinfo 
	devel/py-buildbot/waterfall-view: distinfo 
	devel/py-buildbot/www: distinfo 
	devel/py-buildslave: Makefile distinfo 

Log message:
Update to buildbot 2.4.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/23 07:42:02

Modified files:
	geo/pgrouting  : Makefile distinfo 
	geo/pgrouting/pkg: PLIST 

Log message:
Update to pgrouting 2.6.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/23 07:42:19

Modified files:
	geo/mapserver  : Makefile distinfo 

Log message:
Update to mapserver 7.4.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	pascal@cvs.openbsd.org	2019/09/23 07:52:05

Modified files:
	net/tor        : Makefile distinfo 
	net/tor/patches: patch-configure_ac 
	                 patch-src_config_torrc_sample_in 

Log message:
Update to tor 0.4.1.6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/23 08:04:25

Modified files:
	java/tanukiwrapper: Makefile 

Log message:
This version is not compatible with jdk-11. Adjust MODJAVA_VER to 1.8 only.

okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/23 09:13:22

Modified files:
	www/liferea    : Makefile distinfo 
	www/liferea/patches: patch-src_ui_liferea_shell_c 
	www/liferea/pkg: PLIST 

Log message:
update to liferea-1.12.6b, from maintainer


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/23 09:13:41

Modified files:
	www/liferea    : Makefile 

Log message:
remove BROKEN-i386 to give it another chance


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/23 09:14:25

Modified files:
	net/openfire   : Makefile 

Log message:
This version is not compatible with jdk-11. Adjust MODJAVA_VER to 1.8 only.

okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/23 09:16:43

Modified files:
	databases/db/v4: Makefile 
	databases/db/v4/patches: patch-dist_configure 

Log message:
Update javac source and target variables so this can be built with
the 1.8 or 11 jdk.

okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/23 09:17:35

Modified files:
	games/lwjgl    : Makefile 

Log message:
This version is not compatible with jdk-11. Adjust MODJAVA_VER to 1.8 only.

okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/23 09:21:17

Modified files:
	sys/scsi       : scsi_base.c scsiconf.c scsiconf.h 

Log message:
When printing the scsi_link info under SCSIDEBUG show state, luns,
openings, flags and quirks.


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/23 09:41:11

Modified files:
	usr.bin/tmux   : cmd-resize-window.c resize.c spawn.c tmux.h 

Log message:
Use the correct size for new windows when window-size is latest,
reported by Vamsi Krishna Avula in GitHub issue 1917.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/23 10:09:25

Modified files:
	devel/jdk/11   : Makefile distinfo 
	devel/jdk/11/pkg: PLIST 
Added files:
	devel/jdk/11/pkg: PFRAG.ci 
Removed files:
	devel/jdk/11/patches: patch-make_autoconf_flags-cflags_m4 
	                      patch-make_hotspot_lib_JvmOverrideFiles_gmk 
	                      patch-src_hotspot_os_cpu_bsd_x86_os_bsd_x86_cpp 

Log message:
Update devel/jdk/11 to 11.0.5+8 which includes aarch64 support.
* 11.0.5 is not released officially yet so this is realy a pre-
release of 11.0.5 and will be updated again when the final
upstream release occurs.
* Adds aarch64 support.
* Contains many upstream changes between 11.0.4+11 and 11.0.5+8
* Contains many bsd-port changes to improve stablity and
compatiblity.

okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/23 10:54:23

Modified files:
	devel/jdk      : java.port.mk 

Log message:
Update java.port.mk module to support jdk/11 only on aarch64.

okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/23 10:55:57

Modified files:
	databases/db   : Makefile.inc 

Log message:
Enable the java sub-package on aarch64


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/23 12:10:43

Modified files:
	sys/arch/arm/arm: cpu.c 
	sys/arch/arm/include: cpu.h 

Log message:
Implement DVFS support.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/23 13:24:45

Modified files:
	infrastructure/db: user.list 
	mail/opensmtpd-filters/dkimsign: Makefile 
	mail/opensmtpd-filters/dkimsign/pkg: PLIST 
Added files:
	mail/opensmtpd-filters/dkimsign/pkg: README 

Log message:
Add a dedicated user for the dkimsign filter, including a default directory
to put the private key.

While here also add a README on how to set up the filter.

With help from and OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/23 13:57:56

Modified files:
	lang/vala      : Makefile distinfo 

Log message:
update to vala-0.44.8


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/23 13:59:12

Modified files:
	x11/polybar    : Makefile 

Log message:
disable i3 support for now; it gets picked up during configure (though we had no BDEP on it)
and I don't think it's worthwhile yet to force i3 as a dependency of polybar. we can still
add an -i3 subpackage if there is a request for it.

breakge spotted by naddy@


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/09/23 14:42:48

Modified files:
	build/mirrors  : ftp.html.end 

Log message:
Update the version number in the sentence showing the estimated disk
space; previously it was "approximately 700GB" estimated for 6.1. Each
arch has grown since then but packages for some arch are no longer
produced so keeping the approx total the same for now.


CVSROOT:	/cvs
Module name:	www
Changes by:	sthen@cvs.openbsd.org	2019/09/23 14:43:07

Modified files:
	.              : ftp.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/23 14:45:00

Modified files:
	devel          : Makefile 

Log message:
unhook py-monotonic,python3


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/09/23 16:22:10

Modified files:
	lang/janet     : Makefile distinfo 
	lang/janet/patches: patch-Makefile 

Log message:
Update janet to 0.3.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/24 00:56:44

Modified files:
	www/webkitgtk4 : Makefile distinfo 
	www/webkitgtk4/patches: patch-CMakeLists_txt 
	                        patch-Source_JavaScriptCore_assembler_ARM64Assembler_h 
	                        patch-Source_JavaScriptCore_assembler_ARMv7Assembler_h 
	                        patch-Source_JavaScriptCore_jit_ExecutableAllocator_cpp 
	                        patch-Source_JavaScriptCore_offlineasm_arm64_rb 
	                        patch-Source_WTF_wtf_PlatformRegisters_h 
	                        patch-Source_WTF_wtf_Platform_h 
	                        patch-Source_WebKit_Shared_Plugins_unix_PluginSearchPath_cpp 
	                        patch-Source_cmake_OptionsCommon_cmake 
	                        patch-Source_cmake_WebKitCompilerFlags_cmake 
	                        patch-Source_cmake_WebKitFeatures_cmake 
	www/webkitgtk4/pkg: PLIST 
Removed files:
	www/webkitgtk4/patches: 
	                        patch-Source_WebCore_Modules_indexeddb_server_SQLiteIDBBackingStore_cpp 
	                        patch-Source_WebCore_contentextensions_DFACombiner_cpp 
	                        patch-Source_WebCore_contentextensions_NFAToDFA_cpp 

Log message:
Update to webkitgtk4-2.26.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/09/24 03:17:09

Modified files:
	www/webkitgtk4/patches: patch-Source_cmake_OptionsCommon_cmake 

Log message:
make sure that the internal library path is first in the list
so that linking does not fail when there is a webkitgtk4 package
installed already

ok aja@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/24 03:58:59

Modified files:
	usr.bin/tmux   : cmd-select-pane.c 

Log message:
Make select-pane -P set window-active-style also to match previous
behaviour, reported by Thomas Sattler.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/24 05:19:59

Modified files:
	devel/glib2mm  : Makefile distinfo 

Log message:
Update to glib2mm-2.60.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/24 05:20:21

Modified files:
	www/webkitgtk4 : Makefile distinfo 

Log message:
Update to webkitgtk4-2.26.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/24 05:47:41

Modified files:
	java           : Makefile 
Removed files:
	java/tanukiwrapper: Makefile distinfo 
	java/tanukiwrapper/files: Makefile-openbsd-x86-32.gmake 
	                          Makefile-openbsd-x86-64.gmake 
	java/tanukiwrapper/patches: patch-build-tests_xml 
	                            patch-build_xml patch-src_c_logger_c 
	                            patch-src_c_property_c 
	                            patch-src_c_wrapper_c 
	                            patch-src_c_wrapper_h 
	                            patch-src_c_wrapper_unix_c 
	java/tanukiwrapper/pkg: DESCR PLIST 

Log message:
remove java-tanukiwrapper, it was never used and the original software that required
it never made it into the tree.

ok kurt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/24 05:47:54

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register java-tanukiwrapper removal


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/09/24 06:12:46

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
vmd(8): virtio.c whitespace removal


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/09/24 06:14:54

Modified files:
	usr.sbin/vmd   : virtio.c 

Log message:
vmd(8): fix memory leak in virtio network TX path.

ok reyk, mpi, benno, tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/24 06:23:57

Modified files:
	fonts/spleen   : Makefile distinfo 

Log message:
Update spleen to 1.4.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/24 06:30:00

Modified files:
	sys/scsi       : scsiconf.c 

Log message:
Use consistent names for unused flags/quirks when printing same under
SCSIDEBUG.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/24 06:50:46

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
identity_file[] should be PATH_MAX, not the arbitrary number 1024


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/24 07:03:41

ports/lang/clojure/patches

Update of /cvs/ports/lang/clojure/patches
In directory cvs.openbsd.org:/tmp/cvs-serv37428/patches

Log Message:
Directory /cvs/ports/lang/clojure/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/24 07:05:22

Modified files:
	lang/clojure   : Makefile 
Added files:
	lang/clojure/patches: patch-clojure 

Log message:
Add back javaPathHelper support for running clojure. okay jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/24 07:15:19

Modified files:
	graphics/openbsd-backgrounds: Makefile distinfo 
	graphics/openbsd-backgrounds/pkg: PLIST 

Log message:
a few more pics, mostly from norway


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/09/24 08:11:07

Modified files:
	www/chromium/patches: patch-build_gn_run_binary_py 
	                      patch-tools_protoc_wrapper_protoc_wrapper_py 
	                      patch-v8_tools_run_py 

Log message:
fixup patches where WRKSRC was substituted


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/24 08:35:22

Modified files:
	sys/dev/mii    : miidevs 

Log message:
Add Marvell 88E1545.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/24 08:36:00

Modified files:
	sys/dev/mii    : miidevs.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/24 08:37:03

Modified files:
	sys/dev/mii    : eephy.c 

Log message:
Recognize Marvell 88E1545.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/24 08:38:14

Modified files:
	sys/arch/octeon/conf: GENERIC RAMDISK 

Log message:
Enable eephy(4) on octeon.

OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/24 08:39:43

Modified files:
	share/man/man4 : eephy.4 

Log message:
Mention 88E1545.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/09/24 08:46:09

Modified files:
	usr.sbin/bgpctl: bgpctl.8 bgpctl.c 

Log message:
add the neighbour's address, to disambiguate peers in the output from
"bgpctl sh nei group XX terse". feedback benno@ ok claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/24 08:50:08

Modified files:
	usr.bin/tmux   : format.c 

Log message:
Mouse formats don't work in copy mode so don't try to use them.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/24 09:21:26

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Let sysupgrade(8) create auto_upgrade.conf file in preparation of
moving the functionality out of install.sub.
OK deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/24 09:37:34

Modified files:
	sysutils/ncdu  : Makefile distinfo 

Log message:
Update ncdu to 1.14.1.

OK solene@, bket@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/24 09:52:15

Modified files:
	usr.bin/tmux   : screen-write.c 

Log message:
Couple of bits of minor cleanup.


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/09/24 11:23:52

Modified files:
	.              : plus.html 

Log message:
minor cleanup/typos, add links, refer to updates correctly
OK florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/09/24 12:10:06

Modified files:
	geo/qgis       : Makefile distinfo 
	geo/qgis/patches: patch-src_core_CMakeLists_txt 
	geo/qgis/pkg   : PLIST 

Log message:
Update to QGIS 3.8.3


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/24 14:44:58

Modified files:
	usr.bin/tmux   : grid.c input.c log.c screen-write.c 

Log message:
Some minor performance improvements - most notably, don't search the
input state table if the next character matches the same state as before.


CVSROOT:	/cvs
Module name:	ports
Changes by:	danj@cvs.openbsd.org	2019/09/24 18:33:55

Modified files:
	mail/claws-mail: Makefile distinfo 
	mail/claws-mail/patches: patch-configure_ac 

Log message:
Update to claws-mail-3.17.4

Drop maintainer.

Help from sthen@, "please proceed" solene@


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/09/24 23:51:24

Modified files:
	sys/net80211   : ieee80211_input.c 

Log message:
Update acces point channel in node list when receiving packets from same
AP on a new channel. Not doing so leads to a disconnect because AP
messages on the new channel are ignored.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/25 00:20:23

Modified files:
	distrib/armv7/miniroot: Makefile.inc 
	distrib/armv7/ramdisk: install.md 

Log message:
Change the offset filesystems start on disk for armv7 from 1MB to 16MB.
Matches arm64 and is required for rk3288 with TPL now U-Boot is expected
to be found at sector 16384 (8MB).

ok kettenis@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/25 00:24:46

Modified files:
	distrib/notes/armv7: prep 

Log message:
adjust for U-Boot RK3288 changes


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/25 01:24:53

Modified files:
	audio/libopenmpt: Makefile distinfo 

Log message:
Update libopenmpt to 0.4.7.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/25 03:21:49

Modified files:
	sys/arch/arm/cortex: ampintc.c 

Log message:
Enable interrupts while running interrupt handlers like we do on arm64.

ok patrick@, jsg@


CVSROOT:	/cvs
Module name:	src
Changes by:	kevlo@cvs.openbsd.org	2019/09/25 03:30:28

Modified files:
	sys/dev/ic     : ti.c 
	sys/dev/pci    : if_lge.c if_nfe.c if_nge.c 

Log message:
Argument order fix for MCLGETI.

ok claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/25 04:03:19

Modified files:
	graphics/openbsd-backgrounds: Makefile distinfo 
	graphics/openbsd-backgrounds/pkg: PLIST 

Log message:
minor update


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/09/25 05:28:00

Modified files:
	.              : plat.html 

Log message:
discontinue sgi.

(On the o350 (where builds happened for years) there is a dma / disk
controller bug which was never fully diagnosed and fixed in the driver.
it locks up the vfs layer after a while, and sometimes causes quite
catastrophic filesystem layout.  I have tired of repairing these situation.
The octeon platform is becoming more viable as a mips64 canarie, so we'll
carry on using it)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/25 05:39:15

Modified files:
	telephony/asterisk: Makefile 
Added files:
	telephony/asterisk/patches: 
	                            patch-third-party_pjproject_patches_0030-Revert-Misc-re-2147-Fixed-warnings-in-SSL-socket-red_patch 
	                            patch-third-party_pjproject_patches_0031-Revert-Fixed-2204-Add-OpenSSL-remote-certificate-cha_patch 
	                            patch-third-party_pjproject_patches_0032-Revert-Re-2147-misc-Fix-failed-pjsip-test-transport__patch 
	                            patch-third-party_pjproject_patches_0033-Revert-Close-1019-Support-for-multiple-listeners_patch 

Log message:
Add patches from https://gerrit.asterisk.org/c/asterisk/+/12895 reverting
a pjproject change that caused a memory leak with TLS in chan_pjsip. Found by
Mark Patruck and diagnosed by him with upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/25 05:39:41

Modified files:
	telephony/asterisk: Tag: OPENBSD_6_5 Makefile 
Added files:
	telephony/asterisk/patches: Tag: OPENBSD_6_5 
	                            patch-third-party_pjproject_patches_0030-Revert-Misc-re-2147-Fixed-warnings-in-SSL-socket-red_patch 
	                            patch-third-party_pjproject_patches_0031-Revert-Fixed-2204-Add-OpenSSL-remote-certificate-cha_patch 
	                            patch-third-party_pjproject_patches_0032-Revert-Re-2147-misc-Fix-failed-pjsip-test-transport__patch 
	                            patch-third-party_pjproject_patches_0033-Revert-Close-1019-Support-for-multiple-listeners_patch 

Log message:
MFC: Add patches from https://gerrit.asterisk.org/c/asterisk/+/12895 reverting
a pjproject change that caused a memory leak with TLS in chan_pjsip. Found by
Mark Patruck and diagnosed by him with upstream.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/25 05:42:41

Modified files:
	databases/freetds: Makefile distinfo 

Log message:
update to freetds-1.1.16


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/25 06:07:55

Modified files:
	www            : Makefile 
	www/pecl-ssh2  : Makefile distinfo 

Log message:
update to pecl-ssh2-1.2, enable php 7.3 builds


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/09/25 06:40:25

Modified files:
	devel/git-cola : Makefile distinfo 
Added files:
	devel/git-cola/patches: patch-test_icons_test_py 

Log message:
Update to git-cola-3.5.

Release notes can be found at
https://github.com/git-cola/git-cola/blob/v3.5/share/doc/git-cola/relnotes.rst

OK sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/09/25 08:30:13

Modified files:
	.              : sgi.html 
	build          : versionup 
	faq            : faq1.html faq4.html 

Log message:
retire sgi


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/25 08:34:13

Modified files:
	lang/python    : python.port.mk 

Log message:
Change indentiation of a couple of .if statements to match
the style of the rest of the section and make it easier to see
which .endif belongs to which .if

ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/25 08:37:08

Log message:
    Backport of sha3 to Python < 3.6 (so 2.7 for our purposes)
    
    From Clem Atis <clematis@clematis@insiberia.net>
    
    Input and tweaks from sthen and myself
    
    ok sthen
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190925
    
    N ports/security/py-pysha3/Makefile
    N ports/security/py-pysha3/distinfo
    N ports/security/py-pysha3/pkg/DESCR
    N ports/security/py-pysha3/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/25 08:39:05

Modified files:
	security       : Makefile 

Log message:
Hook security/py-pysha3 up to the build


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/25 08:40:59

Modified files:
	sbin/unwind    : frontend.c 

Log message:
Be more robust when dealing with malformed lease files.
Do not assume that required tokens have been generated by strsep.
(toks[0] cannot be NULL but it doesn't hurt to be explicit about it.)
Found by llvm's scan-build.
OK deraadt, kn


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/25 08:41:40

Modified files:
	sbin/unwind    : frontend.c 

Log message:
Do not leak cur_ns in case of malformed lease file.
Found by llvm's scan-build.
OK deraadt, benno


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/25 08:42:52

Modified files:
	usr.sbin/sysupgrade: sysupgrade.sh 

Log message:
Let sysupgrade(8) handle cleanup of downloaded sets by filling in
/etc/rc.firsttime in preparation of moving the functionality out of
install.sub.
OK deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/09/25 09:35:50

Modified files:
	usr.sbin/bgpctl: bgpctl.8 bgpctl.c 

Log message:
also show peer AS and description in "bgpctl sh nei group XXX terse" output
ok deraadt@ claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/25 10:00:28

Modified files:
	x11/gnome/libgweather: Makefile 
Added files:
	x11/gnome/libgweather/patches: patch-libgweather_weather-metar_c 

Log message:
avoid some "vfprintf %s NULL" syslogs in libgweather, ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/25 10:59:00

Modified files:
	lib/libpcap    : Makefile 
Added files:
	lib/libpcap    : pcap-filter.5 
Removed files:
	lib/libpcap    : pcap-filter.7 

Log message:
mdoc version of pcap-filter;

conversion suggested by deraadt, as well as renaming
from section 7 to section 5;

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/25 11:02:00

Modified files:
	lib/libpcap    : pcap_open_live.3 
	usr.sbin/tcpdump: tcpdump.8 

Log message:
pcap-filter now section 5: adjust Xr


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/25 11:04:45

Modified files:
	lib/libpcap    : pcap-filter.5 

Log message:
the mentioned .Fn functions are in a another file, so .Xr them
ok jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/25 11:06:15

Modified files:
	distrib/sets/lists/comp: mi 
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/25 11:59:53

ports/devel/hs-async/patches

Update of /cvs/ports/devel/hs-async/patches
In directory cvs.openbsd.org:/tmp/cvs-serv2438/patches

Log Message:
Directory /cvs/ports/devel/hs-async/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/25 12:00:06

ports/devel/hs-hashable/patches

Update of /cvs/ports/devel/hs-hashable/patches
In directory cvs.openbsd.org:/tmp/cvs-serv90787/patches

Log Message:
Directory /cvs/ports/devel/hs-hashable/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/25 12:00:12

ports/devel/hs-hslogger/patches

Update of /cvs/ports/devel/hs-hslogger/patches
In directory cvs.openbsd.org:/tmp/cvs-serv61989/patches

Log Message:
Directory /cvs/ports/devel/hs-hslogger/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/25 12:00:19

ports/devel/hs-sandi/patches

Update of /cvs/ports/devel/hs-sandi/patches
In directory cvs.openbsd.org:/tmp/cvs-serv11641/patches

Log Message:
Directory /cvs/ports/devel/hs-sandi/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/25 12:00:29

ports/devel/hs-tar/patches

Update of /cvs/ports/devel/hs-tar/patches
In directory cvs.openbsd.org:/tmp/cvs-serv21653/patches

Log Message:
Directory /cvs/ports/devel/hs-tar/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/25 12:00:37

ports/devel/shellcheck/patches

Update of /cvs/ports/devel/shellcheck/patches
In directory cvs.openbsd.org:/tmp/cvs-serv84408/patches

Log Message:
Directory /cvs/ports/devel/shellcheck/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/25 12:00:59

ports/security/hs-cryptohash-sha256/patches

Update of /cvs/ports/security/hs-cryptohash-sha256/patches
In directory cvs.openbsd.org:/tmp/cvs-serv36943/patches

Log Message:
Directory /cvs/ports/security/hs-cryptohash-sha256/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/09/25 13:05:59

Modified files:
	usr.bin/tmux   : input.c window-tree.c 

Log message:
Style and line length nits.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/25 14:22:23

Modified files:
	www/chromium/pkg: PLIST 

Log message:
fix bad subst; share/icons/hicolor/64${ELECTRON_ARCH}/apps/chrome.png


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/09/25 14:33:13

Modified files:
	.              : plus.html 

Log message:
check links are valid and disambiguated correctly, use short links consistently
ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/25 14:34:11

Modified files:
	usr.sbin/apmd  : apmd.c 

Log message:
When battery state switches to critical, apmd(8) generates an
emergency log message.  Then syslogd(8) could select on that and
write a warning to all users.
OK benno@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/09/25 15:06:20

Modified files:
	lib/libexpat   : Changes README.md 
	lib/libexpat/doc: reference.html 
	lib/libexpat/examples: elements.c outline.c 
	lib/libexpat/lib: asciitab.h expat.h expat_external.h 
	                  iasciitab.h internal.h latin1tab.h nametab.h 
	                  siphash.h utf8tab.h winconfig.h xmlparse.c 
	                  xmlrole.c xmlrole.h xmltok.c xmltok.h 
	                  xmltok_impl.c xmltok_impl.h xmltok_ns.c 
	lib/libexpat/tests: chardata.c chardata.h memcheck.c memcheck.h 
	                    minicheck.c minicheck.h runtests.c 
	                    structdata.c structdata.h xmltest.sh 
	lib/libexpat/tests/benchmark: benchmark.c 

Log message:
Update libexpat to 2.2.8.  CVE-2019-15903 has been fixed earlier
in our tree.  Relevant is only bug fix #240.  Most of the upstream
diff is automated source format change.
OK deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/25 15:08:55

Modified files:
	devel/leatherman: Makefile distinfo 

Log message:
simple update: 1.7.1 -> 1.7.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/25 15:09:37

Modified files:
	sysutils/facter: Makefile distinfo 

Log message:
simple update: 3.14.3 -> 3.14.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/09/25 16:10:51

Modified files:
	editors/emacs  : Makefile distinfo 
	editors/emacs/patches: patch-configure 

Log message:
Minor update to emacs-26.3

NEWS:
https://github.com/emacs-mirror/emacs/blob/master/etc/NEWS.26


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/25 16:27:05

Added files:
	graphics/simple-scan/patches: patch-src_libwebpmux_vapi 

Log message:
Unbreak wth newer vala (from upstream).

breakage reported by naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/25 16:48:02

Modified files:
	multimedia/gstreamer1: Makefile.inc 
	multimedia/gstreamer1/core: Makefile distinfo 
	multimedia/gstreamer1/core/patches: patch-meson_build 
	multimedia/gstreamer1/core/pkg: PLIST 
	multimedia/gstreamer1/plugins-bad: Makefile distinfo 
	multimedia/gstreamer1/plugins-bad/pkg: PLIST 
	multimedia/gstreamer1/plugins-base: Makefile distinfo 
	multimedia/gstreamer1/plugins-good: Makefile distinfo 
	multimedia/gstreamer1/plugins-good/pkg: PLIST-main 
	multimedia/gstreamer1/plugins-libav: Makefile distinfo 
	multimedia/gstreamer1/plugins-ugly: Makefile distinfo 
	multimedia/gstreamer1/plugins-ugly/pkg: PLIST 
	multimedia/gstreamer1/py-gstreamer: Makefile distinfo 

Log message:
Update the gstreamer1 gang to version 1.16.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/09/25 21:00:30

Modified files:
	sys/arch/amd64/conf: GENERIC RAMDISK_CD 

Log message:
enable iavf(4)

ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	bket@cvs.openbsd.org	2019/09/25 21:08:34

Modified files:
	x11/spectrwm   : Makefile 
	x11/spectrwm/patches: patch-spectrwm_c 

Log message:
Sync pledge bits-and-pieces from upstream HEAD.

Based on
https://github.com/conformal/spectrwm/commit/64bee8acfc875fee19db3ec2ae721635ce2b8ab4,
which reduces number of pledge(2) promises.

OK gonzalo@ (MAINTAINER)


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2019/09/25 22:24:26

Modified files:
	.              : octeon.html 

Log message:
Ubiquiti's domain name has changed. Update URLs.

Noticed by jj@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:25:46

Log message:
    import ruby Zeitwerk
    
    Zeitwerk implements constant autoloading with Ruby semantics. Each gem
    and application may have their own independent autoloader, with its own
    configuration, inflector, and logger. Supports autoloading, preloading,
    reloading, and eager loading.
    
    a new dependency needed to update activesupport.
    
    OK jeremy@
    
    Status:
    
    Vendor Tag:	sebastia
    Release Tags:	sebastia_20190926
    
    N ports/devel/ruby-zeitwerk/Makefile
    N ports/devel/ruby-zeitwerk/distinfo
    N ports/devel/ruby-zeitwerk/pkg/DESCR
    N ports/devel/ruby-zeitwerk/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:26:55

Modified files:
	devel          : Makefile 

Log message:
hook up ruby-zeitwerk


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:29:20

Modified files:
	devel/ruby-activesupport: Makefile distinfo 
	devel/ruby-activesupport/pkg: PLIST 

Log message:
Update 5.2.3 -> 6.0.0 now that new dependency zeitwerk is in


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:30:51

Modified files:
	devel/ruby-opt_parse_validator: Makefile distinfo 

Log message:
Update 1.7.4 -> 1.8.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:32:37

Modified files:
	www/ruby-addressable: Makefile distinfo 

Log message:
Update 2.6.0 -> 2.7.0
now that opt_parse_validator is updated, and relaxed dependencies to addressable

OK jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:34:02

Modified files:
	net/ruby-public_suffix: Makefile distinfo 
	net/ruby-public_suffix/pkg: PLIST 

Log message:
Update 3.1.0 -> 4.0.1
now possible with updated addressable


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:35:09

Modified files:
	textproc/ruby-nokogiri: Makefile distinfo 
	textproc/ruby-nokogiri/pkg: PLIST 

Log message:
Update 1.10.1 -> 1.10.4

update required for an update of cms_scanner

OK jeremy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:36:48

Modified files:
	security/ruby-cms_scanner: Makefile distinfo 

Log message:
Update 0.5.7 -> 0.6.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:37:40

Modified files:
	security/wpscan: Makefile distinfo 
	security/wpscan/pkg: PLIST 

Log message:
Update 3.6.3 -> 3.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:41:33

Modified files:
	archivers/ruby-minitar: Makefile distinfo 

Log message:
Update 0.8 -> 0.9


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 00:46:39

Modified files:
	security/hcxtools: Makefile distinfo 

Log message:
Update 5.1.6 -> 5.2.2


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/09/26 01:33:36

Modified files:
	sbin/iked      : parse.y 

Log message:
Fix leaks by cleaning up after configuration parser.

ok bluhm@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/26 03:33:14

Log message:
    Import graphics/ocaml-graphics
    This was formally shipped with the OCaml compiler distribution,
    but is now a seperate project.
    
    ok jca@, krw@, sthen@
    
    Status:
    
    Vendor Tag:	chrisz
    Release Tags:	chrisz_20190926
    
    N ports/graphics/ocaml-graphics/Makefile
    N ports/graphics/ocaml-graphics/distinfo
    N ports/graphics/ocaml-graphics/pkg/DESCR
    N ports/graphics/ocaml-graphics/pkg/PLIST
    N ports/graphics/ocaml-graphics/pkg/PFRAG.native
    N ports/graphics/ocaml-graphics/patches/patch-src_unix_open_c
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/26 03:46:11

Modified files:
	devel/cil      : Makefile 
	devel/coccinelle: Makefile 
	devel/dune     : Makefile 
	devel/frama-c  : Makefile 
	devel/ocaml-biniou: Makefile 
	devel/ocaml-cppo: Makefile 
	devel/ocaml-easy-format: Makefile 
	devel/ocaml-graph: Makefile 
	devel/ocaml-menhir: Makefile 
	devel/ocaml-ocamlbuild: Makefile 
	devel/ocaml-parmap: Makefile 
	devel/ocaml-pcre: Makefile 
	devel/ocaml-yojson: Makefile 
	graphics/ocaml-cairo: Makefile 
	graphics/pdfsandwich: Makefile 
	lang/ocaml-camlp5: Makefile 
	math/ocaml-num : Makefile 
	math/ocaml-zarith: Makefile 
	net/mldonkey   : Makefile 
	net/unison/2.4x: Makefile 
	net/unison/2.5x: Makefile 
	textproc/hevea : Makefile 
	x11/kde-applications/kalzium: Makefile 
	x11/lablgtk2   : Makefile 
	x11/lablgtk3   : Makefile 
	graphics       : Makefile 
	lang/ocaml-camlp4: Makefile 
	sysutils/findlib: Makefile 
	sysutils/findlib/pkg: PLIST 
	lang/ocaml     : Makefile distinfo 
	lang/ocaml/patches: patch-configure_ac 
Added files:
	lang/ocaml/pkg : DESCR PFRAG.dynlink-native PFRAG.native PLIST 
Removed files:
	lang/ocaml/pkg : DESCR-graphics DESCR-main 
	                 PFRAG.dynlink-native-graphics 
	                 PFRAG.dynlink-native-main PFRAG.native-graphics 
	                 PFRAG.native-main PLIST-graphics PLIST-main 

Log message:
Update OCaml to 4.09

reviewed ports wise and help with @pkgpath, ok by sthen@
reviewed and help with bytecode-only plists, minor nits and ok by jca@
tested on sparc 64 by @jca
tested on aarch64 by Kurt Miller
tested on amd64 by me

Thanks for reviews and testing!


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 03:54:11

Modified files:
	security/pecl-mcrypt: Makefile distinfo 

Log message:
update to pecl-mcrypt-1.0.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 04:15:56

Modified files:
	databases/py-puppetdb: Makefile distinfo 
	databases/py-puppetdb/pkg: PLIST 

Log message:
Update 1.0.0 -> 1.2.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sebastia@cvs.openbsd.org	2019/09/26 04:17:10

Modified files:
	www/puppetboard: Makefile distinfo 

Log message:
update 1.0.0 -> 1.1.0


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 04:22:41

Modified files:
	productivity/gnucash: Makefile 

Log message:
set -DGNC_SHELL=/bin/sh instead of forcing a BDEP on bash, now that I've
been able to do a successful build with it


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/09/26 04:36:53

Modified files:
	x11/waimea     : Makefile 
Added files:
	x11/waimea/patches: patch-src_Resources_cc 
	                    patch-src_Resources_hh patch-src_Window_cc 

Log message:
waimea: unbreak with ports-gcc by fixing a namespace clash.
Also move HOMEPAGE to https and refresh WANTLIB.
Tested on sparc64 by kmos@ and macppc by me.

OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/09/26 05:04:50

Added files:
	lang/ocaml-camlp4/patches: patch-configure 

Log message:
Add patch that was missing in the OCaml 4.09.0 update


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 05:59:20

Modified files:
	www/chromium   : Makefile 
	www/chromium/pkg: PLIST-electron 

Log message:
add .zip to the ELECTRON_ARCH string which is only used to substitute in
PLISTs (electron/releases/electron-v6.0.3-openbsd-${ELECTRON_ARCH} etc),
this will prevent share/icons/hicolor/64x64 from being accidentally written
as share/icons/hicolor/64${ELECTRON_ARCH}. looks ok to robert@


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/09/26 06:08:08

Modified files:
	sbin/iked      : ikev2.c 

Log message:
Use SPI_SA() instead of __func__ in all logging calls. Use log_info
instead of log_debug in error cases.

ok bluhm@ sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	brynet@cvs.openbsd.org	2019/09/26 06:55:53

Modified files:
	sys/dev/pci    : pcidevs 

Log message:
Add "AMD64 17h/3xh Root Complex" device.


CVSROOT:	/cvs
Module name:	src
Changes by:	brynet@cvs.openbsd.org	2019/09/26 06:56:44

Modified files:
	sys/dev/pci    : pcidevs.h pcidevs_data.h 

Log message:
regen


CVSROOT:	/cvs
Module name:	src
Changes by:	brynet@cvs.openbsd.org	2019/09/26 06:59:01

Modified files:
	sys/arch/amd64/conf: GENERIC 
	sys/dev/pci    : files.pci 
Added files:
	sys/dev/pci    : ksmn.c 

Log message:
Add a new driver for getting AMD CPU temperature sensor over the SMN.

This currently supports Family 17h Zen/Zen+/Zen2 CPUs. The are still
some issues with the scaler on certain models that can be fixed later.

AMD Ryzen 2700X:
hw.sensors.ksmn0.temp0=47.50 degC

Tested by several people.

"Make a move" deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/26 07:00:21

Modified files:
	devel/spidermonkey60: Makefile 
Added files:
	devel/spidermonkey60/patches: 
	                              patch-js_src_jit_ProcessExecutableMemory_cpp 

Log message:
Allow mmap(2) to select a suitable random address by providing NULL as
the hint address. Fixes x11/gnome/gjs build on aarch64 at least.
okay jasper@ jcs@


CVSROOT:	/cvs
Module name:	src
Changes by:	brynet@cvs.openbsd.org	2019/09/26 07:09:55

Modified files:
	share/man/man4 : Makefile pci.4 
Added files:
	share/man/man4 : ksmn.4 

Log message:
Add short manual for ksmn(4) driver.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 07:18:29

Modified files:
	mail/pear-Mail-Mime: Makefile distinfo 
	mail/pear-Mail-Mime/pkg: PLIST 

Log message:
update to pear-Mail-Mime-1.10.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 07:23:37

Modified files:
	net/kea        : Makefile distinfo 
	net/kea/patches: patch-src_bin_keactrl_keactrl_conf_in 
	net/kea/pkg    : PLIST 
Added files:
	net/kea/patches: patch-src_bin_keactrl_kea-ctrl-agent_conf_pre 
	                 patch-src_bin_keactrl_kea-dhcp-ddns_conf_pre 
	                 patch-src_bin_keactrl_kea-dhcp4_conf_pre 
	                 patch-src_bin_keactrl_kea-dhcp6_conf_pre 
	                 patch-src_bin_keactrl_kea-netconf_conf_pre 
	                 patch-src_bin_keactrl_keactrl_in 
Removed files:
	net/kea/patches: patch-src_bin_keactrl_kea-ca_conf_pre 
	                 patch-src_bin_keactrl_kea_conf_pre 
	                 patch-src_lib_asiolink_io_service_h 
	                 patch-src_lib_asiolink_tcp_acceptor_h 
	                 patch-src_lib_asiolink_tcp_socket_h 
	                 patch-src_lib_asiolink_udp_socket_h 
	                 patch-src_lib_asiolink_unix_domain_socket_cc 
	                 patch-src_lib_util_watch_socket_cc 

Log message:
update to kea-1.6.0

no response to a call for testing on ports@; i intend to remove this
port if nobody steps up to maintain or at least test diffs when sent out.
(1.7.0 is out now as well).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 07:46:19

Modified files:
	lang/php/7.3   : Makefile distinfo 
	lang/php/7.3/patches: patch-php_ini-production 

Log message:
update to php-7.3.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 07:47:44

Modified files:
	lang/php/7.3   : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/php/7.3/patches: Tag: OPENBSD_6_5 patch-php_ini-production 

Log message:
update -stable to php-7.3.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 07:54:54

Modified files:
	audio/audacity : Makefile distinfo 
	audio/audacity/patches: patch-src_AudacityApp_cpp 
	                        patch-src_AudioIO_cpp 
	                        patch-src_MemoryX_h 
	audio/audacity/pkg: PLIST 

Log message:
update to audacity-2.3.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 08:55:22

Modified files:
	cad/xschem     : Makefile distinfo 
	cad/xschem/pkg : PLIST 

Log message:
update to xschem 2.9.2, from maintainer Hannu Vuolasaho


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2019/09/26 09:23:06

Modified files:
	.              : octeon.html 

Log message:
Add EdgeRouter 12.

From jj@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/26 10:06:36

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/09/26 11:07:30

Modified files:
	usr.sbin/rpki-client: main.c 

Log message:
For whatever reason it is fairly common that a ROA object references a CRL
that is not in the store. Put this paricular error under verbose logging.
Agreed by deraadt@, job@


CVSROOT:	/cvs
Module name:	ports
Changes by:	martijn@cvs.openbsd.org	2019/09/26 11:21:42

Modified files:
	mail/opensmtpd-filters/libopensmtpd: Makefile distinfo 

Log message:
Fix libopensmtpd to correctly interpret IPv6 addresses, which caused
crashes after smtpd changed the forward.

Bug found and fix tested by mikolaj <at> kucharski <dot> name

OK jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 15:14:42

Modified files:
	net/icinga/web2/pkg: PLIST 

Log message:
fix bogus MODPHP_VERSION subst


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/26 15:28:04

Modified files:
	devel/py-urwid : Makefile 

Log message:
Adding Clem Atis as MAINTAINER


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/26 15:49:36

Log message:
    devel/py-bitcoinlib
    
    This Python3 library provides an easy interface to the bitcoin data
    structures and protocol.
    
    From Clem Atis
    
    Feedback and tweaks from myself, sthen, and rsadowski
    
    ok sthen rsadowski
    
    Status:
    
    Vendor Tag:	kmos
    Release Tags:	kmos_20190926
    
    N ports/devel/py-bitcoinlib/Makefile
    N ports/devel/py-bitcoinlib/distinfo
    N ports/devel/py-bitcoinlib/pkg/DESCR
    N ports/devel/py-bitcoinlib/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/26 15:52:48

Modified files:
	devel          : Makefile 

Log message:
Hook py-bitcoinlib up to the build


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 15:55:58

Modified files:
	lang/php       : php.port.mk 

Log message:
switch default php version to 7.3, bumps/fixes to follow


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 15:57:42

Modified files:
	www/pear       : Makefile distinfo 
	www/pear/pkg   : PLIST-main 

Log message:
update to pear-1.10.9 (this is the current stable version listed on PEAR,
though there is a newer one in github). fixes things with php 7.2+.

switch to github /raw/ upstream rather than a self-hosted .phar file


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 15:59:02

Modified files:
	www/phpmyadmin : Makefile 

Log message:
bump REVISION for php default version switch
drop mcrypt dependency, it hasn't been recommended by upstream since 2015
and is no longer bundled in php core. (it is available by pecl, but things
generally shouldn't be using it these days).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 15:59:31

Modified files:
	databases/pg_stats_reporter: Makefile 
	databases/pgfouine: Makefile 
	devel/boris    : Makefile 
	geo/mapserver  : Makefile 
	mail/kopano/core: Makefile 
	mail/z-push    : Makefile 
	misc/gpsd      : Makefile 
	multimedia/yle-dl: Makefile 
	net/icinga/web2: Makefile 
	net/icinga/web2-module-director: Makefile 
	net/nagios/nagios: Makefile 
	net/nfsen      : Makefile 
	net/php-weathermap: Makefile 
	net/zabbix     : Makefile 
	productivity/baikal: Makefile 
	productivity/davical: Makefile 
	textproc/tcpdf : Makefile 
	www/awl        : Makefile 
	www/dokuwiki   : Makefile 
	www/drupal7/core7: Makefile 
	www/drush      : Makefile 
	www/mollify    : Makefile 
	www/php-predis : Makefile 
	www/phpldapadmin: Makefile 
	www/phppgadmin : Makefile 
	www/phpvirtualbox: Makefile 
	www/pnp4nagios : Makefile 
	www/racktables : Makefile 
	www/sabredav   : Makefile 
	www/selfoss    : Makefile 
	www/syweb      : Makefile 
	www/wp-cli     : Makefile 
	x11/kde4/kcachegrind: Makefile 

Log message:
REVISION bumps for php default version switch to 7.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/26 16:01:47

Modified files:
	mail/roundcubemail: Makefile 
	net/librenms   : Makefile 
	www/composer   : Makefile 
	www/nextcloud  : Makefile 

Log message:
drop MODPHP_VERSION=7.3, it is now the default


CVSROOT:	/cvs
Module name:	src
Changes by:	brynet@cvs.openbsd.org	2019/09/26 19:26:46

Modified files:
	sys/dev/pci    : ksmn.c 

Log message:
Use a better scale value in ksmn(4), this produces a slightly more
stable result when idle and under some load.

Tested by abieber@ on a R7 PRO 2700U, also by me on a R5 2500U MateBook D,
and a R7 2700X desktop.

Discussed with @nte@bsd.network.

OK abieber@


CVSROOT:	/cvs
Module name:	ports
Changes by:	abieber@cvs.openbsd.org	2019/09/26 20:07:46

Modified files:
	lang/node      : Makefile distinfo 
	lang/node/patches: patch-Makefile patch-common_gypi 
	                   patch-deps_npm_lib_npm_js 
	                   patch-deps_openssl_config_Makefile 
	                   patch-deps_openssl_config_bn_conf_no-asm_h 
	                   patch-deps_openssl_config_dso_conf_no-asm_h 
	                   patch-deps_openssl_config_generate_gypi_pl 
	                   patch-deps_openssl_config_opensslconf_no-asm_h 
	                   patch-deps_uv_src_unix_openbsd_c 
	                   patch-lib_module_js patch-node_gypi 
	                   patch-tools_test_py 
	lang/node/pkg  : PLIST 

Log message:
Update node to the latest LTS.

Changelog here: https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V10.md#10.16.3

Builds firefox fine. sthen@ tested an i386 build and it went OK.

OK sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/09/26 23:25:12

Modified files:
	regress/usr.bin/ssh: dhgex.sh 

Log message:
Test for empty result in expected bits.  Remove CRs from log as they
confuse tools on some platforms.  Re-enable the 3des-cbc test.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/09/26 23:46:30

Modified files:
	devel/py-filebytes: Makefile distinfo 

Log message:
update fileytes to 0.9.21.
ok kmos@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rpointel@cvs.openbsd.org	2019/09/26 23:48:12

Modified files:
	security/py-ropper: Makefile distinfo 
Removed files:
	security/py-ropper/patches: patch-ropper_console_py 

Log message:
update ropper to 1.12.5.
ok pirofti@
license has changed from GPL to BSD, from kmos@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/26 23:49:56

Modified files:
	graphics/opencv: Makefile distinfo 
	graphics/opencv/patches: patch-cmake_OpenCVFindLibsVideo_cmake 
	                         patch-modules_core_src_system_cpp 
	graphics/opencv/pkg: PLIST-java PLIST-main 
Added files:
	graphics/opencv/patches: patch-CMakeLists_txt 
Removed files:
	graphics/opencv/patches: 
	                         patch-modules_dnn_src_torch_THGeneral_cpp 
	graphics/opencv/pkg: DESCR-docs PLIST-docs 

Log message:
Update opencv to 3.4.7

Notable port changes:

- Remove -docs to avoid java conflicts with JDK 8 and 11.
- Upstream switched completely to github
- Sort CONFIGURE_ARGS
- Add patch to install licenses files at the old location.
- ONLY_FOR_ARCHS-java = aarch64 amd64 i386

ok kurt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/26 23:56:17

Modified files:
	devel/quirks   : Makefile 
	devel/quirks/files: Quirks.pm 

Log message:
register opencv-docs removal


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/27 00:02:48

Modified files:
	devel/pycharm  : Makefile distinfo 
	devel/pycharm/pkg: PLIST 

Log message:
Update pycharm to 2019.2.2

Switch to JDK11 as default java version otherwise pycharm crashes at startup.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/27 00:12:58

Modified files:
	graphics/digikam: Makefile 

Log message:
Regen WANTLIB


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/27 01:11:25

Modified files:
	devel/ocaml-configurator: Makefile 

Log message:
missed REVISION bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/27 02:11:10

Modified files:
	devel/doxygen  : Makefile distinfo 
	devel/doxygen/patches: patch-doc_CMakeLists_txt 
Removed files:
	devel/doxygen/patches: patch-addon_doxyapp_CMakeLists_txt 
	                       patch-addon_doxyparse_CMakeLists_txt 
	                       patch-src_CMakeLists_txt 
	                       patch-vhdlparser_CMakeLists_txt 

Log message:
Update doxygen to 1.8.16


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/27 02:11:54

Modified files:
	devel/doxygen-gui: Makefile distinfo 
Removed files:
	devel/doxygen-gui/patches: patch-addon_doxyapp_CMakeLists_txt 
	                           patch-addon_doxyparse_CMakeLists_txt 
	                           patch-src_CMakeLists_txt 
	                           patch-vhdlparser_CMakeLists_txt 

Log message:
Update doxygen to 1.8.16

Switch from Qt4 to Qt5


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 03:58:09

Modified files:
	math/coq       : Makefile 

Log message:
Missed bump.
-@depend lang/ocaml,-main:ocaml-=4.08.1:ocaml-4.08.1
-@depend x11/lablgtk3:lablgtk3-*:lablgtk3-3.0.beta6p0
+@depend lang/ocaml:ocaml-=4.09.0:ocaml-4.09.0
+@depend x11/lablgtk3:lablgtk3-*:lablgtk3-3.0.beta6p1


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/09/27 04:26:32

Modified files:
	usr.sbin/bgpd  : config.c parse.y 

Log message:
Move the code to initialize the cluster-id from merge_config() to
parse_config(). The first is not called on startup which results in bgpd
using 0.0.0.0 as cluster-id.
Found and fix provided by Rivo Nurges (Rivo dot Nurges at smit dot ee)
Thanks and OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/09/27 04:33:07

Modified files:
	usr.sbin/bgpd  : bgpd.h rde.c 

Log message:
Implement F_SHORTER in the prefix lookup code for bgpctl. F_SHORTER will
match all prefixes that have a shorter prefixlen than the one in the request.
It will print all routes which cover the specified prefix.
OK job@ sthen@


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2019/09/27 04:33:38

Modified files:
	.              : plat.html 

Log message:
remove mention of BeagleBoard


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/09/27 04:34:54

Modified files:
	usr.sbin/bgpctl: bgpctl.8 bgpctl.c parser.c 

Log message:
Implement 'bgpctl show rib 8.8.8.8 or-shorter' to show all routes covering
8.8.8.8. Additionally add 'or-longer' as an alias for 'all'.
OK job@ sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/27 04:52:42

Modified files:
	sysutils/syslog-ng: Makefile 

Log message:
- fix HOMEPAGE (moved to .com)
- explicitly disable riemann which may get picked up during configure

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/27 04:54:15

Modified files:
	net/pear-Net-DNS: Makefile 

Log message:
drop lang/php MODULES, most pear ports just use www/pear


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/27 04:55:51

Modified files:
	net/pear-Net-LDAP: Makefile 
	net/pear-Net-LDAP2: Makefile 

Log message:
missed bumps; uses php-ldap so has direct php deps


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/27 04:59:00

Modified files:
	devel/dlib     : Makefile distinfo 
	devel/dlib/pkg : PLIST 
Removed files:
	devel/dlib/patches: patch-dlib_test_stack_cpp 

Log message:
Update dlib to 19.18


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/27 05:13:30

Modified files:
	infrastructure/lib/DPB: Trace.pm 

Log message:
much better tracing message for DIE


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/27 06:17:12

Modified files:
	devel/jenkins/stable: Makefile distinfo 

Log message:
Update Jenkins stable to 2.190.1 (2019-09-25)

https://jenkins.io/changelog-stable/


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/27 06:20:06

Modified files:
	devel/jenkins/devel: Makefile distinfo 

Log message:
Update Jenkins -devel to 2.197 (2019-09-25)

https://jenkins.io/changelog/


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 06:49:57

Modified files:
	print/brlaser  : Makefile distinfo 

Log message:
Update to brlaser-6.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 06:50:09

Modified files:
	net/py-smbc    : Makefile distinfo 

Log message:
Update to py-smbc-1.0.18.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/09/27 08:06:26

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: 
	                      patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_cc 

Log message:
for now add a missing id pledge for the renderer process to be able to call
getpriority() and setpriority()


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 08:18:28

ports/print/cups-filters/files

Update of /cvs/ports/print/cups-filters/files
In directory cvs.openbsd.org:/tmp/cvs-serv63656/files

Log Message:
Directory /cvs/ports/print/cups-filters/files added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 08:25:33

Modified files:
	print/cups-filters: Makefile distinfo 
	print/cups-filters/pkg: PLIST 
Added files:
	print/cups-filters/files: ln-srf 
Removed files:
	print/cups-filters/patches: patch-Makefile_in 

Log message:
Update to cups-filters-1.25.6.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/09/27 08:50:39

Modified files:
	usr.sbin/bgpd  : rde.c rde_rib.c 

Log message:
Move the rde_send_pftable_commit() our of the prefix_update and withdraw
function and up higher in the call stack. While there also make sure that
flushing announced networks does the pftable dance. This is now also using
prefix_withdraw like most other code. Reshuffle rde_update_dispatch() a bit
so that all returns are before the first update or withdraw call. After that
the code always exits via the end of the function where the commit happens.
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 08:56:04

Modified files:
	sysutils/amazon-ssm-agent: Makefile distinfo 

Log message:
Update to amazon-ssm-agent-2.3.714.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/09/27 08:58:07

Modified files:
	sys/dev/usb    : if_umb.c 

Log message:
Make umb(4) add a default route when configuring the interface. This route
has a lower priority than wifi or wired LAN and so should only be used when
no other interface is available. With this using umb(4) becomes less painful
Now ifconfig umb0 up will be enough especially if unwind(8) is used to handle
DNS requests.
OK deraadt@ job@ benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 09:12:43

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-264.0.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/09/27 09:38:39

Modified files:
	textproc/loccount: Makefile distinfo 
	textproc/loccount/pkg: DESCR 

Log message:
Update loccount to 2.8

Bug fixes and support for lots of new languages, see
https://gitlab.com/esr/loccount/blob/master/NEWS.adoc


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/27 09:39:44

Modified files:
	mail/rcube-contextmenu: Makefile 
	mail/rcube-dkimstatus: Makefile 
	mail/rcube-dovecot_ident: Makefile 
	mail/rcube-ldapAliasSync: Makefile 
	mail/rcube-markasjunk2: Makefile 
	mail/rcube-sieverules: Makefile 
	mail/rcube-yubikey-plugin: Makefile 

Log message:
drop forced MODPHP_VERSION=7.3 lines, this is now the default


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/27 09:43:29

Modified files:
	sysutils/arm-trusted-firmware: Makefile 
	sysutils/arm-trusted-firmware/pkg: PLIST 
Added files:
	sysutils/arm-trusted-firmware/patches: 
	                                       patch-plat_rockchip_rk3328_rk3328_def_h 

Log message:
Add rk3328 and disable passing CFLAGS on to the build since it overrides
-Os and causes the build to fail. okay jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/27 09:44:00

Modified files:
	net/icinga/web : Makefile 

Log message:
missed REVISION bump for php default version change


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/27 10:00:56

Modified files:
	lang/php/7.2   : Makefile distinfo 
	lang/php/7.2/patches: patch-php_ini-production 

Log message:
bugfix update to php-7.2.23


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 10:02:26

Modified files:
	security/libpwquality: Makefile distinfo 
	security/libpwquality/pkg: PLIST 

Log message:
Update to libpwquality-1.4.1.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/27 10:03:46

Modified files:
	sys/scsi       : scsi_base.c scsi_debug.h scsiconf.c scsiconf.h 

Log message:
Shuffle and consolidate SCSIDEBUG declarations into fewer sections in
more intuitive locations.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/27 11:22:31

Modified files:
	sys/scsi       : cd.c cd.h ch.c mpath.c safte.c safte.h 
	                 scsi_base.c scsi_debug.h scsi_disk.h 
	                 scsi_ioctl.c scsiconf.c sd.c ses.c st.c 

Log message:
Add/tweak #endif comments to make spelunking via grep more rewarding.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/27 11:27:25

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-opsgenie: Makefile distinfo 

Log message:
Update some terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	tb@cvs.openbsd.org	2019/09/27 13:04:57

Modified files:
	lang/go        : Makefile 

Log message:
Make tests work with PORTS_PRIVSEP=Yes.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/27 14:03:24

Modified files:
	usr.bin/ssh    : ssh-keygen.1 

Log message:
fix the DH-GEX text in -a;
because this required a comma, i added a comma to the first part, for balance...


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/27 14:26:52

Modified files:
	sysutils/ansible: Makefile 
Added files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_modules_system_sysctl_py 

Log message:
backport 9069a681a to sysutils/ansible, fixing the sysctl module
ok jasper@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/27 14:33:22

Modified files:
	x11/i3status   : Makefile 
Added files:
	x11/i3status/patches: patch-src_print_cpu_usage_c 

Log message:
handle CP_SPIN


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/27 14:44:23

Modified files:
	games/fortune/datfiles: fortunes-o.real fortunes2 

Log message:
fix gary zukav's "acceptance without proof" quote, which just appeared on
my screen.

i don;t have a copy of this book, and a brief search online shows conflicting
punctuation, but i've chosen to replace the comma splice with a full stop,
which is at least grammatically correct, and seems the most likely solution.

whether this quote needs to be in two files escapes me...


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/27 15:00:08

ports/mail/opendmarc/patches

Update of /cvs/ports/mail/opendmarc/patches
In directory cvs.openbsd.org:/tmp/cvs-serv43559/patches

Log Message:
Directory /cvs/ports/mail/opendmarc/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/27 15:28:14

Modified files:
	mail/opendmarc : Makefile 
Added files:
	mail/opendmarc/patches: patch-opendmarc_opendmarc_c 

Log message:
apply fix for CVE-2019-16378, issue was discovered in the upstream
list of open issues. the project has stalled and hasn't committed this patch
yet though debian does ship with this patch

ok sthen@ and Renaud Allard (MAINTAINER)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/27 15:29:31

Modified files:
	net/unifi/testing: Makefile distinfo 
	net/unifi/testing/pkg: PLIST 

Log message:
update unifi/testing to 5.11.48 RC


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/27 17:07:42

Modified files:
	sys/scsi       : cd.h iscsi.h mpathvar.h safte.h scsi_all.h 
	                 scsi_changer.h scsi_debug.h scsi_disk.h 
	                 scsi_message.h scsi_scanner.h scsi_tape.h 
	                 scsiconf.h sdvar.h 

Log message:
Use consistent idiom/naming convention for the the #include
guards. Spelunkers using grep are easily confused.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/09/27 18:29:11

Modified files:
	devel/arm-none-eabi/gcc-linaro: Makefile distinfo 
	devel/arm-none-eabi/gcc-linaro/patches: patch-Makefile_in 
	                                        patch-gcc_Makefile_in 
	                                        patch-gcc_config_host 
	                                        patch-gcc_configure 
	                                        patch-libgcc_Makefile_in 
	devel/arm-none-eabi/gcc-linaro/pkg: PFRAG.aarch64 PFRAG.arm 
	                                    PLIST 
Removed files:
	devel/arm-none-eabi/gcc-linaro/patches: patch-gcc_ubsan_c 

Log message:
update gcc-linaro to 7.4-2019.02

With U-Boot 2019.10-rc4 the am335x_evm SPL no longer fits when building
with gcc 6.3 but does fit with 7.4.

Tested by and ok kurt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/09/27 19:40:25

Modified files:
	sysutils/u-boot: Makefile distinfo 
	sysutils/u-boot/patches: patch-configs_firefly-rk3399_defconfig 
	                         patch-configs_rockpro64-rk3399_defconfig 
	                         patch-configs_rpi_2_defconfig 
	                         patch-configs_rpi_3_32b_defconfig 
	                         patch-configs_rpi_3_defconfig 
	sysutils/u-boot/pkg: PFRAG.aarch64 PFRAG.arm 
Added files:
	sysutils/u-boot/patches: patch-arch_arm_dts_rk3399-rockpro64_dts 
	                         patch-arch_arm_mach-imx_spl_c 
Removed files:
	sysutils/u-boot/patches: patch-lib_efi_loader_efi_boottime_c 

Log message:
update to U-Boot 2019.10-rc4

Fixes a regression in 2019.07 with tinker-rk3288.  Enable
rockpro64-rk3399 target, tested by kurt@.  Enable rpi_4 target, tested
by bmercer@ before patches were merged to mainline U-Boot.


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/09/28 00:25:57

Modified files:
	usr.bin/libtool/LT: LaFile.pm 

Log message:
ensure dependency_libs and libdir are defined after parsing .la file.

problem raised with librsvg which use libtool-rust, and our libtool just die if
deplib_list is undef.

tested in bulk by sthen@ and naddy@

"modern" perl practice/syntax suggested by espie@

makes sense sthen@
ok espie@


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/09/28 01:51:21

Modified files:
	.              : plus.html 

Log message:
plus for Sept. 20 - 27
input and OK florian@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 03:34:34

Modified files:
	multimedia/x265: Makefile distinfo 

Log message:
Update to x265-3.2.

from Brad (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 03:37:55

Modified files:
	www/kibana     : Makefile 

Log message:
Loosen up dependency on node version to unbreak.

Error: @depend lang/node:node->=10.15.0,<10.16.0:node-10.16.3
pattern node->=10.15.0,<10.16.0 doesn't match default node-10.16.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 03:42:56

Modified files:
	devel/doxygen  : Makefile 
	devel/doxygen-gui: Makefile 

Log message:
Unbreak: this needs devel/git to build.

CMake Error at /usr/local/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:137 (message):
Could NOT find Git (missing: GIT_EXECUTABLE)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 03:45:28

Modified files:
	textproc/icu4c : Makefile 

Log message:
Add some PORTROACH love.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 03:50:45

Modified files:
	devel/fribidi  : Makefile distinfo 
Removed files:
	devel/fribidi/patches: patch-fribidi_pc_in 

Log message:
Update to fribidi-1.0.7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 04:29:53

Modified files:
	print/cups-filters: Makefile 

Log message:
Link to commit.


CVSROOT:	/cvs
Module name:	src
Changes by:	eric@cvs.openbsd.org	2019/09/28 05:21:07

Modified files:
	lib/libc/asr   : res_send_async.c 

Log message:
correctly handle read(2) return value.

fix issue reported by Mikolaj Kucharski.

ok martijn@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/09/28 06:20:18

Modified files:
	mail/p5-Mail-DMARC: Makefile distinfo 

Log message:
update to 1.20190831
ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/28 06:20:35

Modified files:
	infrastructure/lib/DPB: Serialize.pm 

Log message:
bad numbers will break things, so identify the bogus lines and keep going.

as noticed by landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/28 06:22:13

Modified files:
	infrastructure/lib/DPB: Clock.pm Core.pm 

Log message:
use Time::HiRes qw(time); only imports time into the current package.

For class hierarchies, it's simpler to just explicitly call the right
time.

This should yield *much* better timing precision, especially on fast
machines...


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/28 07:19:19

Modified files:
	lib/libcompiler_rt: clear_cache.c 

Log message:
Make compiler-rt's __clear_cache() work on 32-bit ARM by making
it use sysarch().

From Josh Elsasser
ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/09/28 08:54:56

Modified files:
	sysutils/firmware/intel: Makefile distinfo 

Log message:
update intel microcode to 20190918

-- Updates upon 20190618 release --
Processor	      Identifier     Version	   Products
Model	     Stepping F-MO-S/PI	     Old->New
---- new platforms ----------------------------------------

---- updated platforms ------------------------------------
BDW-U/Y	     E0/F0    6-3d-4/c0 0000002d->0000002e Core Gen5
HSX-EX	     E0	      6-3f-4/80 00000014->00000016 Xeon E7 v3
BDW-H/E3     E0/G0    6-47-1/22 00000020->00000021 Core Gen5
BDX-ML	     B0/M0/R0 6-4f-1/ef 0b000036->0b000038 Xeon E5/E7 v4; Core i7-69xx/68xx
BDX-DE	     V1	      6-56-2/10 0000001a->0000001c Xeon D-1520/40
BDX-DE	     V2/3     6-56-3/10 07000017->07000019 Xeon D-1518/19/21/27/28/31/33/37/41/48, Pentium D1507/08/09/17/19
BDX-DE	     Y0	      6-56-4/10 0f000015->0f000017 Xeon D-1557/59/67/71/77/81/87
BDX-NS	     A0	      6-56-5/10 0e00000d->0e00000f Xeon D-1513N/23/33/43/53
SKX-SP	     H0/M0/U0 6-55-4/b7 0200005e->00000064 Xeon Scalable
SKX-D	     M1	      6-55-4/b7 0200005e->00000064 Xeon D-21xx
CLX-SP	     B1	      6-55-7/bf 05000021->0500002b Xeon Scalable Gen2


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/28 08:55:12

Modified files:
	lib/libc/sys   : getentropy.2 

Log message:
1) don't repeat the 256 / EIO commentary
2) say that the data comes from the random(4) subsystem, so that curious
people can go read up on how this works


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/28 08:57:36

Modified files:
	share/man/man4 : random.4 

Log message:
Update page a little, in particular try to describe the underlying mechanisms
in simple terms (mostly as a yardstick for others to be measured against):
Entropy data stored previously is provided to the kernel during the boot
sequence and used as inner-state of a stream cipher.  High quality data
is available immediately upon kernel startup.  System activity (such as
disk, network, and clock device interrupts), and hardware random
generator output is collected, whitened with a crc and hash, then
periodically folded together with stream cipher inner-state and outer-
state to create a new inner state.  Reads from all consumers (including
the kernel itself, which makes many requests per second) are sliced from
the same output stream, which carves the stream cipher output
unpredictably and helps improve forward and backtracking protection
beyond the strength of the stream cipher.
some discussion with djm.  There may be more updates.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/28 09:00:44

Modified files:
	lib/libc/crypt : arc4random.3 

Log message:
Xr random 4 in a better way


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/28 10:12:14

Modified files:
	usr.sbin/ldomd : ldomd.c 

Log message:
It is better style if path[] buffers are PATH_MAX, rather than
shorter.  This subtly reduces the impact of truncation effects, as the
truncation is less likely, and if it exists it may be detected
directly by the system call with a proper error check.  (this strange
justification is sadly valid in a world where people moan oh so loudly
about truncation but then don't audit and fix all instances)
ok kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/09/28 10:29:40

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-base_BUILD_gn 
	                      patch-base_process_process_posix_cc 
	                      patch-base_threading_platform_thread_posix_cc 
	                      patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_cc 
Removed files:
	www/chromium/patches: patch-base_process_process_linux_cc 

Log message:
remove the id pledge from the renderer process and disable the code in
chromium that changes the process priority on the fly because as per POSIX,
lowering the priorities can only be done by the superuser anyway


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/09/28 11:18:10

Modified files:
	security/gopass: Makefile distinfo 

Log message:
Update to gopass-1.8.6

patch from Henry Jensen, thanks!
ok abieber@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 11:24:38

Modified files:
	net/py-botocore: Makefile distinfo 

Log message:
Update to py-botocore-1.12.238.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 11:24:53

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.238.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 11:25:22

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.248.


CVSROOT:	/cvs
Module name:	src
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 11:30:07

Modified files:
	usr.sbin/syspatch: syspatch.sh 
	usr.sbin/sysupgrade: sysupgrade.sh 
	usr.sbin/sysmerge: sysmerge.sh 
	libexec/reorder_kernel: reorder_kernel.sh 
	usr.bin/cpp    : cpp.sh 
	usr.bin/diff3  : diff3.ksh 
	usr.sbin/adduser: rmgroup.sh 

Log message:
Add where missing and harmonize PATH to be _PATH_DEFPATH (without local nor
X11R6).
Suggested by tb@

ok deraadt@ tb@ millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 12:19:13

Modified files:
	graphics/opencv: Makefile 

Log message:
Unbreak:
- fix bogus WANTLIB
- remove bogus LDEP on graphics/libgphoto2


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/28 13:33:32

Modified files:
	fonts/powerline-fonts: Makefile distinfo 
	fonts/powerline-fonts/pkg: PLIST 

Log message:
update to newer powerline-fonts checkout


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/09/28 15:35:05

Modified files:
	faq/ports      : guide.html 

Log message:
correct path to network.conf; from travis cole


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/28 16:20:25

Modified files:
	sys/arch/octeon/conf: GENERIC RAMDISK files.octeon 
	sys/arch/octeon/dev: cn30xxgmx.c cn30xxsmi.c cn30xxuart.c 
	                     octpip.c 
	sys/arch/octeon/octeon: machdep.c 

Log message:
rename the 'cn30xx' drivers to just 'oct', because digits inside devices
drivers is gross. discussed with visa.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/28 16:20:45

Modified files:
	share/man/man4/man4.octeon: Makefile cnmac.4 octpip.4 
Added files:
	share/man/man4/man4.octeon: octgmx.4 
Removed files:
	share/man/man4/man4.octeon: cn30xxgmx.4 

Log message:
adjust for cn30xx -> oct driver renaming


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/28 16:20:50

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/28 16:29:21

Modified files:
	x11/gnome/librsvg: Makefile distinfo 
	x11/gnome/librsvg/pkg: PFRAG.stable 
Added files:
	x11/gnome/librsvg/patches: 
	                           patch-vendor_libc_src_unix_bsd_netbsdlike_openbsd_mod_rs 
Removed files:
	x11/gnome/librsvg/patches: patch-configure 
	                           patch-vendor_libc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs 

Log message:
Update to librsvg-2.46.0.
Needs the recent libtool fix from semarie@

ok semarie@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/28 16:34:04

Modified files:
	gnu/llvm/tools/clang/lib/Driver/ToolChains: OpenBSD.cpp 
	                                            OpenBSD.h 

Log message:
Make clang emit the proper path to our libcompiler_rt.a when asked to.
Change of behaviour in latest clang upgrade noticed by jsing@ during
the Go port update, where --print-libgcc-file-name is being used which
prints the compiler-rt path.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	pamela@cvs.openbsd.org	2019/09/28 17:01:59

Log message:
    OpenDyslexic is an open source font created to increase readability
    for readers with dyslexia. Currently includes otf and woff files.
    
    ok bcallah sthen
    
    Status:
    
    Vendor Tag:	pamela
    Release Tags:	pamela_20190928
    
    N ports/fonts/opendyslexic/Makefile
    N ports/fonts/opendyslexic/distinfo
    N ports/fonts/opendyslexic/pkg/DESCR
    N ports/fonts/opendyslexic/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	pamela@cvs.openbsd.org	2019/09/28 17:08:34

Modified files:
	fonts          : Makefile 

Log message:
+opendyslexic


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/28 22:25:08

Modified files:
	sys/dev/ofw    : ofw_gpio.h 

Log message:
Reserve a few GPIO_CONFIG bits for machine-dependent use.

No objection from kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/28 22:28:52

Modified files:
	sys/arch/octeon/dev: octgpio.c 
	sys/arch/octeon/include: octeonvar.h 

Log message:
Add option to configure GPIO output select.


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/09/28 22:32:23

Modified files:
	sys/arch/octeon/dev: octxctl.c 

Log message:
Configure USB port power control if the power GPIO is defined in fdt.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/29 01:58:35

Modified files:
	devel/liblouis : Makefile distinfo 
	devel/liblouis/patches: patch-python_louis_Makefile_in 
	                        patch-tools_lou_compare_c 
	devel/liblouis/pkg: PLIST 
Removed files:
	devel/liblouis/patches: patch-liblouis_compileTranslationTable_c 

Log message:
Update to liblouis-3.11.0.

from wen heping


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/29 02:23:17

Modified files:
	lang/rust      : Makefile distinfo 
	lang/rust/patches: patch-src_bootstrap_bin_rustc_rs 
	                   patch-src_bootstrap_lib_rs 
	                   patch-src_bootstrap_test_rs 
	                   patch-src_librustc_llvm_build_rs 
	                   patch-src_librustc_target_spec_mod_rs 
	                   patch-src_libstd_sys_unix_os_rs 
	                   patch-src_libunwind_build_rs 
	                   patch-src_tools_cargo_src_cargo_core_compiler_context_compilation_files_rs 
	                   patch-src_tools_cargo_tests_testsuite_support_paths_rs 
	lang/rust/pkg  : PLIST-main 
Added files:
	lang/rust/patches: patch-src_test_ui-fulldeps_myriad-closures_rs 
	                   patch-src_test_ui_out-of-stack_rs 
	                   patch-src_test_ui_sse2_rs 
	                   patch-src_test_ui_stack-probes-lto_rs 
	                   patch-src_test_ui_stack-probes_rs 
	                   patch-vendor_libc_src_unix_bsd_netbsdlike_openbsd_mod_rs 
	                   patch-vendor_libc_src_unix_bsd_netbsdlike_openbsd_sparc64_rs 
	                   patch-vendor_libgit2-sys_lib_rs 
Removed files:
	lang/rust/patches: 
	                   patch-src_test_run-pass-fulldeps_myriad-closures_rs 
	                   patch-src_test_run-pass_out-of-stack_rs 
	                   patch-src_test_run-pass_sse2_rs 
	                   patch-src_test_run-pass_stack-probes-lto_rs 
	                   patch-src_test_run-pass_stack-probes_rs 
	                   patch-vendor_libc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs 
	                   patch-vendor_libc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_sparc64_rs 

Log message:
update lang/rust to 1.38.0

Release: https://github.com/rust-lang/rust/blob/stable/RELEASES.md#version-1380-2019-09-26
Announce: https://blog.rust-lang.org/2019/09/26/Rust-1.38.0.html

ok landry@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gilles@cvs.openbsd.org	2019/09/29 03:52:06

Modified files:
	mail/opensmtpd-filters/rspamd: Makefile distinfo 

Log message:
update opensmtpd-filter-rspamd to 0.1.3, fixes a concurrency-related crash,
and adds a few features

ok florian@ and landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/29 04:03:49

Modified files:
	usr.sbin/smtpd : smtpd.h srs.c util.c 

Log message:
SRS uses base64 encoding for the checksum, however while this is ok when we
only have MTA in the loop, some implementations like Dovecot's LMTP dislike
finding '/' in an e-mail address. Since checksum is meant to be verified at
the MX that generated the SRS encoding, use alternate rfc354 base64 encode,
swapping '/' with '_' and '+' with '-'.

ok eric@ millert@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/09/29 04:09:09

Modified files:
	lib/libcrypto/ec: ec.h ec_lib.c ec_err.c 

Log message:
If a NULL or zero cofactor is passed to EC_GROUP_set_generator(),
try to compute it using Hasse's bound.  This works as long as the
cofactor is small enough.

Port of Brumley's fix for CVE-2019-1547 in OpenSSL 1.1.1 (old license)

tests & ok inoguchi
input & ok jsing

commit 30c22fa8b1d840036b8e203585738df62a03cec8
Author: Billy Brumley <bbrumley@gmail.com>
Date:   Thu Sep 5 21:25:37 2019 +0300

[crypto/ec] for ECC parameters with NULL or zero cofactor, compute it

The cofactor argument to EC_GROUP_set_generator is optional, and SCA
mitigations for ECC currently use it. So the library currently falls
back to very old SCA-vulnerable code if the cofactor is not present.

This PR allows EC_GROUP_set_generator to compute the cofactor for all
curves of cryptographic interest. Steering scalar multiplication to more
SCA-robust code.

This issue affects persisted private keys in explicit parameter form,
where the (optional) cofactor field is zero or absent.

It also affects curves not built-in to the library, but constructed
programatically with explicit parameters, then calling
EC_GROUP_set_generator with a nonsensical value (NULL, zero).

The very old scalar multiplication code is known to be vulnerable to
local uarch attacks, outside of the OpenSSL threat model. New results
suggest the code path is also vulnerable to traditional wall clock
timing attacks.

CVE-2019-1547

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org>
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/9781)


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/29 04:14:19

Modified files:
	usr.sbin/smtpd : spfwalk.c 

Log message:
- remove specific cases for +a and +mx as the + prefix is handled earlier
- support mx: notation

diff from Quentin Rameau <quinq@fifth.space>


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/09/29 04:15:00

Modified files:
	.              : 66.html 

Log message:
mention Brumley's cofactor fix


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/29 04:36:52

Modified files:
	sys/arch/arm/arm: cpu.c 
	sys/arch/arm/cortex: ampintc.c 
	sys/arch/armv7/armv7: intr.c 
	sys/arch/armv7/include: intr.h 

Log message:
Add IPI support.  Taken ftrom arm64.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/29 04:51:26

Added files:
	infrastructure/lib/OpenBSD: Trace.pm 

Log message:
Move the BaseTrace class here for more general consumption.
Include some documentation.
(unused yet, there may be errors)


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/29 04:58:10

Modified files:
	infrastructure/lib/OpenBSD: Trace.pm 

Log message:
explain the handlers better
also add a hook for tweaking Data::Dumper parameters


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/29 05:25:25

Modified files:
	sys/arch/armv7/armv7: intr.c 

Log message:
Improve MSI support by parsing the "msi-map" attribute.  Taken from
arm64 to reduce the diff between the platforms.

ok kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/29 06:38:25

Modified files:
	devel/libgdata : Makefile distinfo 
	devel/libgdata/pkg: PLIST 
Removed files:
	devel/libgdata/patches: patch-gdata_meson_build 
	                        patch-meson_build patch-po_meson_build 

Log message:
update to libgdata-0.17.11


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/29 06:57:51

Modified files:
	infrastructure/bin: dpb 
	infrastructure/lib/DPB: Trace.pm 

Log message:
move to new tracing


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/29 07:04:03

Modified files:
	sys/conf       : files 
	sys/dev/fdt    : files.fdt if_dwxe.c 
Added files:
	sys/dev/fdt    : if_dwge.c 
Removed files:
	sys/dev/fdt    : if_dwge_fdt.c 
	sys/dev/ic     : dwc_gmac.c dwc_gmac_reg.h dwc_gmac_var.h 

Log message:
Replace dwge(4) with a new driver based on dwxe(4).  There are many
similarities between the two and using a common approach helps fixing bugs.
The new driver is better integrated with the device tree framework and
is faster (mainly because the DMA engine is configured properly now).

Tested on all currently supported variants of the hardware.

ok jsg@, jmatthew@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/29 07:18:39

Modified files:
	sbin/unwind    : frontend.c resolver.c unwind.c 

Log message:
annoying trailing whitespaces


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/29 07:22:29

Log message:
    Import epson-inkjet-printer-escpr-1.7.3.
    
    This is a filter program for use with CUPS (Common UNIX Printing System)
    offering high quality printing with Seiko Epson colour ink jet printers.
    It can only be used with printers that support the Epson ESC/P-R language.
    
    most of the porting work done by sthen@
    most patches from FreeBSD
    ok sthen@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20190929
    
    N ports/print/epson-inkjet-printer-escpr/Makefile
    N ports/print/epson-inkjet-printer-escpr/distinfo
    N ports/print/epson-inkjet-printer-escpr/patches/patch-lib_epson-escpr-api-private_h
    N ports/print/epson-inkjet-printer-escpr/patches/patch-lib_epson-escpr-api_c
    N ports/print/epson-inkjet-printer-escpr/patches/patch-lib_epson-usb_c
    N ports/print/epson-inkjet-printer-escpr/patches/patch-src_filter_c
    N ports/print/epson-inkjet-printer-escpr/patches/patch-src_linux_cmn_c
    N ports/print/epson-inkjet-printer-escpr/patches/patch-src_mem_c
    N ports/print/epson-inkjet-printer-escpr/patches/patch-src_wrapper_c
    N ports/print/epson-inkjet-printer-escpr/pkg/DESCR
    N ports/print/epson-inkjet-printer-escpr/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/29 07:22:55

Modified files:
	print          : Makefile 

Log message:
+epson-inkjet-printer-escpr


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/29 07:25:15

Modified files:
	print/cups     : Makefile 
	print/cups/pkg : README-main 

Log message:
Mention a couple more printer backends.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/29 07:27:48

Modified files:
	sys/dev/fdt    : sypwr.c 

Log message:
Fix pasto.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/29 07:36:28

Modified files:
	print/splix    : Makefile 
	print/splix/patches: patch-Makefile patch-rules_mk 
Added files:
	print/splix/patches: patch-ppd_samsung_drv_in 
	                     patch-ppd_xerox_drv_in 

Log message:
Fix printer IDs and pass LDFLAGS (from Fedora).
Regen WANTLIB while here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/29 07:41:11

Modified files:
	print/foo2zjs  : Makefile distinfo 
	print/foo2zjs/patches: patch-Makefile patch-getweb_in 
	print/foo2zjs/pkg: PLIST 

Log message:
Update to foo2zjs-20190909.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/29 09:31:16

Modified files:
	sys/dev/usb    : if_umb.c 

Log message:
turn the success paths of FCC registration into debug prints.  The
(unlikely) failure path remains noisy.
discussed with claudio


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/29 09:47:29

Modified files:
	sys/scsi       : cd.c scsi_base.c scsi_debug.h scsi_ioctl.c sd.c 
	                 st.c 

Log message:
Tweak some whitespace to make autoindenter happy. Use consistent naming idiom for
the debug functions.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/29 10:10:30

Modified files:
	sys/scsi       : scsi_base.c 

Log message:
Move some logic inside scsi_show_xs() instead of surrounding the
single invocation of the same. Clearer.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/29 10:30:35

Modified files:
	lib/libc/crypt : arc4random.3 

Log message:
zap trailing whitespace;


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/09/29 10:31:57

Modified files:
	usr.bin/ssh    : ssh-keygen.1 ssh-keygen.c 

Log message:
group and sort single letter options; ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/29 11:10:00

Modified files:
	usr.sbin/ldomd : ldomd.c 

Log message:
oops .h file missing


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/09/29 11:19:29

Modified files:
	infrastructure/lib/DPB/Core: Init.pm 

Log message:
optimization: no need to compute library signatures in fetch_only mode


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/29 11:23:24

Modified files:
	sys/scsi       : scsi_debug.h st.c 

Log message:
Continue SCSIDEBUG cleanup by nuking pointles SC_DEBUGN() #define.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/29 11:41:52

Modified files:
	graphics/evince: Makefile distinfo 

Log message:
update to evince-3.32.1


CVSROOT:	/cvs
Module name:	src
Changes by:	otto@cvs.openbsd.org	2019/09/29 11:52:02

Modified files:
	sbin/unwind    : resolver.c 

Log message:
Fix histogram code to do an inclusive check for the upper bound to
avoid an out-of-bound write for specific values and also check for
oob writes in general; with input from kettenis; ok florian@ kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/09/29 11:53:57

Modified files:
	lib/libcompiler_rt: CMakeLists.txt LICENSE.TXT clzdi2.c 
	                    cpu_model.c ctzdi2.c divdc3.c divdf3.c 
	                    divsc3.c divsf3.c divtc3.c emutls.c fp_lib.h 
	                    gcc_personality_v0.c int_lib.h int_math.h 
	                    int_types.h int_util.c int_util.h 
	lib/libcompiler_rt/arm: addsf3.S aeabi_cdcmp.S aeabi_cfcmp.S 
	lib/libcompiler_rt/ppc: divtc3.c 
Added files:
	lib/libcompiler_rt/ppc: fixunstfti.c floattitf.c 
Removed files:
	lib/libcompiler_rt/Darwin-excludes: 10.4.txt 

Log message:
Update compiler-rt to 8.0.1.  This is mostly a cosmetic update for us.

Tested in snaps
ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/29 11:57:36

Modified files:
	sys/scsi       : cd.c scsi_base.c scsi_debug.h scsi_ioctl.c sd.c 
	                 st.c 

Log message:
Introduce SC_DEBUG_SENSE() and simplify code by eliminating a bunch
of three line SCSIDEBUG chunks.


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/29 12:08:55

Modified files:
	mail/exim      : Makefile distinfo 

Log message:
security update to exim-4.92.3; ok Renaud Allard (maintainer)

"There is a heap-based buffer overflow in string_vformat (string.c).
The currently known exploit uses a extraordinary long EHLO string to
crash the Exim process that is receiving the message. While at this
mode of operation Exim already dropped its privileges, other paths to
reach the vulnerable code may exist."


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/29 12:09:38

Modified files:
	mail/exim      : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
security update to exim-4.92.3; ok Renaud Allard (maintainer)

"There is a heap-based buffer overflow in string_vformat (string.c).
The currently known exploit uses a extraordinary long EHLO string to
crash the Exim process that is receiving the message. While at this
mode of operation Exim already dropped its privileges, other paths to
reach the vulnerable code may exist."


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/29 12:13:45

Modified files:
	distrib/sets/lists/comp: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/09/29 12:44:10

Modified files:
	.              : 66.html 

Log message:
Add a lot of the things we did, list compiled from plus.html.


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/09/29 16:49:32

Added files:
	faq            : upgrade66.html 

Log message:
First pass at upgrade66.html using information from current.html


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/29 17:08:57

Modified files:
	sys/scsi       : scsi_debug.h 

Log message:
Restore SC_DEBUGN() as it was used outside sys/scsi. Some things are
not compiled on amd64!


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/29 19:53:05

Modified files:
	sys/net        : bpf.h bpf.c if_pflog.c if_switch.c 
	sys/dev/pci    : if_ipw.c if_iwi.c if_iwm.c if_iwn.c if_mcx.c 
	                 if_wpi.c 
	sys/netinet    : ip_ah.c ip_esp.c ip_ipcomp.c ipsec_input.c 

Log message:
remove the "copy function" argument to bpf_mtap_hdr.

it was previously (ab)used by pflog, which has since been fixed.
apart from that nothing else used it, so we can trim the cruft.

ok kn@ claudio@ visa@
visa@ also made sure i fixed ipw(4) so i386 won't break.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/29 19:55:26

Modified files:
	share/man/man9 : bpf_mtap.9 

Log message:
bpf_mtap_hdr doesn't take a custom copy function argument anymore.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/09/29 21:35:09

Modified files:
	libexec/ld.so  : malloc.c 

Log message:
Oops: the call to ofree() in orealloc() was misconverted into a call to
_dl_free(), which would trigger a "recursive call" assertion...if we
had ever realloced in ld.so

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/30 00:25:01

Modified files:
	sys/dev/pci    : if_ixl.c 

Log message:
use the right values when figuring out which if_baudrate to use.

i was basically using ISSET(bitfield, shift) instead of
ISSET(bitfield, 1 << shift), so things didn't line up properly.

before this the baudrate would come out as 0, but lacp mode in
trunk(4) wants a non-zero if_baudrate value to help pick the best
aggregator to use. if the port reports 0, it doesn't get selected.
this probably explains why trunk(4) doesn't like doing lacp on
virtual ethernet interfaces too, but at least i can get a number
that actually means something on a hardware interface. alternatively,
use aggr(4), which doesn't care about the baudrate.

ok jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/30 00:34:50

Modified files:
	comms/sigrok/libsigrok: Makefile 
Added files:
	comms/sigrok/libsigrok/patches: patch-Doxyfile 

Log message:
Unbreak build after doxygen update

"Behavior of FILE_PATTERNS was unintentionally changed in doxygen 1.8.16,
this lead to the libsigrok doxygen invocation generating almost no data,
and missing all the enums needed for the binding generation, resulting
in build failures."

Upstream-issue: https://github.com/doxygen/doxygen/issues/7190

Patch from ArchLinux


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/09/30 00:35:00

Modified files:
	devel/libftdi1 : Makefile 

Log message:
Unbreak build after doxygen update

We disable the use of doxygen in all ports. It was forgotten here.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/09/30 01:45:48

Modified files:
	emulators/mame : Makefile distinfo 

Log message:
Update mame to 0.214.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/09/30 01:56:14

Modified files:
	lib/libcrypto  : opensslv.h 

Log message:
bump for LibreSSL 3.0.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/09/30 02:24:44

Modified files:
	devel/angr     : Makefile.inc 
	devel/angr/vex : Makefile 
	security/angrop: Makefile 

Log message:
move ONLY_FOR_ARCHS from vex' Makefile to angr{,rop}

vex is amd64-only and there is no point in attempting to build packages
only to have them fail when the RDEP on vex cannot be resolved (e.g. on
i386 as reported by sthen).

prompted by sthen@
ok kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/09/30 02:31:41

Modified files:
	usr.sbin/smtpd : mail.maildir.c mail.mboxfile.c smtpd.h util.c 

Log message:
Allow maildir and mbox MDAs to tempfail on situations that might be
resolved over time.

While here remove mkdirs component from utils.c, which isn't used anywhere.

OK gilles@, millert@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/30 02:45:39

Modified files:
	net/putty      : Makefile distinfo 
	net/putty/patches: patch-unix_uxnoise_c 

Log message:
security update to PuTTY 0.73

"This is a SECURITY UPDATE, fixing minor vulnerabilities affecting port
forwarding on Windows; bracketed paste mode in the terminal; and any
use of SSH-1. We recommend that anyone using those features should
update."


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/09/30 04:38:55

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
try to make if_baudrate look plausible.

this updates the eth proto capability map so it records the baudrate
against the different link types and their media, and then reads
it when the link state changes.

this should help if you want to use mcx with trunk(4) in lacp mode.

ok jmatthew@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/30 05:05:05

Modified files:
	mail/postfix/stable: Makefile distinfo 

Log message:
update to postfix-3.4.7, from Brad


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/30 05:05:16

Modified files:
	mail/postfix/snapshot: Makefile distinfo 

Log message:
update to postfix-3.5-20190922, from Brad


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/09/30 05:14:15

Modified files:
	.              : 66.html 

Log message:
fix spelling of 'mitigations', thanks Janne Johansson for noticing.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:25:03

Modified files:
	print/poppler  : Makefile distinfo 

Log message:
Update to poppler-0.81.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	krw@cvs.openbsd.org	2019/09/30 05:27:37

Modified files:
	sys/scsi       : scsi_debug.h 

Log message:
SC_DEBUGN is not spelled SCSI_DEBUGN.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:28:39

Log message:
    Import devel/hs-base-compat.
    
    The scope of base-compat is to provide functions available in later
    versions of base to a wider (older) range of compilers.
    
    In addition, successful library proposals that have been accepted to
    be part of upcoming versions of base are also included. This package
    is not intended to replace base, but to complement it.
    
    From Greg Steuck.
    
    ok jturner@
    
    Status:
    
    Vendor Tag:	kili
    Release Tags:	kili_20190930
    
    N ports/devel/hs-base-compat/Makefile
    N ports/devel/hs-base-compat/distinfo
    N ports/devel/hs-base-compat/pkg/DESCR
    N ports/devel/hs-base-compat/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:31:05

Log message:
    Import devel/hs-byteable.
    
    Abstract class to manipulate sequence of bytes
    
    The use case of this class is abstracting manipulation of types that
    are just wrapping a bytestring with stronger and more meaniful name.
    
    From Greg Steuck.
    
    ok jturner@
    
    Status:
    
    Vendor Tag:	kili
    Release Tags:	kili_20190930
    
    N ports/devel/hs-byteable/Makefile
    N ports/devel/hs-byteable/distinfo
    N ports/devel/hs-byteable/pkg/DESCR
    N ports/devel/hs-byteable/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:32:04

Log message:
    Import devel/hs-mono-traversable.
    
    Type classes for mapping, folding, and traversing monomorphic and
    polymorphic containers. Haskell is good at operating over polymorphic
    containers such as a list [a]. A monomorphic container is one such as
    Text which has a type Text that does not expose a type variable for
    the underlying characters.
    
    From Greg Steuck.
    
    ok jturner@
    
    Status:
    
    Vendor Tag:	kili
    Release Tags:	kili_20190930
    
    N ports/devel/hs-mono-traversable/Makefile
    N ports/devel/hs-mono-traversable/distinfo
    N ports/devel/hs-mono-traversable/pkg/DESCR
    N ports/devel/hs-mono-traversable/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:32:51

Log message:
    Import devel/hs-unliftio-core.
    
    Provides the core MonadUnliftIO typeclass, instances for base and
    transformers, and basic utility functions. Typically, you'll want to
    use the unliftio library, which provides more functionality (and a
    much better description).
    
    From Greg Steuck.
    
    ok jturner@
    
    Status:
    
    Vendor Tag:	kili
    Release Tags:	kili_20190930
    
    N ports/devel/hs-unliftio-core/Makefile
    N ports/devel/hs-unliftio-core/distinfo
    N ports/devel/hs-unliftio-core/patches/patch-unliftio-core_cabal
    N ports/devel/hs-unliftio-core/pkg/DESCR
    N ports/devel/hs-unliftio-core/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/09/30 05:37:38

Modified files:
	share/man/man4 : dwge.4 

Log message:
update HISTORY and AUTHORS after last week's rewrite;
input and OK kettenis@ and jmc@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:38:21

Added files:
	devel/hs-unordered-containers: Makefile distinfo 
	devel/hs-unordered-containers/pkg: DESCR PLIST 

Log message:
Resurrect devel/hs-unordered-containers.

Efficient hashing-based container types. The containers have been
optimized for performance critical use, both in terms of large data
quantities and high speed.

The declared cost of each operation is either worst-case or amortized,
but remains valid even if structures are shared.

From Greg Steuck.

ok jturner@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:39:44

Added files:
	devel/hs-vector-algorithms: Makefile distinfo 
	devel/hs-vector-algorithms/pkg: DESCR PLIST 

Log message:
Resurrect devel/hs-vector-algorithms.

Efficient algorithms for sorting vector arrays. At some stage other
vector algorithms may be added.

From Greg Steuck.

ok jturner@


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/09/30 05:42:52

Modified files:
	.              : 66.html 

Log message:
Fix a bunch of typos and whitespace issues.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:44:18

Modified files:
	lang/ghc       : Makefile distinfo ghc.port.mk 
	lang/ghc/patches: patch-configure patch-ghc_mk 
	                  patch-libraries_base_GHC_IO_Encoding_hs 
	                  patch-testsuite_driver_testlib_py 
	                  patch-testsuite_mk_test_mk 
	                  patch-testsuite_tests_codeGen_should_run_all_T 
	                  patch-utils_ghc-pkg_Main_hs 
	lang/ghc/pkg   : PLIST 
Added files:
	lang/ghc/patches: patch-rts_RtsSymbols_c patch-rts_ghc_mk 
Removed files:
	lang/ghc/patches: patch-compiler_main_SysTools_hs 
	                  patch-iserv_ghc_mk 
	                  patch-libraries_Cabal_Cabal_Distribution_Simple_Compiler_hs 
	                  patch-mk_config_mk_in 

Log message:
Update to ghc-8.6.4.

Joint work with Greg Steuck.

Marked as BROKEN until all the following churn on hs-ports is in.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:47:09

Modified files:
	archivers/hs-zip-archive: Makefile distinfo 
	archivers/hs-zip-archive/pkg: PLIST 

Log message:
Update to hs-zip-archive-0.3.2.5.

Joined work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:48:41

Modified files:
	archivers/hs-zlib: Makefile distinfo 
	archivers/hs-zlib/pkg: PLIST 

Log message:
Update to hs-zlib-0.6.2.1.

Joined work with Greg Steuck.


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/09/30 05:49:18

Modified files:
	.              : 66.html 

Log message:
Remove duplicate entry about the octeon bootloader changes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:50:59

Modified files:
	audio/hs-libmpd: Makefile distinfo 
	audio/hs-libmpd/pkg: PLIST 

Log message:
Update to hs-libmpd-0.9.0.9.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:53:37

Modified files:
	devel/cabal-install: Makefile distinfo 

Log message:
Update to cabal-install-2.4.0.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:54:44

Modified files:
	devel/darcs    : Makefile distinfo 
	devel/darcs/patches: patch-darcs_cabal 
Removed files:
	devel/darcs/patches: patch-Setup_lhs patch-darcs_darcs_hs 

Log message:
Update to darcs-2.14.2.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:56:35

Modified files:
	devel/hs-MissingH: Makefile distinfo 
	devel/hs-MissingH/pkg: PLIST 

Log message:
Update to hs-MissingH-1.4.1.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:57:31

Modified files:
	devel/hs-ansi-terminal: Makefile distinfo 
	devel/hs-ansi-terminal/pkg: PLIST 

Log message:
Update to hs-ansi-terminal-0.8.2.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 05:58:17

Modified files:
	devel/hs-ansi-wl-pprint: Makefile distinfo 
	devel/hs-ansi-wl-pprint/pkg: PLIST 

Log message:
Update to hs-ansi-wl-pprint-0.6.8.2.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:00:00

Modified files:
	devel/hs-async : Makefile distinfo 
	devel/hs-async/pkg: PLIST 
Added files:
	devel/hs-async/patches: patch-async_cabal 

Log message:
Update to hs-async-2.2.1.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:01:05

Modified files:
	devel/hs-cereal: Makefile distinfo 
	devel/hs-cereal/pkg: PLIST 

Log message:
Update to hs-cereal-0.5.8.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:02:00

Modified files:
	devel/hs-conduit: Makefile distinfo 
	devel/hs-conduit/pkg: PLIST 

Log message:
Update to hs-conduit-1.3.1.1.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:04:37

Modified files:
	devel/hs-constraints: Makefile distinfo 
	devel/hs-constraints/pkg: PLIST 

Log message:
Update to hs-constraints-0.10.1.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:05:47

Modified files:
	devel/hs-dlist : Makefile distinfo 
	devel/hs-dlist/pkg: PLIST 

Log message:
Update to hs-dlist-0.8.0.5.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:07:02

Modified files:
	devel/hs-exceptions: Makefile distinfo 
	devel/hs-exceptions/patches: patch-exceptions_cabal 
	devel/hs-exceptions/pkg: PLIST 

Log message:
Update to hs-exceptions-0.10.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:08:11

Modified files:
	devel/hs-fgl   : Makefile distinfo 
	devel/hs-fgl/pkg: PLIST 

Log message:
Update to hs-fgl-5.7.0.1.

Also, enable it on i386 again.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:08:54

Modified files:
	devel/hs-hashable: Makefile distinfo 
	devel/hs-hashable/pkg: PLIST 
Added files:
	devel/hs-hashable/patches: patch-hashable_cabal 

Log message:
Update to hs-hashable-1.2.7.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:10:33

Modified files:
	devel/hs-lifted-async: Makefile distinfo 
	devel/hs-lifted-async/pkg: PLIST 

Log message:
Update to hs-lifted-async-0.10.0.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/09/30 06:10:38

Modified files:
	usr.sbin/bgpd  : pfkey.c session.c session.h 

Log message:
Pass a struct listen_addr pointer to tcp_md5_listen and not just the fd,
the linux shim needs this.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:11:26

Modified files:
	devel/hs-mmap  : Makefile distinfo 
	devel/hs-mmap/pkg: PLIST 

Log message:
Update to hs-mmap-0.5.9.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:13:12

Modified files:
	devel/hs-primitive: Makefile distinfo 
	devel/hs-primitive/patches: patch-primitive_cabal 
	devel/hs-primitive/pkg: PLIST 

Log message:
Update to hs-primitive-0.6.4.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:15:10

Modified files:
	devel/hs-regex-tdfa: Makefile distinfo 
	devel/hs-regex-tdfa/pkg: PLIST 

Log message:
Update to hs-regex-tdfa-1.2.3.2.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:17:55

Modified files:
	devel/hs-resourcet: Makefile distinfo 
	devel/hs-resourcet/pkg: PLIST 

Log message:
Update to hs-resourcet-1.2.2.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:18:46

Modified files:
	devel/hs-sandi : Makefile distinfo 
	devel/hs-sandi/pkg: PLIST 
Added files:
	devel/hs-sandi/patches: patch-Setup_hs 

Log message:
Update to hs-sandi-0.5.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:19:49

Modified files:
	devel/hs-semigroups: Makefile distinfo 
	devel/hs-semigroups/pkg: PLIST 

Log message:
Update to hs-semigroups-0.18.5.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:20:41

Modified files:
	devel/hs-shelly: Makefile distinfo 
	devel/hs-shelly/pkg: PLIST 

Log message:
Update to hs-shelly-1.8.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:21:39

Modified files:
	devel/hs-split : Makefile distinfo 
	devel/hs-split/pkg: PLIST 
Added files:
	devel/hs-split/patches: patch-split_cabal 

Log message:
Update to hs-split-0.2.3.3.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:22:47

Modified files:
	devel/hs-system-filepath: Makefile distinfo 
	devel/hs-system-filepath/pkg: PLIST 

Log message:
Update to hs-system-filepath-0.4.14.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:23:36

Modified files:
	devel/hs-tagged: Makefile distinfo 
	devel/hs-tagged/pkg: PLIST 

Log message:
Update to hs-tagged-0.8.6.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:24:32

Modified files:
	devel/hs-tar   : Makefile distinfo 
	devel/hs-tar/pkg: PLIST 
Added files:
	devel/hs-tar/patches: patch-tar_cabal 

Log message:
Update to hs-tar-0.5.1.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:25:24

Modified files:
	devel/hs-test-framework: Makefile distinfo 
	devel/hs-test-framework/patches: patch-test-framework_cabal 
	devel/hs-test-framework/pkg: PLIST 

Log message:
Update to hs-test-framework-0.8.2.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:26:51

Modified files:
	devel/hs-unix-compat: Makefile distinfo 
	devel/hs-unix-compat/pkg: PLIST 

Log message:
Update to hs-unix-compat-0.4.2.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:27:46

Modified files:
	devel/hs-vector: Makefile distinfo 
	devel/hs-vector/pkg: PLIST 
Removed files:
	devel/hs-vector/patches: patch-vector_cabal 

Log message:
Update to hs-vector-0.12.0.3.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:29:40

Modified files:
	graphics/hs-colour: Makefile distinfo 
	graphics/hs-colour/pkg: PLIST 

Log message:
Update to hs-colour-2.3.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:30:20

Modified files:
	graphics/hs-graphviz: Makefile distinfo 
	graphics/hs-graphviz/pkg: PLIST 

Log message:
Update to hs-graphviz-2999.20.0.3.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:31:18

Modified files:
	net/hs-HTTP    : Makefile distinfo 
	net/hs-HTTP/pkg: PLIST 

Log message:
Update to hs-HTTP-4000.3.13.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:33:02

Modified files:
	security/hs-cryptohash: Makefile distinfo 
	security/hs-cryptohash/pkg: PLIST 

Log message:
Update to hs-cryptohash-0.11.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:34:32

Modified files:
	security/hs-hackage-security: Makefile distinfo 
	security/hs-hackage-security/patches: 
	                                      patch-hackage-security_cabal 
	security/hs-hackage-security/pkg: PLIST 

Log message:
Update to hs-hackage-security-0.5.3.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:35:56

Modified files:
	textproc/hs-HaXml: Makefile distinfo 
	textproc/hs-HaXml/pkg: PLIST 

Log message:
Update to hs-HaXml-1.25.5.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:36:41

Modified files:
	textproc/hs-attoparsec: Makefile distinfo 
	textproc/hs-attoparsec/pkg: PLIST 

Log message:
Update to hs-attoparsec-0.13.2.2.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:38:01

Modified files:
	textproc/hs-polyparse: Makefile distinfo 
	textproc/hs-polyparse/pkg: PLIST 

Log message:
Update to hs-polyparse-1.12.1.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:38:45

Modified files:
	textproc/hs-wl-pprint-text: Makefile distinfo 
	textproc/hs-wl-pprint-text/pkg: PLIST 

Log message:
Update to hs-wl-pprint-text-1.2.0.0.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:40:20

Modified files:
	x11/hs-xmonad-contrib: Makefile distinfo 
	x11/hs-xmonad-contrib/pkg: PLIST 

Log message:
Update to hs-xmonad-contrib-0.15.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:41:13

Modified files:
	x11/xmonad     : Makefile distinfo 
	x11/xmonad/patches: patch-man_xmonad_1 patch-src_XMonad_Main_hs 
	                    patch-xmonad_cabal 
	x11/xmonad/pkg : PLIST-lib 

Log message:
Update to xmonad-0.15.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2019/09/30 06:45:00

Modified files:
	.              : 66.html 

Log message:
correct versions and a few other things


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:47:06

Modified files:
	databases/hs-HDBC: Makefile 
	databases/hs-HDBC/pkg: PLIST 
	databases/hs-HDBC-sqlite3: Makefile 
	databases/hs-HDBC-sqlite3/pkg: PLIST 

Log message:
Let those build with ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:50:08

Modified files:
	devel/shellcheck: Makefile 
	devel/shellcheck/pkg: PLIST-lib 
Added files:
	devel/shellcheck/patches: patch-ShellCheck_AnalyzerLib_hs 
	                          patch-ShellCheck_cabal 
	                          patch-shellcheck_hs 

Log message:
Let it build with ghc-8.6.4.

Also, enable it on i386.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/09/30 06:50:31

Modified files:
	.              : 66.html 

Log message:
repair glitch


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:51:25

Modified files:
	devel/alex     : Makefile 
	devel/cpphs    : Makefile 
	devel/cpphs/pkg: PLIST-lib 
	devel/gmc4cc   : Makefile 
	devel/happy    : Makefile 
	devel/hasktags : Makefile 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:52:39

Modified files:
	games/hedgewars: Makefile 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:53:10

Modified files:
	net/hpodder    : Makefile 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/09/30 06:53:10

Modified files:
	.              : 66.html 

Log message:
improve SFP / sff text


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:54:32

Modified files:
	x11/xmobar     : Makefile 
	x11/xmobar/patches: patch-xmobar_cabal 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:58:11

Modified files:
	devel/hs-ConfigFile: Makefile 
	devel/hs-ConfigFile/pkg: PLIST 
	devel/hs-FindBin: Makefile 
	devel/hs-FindBin/pkg: PLIST 
	devel/hs-HUnit : Makefile 
	devel/hs-HUnit/pkg: PLIST 
	devel/hs-QuickCheck: Makefile 
	devel/hs-QuickCheck/pkg: PLIST 
	devel/hs-base16-bytestring: Makefile 
	devel/hs-base16-bytestring/pkg: PLIST 
	devel/hs-base64-bytestring: Makefile 
	devel/hs-base64-bytestring/pkg: PLIST 
	devel/hs-cmdargs: Makefile 
	devel/hs-cmdargs/pkg: PLIST 
	devel/hs-convertible: Makefile 
	devel/hs-convertible/pkg: PLIST 
	devel/hs-data-default: Makefile 
	devel/hs-data-default/pkg: PLIST 
	devel/hs-data-ordlist: Makefile 
	devel/hs-data-ordlist/pkg: PLIST 
	devel/hs-echo  : Makefile 
	devel/hs-echo/pkg: PLIST 
	devel/hs-edit-distance: Makefile 
	devel/hs-edit-distance/pkg: PLIST 
	devel/hs-enclosed-exceptions: Makefile 
	devel/hs-enclosed-exceptions/pkg: PLIST 
	devel/hs-extensible-exceptions: Makefile 
	devel/hs-extensible-exceptions/pkg: PLIST 
	devel/hs-hinotify: Makefile 
	devel/hs-hinotify/pkg: PLIST 
	devel/hs-hslogger: Makefile 
	devel/hs-hslogger/pkg: PLIST 
	devel/hs-lifted-base: Makefile 
	devel/hs-lifted-base/pkg: PLIST 
	devel/hs-mmorph: Makefile 
	devel/hs-mmorph/pkg: PLIST 
	devel/hs-monad-control: Makefile 
	devel/hs-monad-control/pkg: PLIST 
	devel/hs-nats  : Makefile 
	devel/hs-nats/pkg: PLIST 
	devel/hs-network: Makefile 
	devel/hs-network/pkg: PLIST 
	devel/hs-network-uri: Makefile 
	devel/hs-network-uri/pkg: PLIST 
	devel/hs-old-locale: Makefile 
	devel/hs-old-locale/pkg: PLIST 
	devel/hs-old-time: Makefile 
	devel/hs-old-time/pkg: PLIST 
	devel/hs-random: Makefile 
	devel/hs-random/pkg: PLIST 
	devel/hs-regex-applicative: Makefile 
	devel/hs-regex-applicative/pkg: PLIST 
	devel/hs-regex-base: Makefile 
	devel/hs-regex-base/pkg: PLIST 
	devel/hs-regex-compat: Makefile 
	devel/hs-regex-compat/pkg: PLIST 
	devel/hs-regex-compat-tdfa: Makefile 
	devel/hs-regex-compat-tdfa/pkg: PLIST 
	devel/hs-regex-posix: Makefile 
	devel/hs-regex-posix/pkg: PLIST 
	devel/hs-scientific: Makefile 
	devel/hs-scientific/patches: patch-scientific_cabal 
	devel/hs-scientific/pkg: PLIST 
	devel/hs-syb   : Makefile 
	devel/hs-syb/pkg: PLIST 
	devel/hs-system-fileio: Makefile 
	devel/hs-system-fileio/pkg: PLIST 
	devel/hs-temporary: Makefile 
	devel/hs-temporary/pkg: PLIST 
	devel/hs-test-framework-hunit: Makefile 
	devel/hs-test-framework-hunit/pkg: PLIST 
	devel/hs-test-framework-quickcheck2: Makefile 
	devel/hs-test-framework-quickcheck2/pkg: PLIST 
	devel/hs-tf-random: Makefile 
	devel/hs-tf-random/pkg: PLIST 
	devel/hs-transformers-base: Makefile 
	devel/hs-transformers-base/pkg: PLIST 
	devel/hs-transformers-compat: Makefile 
	devel/hs-transformers-compat/pkg: PLIST 
	devel/hs-utf8-string: Makefile 
	devel/hs-utf8-string/patches: patch-utf8-string_cabal 
	devel/hs-utf8-string/pkg: PLIST 
	devel/hs-void  : Makefile 
	devel/hs-void/pkg: PLIST 
Added files:
	devel/hs-hslogger/patches: patch-src_System_Log_Logger_hs 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/09/30 06:58:14

Modified files:
	.              : 66.html 

Log message:
improve unveil and pledge discussion a little


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 06:58:55

Modified files:
	net/hs-hostname: Makefile 
	net/hs-hostname/pkg: PLIST 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:00:12

Modified files:
	security/hs-SHA: Makefile 
	security/hs-SHA/pkg: PLIST 
	security/hs-crypto-api: Makefile 
	security/hs-crypto-api/pkg: PLIST 
	security/hs-cryptohash-sha256: Makefile 
	security/hs-cryptohash-sha256/pkg: PLIST 
	security/hs-digest: Makefile 
	security/hs-digest/pkg: PLIST 
	security/hs-ed25519: Makefile 
	security/hs-ed25519/pkg: PLIST 
	security/hs-entropy: Makefile 
	security/hs-entropy/pkg: PLIST 
Added files:
	security/hs-cryptohash-sha256/patches: 
	                                       patch-cryptohash-sha256_cabal 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:00:55

Modified files:
	textproc/hs-bytestring-show: Makefile 
	textproc/hs-bytestring-show/patches: patch-bytestring-show_cabal 
	textproc/hs-bytestring-show/pkg: PLIST 
	textproc/hs-json: Makefile 
	textproc/hs-json/pkg: PLIST 
	textproc/hs-libxml-sax: Makefile 
	textproc/hs-libxml-sax/pkg: PLIST 
	textproc/hs-xml: Makefile 
	textproc/hs-xml/pkg: PLIST 
	textproc/hs-xml-types: Makefile 
	textproc/hs-xml-types/pkg: PLIST 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/09/30 07:01:41

Modified files:
	.              : 66.html 

Log message:
more tweaks


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:02:02

Modified files:
	www/hs-html    : Makefile 
	www/hs-html/pkg: PLIST 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:02:54

Modified files:
	x11/hs-X11     : Makefile 
	x11/hs-X11/pkg : PLIST 
	x11/hs-X11-xft : Makefile 
	x11/hs-X11-xft/pkg: PLIST 
	x11/hs-dbus    : Makefile 
	x11/hs-dbus/pkg: PLIST 
Added files:
	x11/hs-dbus/patches: patch-lib_DBus_Client_hs 

Log message:
Adapt for ghc-8.6.4.

Joint work with Greg Steuck.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:07:09

Modified files:
	textproc       : Makefile 

Log message:
Unhook textproc/hs-stringsearch.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:09:24

Modified files:
	devel          : Makefile 

Log message:
Hook devel/hs-base-compat, devel/hs-byteable, devel/hs-mono-traversable,
devel/hs-unliftio-core, devel/hs-unordered-containers,
devel/hs-vector-algorithms to the build.

Unhook devel/hs-mtl, devel/hs-parsec, devel/hs-stm, devel/hs-text.


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/09/30 07:09:36

Modified files:
	.              : 66.html 

Log message:
sgi will not ship in 66


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:14:00

Removed files:
	devel/hs-mtl   : Makefile distinfo 
	devel/hs-mtl/patches: patch-mtl_cabal 
	devel/hs-mtl/pkg: DESCR PLIST 
	devel/hs-parsec: Makefile distinfo 
	devel/hs-parsec/pkg: DESCR PLIST 
	devel/hs-stm   : Makefile distinfo 
	devel/hs-stm/patches: patch-stm_cabal 
	devel/hs-stm/pkg: DESCR PLIST 
	devel/hs-text  : Makefile distinfo 
	devel/hs-text/pkg: DESCR PLIST 

Log message:
Retire devel/hs-mtl, devel/hs-parsec, devel/hs-stm, and devel/hs-text.

They now come with ghc.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:14:56

Removed files:
	textproc/hs-stringsearch: Makefile distinfo 
	textproc/hs-stringsearch/pkg: DESCR PLIST 

Log message:
Retire textproc/hs-stringsearch.

No longer needed.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/09/30 07:15:39

Modified files:
	lang/ghc       : Makefile 

Log message:
Enable the build of lang/ghc again.


CVSROOT:	/cvs
Module name:	www
Changes by:	brynet@cvs.openbsd.org	2019/09/30 07:17:05

Modified files:
	.              : 66.html 

Log message:
correct some details about clang platform changes


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/09/30 07:17:49

Modified files:
	.              : errata.html errata21.html errata22.html 
	                 errata23.html errata24.html errata25.html 
	                 errata26.html errata27.html errata28.html 
	                 errata29.html errata30.html errata31.html 
	                 errata32.html errata33.html errata34.html 
	                 errata35.html errata36.html errata37.html 
	                 errata38.html errata39.html errata40.html 
	                 errata41.html errata42.html errata43.html 
	                 errata44.html errata45.html errata46.html 
	                 errata47.html errata48.html errata49.html 
	                 errata50.html errata51.html errata52.html 
	                 errata53.html errata54.html errata55.html 
	                 errata56.html errata57.html errata58.html 
	                 errata59.html errata60.html errata61.html 
	                 errata62.html errata63.html errata64.html 
	                 errata65.html 
Added files:
	.              : errata66.html 

Log message:
prepare errata pages for the future


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/09/30 07:27:12

Modified files:
	usr.sbin/smtpd : lka_proc.c 

Log message:
add smtpd-version config key in filters handshake


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/09/30 09:14:33

Modified files:
	.              : 66.html 

Log message:
Move ", a driver" out of mvdog(4) link anchor text.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/09/30 09:14:50

Modified files:
	sysutils/dtb   : Makefile 
Added files:
	sysutils/dtb/patches: 
	                      patch-arch_arm64_boot_dts_rockchip_rk3328-rock64_dts 
	                      patch-arch_arm64_boot_dts_rockchip_rk3399-firefly_dts 
	                      patch-arch_arm64_boot_dts_rockchip_rk3399-rockpro64_dts 

Log message:
Set the baud rates for firefly, rockpro64 and rock64 to 115200
to match sysutils/u-boot baud rate settings. okay jsg@


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/09/30 09:18:37

Modified files:
	.              : 66.html 

Log message:
Remove duplicate entry about the addition of mvuart(4).

It already had a dedicated entry, in the previous line.


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/09/30 09:21:45

Modified files:
	.              : 66.html 

Log message:
Another round of fixes for whitespace issues.


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/09/30 09:29:23

Modified files:
	.              : 66.html 

Log message:
Remove duplicate entry about octiic(4) addition.


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/09/30 09:52:24

Modified files:
	.              : 66.html 

Log message:
Remove duplicate entry about amlmmc(4) enablement.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/09/30 10:05:53

Modified files:
	security/gnutls: Makefile distinfo 
	security/gnutls/pkg: PLIST 

Log message:
Update to gnutls-3.6.10.


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/09/30 12:07:10

Modified files:
	sbin/unwind    : resolver.c 

Log message:
Introduce defines for DNSSEC validation states.

This also fixes a brain fart in trust_anchor_resolve_done() which was
arguably created by "sec" carrying 3 values and "true" does not mean
secure. Why this does not use enum sec_status is beyond me.


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/09/30 13:31:21

Modified files:
	faq            : upgrade66.html 

Log message:
Fix a missed 65 -> 66 pointed out by tb

Change the "Files to remove" section to reflect this release.
Generated by using sysclean from ports. This may be too many
things, but lines can easily be removed.


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/09/30 13:57:44

Modified files:
	share/man/man9 : namei.9 

Log message:
segflg is singular

Add commas while here; input and OK jmc


CVSROOT:	/cvs
Module name:	www
Changes by:	anton@cvs.openbsd.org	2019/09/30 14:17:25

Modified files:
	.              : 66.html 

Log message:
Merge two entries related to vm.conf boot device and mention file offset
being MP-safe.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 14:40:54

Modified files:
	sys/dev/ofw    : ofw_misc.c ofw_misc.h 

Log message:
Add a PWM framework.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 14:42:45

Modified files:
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amlpwm.c 

Log message:
Add amlpwm(4), a driver for the PWM controller found on various Amlogic SoCs.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/30 14:42:51

Modified files:
	net/unifi/stable: Makefile distinfo 
	net/unifi/stable/pkg: PLIST 

Log message:
update unifi/stable to 5.11.47 now that it's the official release


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/09/30 14:43:26

Modified files:
	net/unifi/testing: Makefile distinfo 
	net/unifi/testing/pkg: PLIST 

Log message:
update unifi/testing to 5.11.50 rc


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 14:44:13

Modified files:
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : pwmreg.c 

Log message:
Add pwmreg(4), a driver that implements a voltage regulator that uses a
PWM controller to set the voltage.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 14:47:39

Modified files:
	sys/arch/arm/arm: cpu.c 
	sys/arch/arm64/arm64: cpu.c 

Log message:
Enable CPU voltage regulators.  The firmware I built for my odroid-n2
(based on mainline U-Boot and a proprietary primary loader and ATF) doesn't
actually enable the regulator for one of the CPU clusters.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 14:48:15

Modified files:
	sys/arch/arm64/conf: GENERIC 

Log message:
Enable amlpwm(4) and pwmreg(4).

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 14:55:42

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : amlpwm.4 

Log message:
amlpwm(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 14:59:22

Modified files:
	share/man/man4 : amlpwm.4 

Log message:
Fix pasto.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 15:00:51

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : pwmreg.4 

Log message:
pwmreg(4)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/09/30 15:05:56

Modified files:
	lang/python/3.6: Makefile distinfo 
	lang/python/3.6/pkg: PLIST-main 

Log message:
Update to Python 3.6.9

Keep this for 6.6, we'll look at retiring it post-release

OK sthen


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/09/30 15:48:32

Modified files:
	sys/arch/arm/arm: cpu.c cpufunc.c 
	sys/arch/arm/include: armreg.h cpu.h 

Log message:
Synch the cpu match/attach/identify code with arm64.  This drops some
information from dmesg that is no longer relevant to ARMv7 CPUs in favour
of printing the full architected cache hierarchy in the same way as we
do on arm64.  It also is another small step towards SMP support on armv7.

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/09/30 16:58:03

Modified files:
	devel/popt     : Makefile 

Log message:
Use ftp.rpm.org mirror, rpm5.org is unavailable


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/30 18:41:13

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	bcook@cvs.openbsd.org	2019/09/30 19:10:23

Modified files:
	libressl       : index.html releases.html 

Log message:
LibreSSL 3.0.1


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/09/30 20:11:42

Modified files:
	distrib/miniroot: install.sub 

Log message:
People who've upgraded repeatedly have observed /usr is getting a bit
tight.  At upgrade time (just before new sets hit the disk) we can prune
some potentially unused clang, gcc, and perl pieces.  This seems to help.
(This is an improvement on a previous strategy)
discussed with sthen and tb, tested by kmos, in snaps for 2 days
This strategy ins't perfect, and people should consider fresh installs once
in a while, or more strict pruning especially of /usr/lib/lib*.so


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/09/30 21:53:26

Modified files:
	sys/arch/arm64/arm64: cpu.c 

Log message:
Recognise Cortex-A34 and Cortex-A65AE.  TRMs have not been published but
MIDR values were submitted by Arm to GCC.


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/09/30 22:39:32

Modified files:
	mail/mozilla-thunderbird: Makefile 
	www/firefox-esr: Makefile 
	www/firefox-esr/patches: patch-old-configure 
	www/tor-browser/browser: Makefile 
Added files:
	mail/mozilla-thunderbird/patches: 
	                                  patch-third_party_rust_cssparser_src_parser_rs 
	www/firefox-esr/patches: 
	                         patch-third_party_rust_cssparser_src_parser_rs 

Log message:
unbreak www/firefox-esr and mail/mozilla-thunderbird after lang/rust upgrade
mark www/tor-browser/browser as BROKEN (too outdated and not easily unbreakable)

ok landry@


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/01 01:10:07

Modified files:
	.              : 66.html 

Log message:
Add a missing article, and remove an extra word.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/01 02:35:13

Modified files:
	sys/dev/pci/drm/amd/powerplay/hwmgr: smu8_hwmgr.c 

Log message:
Revert "drm/amd/powerplay: Enable/Disable NBPSTATE on On/OFF of UVD"

From Shirish S
a935d78e54ccc026ae9c4f900002f35e7ecb8ed5 in linux 4.19.y/4.19.76
00fedbe629bfc0a51c07b6e665265ce31d8b6f3c in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/01 02:42:26

Modified files:
	sys/dev/pci/drm: drm_probe_helper.c 

Log message:
drm: Flush output polling on shutdown

From Chris Wilson
ff0fbfacc94f94afae61fd06f44a0d5ac199008c in linux 4.19.y/4.19.76
3b295cb1a411d9c82bbfaa66bc17a8508716ed07 in mainline linux


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2019/10/01 02:44:18

Modified files:
	.              : 66.html 

Log message:
update drm version


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/01 02:57:48

Modified files:
	usr.sbin/bgpd  : bgpd.c bgpd.h kroute.c 

Log message:
For portable kr_init() returns an fd of -1 which now would end up in an
immediate exit of bgpd. Instead pass the fd via pointer arg.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/01 02:59:43

Modified files:
	usr.sbin/bgpd  : session.c 

Log message:
Remove leftover pfkey_remove() call in session.c this code was moved to
the parent and the SE no longer has the pfkey socket open.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/01 03:03:43

Modified files:
	usr.sbin/bgpd  : session.c 

Log message:
Use the peer list from the right struct bgpd_config. Don't use the global
conf here eventhough it is the same.
OK benno@


CVSROOT:	/cvs
Module name:	www
Changes by:	jmatthew@cvs.openbsd.org	2019/10/01 03:07:51

Modified files:
	.              : 66.html 

Log message:
move ure(4) up to the general hardware section (it's not wifi) and link
to the right man page for bnxt(4)


CVSROOT:	/cvs
Module name:	www
Changes by:	solene@cvs.openbsd.org	2019/10/01 03:09:54

Modified files:
	.              : 66.html 

Log message:
Fix a few typos

diff from Hiltjo Posthuma, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/10/01 04:03:39

Modified files:
	fonts/spleen   : Makefile distinfo 

Log message:
Update spleen to 1.5.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/01 04:13:32

Modified files:
	astro/stellarium: Makefile distinfo 
	astro/stellarium/pkg: PLIST 

Log message:
Update to stellarium-0.19.2.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/01 04:22:53

Modified files:
	usr.bin/ssh    : ssh-pkcs11.c 

Log message:
revert unconditional forced login implemented in r1.41 of ssh-pkcs11.c;
r1.45 added a forced login as a fallback for cases where the token
returns no objects and this is less disruptive for users of tokens
directly in ssh (rather than via ssh-agent) and in ssh-keygen

bz3006, patch from Jakub Jelen; ok markus


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/01 05:05:30

Modified files:
	usr.sbin/bgpd  : pfkey.c session.c session.h 

Log message:
Add some TCP MD5SUM specific calls needed by protable. On Linux systems
there is no pfkey interface and instead the loading is done via setsockopts.
To make this work correctly there are some additional functions needed when
peers get reconfigured or when new listeners show up.
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/01 05:38:15

Modified files:
	security/aide  : Makefile distinfo 
	security/aide/patches: patch-configure patch-doc_aide_1_in 
	                       patch-doc_aide_conf_5_in 
	                       patch-doc_aide_conf_in patch-src_util_c 

Log message:
update to aide-0.16.2


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/10/01 05:51:13

Modified files:
	sys/net        : bpf.c 

Log message:
remove the internal plumbing that supported a custom mbuf copy function.

this is not needed now that the "public" api does not provide a way
to pass a custom copy function in for the internals to pass around.

ok claudio@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/10/01 07:39:50

Modified files:
	mail/opensmtpd-filters/dkimsign: Makefile 
	mail/opensmtpd-filters/dkimsign/pkg: PLIST 

Log message:
Sample ${SYSCONFDIR}/mail/dkim as a directory not a file

OK martijn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/01 07:42:06

Modified files:
	devel/appstream-glib: Makefile distinfo 
	devel/appstream-glib/patches: patch-client_as-compose_c 
	devel/appstream-glib/pkg: PLIST 

Log message:
Update to appstream-glib-0.7.16.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/10/01 09:08:28

Modified files:
	sys/kern       : kern_synch.c 

Log message:
*sleep_nsec(9): add missing newlines to DIAGNOSTIC logs


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/10/01 09:44:32

Modified files:
	share/man/man4/man4.octeon: Makefile 
Added files:
	share/man/man4/man4.octeon: octsmi.4 

Log message:
Add a manual page for octsmi(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/10/01 10:55:18

Modified files:
	usr.bin/units  : units.lib 

Log message:
update currency exchange rates;


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/01 11:19:04

Modified files:
	sys/conf       : newvers.sh 

Log message:
stop this -current stuff


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/10/01 11:40:30

Modified files:
	devel/alex     : Makefile 
	devel/hasktags : Makefile 

Log message:
Missed REVISION bump. Noticed by naddy@.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/01 11:53:51

ports/games/freedink/game/patches

Update of /cvs/ports/games/freedink/game/patches
In directory cvs.openbsd.org:/tmp/cvs-serv76535/patches

Log Message:
Directory /cvs/ports/games/freedink/game/patches added to the repository


CVSROOT:	/cvs
Module name:	src
Changes by:	schwarze@cvs.openbsd.org	2019/10/01 11:54:04

Modified files:
	usr.bin/mandoc : cgi.c 

Log message:
For invalid queries and for valid queries returning no result,
return the appropriate 40x status code rather than 200.
Improvement suggested and diff tested
by John Gardner <gardnerjohng at gmail dot com>.


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/01 11:58:40

Modified files:
	games/freedink/game: Makefile 
	games/julius   : Makefile 
Added files:
	games/freedink/game/patches: patch-src_input_cpp 
	games/julius/patches: patch-src_platform_julius_c 

Log message:
replace SDL_HINT_ANDROID_SEPARATE_MOUSE_AND_TOUCH with
SDL_HINT_MOUSE_TOUCH_EVENTS and SDL_HINT_TOUCH_MOUSE_EVENTS per sdl2
2.0.10 update instructions.

From thfr@, ok bcallah@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/10/01 12:44:43

Modified files:
	graphics/lcms2 : Makefile 
Added files:
	graphics/lcms2/patches: patch-src_cmstypes_c 

Log message:
Fix for intermittent crash in graphics/colord. Patch from upstream.
okay ajacoutot@ naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	anton@cvs.openbsd.org	2019/10/01 12:51:02

Modified files:
	sys/kern       : kern_unveil.c 

Log message:
Only increment the ps_uvncount counter when a path is successfully added
to the corresponding red-black tree; meaning the path was not already
present in the tree. This prevents an assertion to trigger in
unveil_destroy() later on when the process exits.

ok beck@

Reported-by: syzbot+db66362e1ffdc72e5aeb@syzkaller.appspotmail.com


CVSROOT:	/cvs
Module name:	ports
Changes by:	kili@cvs.openbsd.org	2019/10/01 13:18:27

Modified files:
	devel/hs-resourcet: Makefile 

Log message:
Fix dependencies.

Breakage noticed by naddy@.

From Greg Steuck.

Tested by

a) removing hs-sandi, darcs and hedgewars from my package repository and
rebuilding them,

b) removing all haskell ports (except ghc itself) from my package
repository and rebuilding everything.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/10/01 13:56:58

Modified files:
	audio/libopenmpt: Makefile distinfo 

Log message:
Update libopenmpt to 0.4.8.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/10/01 14:42:35

Modified files:
	.              : 66.html 

Log message:
The arm architecture is called armv7, noted by Oliver Marugg, thanks.


CVSROOT:	/cvs
Module name:	www
Changes by:	jmatthew@cvs.openbsd.org	2019/10/01 18:16:02

Modified files:
	.              : 66.html 

Log message:
more detail on mpii(4) improvements


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/01 18:42:30

Modified files:
	usr.bin/ssh    : auth-rhosts.c auth.c sftp-glob.c sftp.c 
	                 ssh-keysign.c 

Log message:
remove some duplicate #includes


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/01 19:52:01

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/10/01 22:15:50

Modified files:
	faq            : upgrade65.html 

Log message:
Eliminate extraneous trailing whitespace in the second tmux(1)
code box.


CVSROOT:	/cvs
Module name:	src
Changes by:	yasuoka@cvs.openbsd.org	2019/10/01 22:51:34

Modified files:
	sys/dev/pci    : if_ixl.c 

Log message:
When dequeuing an aqb from the live queue and move it to the idle queue,
remove it from the live queue.  Found by Shoichi Yamaguchi.

ok dlg


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/10/01 23:44:37

Modified files:
	textproc/ruby-rouge: Makefile distinfo 

Log message:
Update ruby-rouge to 3.11.1.


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/10/02 01:01:57

Modified files:
	net/libmaxminddb: Makefile distinfo 

Log message:
Update GeoLite2 databases to latest version.


CVSROOT:	/cvs
Module name:	src
Changes by:	ratchov@cvs.openbsd.org	2019/10/02 01:43:20

Modified files:
	usr.bin/cdio   : cdio.1 

Log message:
Remove references to "aucat socket".

The "aucat socket" was removed ~7 years ago. As the output could be
anything on the network, also drop the .Xr to audio(4).

ok sthen jmc


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/10/02 01:52:18

Modified files:
	devel/glib2mm  : Makefile 

Log message:
move homepage to https.


CVSROOT:	/cvs
Module name:	ports
Changes by:	pvk@cvs.openbsd.org	2019/10/02 01:55:22

Modified files:
	sysutils/ansible: Makefile distinfo 
Added files:
	sysutils/ansible/patches: 
	                          patch-lib_ansible_modules_network_aci_aci_maintenance_group_node_py 

Log message:
Update ansible 2.8.4 -> 2.8.5
Changelog: https://github.com/ansible/ansible/blob/stable-2.8/changelogs/CHANGELOG-v2.8.rst#v2-8-5
ok jasper@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/02 02:05:50

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
ban empty namespace strings for sshsig; spotted by Mantas Mikul��nas


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/02 02:07:13

Modified files:
	usr.bin/ssh    : sshsig.c 

Log message:
make signature format match PROTOCOL.sshsig file: the message hash
should be written as a string, not raw bytes. Spotted by Mantas
Mikul��nas


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/10/02 02:16:33

Modified files:
	mail/mailpile/pkg: PLIST 
	mail/mailpile  : distinfo Makefile 

Log message:
Update to mailpile-1.0.0rc6


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/02 02:57:01

Modified files:
	usr.sbin/bgpd  : session.c 

Log message:
When removing a peer do the RB_REMOVE last and log the removal just before
that.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/02 02:58:34

Modified files:
	usr.sbin/bgpd  : bgpd.c 

Log message:
In IMSG_PFKEY_RELOAD do not warn about unknown peers. When a peer is
removed the session engine will issue a IMSG_PFKEY_RELOAD call after
the parent has removed the peer which is no problem and so no need
to fill the log with this.
OK benno@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/02 03:50:50

Modified files:
	usr.bin/ssh    : ssh-keygen.c 

Log message:
thinko in previous; spotted by Mantas Mikul��nas


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/02 07:41:06

Modified files:
	www/chromium   : Makefile 
	www/chromium/files: pledge.utility_audio 

Log message:
allow the audio process to create the sndio cookie


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/02 08:46:31

Modified files:
	net/ejabberd   : Makefile 

Log message:
use https


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/02 09:02:14

Modified files:
	fonts/font-awesome: Makefile distinfo 

Log message:
Update font-awesome to 5.11.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/02 09:03:13

Modified files:
	devel/pycharm  : Makefile distinfo 
	devel/pycharm/pkg: PLIST 

Log message:
Update pycharm to 2019.2.3


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/10/02 09:39:19

Modified files:
	.              : errata65.html 

Log message:
release sysupgrade errata.


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/10/02 09:40:06

Modified files:
	faq            : current.html faq1.html faq5.html 

Log message:
uncomment some sysupgrade lines now that it's in 6.5 too


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/10/02 09:52:01

Modified files:
	.              : 66.html 

Log message:
mention the syspatch to add sysupgrade


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/10/02 11:15:40

Modified files:
	etc            : rc 

Log message:
feed "sysctl hw" into /dev/random; a cheap way to feed in sensor data
as a one-shot at boot without more complex kernel work, and also includes
some serial numbers/guids which may add a little more entropy e.g. for
systems where /etc/random.seed may be known (e.g. cloned disk images).
"why not" deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/10/02 11:18:22

Modified files:
	usr.sbin       : Tag: OPENBSD_6_5 Makefile 
	distrib/sets/lists/base: Tag: OPENBSD_6_5 mi 
	distrib/sets/lists/man: Tag: OPENBSD_6_5 mi 
Added files:
	usr.sbin/sysupgrade: Tag: OPENBSD_6_5 Makefile sysupgrade.8 
	                     sysupgrade.sh 

Log message:
Add the sysupgrade utility, that can be used to upgrade a system to the
next release or a new snapshot. Backported from the upcoming 6.6 release.


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/02 11:19:29

Modified files:
	devel/valgrind : Makefile 
	devel/valgrind/patches: patch-coregrind_m_main_c 
Added files:
	devel/valgrind/patches: patch-VEX_priv_guest_amd64_helpers_c 
	                        patch-VEX_priv_guest_amd64_toIR_c 
	                        patch-VEX_priv_host_amd64_defs_c 
	                        patch-VEX_priv_host_amd64_defs_h 
	                        patch-VEX_priv_host_amd64_isel_c 
	                        patch-VEX_priv_ir_defs_c 
	                        patch-VEX_pub_libvex_ir_h 
	                        patch-coregrind_link_tool_exe_openbsd_in 
	                        patch-coregrind_m_aspacemgr_aspacemgr-common_c 
	                        patch-coregrind_m_aspacemgr_aspacemgr-linux_c 
	                        patch-coregrind_m_debuglog_c 
	                        patch-coregrind_m_libcproc_c 
	                        patch-coregrind_m_scheduler_scheduler_c 
	                        patch-coregrind_m_transtab_c 
	                        patch-coregrind_pub_core_aspacemgr_h 
	                        patch-coregrind_pub_core_transtab_h 
	                        patch-include_vki_vki-openbsd_h 
	                        patch-memcheck_mc_translate_c 

Log message:
Unbreak valgrind memcheck on amd64

Masato Asou <asou A-T soum D-O-T co D-O-T jp> corrected the following two
problems:

- FS register can be used.
- Fixed a problem that strip command rewrites offset and align of
memcheck ELF file.

Many thanks to Masato Asou for the great work!

"Can't be worse than we have now." and OK sthen@ and OK kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/02 11:34:33

Modified files:
	net/profanity  : Makefile distinfo 

Log message:
Bugfix update profanity to 0.7.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/10/02 11:42:24

Modified files:
	security/suricata: Makefile distinfo 
	security/suricata/patches: patch-configure_ac 
	                           patch-src_suricata_c 
	                           patch-suricata_yaml_in 
	security/suricata/pkg: PLIST 
Added files:
	security/suricata/patches: 
	                           patch-rust_vendor_libc_src_unix_bsd_netbsdlike_openbsd_mod_rs 
Removed files:
	security/suricata/patches: 
	                           patch-rust_vendor_libc_src_unix_bsd_netbsdlike_openbsdlike_openbsd_mod_rs 

Log message:
update to suricata-4.1.5

ok gonzalo@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/10/02 11:50:39

Modified files:
	games/solarus/roth: Makefile 
	games/solarus/solarus: Makefile 
	games/solarus/zsdx: Makefile 
	games/solarus/zsxd: Makefile 

Log message:
switch HOMEPAGE to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/10/02 11:59:43

Modified files:
	net/telepathy  : Makefile.inc 
	net/telepathy/telepathy-glib: Makefile 
	net/telepathy/telepathy-logger: Makefile 
	net/telepathy/telepathy-mission-control: Makefile 

Log message:
point HOMEPAGE to a more meaningful page and switch to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/10/02 12:03:37

Modified files:
	graphics/gdcm  : Makefile distinfo 

Log message:
update to gdcm-3.0.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/10/02 12:29:33

Modified files:
	graphics/orthanc: Makefile.inc 
	graphics/orthanc/postgresql-plugin: Makefile 
	graphics/orthanc/server: Makefile 
	graphics/orthanc/webviewer-plugin: Makefile 

Log message:
switch homepage and master_sites to https


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/10/02 12:31:11

Modified files:
	textproc/p5-XML-Twig: Makefile 

Log message:
remove dead HOMEPAGE


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/10/02 12:34:28

Modified files:
	lang/expect    : Makefile 

Log message:
point to a working homepage


CVSROOT:	/cvs
Module name:	ports
Changes by:	jasper@cvs.openbsd.org	2019/10/02 12:37:33

Modified files:
	lang/intel2gas : Makefile 

Log message:
remove dead HOMEPAGE/MASTER_SITES and add a working mirror


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/02 13:00:49

Modified files:
	multimedia/libmatroska: Makefile 
	multimedia/libmatroska/patches: patch-CMakeLists_txt 

Log message:
fix typo in cmake file from upstream

github commit: 9415f6d83cd435feadaf625f4b29b56c637cfff5

ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	juanfra@cvs.openbsd.org	2019/10/02 13:21:24

Modified files:
	security/keybase: Makefile distinfo 
Removed files:
	security/keybase/patches: 
	                          patch-go_client_platform_specific_ctl_commands_other_go 
	                          patch-go_install_stop_openbsd_go 

Log message:
Update to keybase 4.5.0. OK abieber@ (MAINTAINER).


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/02 14:09:52

Modified files:
	build          : groups.dat 

Log message:
Add the Polish BSD User Group in Warsaw, Poland.

From Mariusz Zaborski, thanks!


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/02 14:11:52

Modified files:
	.              : groups.html 

Log message:
sync


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/10/02 15:11:08

Modified files:
	games/ace      : Makefile 
Added files:
	games/ace/patches: patch-lib_imagelib_c 

Log message:
ace: fix segfaults on base-clang archs by adding a missing header

Spotted by and OK solene@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/10/02 16:31:08

Modified files:
	sys/net        : trunklacp.c 

Log message:
let lacp mode trunk cope with interfaces that don't report if_baudrate.

jmatthew@ and i thought i'd broken lacp in trunk(4) when adding
aggr(4), but we couldnt see how. turns out we were trying lacp mode
trunk only on new drivers (mcx and ixl) that didn't set if_baudrate,
which tickled an edge case in trunk that prevented it from selected
those interfaces for an aggregation. ixl and mcx have since been
fixed, but there's no reason for trunk to be this picky when we
make this ommission again.

ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/02 22:49:12

Modified files:
	usr.sbin/smtpd : util.c 

Log message:
fix memory leak in error code path


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/02 22:51:15

Modified files:
	usr.sbin/smtpd : table_proc.c 

Log message:
fatal() if imsg_flush() call fails in table proc


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/02 23:04:45

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
fix possible use-after-free in error code path


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/02 23:08:21

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
we should never hit the smtp reports with an s->tx set to NULL but better
be safe than sorry, check upfront


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/10/02 23:27:47

Modified files:
	sysutils/opam  : Makefile 

Log message:
Depend on build tools that may cause a build failure by vanishing during dpb
junk stages.
discovered, most debugging done by and ok sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/10/02 23:28:31

Modified files:
	sysutils/opam  : Makefile 

Log message:
and bump revision.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/02 23:42:57

Modified files:
	usr.sbin/smtpd : lka_report.c 

Log message:
fix wrong sizeof in lka reporters init


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/02 23:46:55

Modified files:
	usr.sbin/smtpd : mail.lmtp.c 

Log message:
free() destination server copy, not a real leak since the program is short
lived but still


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/02 23:48:33

Modified files:
	usr.sbin/smtpd : mda.c 

Log message:
make it obvious we don't care about text_to_mailaddr() return values, we've
already checked it upfront and wouldn't reach this point if it didn't parse
correctly.


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/02 23:50:28

Modified files:
	usr.sbin/smtpd : mproc.c 

Log message:
check imsg_flush() return value and fatal() if == -1


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/10/03 00:10:54

Modified files:
	libexec/ld.so  : dlfcn.c library_subr.c loader.c resolve.c 
	                 resolve.h 

Log message:
Use a better algorithm for calculating the grpsym library order.
The existing code did a full recursive walk for O(horrible).  Instead,
keep a single list of nodes plus the index of the first node whose
children haven't been scanned; lookup until that index catches the
end, appending the unscanned children of the node at the index.  This
also makes the grpsym list order match that calculated by FreeBSD and
glibc in dependency trees with inconsistent ordering of dependent libs.

To make this easier and more cache friendly, convert grpsym_list
to a vector: the size is bounded by the number of objects currently
loaded.

Other, related fixes:
* increment the grpsym generation number _after_ pushing the loading
object onto its grpsym list, to avoid double counting it
* increment the grpsym generation number when building the grpsym list
for an already loaded object that's being dlopen()ed, to avoid
incomplete grpsym lists
* use a more accurate test of whether an object already has a grpsym list

Prompted by a diff from Nathanael Rensen (nathanael (at) list.polymorpheus.com)
that pointed to _dl_cache_grpsym_list() as a performance bottleneck.

Much proding from robert@, sthen@, aja@, jca@
no problem reports after being in snaps
ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/10/03 00:14:15

Log message:
    import opensmtpd-filter-spamassassin, an smtpd(1) filter
    for Apache SpamAssassin
    help, upstream code and ok jung@
    
    pkg/DESCR:
    filter-spamassassin is an opensmtpd filter that passes mail through
    Apache SpamAssassin to flag or reject spam messages at session time.
    
    Status:
    
    Vendor Tag:	giovanni
    Release Tags:	giovanni_20191003
    
    N ports/mail/opensmtpd-filters/spamassassin/Makefile
    N ports/mail/opensmtpd-filters/spamassassin/distinfo
    N ports/mail/opensmtpd-filters/spamassassin/pkg/DESCR
    N ports/mail/opensmtpd-filters/spamassassin/pkg/PLIST
    N ports/mail/opensmtpd-filters/spamassassin/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/10/03 00:18:33

Log message:
    opensmtpd-filter-spamassassin is a smtpd(1) filter to integrate
    with Apache SpamAssassin.
    upstream code, help and ok jung@
    
    pkg/DESCR:
    filter-spamassassin is an opensmtpd filter that passes mail through
    Apache SpamAssassin to flag or reject spam messages at session time.
    
    Status:
    
    Vendor Tag:	giovanni
    Release Tags:	giovanni_20191003
    
    U ports/mail/opensmtpd-filters/spamassassin/Makefile
    U ports/mail/opensmtpd-filters/spamassassin/distinfo
    U ports/mail/opensmtpd-filters/spamassassin/pkg/DESCR
    U ports/mail/opensmtpd-filters/spamassassin/pkg/PLIST
    U ports/mail/opensmtpd-filters/spamassassin/pkg/README
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	giovanni@cvs.openbsd.org	2019/10/03 00:22:29

Modified files:
	mail/opensmtpd-filters: Makefile 

Log message:
+spamassassin


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/03 01:03:24

Modified files:
	usr.sbin/smtpd : iobuf.c 

Log message:
remove useless check and dead code


CVSROOT:	/cvs
Module name:	src
Changes by:	semarie@cvs.openbsd.org	2019/10/03 01:23:46

Modified files:
	usr.bin/snmp   : snmpc.c 

Log message:
use the right argv element for the error message.

ok martijn@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/03 01:32:19

Modified files:
	sys/dev/usb    : if_umb.c 

Log message:
Switch the bpf of umb(4) from DTL_RAW to DTL_LOOP. DTL_RAW is limited to
ip only whereas DTL_LOOP passes the address family of the packet and so
supports more address families.

To make this work umb_decap() prepends the AF to the packet and which is
consumed then by umb_input(). Similar umb_output() sets ph_family in the
mbuf header which is used by umb_start().
OK deraadt@ dlg@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/03 01:55:34

Modified files:
	usr.sbin/rpki-client: ip.c 

Log message:
memset struct ip_addr before assigning values to it. in the IPv4 case
12 bytes of the struct were not touched and left uninitialized which is
not the idea.
Diff from Alexandre Hamada (hamada at registro dot br)


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/10/03 01:58:06

Log message:
    Import architecture-independent files for KiCad 5.1.4.
    
    Initially from Tracey Emery, with tweaks by sthen@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20191003
    
    N ports/cad/kicad-share/Makefile
    N ports/cad/kicad-share/Makefile.inc
    N ports/cad/kicad-share/footprints/Makefile
    N ports/cad/kicad-share/footprints/distinfo
    N ports/cad/kicad-share/footprints/pkg/DESCR
    N ports/cad/kicad-share/footprints/pkg/PLIST
    N ports/cad/kicad-share/i18n/Makefile
    N ports/cad/kicad-share/i18n/distinfo
    N ports/cad/kicad-share/i18n/pkg/DESCR
    N ports/cad/kicad-share/i18n/pkg/PLIST
    N ports/cad/kicad-share/packages3D/Makefile
    N ports/cad/kicad-share/packages3D/distinfo
    N ports/cad/kicad-share/packages3D/pkg/DESCR
    N ports/cad/kicad-share/packages3D/pkg/PLIST
    N ports/cad/kicad-share/symbols/Makefile
    N ports/cad/kicad-share/symbols/distinfo
    N ports/cad/kicad-share/symbols/pkg/DESCR
    N ports/cad/kicad-share/symbols/pkg/PLIST
    N ports/cad/kicad-share/templates/Makefile
    N ports/cad/kicad-share/templates/distinfo
    N ports/cad/kicad-share/templates/pkg/DESCR
    N ports/cad/kicad-share/templates/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	src
Changes by:	fcambus@cvs.openbsd.org	2019/10/03 02:29:18

Modified files:
	sys/dev/wsfont : spleen12x24.h spleen32x64.h spleen5x8.h 

Log message:
Update Spleen kernel fonts to version 1.5.0, bringing the following
improvements:

- Tweak the digit '7' for consistency with other sizes (5x8 version)
- Tweak the digit '2' for consistency with other sizes (12x24 version)
- Shift the middle bar of the digit '3' one pixel up, for better
alignement (12x24 version)
- Make the 'Z' and 'z' characters more balanced, as is the case with
other sizes (12x24 version)
- Make the slash inside the digit '0' one pixel thiner (32x64 version)

OK patrick@, "go ahead" kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/03 02:50:08

Modified files:
	usr.sbin/smtpd : mda.c 

Log message:
no need to set n to 0 right before assigning it ret value from io_printf()


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/03 02:51:43

Modified files:
	usr.sbin/smtpd : spfwalk.c 

Log message:
no need to increment argv and decrement argc, we're not using them later


CVSROOT:	/cvs
Module name:	ports
Changes by:	fcambus@cvs.openbsd.org	2019/10/03 02:53:58

Modified files:
	audio/libopenmpt: Makefile distinfo 

Log message:
Update libopenmpt to 0.4.9.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/03 03:25:16

Log message:
    Import py-rencode
    
    The rencode module is similar to bencode from the BitTorrent project.
    For complex, heterogeneous data structures with many small elements,
    r-encodings take up significantly less space than b-encodings. This
    version of rencode is a complete rewrite in Cython to attempt to
    increase the performance over the pure Python module written by
    Petru Paler, Connelly Barnes et al.
    
    Required dependency for an upcoming deluge update.
    
    OK sthen
    
    Status:
    
    Vendor Tag:	kn
    Release Tags:	kn_20191003
    
    N ports/devel/py-rencode/distinfo
    N ports/devel/py-rencode/Makefile
    N ports/devel/py-rencode/pkg/DESCR
    N ports/devel/py-rencode/pkg/PLIST
    N ports/devel/py-rencode/patches/patch-setup_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/03 03:29:26

Modified files:
	devel          : Makefile 

Log message:
+py-rencode


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/03 03:32:35

Modified files:
	www/varnish    : Makefile distinfo 
Removed files:
	www/varnish/patches: patch-lib_libvmod_unix_cred_compat_h 

Log message:
Update to varnish 6.3.0

https://varnish-cache.org/security/VSV00003-mitigation.html#vsv00003-mitigation
was fixed in 6.2.1 a month ago, 6.3.0 includes lots of fixes, see
https://github.com/varnishcache/varnish-cache/blob/6.3/doc/changes.rst

As jim@ is unresponsive and I intend to keep this port in good shape,
replace his MAINTAINER line with mine.

OK gonzalo


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/10/03 04:09:44

Modified files:
	x11/xfce4/xfce4-panel: Makefile distinfo 

Log message:
Update to xfce4-panel 4.14.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/03 04:12:52

Modified files:
	devel/p5-Test-Command: Makefile 

Log message:
Update my mail address


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/10/03 04:24:06

Modified files:
	usr.bin/tmux   : cmd-list-keys.c cmd-parse.y cmd.c 
	                 layout-custom.c tty-term.c 

Log message:
Do not lazily use BUFSIZ for "I don't care what size" when building
strings because it is only guaranteed to be 256 bytes and even the
default 1024 is not always enough. Reported by Gregory Pakosz.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/03 04:26:38

Modified files:
	distrib/arm64/ramdisk: Makefile install.md 

Log message:
remove device_tree_address from rpi config.txt
U-Boot has been built with CONFIG_OF_BOARD for a year now

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/10/03 04:29:00

Modified files:
	sysutils/raspberrypi-firmware: Makefile distinfo 
	sysutils/raspberrypi-firmware/pkg: PLIST 

Log message:
update to 1.20190925


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/03 04:29:32

Modified files:
	graphics/sxiv  : Makefile distinfo 
	graphics/sxiv/patches: patch-sxiv_1 
	graphics/sxiv/pkg: PLIST 
Added files:
	graphics/sxiv/patches: patch-exec_key-handler 
Removed files:
	graphics/sxiv/patches: patch-Makefile patch-icon_Makefile 

Log message:
Update to sxiv 25

- Support font fallback for missing glyphs
- Fix busy loop when built without inotify
- Use background/foreground colors from X resource database

Replace nonexistent realpath(1) with readlink(1) in key-handler helper
and replace icon-Makefile patch with simpler DESTDIR passing while here.

OK solene


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/10/03 04:39:08

Modified files:
	usr.bin/tmux   : cmd-list-keys.c 

Log message:
Use a malloc'd buffer for lsk since commands can be very long, from Gregory Pakosz.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/10/03 05:02:26

Modified files:
	usr.bin/snmp   : snmp.1 snmp.c snmp.h snmpc.c 

Log message:
Implement snmp set.

Manpage help jmc@ schwarze@
OK semarie@ claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/10/03 05:05:54

Modified files:
	regress/usr.sbin/snmpd: Makefile snmpd.sh 

Log message:
Now that we have snmp set, we can fully remove the dependency on netsnmp.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/10/03 06:00:40

Modified files:
	usr.sbin/snmpd : mps.c smi.c 

Log message:
For getnext request check if the requested oid or one of its parent
elements exists and is a (agentx) registered element. If so, forward the
getnext to the subagent, else get the actual next element.

This is only a partial fix, but lets us at least (together with a different
patch for relayd) walk relayd's elements.

OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/10/03 06:03:49

Modified files:
	usr.sbin/relayd: snmp.c 

Log message:
Make relayd properly return the next element, even if the requested element
doesn't exist in its own structure. This could greatly be improved upon,
but it makes snmp walk on its mib work.

OK claudio@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/03 06:41:22

Modified files:
	databases/sqlports: Makefile 
	databases/sqlports/files/scripts: show-reverse-deps 

Log message:
Say pkgpath not path in show-reverse-deps usage

Drop useless use of cat(1) and quote user input while here.

OK espie


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/10/03 06:43:58

Modified files:
	usr.sbin/sysupgrade: sysupgrade.8 

Log message:
Document /auto_upgrade.conf.
While here Xr autoinstall(8).
Prompted by a question from jungle boogie on bugs@
OK deraadt
Input & OK jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/10/03 07:32:27

Modified files:
	sbin/unwind/libunbound/util/data: msgparse.c 
	usr.sbin/unbound/util/data: msgparse.c 

Log message:
Fix CVE-2019-16866
---
Recent versions of Unbound contain a problem that may cause Unbound to
crash after receiving a specially crafted query. This issue can only be
triggered by queries received from addresses allowed by Unbound's ACL.
---
tested by benno, tb


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/03 07:36:15

Modified files:
	usr.sbin/dhcpd : icmp.c 

Log message:
Properly initalize the ICMP message to zero to avoid leaking 4-byte
of uninitialised memory in the sent icmp echorequest.
Reported by Adarsh Dinesh (adarsh.dinesh at gmail com)
OK florian@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/03 07:39:45

Added files:
	comms/gnuradio/patches: patch-gr-dtv_lib_CMakeLists_txt 

Log message:
From upstream:
CMake will fail to properly run check_c_compiler_flag() on ARM when
checking for -msse2; it will always pass, and subsequent builds will
fail. Trying to compile actual code during CMake is a more reliable way
to see if SSE2 is actually available.


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/03 07:58:59

Modified files:
	sys/kern       : kern_sig.c 

Log message:
sysctl global nosuidcoredump was being inspected twice inside coredump(),
with a sleep between.  Reorganize the code for a single check.
ok anton beck florian mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:35:49

Modified files:
	x11/mate/atril : Makefile distinfo 
	x11/mate/atril/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:35:54

Modified files:
	x11/mate/caja  : Makefile distinfo 
	x11/mate/caja/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:00

Modified files:
	x11/mate/caja-extensions: Makefile distinfo 
	x11/mate/caja-extensions/pkg: PLIST 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:07

Modified files:
	x11/mate/engrampa: Makefile distinfo 
	x11/mate/engrampa/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:12

Modified files:
	x11/mate/eom   : Makefile distinfo 
	x11/mate/eom/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:19

Modified files:
	x11/mate/libmateweather: Makefile distinfo 
	x11/mate/libmateweather/pkg: PLIST 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:25

Modified files:
	x11/mate/marco : Makefile distinfo 

Log message:
update to 1.22.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:30

Modified files:
	x11/mate/media : Makefile distinfo 
	x11/mate/media/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:35

Modified files:
	x11/mate/menus : Makefile distinfo 
	x11/mate/menus/pkg: PLIST 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:42

Modified files:
	x11/mate/notification-daemon: Makefile distinfo 
	x11/mate/notification-daemon/pkg: PLIST 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:48

Modified files:
	x11/mate/panel : Makefile distinfo 
	x11/mate/panel/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:36:53

Modified files:
	x11/mate/pluma : Makefile distinfo 
	x11/mate/pluma/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:37:00

Modified files:
	x11/mate/power-manager: Makefile distinfo 
	x11/mate/power-manager/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:37:07

Modified files:
	x11/mate/screensaver: Makefile distinfo 
	x11/mate/screensaver/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:37:13

Modified files:
	x11/mate/session-manager: Makefile distinfo 
	x11/mate/session-manager/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:37:18

Modified files:
	x11/mate/settings-daemon: Makefile distinfo 
	x11/mate/settings-daemon/pkg: PLIST 

Log message:
update to 1.22.1


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:37:24

Modified files:
	x11/mate/system-monitor: Makefile distinfo 
	x11/mate/system-monitor/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/03 08:37:31

Modified files:
	x11/mate/utils : Makefile distinfo 
	x11/mate/utils/pkg: PLIST 

Log message:
update to 1.22.2


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/03 08:48:44

Modified files:
	usr.sbin/dhcpd : Tag: OPENBSD_6_5 icmp.c 

Log message:
Properly initalize the ICMP message to zero to avoid leaking 4-byte
of uninitialised memory in the sent icmp echorequest.
Reported by Adarsh Dinesh (adarsh.dinesh at gmail com)
OK florian@ deraadt@

OpenBSD 6.5 errata 014


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/03 08:49:32

Modified files:
	usr.sbin/dhcpd : Tag: OPENBSD_6_4 icmp.c 

Log message:
Properly initalize the ICMP message to zero to avoid leaking 4-byte
of uninitialised memory in the sent icmp echorequest.
Reported by Adarsh Dinesh (adarsh.dinesh at gmail com)
OK florian@ deraadt@

OpenBSD 6.4 errata 026


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/03 10:30:45

Modified files:
	x11/qt5ct      : Makefile distinfo 

Log message:
Update qt5ct to 0.41

take maintainer, ok kn@


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/10/03 10:37:15

Modified files:
	faq            : upgrade66.html 

Log message:
Diskspace requirements increased a bit. One should check if there is
enough space before doing the upgrade. ok deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/03 10:49:11

Modified files:
	math/fftw3     : Makefile 
	math/fftw3/pkg : PFRAG.double-main PFRAG.float-main PLIST-common 

Log message:
Fix the subpackaging: The *.cmake files are not shared between the flavors;
move them from -common to the flavored -main packages.  ok sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/10/03 11:03:21

Modified files:
	sbin/unwind/libunbound/util/data: Tag: OPENBSD_6_5 msgparse.c 
	usr.sbin/unbound/util/data: Tag: OPENBSD_6_5 msgparse.c 

Log message:
Fix CVE-2019-16866:
Recent versions of Unbound contain a problem that may cause Unbound to
crash after receiving a specially crafted query. This issue can only be
triggered by queries received from addresses allowed by Unbound's ACL.
Also fix the version in unwind(8).

OpenBSD 6.5 errata 013


CVSROOT:	/cvs
Module name:	src
Changes by:	benno@cvs.openbsd.org	2019/10/03 11:04:28

Modified files:
	usr.sbin/unbound/util/data: Tag: OPENBSD_6_4 msgparse.c 

Log message:
Fix CVE-2019-16866:
Recent versions of Unbound contain a problem that may cause Unbound to
crash after receiving a specially crafted query. This issue can only be
triggered by queries received from addresses allowed by Unbound's ACL.

OpenBSD 6.5 errata 025


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/10/03 11:07:50

Modified files:
	usr.bin/ssh    : ssh-keygen.1 ssh-keygen.c 

Log message:
use a more common options order in SYNOPSIS and sync usage();
while here, no need for Bk/Ek;

ok dtucker


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/03 11:09:08

Modified files:
	sysutils/entr  : Makefile distinfo 

Log message:
Update entr to 4.3

ok kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/03 11:38:16

Modified files:
	devel/p5-ExtUtils-CppGuess: Makefile distinfo 

Log message:
Update ExtUtils-CppGuess to 0.20

no link -lstdc++ if -static-libstdc++ - thanks @andygrundman


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/10/03 11:45:27

Modified files:
	lib/libcrypto/rsa: rsa_oaep.c 

Log message:
Move towards making RSA OAEP functions handle arbitrary message digests.

Based on OpenSSL 1.1.1.

ok tb@, inoguchi@ (on an earlier/larger diff)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/03 11:51:59

Modified files:
	sysutils/uefitool: Makefile 

Log message:
Set PORTROACH to ignore A* and t* (pre) releases


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/10/03 11:57:50

Modified files:
	www/mozilla-firefox: Makefile distinfo 
	www/firefox-i18n: Makefile.inc distinfo 

Log message:
Update to firefox 69.0.2.

See https://www.mozilla.org/en-US/firefox/69.0.2/releasenotes/


CVSROOT:	/cvs
Module name:	www
Changes by:	tj@cvs.openbsd.org	2019/10/03 11:59:59

Modified files:
	.              : errata64.html errata65.html 

Log message:
release unbound and dhcpd errata.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/10/03 12:38:54

Modified files:
	lang/ruby/2.6  : Makefile distinfo 
	lang/ruby/2.6/pkg: PLIST-main 

Log message:
Update to Ruby 2.6.5, fixing the following vulnerabilities:

* CVE-2019-16255: A code injection vulnerability of Shell#[] and Shell#test
* CVE-2019-16254: HTTP response splitting in WEBrick (Additional fix)
* CVE-2019-15845: A NUL injection vulnerability of File.fnmatch and File.fnmatch?
* CVE-2019-16201: Regular Expression Denial of Service vulnerability of WEBrick.s Digest access authentication


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/10/03 12:39:26

Modified files:
	lang/ruby/2.5  : Makefile distinfo 

Log message:
Update to Ruby 2.5.7, fixing the following vulnerabilities:

* CVE-2019-16255: A code injection vulnerability of Shell#[] and Shell#test
* CVE-2019-16254: HTTP response splitting in WEBrick (Additional fix)
* CVE-2019-15845: A NUL injection vulnerability of File.fnmatch and File.fnmatch?
* CVE-2019-16201: Regular Expression Denial of Service vulnerability of WEBrick.s Digest access authentication


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/10/03 12:39:57

Modified files:
	lang/ruby/2.4  : Makefile distinfo 

Log message:
Update to Ruby 2.4.9, fixing the following vulnerabilities:

* CVE-2019-16255: A code injection vulnerability of Shell#[] and Shell#test
* CVE-2019-16254: HTTP response splitting in WEBrick (Additional fix)
* CVE-2019-15845: A NUL injection vulnerability of File.fnmatch and File.fnmatch?
* CVE-2019-16201: Regular Expression Denial of Service vulnerability of WEBrick.s Digest access authentication


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/10/03 12:47:19

Modified files:
	sys/kern       : sys_generic.c 

Log message:
poll(2), ppoll(2), select(2), pselect(2): always set P_SELECT before tsleep

When I introduced the tsleep loops in r1.23 I screwed it up and introduced
a bug: on EWOULDBLOCK we loop but fail to reset P_SELECT, so the thread
will continue to sleep but miss all relevant descriptor activity after
INT_MAX ticks have elapsed.

Spotted by mpi@ back in July.

ok mpi@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/10/03 14:10:30

Modified files:
	devel/py-asn1  : Makefile distinfo 
	devel/py-asn1/pkg: DESCR PLIST 

Log message:
Update devel/py-asn1 0.3.7 -> 0.4.7

Brings py-asn1 up to date.

From Clem Atis. Thank you!

OK benoit@ (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/03 16:43:39

Modified files:
	education/verbiste: Makefile distinfo 
	education/verbiste/patches: patch-Makefile_in 

Log message:
update to 0.1.47: conjugation table and regression test fixes


CVSROOT:	/cvs
Module name:	www
Changes by:	solene@cvs.openbsd.org	2019/10/03 17:32:48

Modified files:
	faq            : faq10.html 

Log message:
Add sparc64 in the list of architectures receiving binary packages updates


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/03 19:13:09

Modified files:
	sys/conf       : GENERIC 

Log message:
disable POOL_DEBUG for release
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/10/03 21:26:58

Modified files:
	usr.bin/ssh    : moduli.c 

Log message:
Check for gmtime failure in moduli generation.  Based on patch from
krishnaiah.bommu@intel.com, ok djm@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/03 21:39:19

Modified files:
	regress/usr.bin/ssh: sshsig.sh 

Log message:
more sshsig regress tests: check key revocation, the check-novalidate
signature test mode and signing keys in ssh-agent.

From Sebastian Kinne (slightly tweaked)


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/03 22:13:39

Modified files:
	usr.bin/ssh    : match.c 

Log message:
space


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/03 22:31:59

Modified files:
	usr.bin/ssh    : sftp-client.c 

Log message:
fix memory leak in error path; bz#3074
patch from krishnaiah.bommu@intel.com, ok dtucker


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/10/03 22:52:40

Modified files:
	sys/netinet    : ip_ether.h 

Log message:
get rid of prototypes for mplsip_input and mplsip_output. they don't exist.


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/10/03 23:00:49

Modified files:
	sys/net        : if_gif.c 
	sys/netinet    : ip_ether.h ip_ipip.h 

Log message:
gif shouldn't include netinet/ip_ether.h, cos gif doesnt do etherip.

ip_ether.h is where netinet/ip_ipip.h got the forward declaration
for struct tdb from though, so fix that before cutting ip_ether.h
out of gif.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/10/04 00:22:51

Modified files:
	usr.bin/openssl: openssl.1 

Log message:
the formatting for the mini synopses in this page did not render well
on html or groff. the solution, to replace the non-standard .nr macros
with a hang list, was provided by ingo - thanks!

ok schwarze


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/04 00:33:31

Modified files:
	sys/dev/pci/drm/i915: intel_runtime_pm.c 

Log message:
Re-enable call to intel_hpd_poll_init() in vlv_display_power_well_deinit().
Allows valleyview and cherryview machines to boot without a display connected.

Previously they would get flooded by HPD events.  HPD is known to not work on
valleyview and cherryview when powerwells are shut off.

Reported by jan@ on tech@ with valleyview and km at krot.org on bugs@ with
cherryview.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/04 00:33:55

Modified files:
	editors/libreoffice: Makefile distinfo 
Removed files:
	editors/libreoffice/patches: 
	                             patch-bridges_source_cpp_uno_gcc3_linux_intel_share_hxx 
	                             patch-sw_source_filter_ww8_ww8par_cxx 
	                             patch-sw_source_filter_ww8_ww8toolbar_cxx 

Log message:
update to 6.3.2.2 and unbreak on i386


CVSROOT:	/cvs
Module name:	ports
Changes by:	solene@cvs.openbsd.org	2019/10/04 01:15:39

Modified files:
	www/sblg       : Makefile distinfo 

Log message:
Update to sblg-0.5.7

Thanks to maintainer Bryan Vyhmeister for patch


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/04 02:03:25

Removed files:
	net/zabbix/patches: patch-src_libs_zbxcrypto_tls_c 

Log message:
zap empty file


CVSROOT:	/cvs
Module name:	src
Changes by:	gilles@cvs.openbsd.org	2019/10/04 02:34:29

Modified files:
	usr.sbin/smtpd : smtp_session.c 

Log message:
remove strict \r check, the downside overweights the advantages, we'll
revisit a proper fix post release

committing on behalf of martijn@, ok eric@ and I


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/04 03:37:29

Modified files:
	.              : 66.html 

Log message:
Use proper capitalization for abbreviations and acronyms.


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/10/04 03:47:34

Modified files:
	usr.bin/openssl: s_server.c 

Log message:
Avoid a path traversal bug in s_server on Windows.

openssl s_server has an arbitrary read vulnerability on Windows when run with
the -WWW or -HTTP options, due to an incomplete path check logic. Thanks to
Jobert Abma for reporting.

ok tb@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kevlo@cvs.openbsd.org	2019/10/04 03:57:43

Modified files:
	www/py-webpy   : Makefile distinfo 
	www/py-webpy/pkg: DESCR PLIST 

Log message:
Update to py-webpy-0.40.

Changelog can be found at
https://github.com/webpy/webpy/blob/master/ChangeLog.txt#L3

While here take MAINTAINER.

ok kmos@


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/04 04:15:36

Modified files:
	faq            : upgrade39.html upgrade57.html upgrade63.html 
	                 upgrade64.html 

Log message:
Fix a few spelling errors in upgrade notes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/10/04 04:30:38

Log message:
    Import xe-0.11.
    
    The xe utility constructs command lines from specified arguments,
    combining some of the best features of xargs(1) and apply(1).
    
    xe means "execute for every ...".
    
    From Evan Silberman; thanks!
    
    ok bcallah@
    
    Status:
    
    Vendor Tag:	bentley
    Release Tags:	bentley_20191004
    
    N ports/sysutils/xe/Makefile
    N ports/sysutils/xe/distinfo
    N ports/sysutils/xe/pkg/PLIST
    N ports/sysutils/xe/pkg/DESCR
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	bentley@cvs.openbsd.org	2019/10/04 04:31:13

Modified files:
	sysutils       : Makefile 

Log message:
+xe


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/04 05:40:42

Modified files:
	usr.sbin/bgpd  : pftable.c 

Log message:
Instead of calling fatal() when pftable additions and deletions mix
commit the pending work and therefore start a new worklist. The delayed
commits can cause such situations to happen and there is no reason to
panic because of this.
Problem found by jmc@
OK benno@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/04 06:04:12

Removed files:
	editors/kile-kde4: Makefile distinfo 
	editors/kile-kde4/pkg: DESCR PLIST 

Log message:
rm kile-kde4

It's gone long time ago.


CVSROOT:	/cvs
Module name:	www
Changes by:	brynet@cvs.openbsd.org	2019/10/04 06:32:24

Modified files:
	.              : events.html 

Log message:
Add vmm/vmd talk by Mischa Peters


CVSROOT:	/cvs
Module name:	www
Changes by:	brynet@cvs.openbsd.org	2019/10/04 06:35:59

Modified files:
	.              : events.html 

Log message:
fix link, sorry.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/04 06:45:12

Modified files:
	textproc/jq    : Makefile distinfo 

Log message:
Use rerolled distfile

Upstream apparently shipped at new tarball for the same 1.6 release that
merely includes the oniguruma sources, which we explicitly disable anyway
in favour of the dedicated textproc/oniguruma port.

Avoid fetch failures from GitHub and fallback to the next MASTER_SITES by
using the new tarball instead.

No changes otherwise,
DISTFILES input and OK sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/04 06:49:45

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-aws: Makefile distinfo 
	sysutils/terraform/provider-digitalocean: Makefile distinfo 
	sysutils/terraform/provider-fastly: Makefile distinfo 
	sysutils/terraform/provider-heroku: Makefile distinfo 
	sysutils/terraform/provider-local: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/04 08:18:17

Modified files:
	x11/gtk+3      : Makefile distinfo 
	x11/gtk+3/patches: patch-gtk_gtkfilechooserwidget_c 
	x11/gtk+3/pkg  : PLIST-main 

Log message:
Update to gtk+3-3.24.12.


CVSROOT:	/cvs
Module name:	ports
Changes by:	kn@cvs.openbsd.org	2019/10/04 08:42:33

Modified files:
	editors/kile   : Makefile 

Log message:
Fix missing Okular WANTLIB, turn kinit from LIB into RUN_DEPENDS

Okular5Core is dlopen(3)ed at runtime, thus port-lib-depends-check does not
pick it up.  This causes okular to be omitted as RUN_DEPENDS and starting
kile on systems without it would exit immediatly with a warning box.

kinit's shared library is not used at all, so make that clear while here.

OK rsadowski


CVSROOT:	/cvs
Module name:	ports
Changes by:	kevlo@cvs.openbsd.org	2019/10/04 08:52:13

Modified files:
	www            : Makefile 

Log message:
+ py-webpy, python3

Spotted by kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kevlo@cvs.openbsd.org	2019/10/04 09:05:43

ports/www/py-webpy/patches

Update of /cvs/ports/www/py-webpy/patches
In directory cvs.openbsd.org:/tmp/cvs-serv12340/patches

Log Message:
Directory /cvs/ports/www/py-webpy/patches added to the repository


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/04 09:06:15

Modified files:
	graphics/orthanc/webviewer-plugin: Makefile 

Log message:
correct revision bump


CVSROOT:	/cvs
Module name:	ports
Changes by:	kevlo@cvs.openbsd.org	2019/10/04 09:06:31

Added files:
	www/py-webpy/patches: patch-tests_test_wsgi_py 

Log message:
Regression test fixes from upstream.

ok kn@, kmos@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/10/04 09:21:31

Modified files:
	lang/ruby/2.6  : Tag: OPENBSD_6_5 Makefile distinfo 
	lang/ruby/2.6/pkg: Tag: OPENBSD_6_5 PLIST-main 

Log message:
Update to Ruby 2.6.5, fixing the following vulnerabilities:

* CVE-2019-16255: A code injection vulnerability of Shell#[] and Shell#test
* CVE-2019-16254: HTTP response splitting in WEBrick (Additional fix)
* CVE-2019-15845: A NUL injection vulnerability of File.fnmatch and File.fnmatch?
* CVE-2019-16201: Regular Expression Denial of Service vulnerability of WEBrick.s Digest access authentication


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/10/04 09:22:25

Modified files:
	lang/ruby/2.5  : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to Ruby 2.5.7, fixing the following vulnerabilities:

* CVE-2019-16255: A code injection vulnerability of Shell#[] and Shell#test
* CVE-2019-16254: HTTP response splitting in WEBrick (Additional fix)
* CVE-2019-15845: A NUL injection vulnerability of File.fnmatch and File.fnmatch?
* CVE-2019-16201: Regular Expression Denial of Service vulnerability of WEBrick.s Digest access authentication


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/10/04 09:23:02

Modified files:
	lang/ruby/2.4  : Tag: OPENBSD_6_5 Makefile distinfo 

Log message:
Update to Ruby 2.4.9, fixing the following vulnerabilities:

* CVE-2019-16255: A code injection vulnerability of Shell#[] and Shell#test
* CVE-2019-16254: HTTP response splitting in WEBrick (Additional fix)
* CVE-2019-15845: A NUL injection vulnerability of File.fnmatch and File.fnmatch?
* CVE-2019-16201: Regular Expression Denial of Service vulnerability of WEBrick.s Digest access authentication


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/04 10:38:16

Modified files:
	mail/gmime30   : Makefile distinfo 

Log message:
Update to gmime30-3.2.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/10/04 10:51:31

Modified files:
	lib/libcrypto/rsa: rsa_locl.h rsa_oaep.c 

Log message:
Provide internal RSA_padding_{add,check}_PKCS1_OAEP_mgf1() functions.

These are internal only for now and will be made public at a later date.
The RSA_padding_{add,check}_PKCS1_OAEP() functions become wrappers around
the *_mgf1() variant.

ok tb@ inoguchi@ (as part of a larger diff)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsing@cvs.openbsd.org	2019/10/04 11:02:11

Modified files:
	lang/go        : Makefile distinfo 

Log message:
Update lang/go to 1.13.1.

This addresses a security issue in net/http.

ok naddy@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/10/04 11:21:24

Modified files:
	lib/libssl     : s3_lib.c 

Log message:
Use a valid curve when constructing an EC_KEY that looks like X25519.

The recent EC group cofactor change results in stricter validation,
which causes the EC_GROUP_set_generator() call to fail.

Issue reported and fix tested by rsadowski@

ok tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/10/04 11:42:16

Modified files:
	libexec/ld.so  : dlfcn.c library.c library_mquery.c 
	                 library_subr.c loader.c resolve.c resolve.h 

Log message:
Convert the child_list member from a linked list to a vector.

ok mpi@


CVSROOT:	/cvs
Module name:	src
Changes by:	tb@cvs.openbsd.org	2019/10/04 12:03:56

Modified files:
	lib/libcrypto/pkcs7: pk7_doit.c 
	lib/libcrypto/cms: cms_env.c cms_lcl.h cms_smime.c 

Log message:
Fix a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey.
(Note that the CMS code is currently disabled.)

Port of Edlinger's Fix for CVE-2019-1563 from OpenSSL 1.1.1 (old license)

tests from bluhm@
ok jsing

commit e21f8cf78a125cd3c8c0d1a1a6c8bb0b901f893f
Author: Bernd Edlinger <bernd.edlinger@hotmail.de>
Date:   Sun Sep 1 00:16:28 2019 +0200

Fix a padding oracle in PKCS7_dataDecode and CMS_decrypt_set1_pkey

An attack is simple, if the first CMS_recipientInfo is valid but the
second CMS_recipientInfo is chosen ciphertext. If the second
recipientInfo decodes to PKCS #1 v1.5 form plaintext, the correct
encryption key will be replaced by garbage, and the message cannot be
decoded, but if the RSA decryption fails, the correct encryption key is
used and the recipient will not notice the attack.

As a work around for this potential attack the length of the decrypted
key must be equal to the cipher default key length, in case the
certifiate is not given and all recipientInfo are tried out.

The old behaviour can be re-enabled in the CMS code by setting the
CMS_DEBUG_DECRYPT flag.

Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/9777)

(cherry picked from commit 5840ed0cd1e6487d247efbc1a04136a41d7b3a37)


CVSROOT:	/cvs
Module name:	www
Changes by:	tb@cvs.openbsd.org	2019/10/04 12:10:13

Modified files:
	.              : 66.html 

Log message:
mention padding oracle fix in PKCS7 and CMS


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/04 12:27:34

Modified files:
	textproc/xpdf  : Makefile 
Added files:
	textproc/xpdf/patches: patch-xpdf_TextOutputDev_cc 

Log message:
Security fix for out-of-bounds writes CVE-2019-16927, CVE-2019-9877.
Extracted from upstream changes 4.01.01 -> 4.02.

Update homepage and master sites.

ok kn@ kili@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/04 13:27:44

Modified files:
	textproc/xpdf  : Tag: OPENBSD_6_5 Makefile 
Added files:
	textproc/xpdf/patches: Tag: OPENBSD_6_5 
	                       patch-xpdf_TextOutputDev_cc 

Log message:
Security fix for out-of-bounds writes CVE-2019-16927, CVE-2019-9877.


CVSROOT:	/cvs
Module name:	src
Changes by:	procter@cvs.openbsd.org	2019/10/04 13:51:27

Modified files:
	usr.sbin/bgpd  : bgpd.conf.5 

Log message:
Buff; also, specify router-id per rfc6286.
MPLS VPN cluesticks supplied by Dylan Hall
ok claudio@ jmc@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/04 14:01:59

Modified files:
	sys/dev/fdt    : amlclock.c 

Log message:
Add support for setting the CPU clock frequencies.  This enables DVFS.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/10/04 14:12:01

Modified files:
	usr.bin/vi/docs/USD.doc/vi.man: vi.1 

Log message:
better link "set" and "SET OPTIONS";
original diff from sven falempin, tweaked a bit by myself;

ok sthen


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/04 14:30:27

Modified files:
	infrastructure/db: user.list 

Log message:
reserve 844 for routinator


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/04 14:50:36

Modified files:
	sysutils/entr  : Makefile 

Log message:
enable more tests


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/10/04 14:55:29

Modified files:
	usr.sbin/unbound: README configure configure.ac 
	usr.sbin/unbound/doc: example.conf.in libunbound.3.in 
	                      unbound-anchor.8.in unbound-checkconf.8.in 
	                      unbound-control.8.in unbound-host.1.in 
	                      unbound.8.in unbound.conf.5.in 

Log message:
merge in the rest of unbound-1.9.4 (we already had the only code change)


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/04 14:55:43

Modified files:
	net/libunbound : Makefile distinfo 

Log message:
update to libunbound-1.9.4


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/04 14:56:02

Added files:
	comms/lcdproc/patches: patch-server_drivers_port_h 

Log message:
skip unused code: clang does not handle x86 inline assembly on non-x86


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/04 14:58:20

Log message:
    import ports/net/routinator, feedback/ok kn@, feedback semarie@
    
    "Routinator 3000" is RPKI relying party software written in Rust.
    
    The Resource Public Key Infrastructure (RPKI) provides cryptographically
    signed statements about the association of Internet routing resources.
    In particular, it allows the holder of an IP address prefix to publish
    which AS number will be the origin of BGP route announcements for it.
    
    All of these statements are published in a distributed repository.
    Routinator will collect these statements into a local copy, validate
    their signatures, and output a list of associations between IP address
    prefixes and AS numbers in a number of useful formats.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20191004
    
    N ports/net/routinator/Makefile
    N ports/net/routinator/distinfo
    N ports/net/routinator/patches/patch-etc_routinator_conf_system-service
    N ports/net/routinator/pkg/DESCR
    N ports/net/routinator/pkg/PLIST
    N ports/net/routinator/pkg/routinator.rc
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/04 14:58:44

Modified files:
	net            : Makefile 

Log message:
+routinator


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/04 16:49:57

Modified files:
	.              : 66.html 

Log message:
Add missing command name (ssh-keygen(1)) in OpenSSH improvements section.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/10/04 18:08:50

Modified files:
	libexec/ld.so/aarch64: rtld_machine.c 
	libexec/ld.so/alpha: rtld_machine.c 
	libexec/ld.so/amd64: rtld_machine.c 
	libexec/ld.so/arm: rtld_machine.c 
	libexec/ld.so/i386: rtld_machine.c 
	libexec/ld.so/m88k: rtld_machine.c 
	libexec/ld.so/powerpc: rtld_machine.c 
	libexec/ld.so/sh: rtld_machine.c 
	libexec/ld.so/sparc64: rtld_machine.c 

Log message:
Delete some obsolete debugging #ifdefs blocks

ok mlarkin@, mpi@, krw@, deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/10/04 18:59:24

Modified files:
	lib            : check_sym 

Log message:
Get the architecture from the ELF header instead of running uname,
so that we can operate on libs from other archs


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/10/04 19:01:23

Modified files:
	lib            : check_sym 

Log message:
The mips64 symbol table layout means we have to consider symbol visibility
and skip 'protected' symbols when identifying which functions will be
subjects of lazy resolution


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/10/04 23:33:14

Modified files:
	sys/conf       : files 

Log message:
src/sys/netinet/ip_ether.c is empty, and gif doesn't need it.

gif may have needed it when you could switch modes with gif, but
now that's handled by if_etherip.c. ip_ether.c is empty, so we can
plan to remove it.

ok visa@ jca@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/05 01:33:51

Modified files:
	x11/kde-applications/dolphin: Makefile 

Log message:
Fix missing kinit RUN_DEPENDS


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 02:49:59

Modified files:
	devel/harfbuzz : Makefile distinfo 

Log message:
Update to harfbuzz-2.6.2.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 02:50:39

Added files:
	devel/libvmime/patches: patch-src_vmime_charsetConverter_icu_cpp 

Log message:
Avoid extern "C" blocks around ICU includes; from upstream.
needed by newer ICU


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 03:03:03

Modified files:
	sysutils/serf  : Makefile distinfo 

Log message:
Update to (hashicorp-)serf-0.8.5.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 03:12:35

Modified files:
	sysutils/packer: Makefile distinfo 

Log message:
Update to packer-1.4.4.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 03:12:45

Modified files:
	security/vault : Makefile distinfo 

Log message:
Update to vault-1.2.3.


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/10/05 03:15:53

Modified files:
	sys/dev/pci    : if_mcx.c 

Log message:
The event queue consumer counter also needs to be unsigned like the others.

chris@ seems to have hit this one too
ok dlg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 03:46:45

Modified files:
	www/webkitgtk4 : Makefile 
Added files:
	www/webkitgtk4/patches: patch-Source_WTF_wtf_URLHelpers_cpp 
	                        patch-Source_WebCore_dom_Document_cpp 

Log message:
Fix build with newer icu4c.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 03:51:36

Modified files:
	x11/qt5/qtwebkit: Makefile 
Added files:
	x11/qt5/qtwebkit/patches: patch-Source_WebCore_dom_Document_cpp 
	                          patch-Source_WebCore_platform_graphics_SegmentedFontData_cpp 
	                          patch-Source_WebCore_platform_mac_WebCoreNSURLExtras_mm 

Log message:
Fix build with icu4c >= 65


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 04:05:03

Modified files:
	mail/evolution : Makefile 

Log message:
--as-needed hack shouldn't be needed anymore after the recent ld.so fixes.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 05:23:29

Modified files:
	misc/hwdata    : Makefile distinfo 

Log message:
Update to hwdata-0.328.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/05 05:27:02

Modified files:
	sys/arch/arm64/dev: agtimer.c 

Log message:
Add workaround for Cortex-A73 errata 858921.  Pointed out by drahn@ who
also came up with the initial implementation.

ok drahn@, jsg@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 05:35:10

Modified files:
	security/p11-kit: Makefile distinfo 

Log message:
Update to p11-kit-0.23.18.1.


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/10/05 07:57:21

Modified files:
	.              : plus.html plus20.html plus21.html plus22.html 
	                 plus23.html plus24.html plus25.html plus26.html 
	                 plus27.html plus28.html plus29.html plus30.html 
	                 plus31.html plus32.html plus33.html plus34.html 
	                 plus35.html plus36.html plus37.html plus38.html 
	                 plus39.html plus40.html plus41.html plus42.html 
	                 plus43.html plus44.html plus45.html plus46.html 
	                 plus47.html plus48.html plus49.html plus50.html 
	                 plus51.html plus52.html plus53.html plus54.html 
	                 plus55.html plus56.html plus57.html plus58.html 
	                 plus59.html plus60.html plus61.html plus62.html 
	                 plus63.html plus64.html plus65.html 
Added files:
	.              : plus66.html 

Log message:
roll plus files, ok florian


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/10/05 08:10:34

Modified files:
	infrastructure/mk: bsd.port.mk 

Log message:
direct people to the "new" semantics for FETCH_PACKAGES


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/05 09:44:57

Modified files:
	sys/arch/armv7/broadcom: bcm2836_intr.c 
	sys/arch/armv7/omap: intc.c 
	sys/arch/armv7/sunxi: sxiintc.c 

Log message:
Use mask to extract IPL; should have been part of the earlier diff that
added IPI support on armv7.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/10/05 09:52:38

Modified files:
	infrastructure/lib/DPB: Job.pm User.pm 

Log message:
document stuff a bit more and follow my own guidelines (avoid implicit returns
even for ctors)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/10/05 10:20:37

Modified files:
	www/py-webpy   : Makefile 
	www/py-webpy/pkg: PLIST 

Log message:
Fix www/py-webpy,python3 build by regenerating PLIST

Breakage pointed out by naddy

Similar diff sent by Clem Atis


CVSROOT:	/cvs
Module name:	ports
Changes by:	kmos@cvs.openbsd.org	2019/10/05 10:28:41

Modified files:
	math/py-pandas : Makefile 

Log message:
Fix math/py-pandas build.

Cython is a hidden dependency. If it is there at the start of build, it
must stay.

Diff from sthen.

ok naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/05 12:53:24

Log message:
    import of opm-1.0:
    
    opm is a minimalistic password manager written in shell utilizing openssl(1)
    and signify(1) to handle the password store
    
    ok ajacoutot@, naddy@
    
    Status:
    
    Vendor Tag:	robert
    Release Tags:	robert_20191005
    
    N ports/security/opm/Makefile
    N ports/security/opm/distinfo
    N ports/security/opm/pkg/DESCR
    N ports/security/opm/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/05 12:53:56

Modified files:
	security       : Makefile 

Log message:
+opm


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/05 12:55:13

Modified files:
	www/chromium/pkg: PFRAG.component 

Log message:
fixup component flavor's plist


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/05 13:37:49

Modified files:
	.              : 66.html 

Log message:
Unbound has been updated to version 1.9.4.


CVSROOT:	/cvs
Module name:	src
Changes by:	jan@cvs.openbsd.org	2019/10/05 14:41:27

Modified files:
	sys/dev/ic     : aacvar.h aac.c 

Log message:
fix build errors of aac(4)


CVSROOT:	/cvs
Module name:	www
Changes by:	millert@cvs.openbsd.org	2019/10/05 14:42:04

Modified files:
	.              : donations.html errata35.html 

Log message:
qmail.org is dead, reference https://cr.yp.to/qmail.html instead.


CVSROOT:	/cvs
Module name:	src
Changes by:	guenther@cvs.openbsd.org	2019/10/05 14:49:48

Modified files:
	libexec/ld.so/hppa: rtld_machine.c 

Log message:
Tighten handling of pure relative DIR32 relocations and those referencing
sections; despite being a RELA arch, ld.so was making assumptions about
the initialization of the targeted location.

Add the relative relocation optimization, handling relocations
covered by the DT_RELACOUNT value in a tight loop.

ok mpi@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	matthieu@cvs.openbsd.org	2019/10/05 14:53:49

Modified files:
	share/man/man4/man4.amd64: pctr.4 

Log message:
The rdtsc() macro has been removed in rev 1.7 of
/sys/arch/amd64/include/pctr.h. Adjust the manual page.
ok deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/10/05 14:54:20

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
Retry request once when receiving a 503

Basic implementation: we just retry once, and make no attempt (yet) to
parse any Retry-After header.

The idea is to work around cdn.openbsd.org sometimes replying with a 503
for reasons unknown.  According to juanfra@ it sets "Retry-After: 0" so
this minimal implementation should be enough.

Different diff from espie@, test case from sthen@, input from
millert@, ok millert@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/05 16:29:30

Modified files:
	geo/qlandkartegt: Makefile 
	geo/qlandkartegt/patches: 
	                          patch-3rdparty_map2rmp_CFileGenerator_cpp 

Log message:
fix narrowing errors on archs where char is unsigned by default; ok cwen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/05 16:33:21

Modified files:
	security/aircrack-ng: Makefile 

Log message:
disable NEON optimizations on arm and aarch64 because clang refuses to
compile the code; ok benoit@


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 18:34:07

Modified files:
	sysutils/amazon-ecs-cli: Makefile distinfo 

Log message:
Update to ecs-cli-1.17.0.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/05 18:37:38

Modified files:
	sysutils/google-cloud-sdk: Makefile distinfo 
	sysutils/google-cloud-sdk/patches: 
	                                   patch-platform_gsutil_gslib_commands_config_py 
	sysutils/google-cloud-sdk/pkg: PLIST 

Log message:
Update to google-cloud-sdk-265.0.0.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/05 19:01:28

Modified files:
	sys/dev/pci/drm/include/linux: backlight.h 

Log message:
add BL_CORE_SUSPENDRESUME define
needed for next round of 4.19 patches


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/05 19:04:51

Modified files:
	sys/dev/pci/drm/amd/powerplay/hwmgr: smu7_hwmgr.c 

Log message:
drm/amd/powerplay/smu7: enforce minimal VBITimeout (v2)

From Ahzo
d47636913bda8255652805eb29b9638e6d9311c1 in linux 4.19.y/4.19.77
f659bb6dae58c113805f92822e4c16ddd3156b79 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/05 19:09:55

Modified files:
	sys/dev/pci/drm/amd/display/amdgpu_dm: amdgpu_dm.c 

Log message:
drm/amd/display: Restore backlight brightness after system resume

From Kai-Heng Feng
2c60da90ec4467adec602e1b81b3ca256f581031 in linux 4.19.y/4.19.77
bb264220d9316f6bd7c1fd84b8da398c93912931 in mainline linux


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2019/10/05 19:13:44

Modified files:
	.              : 66.html 

Log message:
drm 4.19.77


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/10/06 03:25:21

Modified files:
	sbin/unwind    : frontend.c 

Log message:
Eek, check overflow with destination size, not source


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/06 04:17:16

Modified files:
	net/py-botocore: Makefile 
Removed files:
	net/py-botocore: distinfo 

Log message:
Update to py-botocore-1.12.243.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/06 04:17:51

Added files:
	net/py-botocore: distinfo 

Log message:
Oops.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/06 04:18:17

Modified files:
	net/py-boto3   : Makefile distinfo 

Log message:
Update to py-boto3-1.9.243.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/06 04:18:38

Modified files:
	sysutils/awscli: Makefile distinfo 
	sysutils/awscli/pkg: PLIST 

Log message:
Update to awscli-1.16.253.


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/06 04:32:05

Modified files:
	sysutils/terraform/provider-alicloud: Makefile distinfo 
	sysutils/terraform/provider-azurerm: Makefile distinfo 

Log message:
Update terraform providers.


CVSROOT:	/cvs
Module name:	ports
Changes by:	stsp@cvs.openbsd.org	2019/10/06 04:32:48

Modified files:
	devel/got      : Makefile distinfo 

Log message:
update to got-0.17

- make 'got branch' without args show work tree's branch (requested by benno)
- show temporary branch in 'got branch -l' during rebase and histedit
- refresh references when 'tog log' view is refreshed with Ctrl+L
- make 'got status' read .gitignore files; support **/ and /**/ in patterns
- handle empty trees during 'import' and 'checkout' (issue reported by sthen)
- show only whitelisted commit headers in 'got log' (semarie)
- properly handle getline(3) return type as ssize_t (hiltjo)


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/06 04:48:37

Modified files:
	mail/evolution : Makefile 

Log message:
Add missing MODGNOME_LDFLAGS.


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/06 05:03:15

Modified files:
	www/chromium   : Makefile 
	www/chromium/patches: patch-chrome_common_chrome_paths_cc 
	                      patch-services_service_manager_sandbox_openbsd_sandbox_openbsd_cc 
	www/chromium/pkg: PFRAG.component 

Log message:
make sure that we support the /etc/chromium/policies directory by actually
enabling the code and disable the usage of the internal fontconfig which
was periodically reloaded causing fontconfig related pledge violations


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/10/06 05:49:50

Modified files:
	regress/usr.bin/ssh: dhgex.sh 

Log message:
Instead of running sed over the whole log to remove CRs, remove them
only where it's needed (and confuses test(1) on at least OS X in portable).


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/10/06 07:34:57

Modified files:
	productivity/tryton/5.0/account_asset: Makefile distinfo 
	productivity/tryton/5.0/account_asset/pkg: PLIST 
	productivity/tryton/5.0/sao: Makefile distinfo 
	productivity/tryton/5.0/timesheet: Makefile distinfo 
	productivity/tryton/5.0/trytond: Makefile distinfo 

Log message:
tryton 5.0: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	semarie@cvs.openbsd.org	2019/10/06 07:35:07

Modified files:
	productivity/tryton/5.2/account_asset: Makefile distinfo 
	productivity/tryton/5.2/account_asset/pkg: PLIST 
	productivity/tryton/5.2/party: Makefile distinfo 
	productivity/tryton/5.2/party/pkg: PLIST 
	productivity/tryton/5.2/sao: Makefile distinfo 
	productivity/tryton/5.2/timesheet: Makefile distinfo 
	productivity/tryton/5.2/tryton: Makefile distinfo 
	productivity/tryton/5.2/trytond: Makefile distinfo 

Log message:
tryton 5.2: maintenance update


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/06 08:06:10

Modified files:
	www/chromium   : Makefile 
	www/chromium/files: pledge.utility_network 

Log message:
the network process needs a unix pledge for inter process communication
as well


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/10/06 09:05:35

Modified files:
	usr.bin/top    : machine.c 

Log message:
Zap intermediate structs in compare_*()

SETORDER() can assign from function arguments directly without additional
identical structs in each function.

No object change.
OK millert


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/10/06 09:08:54

Modified files:
	usr.bin/top    : machine.c machine.h top.c 

Log message:
Avoid gasting around get_process_info()

get_process_info() returns a pointer to the global handle later only be
used in format_next_process();  treat this struct handle as such without
casting the pointer to caddr_t and back again.

No object change.
OK millert deraadt


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/06 09:34:20

Modified files:
	lang/go-bootstrap: Makefile 

Log message:
go-bootstrap is not for aarch64


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/06 09:37:15

Modified files:
	lang/go        : Makefile go.port.mk 

Log message:
fix MODGO_PACKAGES and MODGO_TOOLS arch name on aarch64 machines (using
the same arch conversion list as done in the lang/go port itself; add
a comment reminding to keep them in-sync). unbreaks packaging of the
few golang ports that actually build on aarch64.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/06 09:45:37

Modified files:
	sys/dev/i2c    : pcf8563.c 

Log message:
Fix month mask.

ok deraadt@, patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/10/06 10:11:17

Modified files:
	sys/net80211   : ieee80211_input.c 

Log message:
Fix net80211's accounting of discarded input control frames.

PS-poll and BA-req frames are in fact being processed.
Do not count such frames as discarded control frames.

OK phessler kn mpi


CVSROOT:	/cvs
Module name:	ports
Changes by:	rsadowski@cvs.openbsd.org	2019/10/06 10:16:09

Modified files:
	x11/kde-applications/kdenlive: Makefile 

Log message:
Mark as broken

Crashes immediately when you add a clip to the timeline. Reported upstream
long time ago. They said it's not our fault, it's mlt.


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/10/06 10:16:19

Modified files:
	etc            : rc 

Log message:
for now, only mix in sysctl hw.{uuid,serialno,sensors} to /dev/random.
as found the hard way by d.rauschenb@gmail on an old fujitsu siemens
machine, reading all of hw (notable hw.setperf) can have unexpected
side-effects.  ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/06 10:17:06

Modified files:
	sys/dev/fdt    : amlpinctrl.c 

Log message:
Add support for i2c pins.


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/06 10:18:16

Modified files:
	sys/dev/fdt    : amlclock.c 

Log message:
Add support for i2c clock.


CVSROOT:	/cvs
Module name:	src
Changes by:	beck@cvs.openbsd.org	2019/10/06 10:24:14

Modified files:
	sys/arch/sparc64/dev: vdsp.c 
	sys/dev        : vnd.c 
	sys/dev/usb    : uvideo.c 
	sys/kern       : kern_acct.c kern_ktrace.c kern_sig.c 
	                 vfs_syscalls.c vfs_vnops.c 
	sys/ufs/ufs    : ufs_quota.c 
	share/man/man9 : vnsubr.9 

Log message:
Fix vn_open to require an op of 0, and 0 or KERNELPATH only as flags.

sweep tree to correct NDIINT op and flags ahead of time. document
the requirement. This allows KERNELPATH to be used to bypass
unveil for crash dumps with nosuidcoredump=2 or 3

ok visa@ deraadt@ florian@


CVSROOT:	/cvs
Module name:	src
Changes by:	jmc@cvs.openbsd.org	2019/10/06 10:32:56

Modified files:
	share/man/man9 : vnsubr.9 

Log message:
tweak previous;


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/10/06 11:11:51

Modified files:
	sys/dev/usb    : usb.c usb_subr.c usbdi.c usbdi_util.c 

Log message:
tsleep(9) to tsleep_nsec(9) conversions.

ok visa@, kn@, cheloha@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/10/06 11:13:10

Modified files:
	sys/dev        : video.c 

Log message:
tsleep(9) to tsleep_nsec(9) conversion

ok visa@, kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/10/06 11:30:00

Modified files:
	sys/dev/usb    : xhci.c xhcivar.h 

Log message:
Use MSEC_TO_NSEC() to define XHCI_CMD_TIMEOUT & use it w/ tsleep_nsec(9).

ok visa@, kn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/06 14:12:26

Modified files:
	net/routinator : Makefile 

Log message:
take MAINTAINER


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/06 14:20:23

Log message:
    import sysutils/py-packaging, tests fix/ok kn@
    
    Core utilities for Python packages. Includes version handling,
    specifiers, markers, requirements, tags, utilities.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20191006
    
    N ports/sysutils/py-packaging/Makefile
    N ports/sysutils/py-packaging/distinfo
    N ports/sysutils/py-packaging/pkg/DESCR
    N ports/sysutils/py-packaging/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/06 14:20:50

Modified files:
	sysutils       : Makefile 

Log message:
+py-packaging


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/06 14:33:43

Log message:
    import net/arouteserver, req'd and test help claudio@, help+ok kn@
    thanks to pierky (upstream) for a quick fix on a sunday evening
    
    ARouteServer is a Python tool to automatically build (and test)
    configurations for BGP route servers.
    
    Given YAML files providing general policies and clients' configuration
    options, ARouteServer acquires external information to enrich them
    (i.e. bgpq3 for IRR data, PeeringDB for max-prefix limit and AS-SETs)
    and uses built-in Jinja2 templates to render configuration files for
    route servers.
    
    Currently it supports BIRD and OpenBGPd.
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20191006
    
    N ports/net/arouteserver/Makefile
    N ports/net/arouteserver/distinfo
    N ports/net/arouteserver/pkg/DESCR
    N ports/net/arouteserver/pkg/PLIST
    N ports/net/arouteserver/patches/patch-pierky_arouteserver_config_base_py
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/06 14:34:22

Modified files:
	net            : Makefile 

Log message:
+arouteserver


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/10/06 17:06:39

Modified files:
	faq            : upgrade66.html 

Log message:
Add language for sysupgrade to the upgrade instructions.

Diff originally from benno, reworked with input from deraadt and myself.

ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	jmatthew@cvs.openbsd.org	2019/10/06 18:40:05

Modified files:
	sys/dev/fdt    : if_dwge.c if_dwxe.c 

Log message:
Restart the send queue (rather than just clearing OACTIVE) when we've
freed up some space on the tx ring.  This fixes stalls seen in tcpbench.

ok dlg@ patrick@ kettenis@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jturner@cvs.openbsd.org	2019/10/06 19:25:17

Modified files:
	devel/fossil   : Makefile distinfo 
	devel/fossil/patches: patch-auto_def 

Log message:
Update fossil to 2.10. Changelog: http://www.fossil-scm.org/home/doc/trunk/www/changes.wiki#v2_10


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/10/06 22:07:41

Modified files:
	faq            : upgrade66.html 

Log message:
Reformat some lines so they don't exceed 80 characters. Put non-breaking
spaces between "RFC" and the # like already done in one spot. Finally,
delete some trailing whitespace on multiple lines.


CVSROOT:	/cvs
Module name:	ports
Changes by:	espie@cvs.openbsd.org	2019/10/06 22:52:15

Modified files:
	infrastructure/lib/DPB: Host.pm HostProperties.pm Job.pm 
	                        Shell.pm 
	infrastructure/lib/DPB/Core: Distant.pm 

Log message:
document how host/hostproperties interact
remove some "implicit returns" (cosmetic) and do more regular sub calls

provide a default is_alive for the abstract shell class to dedup code.

no functional change


CVSROOT:	/cvs
Module name:	ports
Changes by:	chrisz@cvs.openbsd.org	2019/10/07 00:40:15

Modified files:
	math/coq       : Makefile 
	math/coq/pkg   : PFRAG.native PFRAG.no-native PLIST 

Log message:
fix plist for bytecode-only arm64, sparc64

OK jca@


CVSROOT:	/cvs
Module name:	src
Changes by:	nicm@cvs.openbsd.org	2019/10/07 01:14:07

Modified files:
	usr.bin/tmux   : spawn.c 

Log message:
Fix respawn-pane/window if default-command is set, reported by Janos Barbero.


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/10/07 01:14:20

Modified files:
	mail/geary     : Makefile distinfo 

Log message:
Update to geary 3.34.1


CVSROOT:	/cvs
Module name:	src
Changes by:	bluhm@cvs.openbsd.org	2019/10/07 01:39:50

Modified files:
	usr.bin/snmp   : snmpc.c 

Log message:
If optstring is NULL and usecommonopt is true, optstr was prepended
by uninitialized garbage.  Crash in snmp(1) found by
regress/usr.sbin/snmpd.
OK martijn@


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/10/07 01:56:17

Modified files:
	www/nextcloud  : Makefile distinfo 
	www/nextcloud/pkg: PLIST 

Log message:
Update for Nextcloud to 16.0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	gonzalo@cvs.openbsd.org	2019/10/07 01:56:40

Modified files:
	www/nextcloud  : Tag: OPENBSD_6_5 Makefile distinfo 
	www/nextcloud/pkg: Tag: OPENBSD_6_5 PLIST 

Log message:
Update for Nextcloud to 16.0.5


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/10/07 03:35:11

Modified files:
	textproc/catfish: Makefile distinfo 
	textproc/catfish/pkg: PLIST 

Log message:
Update to catfish 1.4.10


CVSROOT:	/cvs
Module name:	ports
Changes by:	landry@cvs.openbsd.org	2019/10/07 03:35:46

Modified files:
	x11/xfce4/xfce4-dict: Makefile distinfo 
	x11/xfce4/xfce4-dict/pkg: PLIST 

Log message:
Update to xfce4-dict 0.8.3


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/07 04:20:10

Log message:
    import sysutils/reposync, a script to assist syncing the OpenBSD cvs repo
    from an rsync mirror. if updates are done frequently, the CVSROOT directory
    is checked for changes, skipping some updates if there is likely to be no
    change to reduce io.  feedback jasper@ ok aja@
    
    Status:
    
    Vendor Tag:	sthen
    Release Tags:	sthen_20191007
    
    N ports/sysutils/reposync/Makefile
    N ports/sysutils/reposync/files/reposync
    N ports/sysutils/reposync/files/reposync.1
    N ports/sysutils/reposync/pkg/DESCR
    N ports/sysutils/reposync/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/07 04:20:30

Modified files:
	sysutils       : Makefile 

Log message:
+reposync


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/07 04:32:03

Modified files:
	net/arouteserver: Makefile distinfo 
Removed files:
	net/arouteserver/patches: 
	                          patch-pierky_arouteserver_config_base_py 

Log message:
committed upstream


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/10/07 04:47:08

Modified files:
	sys/dev        : audio.c 

Log message:
Convert infinite tsleep(9) to tsleep_nsec(9).

ok ratchov@


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/10/07 05:51:19

Removed files:
	sys/netinet    : ip_ether.c 

Log message:
ip_ether.c is empty, and now unlinked from the build.

ok jca@ deraadt@ claudio@ visa@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/07 06:16:45

Modified files:
	editors/libreoffice: Makefile 

Log message:
mark BROKEN-i386 again, it takes ~2.5h before failing


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/10/07 06:50:14

Modified files:
	net/samba      : Makefile distinfo 
	net/samba/patches: patch-auth_auth_log_c 
	                   patch-buildtools_wafsamba_samba_autoconf_py 
	                   patch-lib_ldb_wscript 
	                   patch-python_samba_provision___init___py 
	                   patch-source3_wscript 
	                   patch-source3_wscript_build 
	                   patch-source4_dsdb_samdb_ldb_modules_acl_c 
	net/samba/pkg  : PLIST-ldb PLIST-main 

Log message:
Update to samba-4.9.13

4.8.x is not supported upstream any more, so better update before 6.6 is
tagged if we want to benefit from upstream's security updates.

To stay on the safe side, this update doesn't enable the LMDB backend
which has become the default upstream.  samba requires a 64 bits system
to use LMDB (32 bits systems can keep on using tdb); and LMDB has always
been a problem child on OpenBSD anyway.

Lightly tested by me, bulk build test and ok ajacoutot@ (thanks!)


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/10/07 07:35:48

Modified files:
	databases/tdb  : Makefile 
	devel/libtalloc: Makefile 
	net/samba      : Makefile 
	sysutils/tphdisk: Makefile 

Log message:
Mirror a bunch of samba.org distfiles

download.samba.org now rejects the HTTP/1.0 requests sent by our ftp(1).
Changing ftp(1) now is asking for trouble so work around it.

distfiles hosting courtesy of kmos@, thanks!


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/10/07 07:40:43

Modified files:
	www/mozilla-firefox: Makefile 
Added files:
	www/mozilla-firefox/patches: 
	                             patch-js_src_jit_ProcessExecutableMemory_cpp 

Log message:
Allow mmap(2) to select a suitable random address by providing NULL as
the hint address. okay sthen@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/10/07 07:43:06

Modified files:
	mail/mozilla-thunderbird: Makefile 
	mail/mozilla-thunderbird/patches: 
	                                  patch-mozilla_js_src_jit_ProcessExecutableMemory_h 
	                                  patch-mozilla_security_manager_pki_resources_content_exceptionDialog_js 
	                                  patch-mozilla_storage_mozStorageConnection_cpp 
Added files:
	mail/mozilla-thunderbird/patches: 
	                                  patch-js_src_jit_ProcessExecutableMemory_cpp 

Log message:
Allow mmap(2) to select a suitable random address by providing NULL as
the hint address. okay sthen@


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/10/07 08:33:18

Modified files:
	usr.sbin/unbound/smallapp: unbound-anchor.c 

Log message:
As found by tb@, the name of the temporary file used when updating the
root anchor changed in unbound 1.9.3, "Add hex print of trust anchor
pointer to trust anchor file temp name to make it unique, for libunbound
created multiple contexts".

This isn't allowed by unbound-anchor's unveil; adjust to unveil the
parent directory (typically /var/unbound/db, but generated from the
filename).

ok florian@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	visa@cvs.openbsd.org	2019/10/07 08:59:59

Modified files:
	share/man/man4/man4.octeon: octpcie.4 

Log message:
Remove a message that the driver does not print any longer.


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/10/07 09:28:25

Modified files:
	net/rsync      : Makefile 

Log message:
Also mirror the rsync distfile

Initially hosted on samba.org which now rejects HTTP/1.0 requests.

Thanks to kmos@ for hosting the distfile, no objection from espie@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/07 09:32:13

Modified files:
	etc/root       : root.mail 

Log message:
correct dates


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/07 09:34:31

Modified files:
	etc/root       : root.mail 

Log message:
update pkg name


CVSROOT:	/cvs
Module name:	src
Changes by:	mikeb@cvs.openbsd.org	2019/10/07 09:36:02

Modified files:
	sys/dev/pv     : hyperv.c 

Log message:
Attach Hyper-V guest services to VMBus 4.0

Tested by Andre Stoebe and Remi Locherer.

ok deraadt, tb


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/07 10:16:09

Modified files:
	lang/pypy      : Makefile 

Log message:
missing BDEP for FLAVOR=no_bootstrap, use https HOMEPAGE while there


CVSROOT:	/cvs
Module name:	ports
Changes by:	jeremy@cvs.openbsd.org	2019/10/07 11:34:12

Modified files:
	databases/ruby-sequel: Makefile distinfo 
	databases/ruby-sequel/pkg: PLIST 

Log message:
Update to Sequel 5.25.0


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/10/07 11:44:45

Modified files:
	usr.sbin/rebound: rebound.c 

Log message:
worker should always get a conffd, and if we don't, it's an error.
fixes compiler warning via deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/10/07 11:47:32

Modified files:
	usr.bin/grep   : grep.1 grep.c grep.h util.c 

Log message:
two compat features to allow the zstdgrep script to work.
add --label option to prefix the output instead of filename.
allow using - to mean stdin.
ok deraadt


CVSROOT:	/cvs
Module name:	src
Changes by:	sthen@cvs.openbsd.org	2019/10/07 11:52:59

Modified files:
	etc/etc.arm64  : login.conf 

Log message:
sync arm64 pbuild resource limits with amd64; arm64 now builds some large
things and can easily exceed the previous 1.5GB limit.

(obviously, as with amd64, machines with less physical RAM won't cope with
building the largest ports).

ok deraadt phessler millert kettenis


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/10/07 12:26:07

Modified files:
	archivers/rzip : Makefile 

Log message:
Also mirror the rzip distfile

Initially hosted on samba.org which now rejects HTTP/1.0 requests.

Thanks to kmos@ for hosting the distfile, ok lteo@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/07 12:54:04

Modified files:
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : amliic.c 

Log message:
Add amliic(4), a driver for the I2C controller found on Amlogic SoCs.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/07 12:55:20

Modified files:
	sys/arch/arm64/conf: GENERIC RAMDISK 

Log message:
Add amliic(4) and pcxrtc(4).  This adds support for the RTC on the odroid-n2.

ok patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/07 12:56:59

Modified files:
	share/man/man4 : Makefile iic.4 
Added files:
	share/man/man4 : amliic.4 

Log message:
amliic(4)


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/10/07 13:16:54

Modified files:
	www/firefox-esr: Makefile 
Added files:
	www/firefox-esr/patches: 
	                         patch-js_src_jit_ProcessExecutableMemory_cpp 

Log message:



CVSROOT:	/cvs
Module name:	src
Changes by:	kmos@cvs.openbsd.org	2019/10/07 13:17:33

Modified files:
	distrib/notes/arm64: hardware 

Log message:
Update to reflect the hardware list in arm64.html

Requested by and ok kettenis


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 13:28:44

Modified files:
	sys/dev/fdt    : mvclock.c 

Log message:
Add SPI clocks.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 13:30:12

Modified files:
	sys/arch/arm64/conf: GENERIC 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : mvspi.c 

Log message:
Add mvspi(4), a driver for the SPI controller on the
Armada 3700 SoC.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 13:35:07

Modified files:
	sys/arch/arm64/conf: GENERIC 
	sys/dev/fdt    : files.fdt 
Added files:
	sys/dev/fdt    : moxtet.c 

Log message:
Add moxtet(4), a driver for the Turris Mox modules.  For now this
driver only enumerates and shows the connected modules.  The next
step is to implement GPIO controller functionality to e.g. control
the pins to the SFP on the MOX D.

ok kettenis@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 13:38:12

Modified files:
	share/man/man4 : imxiic.4 mviic.4 

Log message:
Fixup synopsis on imxiic(4) and mviic(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 13:43:01

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : imxspi.4 mvspi.4 

Log message:
Add manpages for imxspi(4) and mvspi(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/10/07 14:04:00

Modified files:
	usr.bin/grep   : grep.c 

Log message:
add --label to usage. thx jmc


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 14:10:21

Modified files:
	share/man/man4 : Makefile 
Added files:
	share/man/man4 : ssdfb.4 

Log message:
Add a manpage for ssdfb(4).


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 14:13:25

Modified files:
	share/man/man4 : iic.4 

Log message:
Mention ssdfb(4) in iic(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 14:14:13

Modified files:
	share/man/man4 : ssdfb.4 

Log message:
Mention iic(4) in ssdfb(4)


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/07 14:37:16

Modified files:
	share/man/man4 : ssdfb.4 

Log message:
Unify name; feedback from jmc@


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/10/07 14:46:24

Modified files:
	faq            : upgrade66.html 

Log message:
Change wording on the manual upgrade option to avoid using finally
and have folks think they can stop reading.

Input from and ok benno


CVSROOT:	/cvs
Module name:	src
Changes by:	tedu@cvs.openbsd.org	2019/10/07 14:51:34

Modified files:
	usr.bin/grep   : grep.1 

Log message:
jmc is a stickler for consistency.


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/07 14:55:37

Modified files:
	faq            : upgrade66.html 

Log message:
Fix a typo: s/plarforms/platforms.


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/10/07 16:40:35

Modified files:
	sys/arch/octeon/dev: octmmc.c 

Log message:
octmmc(4): msleep(9) -> msleep_nsec(9); ok visa@ kn@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/07 17:10:38

Modified files:
	usr.bin/ssh    : monitor.c 

Log message:
reversed test yielded incorrect debug message


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/10/07 19:10:28

Modified files:
	sysutils/u-boot: Makefile 
	sysutils/u-boot/patches: patch-arch_arm_dts_rk3399-rockpro64_dts 
	sysutils/u-boot/pkg: PFRAG.aarch64 
Added files:
	sysutils/u-boot/patches: patch-arch_arm_dts_rk3328-rock64_dts 
	                         patch-configs_rock64-rk3328_defconfig 
	                         patch-drivers_ram_rockchip_sdram_rk3328_c 
	                         patch-include_dt-bindings_clock_rk3328-cru_h 

Log message:
Updates for aarch64 rockchip boards:
* Add rock64-rk3328 to supported boards
* Update rk3328-cru.h from linux 5.3
* Include Simon Souths Rock64 TPL bug fixes [1]
* Update rk3399-rockpro64.dts from linux 5.3 to gain PCIe support

okay jsg@, patrick@, kettenis@, sthen@

[1] https://marc.info/?l=u-boot&m=157037941626446&w=2


CVSROOT:	/cvs
Module name:	www
Changes by:	pamela@cvs.openbsd.org	2019/10/07 19:12:20

Modified files:
	.              : plus66.html 

Log message:
plus September 28 - October 6
ok florian


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/07 20:31:08

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/07 20:55:59

Modified files:
	distrib/sets/lists/man: mi 

Log message:
sync


CVSROOT:	/cvs
Module name:	src
Changes by:	dlg@cvs.openbsd.org	2019/10/07 22:18:01

Modified files:
	sys/net        : ifq.c 

Log message:
back out the use of ifiq pressure, and go back to using a packet count.

the pressure thresholds were too low in a lot of situations, and
still produced hard to understand interactions at high thresholds.
until we understand the numbers better, and for release, we're going
back counting the length of the per interface input queues.

this was originally based on a report of bad tcp performance with
em(4) by mlarkin, but is very convincingly demonstrated by a bunch
of work procter@ has been doing. deraadt@ is keen on the pressure
backout so he can cut a release.


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/07 23:28:09

Modified files:
	sys/dev/pci/drm/radeon: radeon_drv.c 

Log message:
drm/radeon: Fix EEH during kexec

From KyleMahlkuch
6e03bca91f8e99a2039659812efb113cae566459 in linux 4.19.y/4.19.78
6f7fe9a93e6c09bf988c5059403f5f88e17e21e6 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/07 23:30:17

Modified files:
	sys/dev/pci/drm/radeon: radeon_connectors.c 

Log message:
gpu: drm: radeon: Fix a possible null-pointer dereference in radeon_connector_set_property()

From Jia-Ju Bai
0936c46139cb9c4f9f2b1737a4e84d26af852fd8 in linux 4.19.y/4.19.78
f3eb9b8f67bc28783eddc142ad805ebdc53d6339 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/07 23:32:29

Modified files:
	sys/dev/pci/drm/amd/display/dc/dcn10: dcn10_cm_common.c 

Log message:
drm/amd/display: fix issue where 252-255 values are clipped

From Anthony Koo
24ba84ec00166e00f44735da6589d2508e60a561 in linux 4.19.y/4.19.78
1cbcfc975164f397b449efb17f59d81a703090db in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/07 23:34:24

Modified files:
	sys/dev/pci/drm/amd/display/dc/core: amdgpu_dc.c 

Log message:
drm/amd/display: reprogram VM config when system resume

From Lewis Huang
782a77f2eb39207589ef9175a2ceadd0cca12112 in linux 4.19.y/4.19.78
e5382701c3520b3ed66169a6e4aa6ce5df8c56e0 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/07 23:36:30

Modified files:
	sys/dev/pci/drm/amd/display/dc/core: dc_resource.c 
	sys/dev/pci/drm/amd/display/dc/dce: dce_audio.c 

Log message:
drm/amd/display: support spdif

From Charlene Liu
4dcbca872a841385de3fb6319bee928c19dacb26 in linux 4.19.y/4.19.78
b5a41620bb88efb9fb31a4fa5e652e3d5bead7d4 in mainline linux


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/07 23:38:23

Modified files:
	sys/dev/pci/drm/amd/amdgpu: amdgpu_si.c 

Log message:
drm/amdgpu/si: fix ASIC tests

From Jean Delvare
39b6d05169b2730a26887be7aff3680d44cf694c in linux 4.19.y/4.19.78
77efe48a729588527afb4d5811b9e0acb29f5e51 in mainline linux


CVSROOT:	/cvs
Module name:	www
Changes by:	jsg@cvs.openbsd.org	2019/10/07 23:39:46

Modified files:
	.              : 66.html 

Log message:
drm 4.19.78


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/10/08 01:26:59

Modified files:
	usr.bin/top    : commands.c display.c screen.c top.c 
Removed files:
	usr.bin/top    : boolean.h 

Log message:
Replace "boolean.h" with <stdbool.h>

Be consistent with other programs in base and unify variable usage as
follows to improve readability:

bool = (bool == No) ? Yes : No  ->  bool = !bool
if (bool == Yes)                ->  if (bool)
if (bool == No)                 ->  if (!bool)
bool = Maybe                    ->  bool = -1

OK millert


CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/08 01:32:21

Log message:
    Import terragrunt-0.19.29.
    
    Terragrunt is a thin wrapper for Terraform that provides extra tools for
    keeping your Terraform configurations DRY, working with multiple Terraform
    modules, and managing remote state.
    
    ok sthen@
    
    Status:
    
    Vendor Tag:	ajacoutot
    Release Tags:	ajacoutot_20191008
    
    N ports/sysutils/terragrunt/Makefile
    N ports/sysutils/terragrunt/distinfo
    N ports/sysutils/terragrunt/pkg/DESCR
    N ports/sysutils/terragrunt/pkg/PLIST
    
    No conflicts created by this import

CVSROOT:	/cvs
Module name:	ports
Changes by:	ajacoutot@cvs.openbsd.org	2019/10/08 01:33:33

Modified files:
	sysutils       : Makefile 

Log message:
+terragrunt


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/10/08 02:41:31

Modified files:
	usr.bin/snmp   : snmpc.c 

Log message:
Don't rely on the pdu returning the correct errorindex.
Noticed by semarie@

Feedback and OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/10/08 04:00:42

Modified files:
	usr.bin/snmp   : snmp.c 

Log message:
Free the "e" element in ber_printf_elements if it fails, since there's no
chance that it's part of the new ber structure.

Feedback and OK claudio@


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/08 04:04:36

Modified files:
	usr.sbin/rpki-client: Makefile extern.h main.c output-bgpd.c 
	                      roa.c tal.c validate.c 
Added files:
	usr.sbin/rpki-client: output-json.c 

Log message:
Rewrite the output handling of rpki-client and add an option to dump the
data in JSON format. To make the JSON output the same as the output of the
RIPE rpki-validator the basename of the TAL had to be added and passed around
in rpki-client. Additinally the VRPs are now stored in an RB tree in the
main process instead of keeping them per ROA object. This changes the sort
order to be in network order and no longer just lexographical.
Agreed by job@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/08 04:56:29

Modified files:
	math/coq       : Makefile 

Log message:
really bump REVISION


CVSROOT:	/cvs
Module name:	src
Changes by:	mpi@cvs.openbsd.org	2019/10/08 05:07:17

Modified files:
	sys/dev/usb    : ehci.c 

Log message:
Convert tsleep(9) to tsleep_nsec(9).

ok visa@, kn@, cheloha@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jsg@cvs.openbsd.org	2019/10/08 05:33:55

Modified files:
	sysutils/u-boot: Makefile distinfo 

Log message:
update from U-Boot 2019.10-rc4 to U-Boot 2019.10
ok naddy@


CVSROOT:	/cvs
Module name:	ports
Changes by:	jca@cvs.openbsd.org	2019/10/08 06:26:01

Modified files:
	security/keyringer: Makefile 
	security/keyringer/patches: patch-lib_keyringer_functions 

Log message:
Use date -r instead of GNU date --date=... when showing expired keys

ok tb@ sthen@ Gregoire Jadi (maintainer)


CVSROOT:	/cvs
Module name:	ports
Changes by:	robert@cvs.openbsd.org	2019/10/08 07:10:15

Modified files:
	editors/libreoffice: Makefile 
	editors/libreoffice/patches: patch-configure 
	                             patch-solenv_gbuild_platform_unxgcc_mk 
Added files:
	editors/libreoffice/patches: 
	                             patch-sc_source_core_data_attarray_cxx 

Log message:
unbreak on i386 and regen some patches


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/10/08 07:14:49

Modified files:
	sys/arch/luna88k/cbus: pcex.c 

Log message:
pcexmem(4): tsleep(9) -> tsleep_nsec(9); ok visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	cheloha@cvs.openbsd.org	2019/10/08 07:21:38

Modified files:
	sys/arch/macppc/dev: mediabay.c thermal.c xlights.c smu.c 

Log message:
macppc: mediabay(4), smu(4), xlights(4): tsleep(9) -> tsleep_nsec(9)

This diff completely converts sys/arch/macppc to *sleep_nsec(9).

Also convert dev/thermal.c while we're down here.  Unsure what that
file's driver's name is, if any.

ok kn@ visa@


CVSROOT:	/cvs
Module name:	src
Changes by:	florian@cvs.openbsd.org	2019/10/08 09:50:25

Modified files:
	sbin/unwind    : frontend.c 

Log message:
Make sure struct pending_query is fully initialized by using calloc.

Doesn't matter currently but lead to some head scratching while
working on new things.


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/10/08 10:58:09

Modified files:
	sys/arch/amd64/amd64: mptramp.S 

Log message:
amd64: ensure %fs is loaded after final lgdt

Mark Patruck reported this issue on a new EPYC 7402P CPU and tracked down
a DragonflyBSD diff that fixed the issue. I solicited some feedback/advice
from Matt Dillon of Dragonfly and discussions between him, guenther@ and
myself led to this fix which appears to resolve the problem.

ok guenther@


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/08 11:52:37

Modified files:
	lib/libpanel   : panel.c 

Log message:
convert unbounded sprintf/strcpy (in disabled debug code) to snprintf/strlcpy


CVSROOT:	/cvs
Module name:	ports
Changes by:	kurt@cvs.openbsd.org	2019/10/08 12:41:26

Modified files:
	www/chromium   : Makefile 
	www/chromium/pkg: PLIST-electron 
Added files:
	www/chromium/pkg: PFRAG.swiftshader-electron 

Log message:
swiftshader is x86 only. Add PFRAG for electron too.
okay naddy@ robert@


CVSROOT:	/cvs
Module name:	www
Changes by:	brynet@cvs.openbsd.org	2019/10/08 13:23:22

Modified files:
	.              : 66.html 

Log message:
Add ksmn(4).


CVSROOT:	/cvs
Module name:	ports
Changes by:	sthen@cvs.openbsd.org	2019/10/08 14:16:08

Modified files:
	www/mozilla-firefox: Makefile 
Added files:
	www/mozilla-firefox/patches: 
	                             patch-gfx_skia_skia_src_core_SkCpu_cpp 

Log message:
Fix Firefox build on aarch64, Makefile parts from kurt@, build patch from me.
In conjunction with the JIT issue that kurt@ tracked down recently, Firefox
now runs on this arch. ok kurt@ landry@


CVSROOT:	/cvs
Module name:	src
Changes by:	kn@cvs.openbsd.org	2019/10/08 14:51:03

Modified files:
	usr.bin/top    : machine.c machine.h top.c 

Log message:
Simplify threads flag handling

Instead of always passing the threads flag which decides whether other
function arguments are used or not, make callers pass those arguments or
NULL depending on the threads flag.

This reflects better how thread IDs are shown in place of user names/IDs.

OK millert


CVSROOT:	/cvs
Module name:	src
Changes by:	dtucker@cvs.openbsd.org	2019/10/08 16:40:39

Modified files:
	usr.bin/ssh    : kex.c 

Log message:
Correct type for end-of-list sentinel; fixes initializer warnings on
some platforms.  ok deraadt.


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/08 18:02:57

Modified files:
	usr.bin/ssh    : sshkey-xmss.c 

Log message:
fix integer overflow in XMSS private key parsing. Reported by
Adam Zabrocki via SecuriTeam's SSH program.

Note that this code is experimental and not compiled by default.

ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/08 18:04:42

Modified files:
	usr.bin/ssh    : sshkey.c 

Log message:
fix an unreachable integer overflow similar to the XMSS case, and some
other NULL dereferences found by fuzzing.

fix with and ok markus@


CVSROOT:	/cvs
Module name:	src
Changes by:	djm@cvs.openbsd.org	2019/10/08 18:04:57

Modified files:
	usr.bin/ssh    : version.h 

Log message:
openssh-8.1


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2019/10/08 19:52:10

Added files:
	openssh/txt    : release-8.1 

Log message:
release notes for openssh-8.1


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2019/10/08 19:55:57

Modified files:
	openssh/txt    : release-8.1 

Log message:
typo


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2019/10/08 20:11:35

Modified files:
	build          : Makefile 
	openssh        : ftp.html index.html openbsd.html 
	                 releasenotes.html 

Log message:
openssh-8.1


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2019/10/08 20:38:17

Modified files:
	openssh        : index.html 

Log message:
typo in version number :/


CVSROOT:	/cvs
Module name:	www
Changes by:	djm@cvs.openbsd.org	2019/10/08 20:40:22

Modified files:
	openssh        : releasenotes.html 
	openssh/txt    : release-8.1 

Log message:
fix release date


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2019/10/08 21:33:09

Modified files:
	build/openssh  : releases.pl 

Log message:
Check that we matched something that looks like a date before trying to
use it.  Found by djm@.


CVSROOT:	/cvs
Module name:	www
Changes by:	dtucker@cvs.openbsd.org	2019/10/08 21:52:22

Modified files:
	build/openssh  : releases.pl 
	openssh        : releasenotes.html 
	openssh/txt    : release-8.1 

Log message:
Ensure all datestamps are in UTC for consistency.


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/10/08 23:44:06

Modified files:
	usr.bin/snmp   : smi.c 

Log message:
Use snprintf instead of sprintf.

Requested by and OK deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	martijn@cvs.openbsd.org	2019/10/09 00:37:53

Modified files:
	usr.sbin/snmpd : mps.c smi.c 

Log message:
Revert previous. This introduces problems when requesting the base oid of a
scalar.

For example if you getnext request 1.3.6.1.4.1.30155.6.1.1 you get a
varbind oid of 1.3.6.1.4.1.30155.6.1.1.0, but the value of
1.3.6.1.4.1.30155.6.1.2.0.  I have a fix in the making, but we're too close
to release and here be too many dragons.

Found by bluhm@


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/10/09 03:21:45

Modified files:
	sys/dev/pci    : if_iwn.c 

Log message:
Restore BSS channel only when BSS was not changed in iee80211_intputm().
Synced from iwm(4).

ok stsp@ patrick@


CVSROOT:	/cvs
Module name:	src
Changes by:	tobhe@cvs.openbsd.org	2019/10/09 04:07:50

Modified files:
	sys/dev/ic     : bwfm.c 

Log message:
Restore BSS channel only when BSS was not changed in iee80211_input().
Synced from iwm(4).

ok patrick@


CVSROOT:	/cvs
Module name:	ports
Changes by:	naddy@cvs.openbsd.org	2019/10/09 05:22:03

Modified files:
	graphics/openimageio: Makefile 

Log message:
stop using -Werror to allow building on aarch64; ok pascal@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsing@cvs.openbsd.org	2019/10/09 10:17:59

Modified files:
	lib/libcrypto/rsa: rsa_oaep.c 

Log message:
Use EVP_MAX_MD_SIZE instead of SHA_DIGEST_LENGTH and remove OPENSSL_NO_SHA*
conditionals, now that this code handles arbitrary message digests.

ok inoguchi@ tb@


CVSROOT:	/cvs
Module name:	src
Changes by:	jca@cvs.openbsd.org	2019/10/09 10:43:22

Modified files:
	usr.bin/ftp    : fetch.c 

Log message:
On a 503, only retry if "Retry-After: 0" is present.

We just bail out if the header is absent or if the server tells us to
wait.  Prodding from job@, ok sthen@ deraadt@


CVSROOT:	/cvs
Module name:	ports
Changes by:	kirby@cvs.openbsd.org	2019/10/09 11:59:09

Modified files:
	games/xmoto    : Makefile 
	games/xmoto/patches: patch-src_include_xm_hashmap_h 
Added files:
	games/xmoto/patches: patch-src_VTexture_h 
	                     patch-src_drawlib_DrawLibOpenGL_cpp 

Log message:
Fix font rendering. Patch taken from FreeBSD.
Noticed and OK solene@


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/10/09 14:50:35

Modified files:
	.              : 66.html 

Log message:
Sync the OpenSSH section with the OpenSSH 8.1 releasenotes.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/10/09 15:00:03

Modified files:
	.              : 66.html 

Log message:
mark "Package highlights" section as to be completed


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/10/09 15:02:49

Modified files:
	.              : 66.html 

Log message:
mark Xenocara as unfinished


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/09 15:04:08

Modified files:
	.              : 66.html 

Log message:
Add a few missing links to man.openbsd.org.


CVSROOT:	/cvs
Module name:	www
Changes by:	benno@cvs.openbsd.org	2019/10/09 15:10:31

Modified files:
	.              : 66.html 

Log message:
VMM/VMD improvements are fine as is


CVSROOT:	/cvs
Module name:	www
Changes by:	deraadt@cvs.openbsd.org	2019/10/09 15:16:55

Modified files:
	.              : 66.html 

Log message:
delete areas noone felt like documenting


CVSROOT:	/cvs
Module name:	ports
Changes by:	cwen@cvs.openbsd.org	2019/10/09 17:12:39

Modified files:
	net/fastnetmon : Makefile 

Log message:
fastnetmon: use __atomic* primitives instead of __sync* ones
This fixes the build on macppc, and probably hppa.

OK naddy@ jasper@ (maintainer)


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/10/09 22:04:33

Modified files:
	sys/dev/acpi   : dsdt.c 

Log message:
Remove trailing whitespace


CVSROOT:	/cvs
Module name:	src
Changes by:	mlarkin@cvs.openbsd.org	2019/10/09 22:09:04

Modified files:
	sys/dev/acpi   : dsdt.c 

Log message:
Make reading past the end of an AML array not a panic.

Several machines have broken AML which reads past the end the end
of an array. Previously this was an aml_die/panic. acpica just warns
on such accesses, so this diff makes us do the same.

ok kettenis, jcs, deraadt


CVSROOT:	/cvs
Module name:	www
Changes by:	visa@cvs.openbsd.org	2019/10/09 22:20:49

Modified files:
	faq            : upgrade66.html 

Log message:
Mention that U-Boot configuration has to be changed in order to use
the bootloader on octeon.

Prompted by florian@ and deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	kmos@cvs.openbsd.org	2019/10/09 23:18:16

Modified files:
	faq            : upgrade66.html 

Log message:
Moved section on the OpenBSD/octeon bootloader.
Made the change example match the configuration examples in INSTALL.octeon.
Turned reference to INSTALL.octeon into a  link.
Bold the one changed word between the before and after.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2019/10/10 01:14:38

Modified files:
	.              : 66.html 

Log message:
additional news from wifi land


CVSROOT:	/cvs
Module name:	www
Changes by:	fcambus@cvs.openbsd.org	2019/10/10 01:25:06

Modified files:
	.              : 66.html 

Log message:
Fix a typo: s/resoving/resolving.

While there, remove extra trailing colon and dot.


CVSROOT:	/cvs
Module name:	www
Changes by:	stsp@cvs.openbsd.org	2019/10/10 01:38:53

Modified files:
	.              : 66.html 

Log message:
add missing links to ifconfig(8) man page


CVSROOT:	/cvs
Module name:	src
Changes by:	claudio@cvs.openbsd.org	2019/10/10 03:56:32

Modified files:
	sys/dev/usb    : if_umb.c 

Log message:
Only set the IPv4 address in umb(4) if both MBIM_IPCONF_HAS_ADDRINFO and
MBIM_IPCONF_HAS_GWINFO are available. Configuring umb(4) without gateway
wont work the system needs a destination address for the interface.
Problem found by jsg@.
OK jsg@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/10/10 08:28:48

Modified files:
	lib/libcrypto  : opensslv.h 

Log message:
bump to 3.0.2


CVSROOT:	/cvs
Module name:	src
Changes by:	bcook@cvs.openbsd.org	2019/10/10 08:29:20

Modified files:
	lib/libcrypto  : opensslv.h 

Log message:
bump internal version to 3.0.2


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/11 08:48:30

Modified files:
	usr.bin/snmp   : smi.c 

Log message:
don't use sizeof(pointer) to represent buffer size
ok martijn@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/11 09:12:43

Modified files:
	sys/arch/arm64/dev: bcm2835_dwctwo.c 
	sys/arch/armv7/broadcom: bcm2835_dwctwo.c 

Log message:
When available use "interrupt-names" to select the fdt idx for dwctwo
interrupt.  Required after the dts included with raspberry pi firmware
changed from using idx 1 to idx 0 when introducing "interrupt-names".

Fixes USB devices not probing reported by dtucker@

ok kettenis@ patrick@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	patrick@cvs.openbsd.org	2019/10/11 09:20:36

Modified files:
	sys/net80211   : ieee80211_input.c 

Log message:
Probe responses are generally only seen after probe requests,
which we only send if an SSID is already configured.  Thus a
scan only creates beacons.  Especially on bwfm(4) only beacons
frames are faked, there are no probe responses.  When a node
first is created, ni_rssi is 0, which is always smaller than
rxi_rssi, and it wil never be set for nodes on 5 GHz.  Thus we
should always set ni_rssi if it is 0.

Tested by jan@ tobhe@
ok stsp@ deraadt@


CVSROOT:	/cvs
Module name:	src
Changes by:	jsg@cvs.openbsd.org	2019/10/11 09:25:40

Modified files:
	usr.sbin/vmd   : fw_cfg.c 

Log message:
use sizeof(struct) not sizeof(pointer) in calloc call
ok deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	lteo@cvs.openbsd.org	2019/10/11 20:31:09

Modified files:
	.              : 66.html 

Log message:
LibreSSL 3.0.X -> 3.0.2


CVSROOT:	/cvs
Module name:	www
Changes by:	jcs@cvs.openbsd.org	2019/10/11 22:40:36

Modified files:
	.              : 66.html 

Log message:
tweak some entries


CVSROOT:	/cvs
Module name:	src
Changes by:	deraadt@cvs.openbsd.org	2019/10/11 23:22:48

Modified files:
	etc/etc.alpha  : Makefile.inc 

Log message:
accidentally stated the MP kernel twice, leading the SHA256/SHA256.sig
file to contain two hashes for bsd.mp, and cause later upgrade problems
spotted by afresh1


CVSROOT:	/cvs
Module name:	src
Changes by:	stsp@cvs.openbsd.org	2019/10/12 01:03:39

Modified files:
	sys/dev/pci    : if_iwm.c 

Log message:
Fix a use-after-free memory access in iwm's interrupt handler.

Testing tb, florian, solene, mortimer, pamela, jmatthew, Tracey Emery, myself
ok mortimer@ deraadt@


CVSROOT:	/cvs
Module name:	www
Changes by:	jmatthew@cvs.openbsd.org	2019/10/12 04:14:53

Modified files:
	.              : sparc64.html 

Log message:
S7-2 systems work


CVSROOT:	/cvs
Module name:	src
Changes by:	kettenis@cvs.openbsd.org	2019/10/12 08:05:50

Modified files:
	sys/arch/amd64/amd64: cpu.c tsc.c 

Log message:
Disable TSC debug printfs for release.  They can be turned back on by
defining TSC_DEBUG.

ok deraadt@